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 b9f4542 commit 5b36457Copy full SHA for 5b36457
numba_dpex/core/types/range_types.py
@@ -22,7 +22,7 @@ def __init__(self, ndim: int):
22
raise errors.TypingError(
23
"RangeType can only have 1,2, or 3 dimensions"
24
)
25
- super(RangeType, self).__init__(name="Range")
+ super(RangeType, self).__init__(name="Range<" + str(ndim) + ">")
26
27
@property
28
def ndim(self):
@@ -44,7 +44,7 @@ def __init__(self, ndim: int):
44
45
46
47
- super(NdRangeType, self).__init__(name="NdRange")
+ super(NdRangeType, self).__init__(name="NdRange<" + str(ndim) + ">")
48
49
50
0 commit comments