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 5becde4 commit ad7cf73Copy full SHA for ad7cf73
numba_dpex/core/types/dpctl_types.py
@@ -28,7 +28,9 @@ def __init__(self, sycl_queue):
28
self._unique_id = hash(sycl_queue)
29
except Exception:
30
self._unique_id = self.rand_digit_str(16)
31
- super(DpctlSyclQueue, self).__init__(name="DpctlSyclQueue")
+ super(DpctlSyclQueue, self).__init__(
32
+ name=f"DpctlSyclQueue on {self._device}"
33
+ )
34
35
def rand_digit_str(self, n):
36
return "".join(
0 commit comments