neuro-ml / imops

Efficient parallelizable algorithms for multidimensional arrays to speed up your data pipelines
https://neuro-ml.github.io/imops/
MIT License
21 stars 1 forks source link

Zoom is failing for imops built with Cython>=3.0.0 #35

Closed vovaf709 closed 3 months ago

vovaf709 commented 1 year ago

This code does not terminate within a reasonable time for imops built with Cython >= 3.0.0

import numpy as np
from imops.zoom import zoom

x = np.zeros((256, 256, 256))
zoom(x, 2, num_threads=8)