Skip to content

Commit 26d97ba

Browse files
Use async implementation of set functions
1 parent ba56cb8 commit 26d97ba

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

dpctl/tensor/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@
175175
reduce_hypot,
176176
sum,
177177
)
178-
from ._set_functions_sync import (
178+
from ._set_functions_async import (
179179
unique_all,
180180
unique_counts,
181181
unique_inverse,

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ source = [
2222
omit = [
2323
"dpctl/tests/*",
2424
"dpctl/_version.py",
25-
"dpctl/tensor/_set_functions_debug.py",
25+
"dpctl/tensor/_set_functions_sync.py",
2626
"*/_cython_api*/stringsource",
2727
]
2828

2929
[tool.coverage.report]
3030
omit = [
3131
"dpctl/tests/*",
3232
"dpctl/_version.py",
33-
"dpctl/tensor/_set_functions_debug.py",
33+
"dpctl/tensor/_set_functions_sync.py",
3434
"*/_cython_api*/stringsource",
3535
]
3636

0 commit comments

Comments
 (0)