gpt4 book ai didi

numpy - 在 numba nopython 函数中使用 numpy.datetime?

转载 作者:行者123 更新时间:2023-12-04 12:25:12 26 4
gpt4 key购买 nike

是否可以在 @jit(nopython=True) 函数中创建 NPDatetime 对象?据我所知,初始化这些对象需要使用字符串对象,这似乎阻止了 nopython 函数的编译。

最佳答案

您当然可以对 numpy 日期时间进行操作。

import numpy as np
import numba as nb

@nb.njit
def diff_dt(a, b):
return a - b

x = np.datetime64('2005-02-25')
y = np.datetime64('2005-02-27')

diff_dt(x, y)

但是,您无法创建它出现的日期时间对象:
@nb.njit
def create_dt(s):
return np.datetime64(s)

# Fails
create_dt('2005-02-25')

关于numpy - 在 numba nopython 函数中使用 numpy.datetime?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42031194/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com