-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex3.html
177 lines (167 loc) · 8.09 KB
/
index3.html
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
165
166
167
168
169
170
171
172
173
174
175
176
177
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Pythran stories</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css"/>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto+Slab|Ruda"/>
<link rel="stylesheet" type="text/css" href="./theme/css/main.css"/>
<link href="http://serge-sans-paille.github.io/pythran-stories/
feeds/all.atom.xml"
type="application/atom+xml" rel="alternate" title="Pythran stories Atom Feed"/>
</head>
<body>
<style>.github-corner:hover .octo-arm {
animation: octocat-wave 560ms ease-in-out
}
@keyframes octocat-wave {
0%, 100% {
transform: rotate(0)
}
20%, 60% {
transform: rotate(-25deg)
}
40%, 80% {
transform: rotate(10deg)
}
}
@media (max-width: 500px) {
.github-corner:hover .octo-arm {
animation: none
}
.github-corner .octo-arm {
animation: octocat-wave 560ms ease-in-out
}
}</style><div id="container">
<header>
<h1><a href="./">Pythran stories</a></h1>
<ul class="social-media">
<li><a href="https://github.com/serge-sans-paille/pythran"><i class="fab fa-github fa-lg" aria-hidden="true"></i></a></li>
<li><a href="http://serge-sans-paille.github.io/pythran-stories/
feeds/all.atom.xml"
type="application/atom+xml" rel="alternate"><i class="fa fa-rss fa-lg"
aria-hidden="true"></i></a></li>
</ul>
<p><em></em></p>
</header>
<nav>
<ul>
<li><a href="./category/benchmark.html"> benchmark </a></li>
<li><a href="./category/compilation.html"> compilation </a></li>
<li><a href="./category/engineering.html"> engineering </a></li>
<li><a href="./category/examples.html"> examples </a></li>
<li><a href="./category/mozilla.html"> mozilla </a></li>
<li><a href="./category/optimisation.html"> optimisation </a></li>
<li><a href="./category/release.html"> release </a></li>
</ul>
</nav>
<main>
<section id="home">
<ul>
<li>
<h1><a href="./identifier-binding-computation.html" rel="bookmark"
title="Permalink to Identifier Binding Computation">Identifier Binding Computation</a></h1>
<aside>
<ul>
<li>
<time datetime="2016-04-18 00:00:00+02:00">Apr 18, 2016</time>
</li>
</ul>
</aside>
<p>
<p class="first last">Alias analysis is a poor term to describe the processing done by
Pythran that is going to be described here. It could rather be named
<em>static computation of identifier binding</em>, in the sense that it
tries to give an over-approximation of which values an identifier can
be bound to, at a given point of the program execution. Still,
whatever its name, the process plays a key role in Pythran, so let's
have a look to its internals.</p>
<a href="./identifier-binding-computation.html"><em>Read more...</em></a>
</p>
</li>
<li>
<h1><a href="./micro-benchmarking-julia-c-and-pythran-on-an-economics-kernel.html" rel="bookmark"
title="Permalink to Micro-Benchmarking Julia, C++ and Pythran on an Economics kernel">Micro-Benchmarking Julia, C++ and Pythran on an Economics kernel</a></h1>
<aside>
<ul>
<li>
<time datetime="2016-04-05 00:00:00+02:00">Apr 05, 2016</time>
</li>
</ul>
</aside>
<p>
<p class="first last">Let's re-run an existing benchmark with Pythran</p>
<a href="./micro-benchmarking-julia-c-and-pythran-on-an-economics-kernel.html"><em>Read more...</em></a>
</p>
</li>
<li>
<h1><a href="./compiler-flags.html" rel="bookmark"
title="Permalink to Compiler Flags">Compiler Flags</a></h1>
<aside>
<ul>
<li>
<time datetime="2016-03-29 00:00:00+02:00">Mar 29, 2016</time>
</li>
</ul>
</aside>
<p>
<p class="first last">Playing with compiler forwarded by Pythran to GCC (or Clang) can yield surprising results, let's explore this!</p>
<a href="./compiler-flags.html"><em>Read more...</em></a>
</p>
</li>
<li>
<h1><a href="./pythran-case-resampling.html" rel="bookmark"
title="Permalink to Pythran Case: Resampling">Pythran Case: Resampling</a></h1>
<aside>
<ul>
<li>
<time datetime="2016-03-09 00:00:00+01:00">Mar 09, 2016</time>
</li>
</ul>
</aside>
<p>
<p class="first last">Optimizing an algorithm found on Stack Overflow with Pythran, getting a x2 speedup with a single line, a x4 speedup with two lines and much more while switching our brain on!</p>
<a href="./pythran-case-resampling.html"><em>Read more...</em></a>
</p>
</li>
<li>
<h1><a href="./pythran-074-is-out.html" rel="bookmark"
title="Permalink to Pythran 0.7.4 is out!">Pythran 0.7.4 is out!</a></h1>
<aside>
<ul>
<li>
<time datetime="2016-01-07 00:00:00+01:00">Jan 07, 2016</time>
</li>
</ul>
</aside>
<p>
<p class="first last">Pythran version bump, new pypi packages and conda release!</p>
<a href="./pythran-074-is-out.html"><em>Read more...</em></a>
</p>
</li>
</ul>
<ul class="pagination">
<li><a href="./index.html"><span aria-hidden="true">««</span></a>
</li>
<li><a href="./index2.html">«</a></li>
<li class=""><a
href="./index.html">1</a></li>
<li class=""><a
href="./index2.html">2</a></li>
<li class="active"><a
href="./index3.html">3</a></li>
</ul>
</section>
</main>
<footer>
<h6>
Rendered by <a href="http://getpelican.com/">Pelican</a> • Theme by <a
href="https://github.com/aleylara/Peli-Kiera">Peli-Kiera</a> • Copyright
© ‑ serge-sans-paille and other pythraners </h6>
</footer>
</div>
</body>
</html>