ai-content-maker/.venv/Lib/site-packages/numba/tests/doctest_usecase.py

32 lines
484 B
Python
Raw Normal View History

2024-05-03 04:18:51 +03:00
"""
Test that all docstrings are the same:
>>> len({f.__doc__ for f in (a, b, c, d)})
1
"""
from numba import guvectorize, int64, njit, vectorize
def a():
""">>> x = 1"""
return 1
@njit
def b():
""">>> x = 1"""
return 1
@guvectorize([(int64[:], int64, int64[:])], "(n),()->(n)")
def c(x, y, res):
""">>> x = 1"""
for i in range(x.shape[0]):
res[i] = x[i] + y
@vectorize([int64(int64, int64)])
def d(x, y):
""">>> x = 1"""
return x + y