1 import numpy as np 2 from numba import njit,jit 3 4 @njit 5 def gpuu(x,y): 6 return np.argwhere((x==y)) 7 8 9 a = np.array(range(10000)) ...
確定! 回上一頁