使用 numba 不支持的 numpy 函数
Using numpy functions which numba doesn't support
我目前正在使用一个函数通过 numpy.histogram()
和 numpy.histogram2d()
创建直方图。为了使用numba
加快进程,我尝试使用@jit
装饰器以nonpython
模式解释,但是numba
报错说numpy.histogram()
是一个不受支持的功能。我的函数看起来像,
def make_histograms(X, neurons, bins = 5):
xy = np.histogram2d(X, neurons, bins)[0]
x = np.histogram(X, bins)[0]
y = np.histogram(neurons, bins)[0]
对于我的案例,是否还有其他解决方法可以使用 numba?任何帮助将非常感激。提前致谢:)
我目前正在使用一个函数通过 numpy.histogram()
和 numpy.histogram2d()
创建直方图。为了使用numba
加快进程,我尝试使用@jit
装饰器以nonpython
模式解释,但是numba
报错说numpy.histogram()
是一个不受支持的功能。我的函数看起来像,
def make_histograms(X, neurons, bins = 5):
xy = np.histogram2d(X, neurons, bins)[0]
x = np.histogram(X, bins)[0]
y = np.histogram(neurons, bins)[0]
对于我的案例,是否还有其他解决方法可以使用 numba?任何帮助将非常感激。提前致谢:)