forked from martinal/instant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest12.py
50 lines (38 loc) · 1008 Bytes
/
test12.py
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
from __future__ import print_function
import pytest
import numpy as N
import time
from instant import inline_with_numpy
def test_grid_loop():
func_str = "sin"
c_code = """
void gridloop(int x1, int y1, double* a,
int n, double* x,
int m, double* y) {
for (int i=0; i<n; i++) {
for (int j=0; j<m; j++) {
a[i*n +j] = %s(x[i] + y[j]);
}
}
}
""" % func_str
n = 5000
a = N.zeros([n, n])
x = N.arange(0.0, n, 1.0)
y = N.arange(0.0, n, 1.0)
arrays = [['x1', 'y1', 'a'], ['n', 'x'], ['m', 'y']]
grid_func = inline_with_numpy(c_code, arrays=arrays )
t1 = time.time()
grid_func(a, x, y)
t2 = time.time()
print('With instant:', t2-t1, 'seconds')
xv = x[:, N.newaxis]
yv = y[N.newaxis,:]
a2 = N.zeros([n, n])
t1 = time.time()
a2[:,:] = N.sin(xv + yv)
t2 = time.time()
print('With numpy:', t2-t1, 'seconds')
d = a-a2
d.shape = (n*n,)
assert abs(max(d)) < 1.0e-12