generate more compact binaries

This commit is contained in:
Wenzel Jakob
2015-07-26 16:33:49 +02:00
parent fa70d30248
commit d4258bafef
12 changed files with 628 additions and 421 deletions

16
example/example10.py Normal file
View File

@@ -0,0 +1,16 @@
#!/usr/bin/env python3
import sys
sys.path.append('.')
import example
import numpy as np
from example import vectorized_func
from example import vectorized_func2
for f in [vectorized_func, vectorized_func2]:
print(f(1, 2, 3))
print(f(np.array(1), np.array(2), 3))
print(f(np.array([1, 3]), np.array([2, 4]), 3))
print(f(np.array([[1, 3, 5], [7, 9, 11]]), np.array([[2, 4, 6], [8, 10, 12]]), 3))
print(np.array([[1, 3, 5], [7, 9, 11]])* np.array([[2, 4, 6], [8, 10, 12]])*3)