We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 732b654 commit f70c06aCopy full SHA for f70c06a
numba_dpex/dpctl_iface/_helpers.py
@@ -17,9 +17,9 @@ def numba_type_to_dpctl_typenum(context, ty):
17
from dpctl.enum_types import kernel_arg_type as kargty
18
19
if ty == types.int32 or isinstance(ty, types.scalars.IntegerLiteral):
20
- return context.get_constant(types.int32, kargty.dpctl_int32.value)
+ return context.get_constant(types.int32, kargty.dpctl_int64.value)
21
elif ty == types.uint32:
22
- return context.get_constant(types.int32, kargty.dpctl_uint32.value)
+ return context.get_constant(types.int32, kargty.dpctl_uint64.value)
23
elif ty == types.boolean:
24
return context.get_constant(types.int32, kargty.dpctl_uint32.value)
25
elif ty == types.int64:
0 commit comments