Skip to content
Snippets Groups Projects
Commit f2b5860d authored by Martin Reinecke's avatar Martin Reinecke
Browse files

additional flags

parent ce0140f4
No related branches found
No related tags found
No related merge requests found
Pipeline #
...@@ -77,7 +77,8 @@ def hartley(a, axes=None): ...@@ -77,7 +77,8 @@ def hartley(a, axes=None):
if use_numba: if use_numba:
from numba import complex128 as ncplx, float64 as nflt, vectorize as nvct from numba import complex128 as ncplx, float64 as nflt, vectorize as nvct
@nvct([nflt(nflt,nflt,nflt), ncplx(nflt,ncplx,ncplx)]) @nvct([nflt(nflt,nflt,nflt), ncplx(nflt,ncplx,ncplx)], nopython=True,
target="cpu")
def _general_axpy(a, x, y): def _general_axpy(a, x, y):
return a*x + y return a*x + y
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment