Skip to content

Commit 495a64e

Browse files
author
Vahid Tavanashad
committed
fix dpnp_iface_to_numba
1 parent 6a5ce7e commit 495a64e

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

dpnp/to_numba/dpnp_iface_to_numba.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,11 @@
4040
import numba
4141
from numba.extending import get_cython_function_address as nba_addr
4242

43-
name_to_numba_signatures = {"cos": [numba.types.float64]}
43+
name_to_numba_signatures = {
44+
"cos": [
45+
(numba.types.float64),
46+
]
47+
}
4448

4549
name_and_types_to_pointer = {
4650
("cos", numba.types.float64): ctypes.CFUNCTYPE(

0 commit comments

Comments
 (0)