forked from martinal/instant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest11.py
36 lines (29 loc) · 846 Bytes
/
test11.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
from __future__ import print_function
import pytest
import numpy
import time
import instant
from instant import inline_with_numpy
def test_numpy_inline():
c_code = """
double sum_of_some_func(int n1, double* array1){
double tmp = 0.0;
for (int i=0; i<n1; i++) {
tmp += some_func(array1[i]);
}
return tmp;
}
"""
some_func = inline_with_numpy(c_code, arrays=[['n1', 'array1']],
local_headers=["./some_func.h"],
libraries = ["m"])
a = numpy.arange(10000000); a = numpy.sin(a)
t1 = time.time()
b = some_func(a)
t2 = time.time()
print('With instant:', t2-t1, 'seconds')
t1 = time.time()
c = sum(numpy.sin(a) + numpy.cos(a))
t2 = time.time()
print('With numpy :', t2-t1, 'seconds')
assert abs(c - b) < 1.0e-12