Skip to content

Commit

Permalink
Printing sycl_queue type to debug CI
Browse files Browse the repository at this point in the history
  • Loading branch information
khaled committed May 15, 2023
1 parent e1a86af commit 1801d4d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions numba_dpex/core/types/usm_ndarray_type.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ def __init__(
self.addrspace = addrspace

if queue and not isinstance(queue, types.misc.Omitted):
print(
"core.types.usm_ndarray_type.USMNdArray: type(queue) = ",
type(queue),
)
if not isinstance(queue, dpctl.SyclQueue):
raise TypeError(
"numba_dpex.core.types.usm_ndarray_type.USMNdArray.__init__(): "
Expand Down

0 comments on commit 1801d4d

Please sign in to comment.