-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpublications.html
More file actions
164 lines (116 loc) · 3.95 KB
/
Copy pathpublications.html
File metadata and controls
164 lines (116 loc) · 3.95 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Artem Shinkarov - publications</title>
<link rel="stylesheet" href="./css/notosans.css" />
<link rel="stylesheet" href="./css/merriweather.css" />
<link rel="stylesheet" href="./css/sakura.css" />
<link rel="stylesheet" href="./css/tema.css" />
</head>
<script>
function visibilityToggle(id) {
var x = document.getElementById(id);
//alert("display of " + id + " = " + x.style.display)
if (x.style.display === "none") {
x.style.display = "block";
} else {
x.style.display = "none";
}
}
</script>
<body>
<header>
<div class="logo">
<a href="./">Artem Shinkarov</a>
</div>
<nav>
<a href="./">About</a>
<a href="./publications.html">Publications</a>
<a href="./archive.html">Posts</a>
<a href="./links.html">Links</a>
</nav>
</header>
<hr style="border:1px solid #e4e4e4;" />
<main role="main">
<ul>
<li>2024
<a href="./pubs/2024-correctness.html">Correctness is Demanding, Performance is Frustrating
</a></li>
<li>2023
<a href="./pubs/2022-types.html">The Münchhausen Method in Type Theory
</a></li>
<li>2023
<a href="./pubs/2023-fscd.html">Combinatory Logic and Lambda Calculus Are Equal, Algebraically
</a></li>
<li>2022
<a href="./pubs/2022-scan.html">Parallel Scan as a Multidimensional Array Problem
</a></li>
<li>2021
<a href="./pubs/2021-gpce.html">Extracting the Power of Dependent Types
</a></li>
<li>2021
<a href="./pubs/2021-cnn.html">Array Languages Make Neural Networks Fast
</a></li>
<li>2021
<a href="./pubs/2021-extraction.html">Choosing is Losing: How to combine the benefits of shallow and deep
embeddings through reflection
</a></li>
<li>2020
<a href="./pubs/2019-max-resilience.html">Checkpointing Kernel Executions of MPI+CUDA Applications
</a></li>
<li>2020
<a href="./pubs/2020-msfp.html">Multi-dimensional Arrays with Levels
</a></li>
<li>2019
<a href="./pubs/2019-ifl-tensorcomp.html">Tensor Comprehensions in SaC
</a></li>
<li>2019
<a href="./pubs/2019-conv-apl.html">Convolutional neural networks in APL
</a></li>
<li>2018
<a href="./pubs/2018-max-resilience.html">A Lightweight Approach to GPU Resilience
</a></li>
<li>2018
<a href="./pubs/2018-ifl-memreuse.html">Extended Memory Reuse: An Optimisation for Reducing Memory Allocations
</a></li>
<li>2018
<a href="./pubs/rosetta-stone.html">A Rosetta Stone for Array Languages
</a></li>
<li>2017
<a href="./pubs/transfinite.html">A Lambda Calculus for Transfinite Arrays: Unifying Arrays and Streams
</a></li>
<li>2017
<a href="./pubs/array-comp.html">Recursive Array Comprehensions in a Call-by-Value Language
</a></li>
<li>2015
<a href="./pubs/bgs-fortran.html">Making Fortran Legacy Code More Functional: Using the BGS Geomagnetic
Field Modelling System As an Example
</a></li>
<li>2015
<a href="./pubs/ccpe-data-layouts.html">Type-driven data layouts for improved vectorisation
</a></li>
<li>2015
<a href="./pubs/asv-thesis.html">Data Layout Types: a type-based approach to automatic data layout
transformations for improved SIMD vectorisation
</a></li>
<li>2014
<a href="./pubs/sexynbody.html">SAC/C Formulations of the All-Pairs N-Body Problem and their Performance
on SMPs and GPGPUs
</a></li>
<li>2013
<a href="./pubs/data-layouts.html">Data Layout Inference for Code Vectorisation
</a></li>
<li>2013
<a href="./pubs/layout-correctness.html">Semantics-Preserving Data Layout Transformations for Improved
Vectorisation
</a></li>
<li>2012
<a href="./pubs/cpcgcc.html">Portable Support for Explicit Vectorisation in C
</a></li>
</ul>
</main>
</body>
</html>