Autojit - как повысить производительность при вращении
У меня есть следующий код:
def rotation_cpu(img, theta, dst):
cosTheta = np.cos(theta)
sinTheta = np.sin(theta)
for i in range(512):
for j in range(512):
xpos = cosTheta * i - sinTheta * j
ypos = sinTheta * i + cosTheta * j
dst[xpos + 725/2, ypos ] = img[i,j]
Я проверяю это, и я получаю 1.7300620079
секунд. Но когда я использую @autojit
декоратор становится все хуже.
from numbapro import autojit
@autojit
def rotation_cpu(img, theta, dst):
cosTheta = np.cos(theta)
sinTheta = np.sin(theta)
for i in range(512):
for j in range(512):
xpos = cosTheta * i - sinTheta * j
ypos = sinTheta * i + cosTheta * j
dst[xpos + 725/2, ypos ] = img[i,j]
с 1.92721390724
секунд. Должен ли я что-то изменить, чтобы добиться лучших результатов?
Код для тестирования:
from timeit import default_timer as timer
from scipy.misc import imread
img = imread("pic.jpg") # it is a 512x512 pic.
theta = 45
ts = timer()
dst = np.zeros((725, 725)) # new boundaries
rotation_cpu(img, theta * np.pi / 180, dst)
te = timer()
print te - ts