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 955b6a2 commit cb9aa13Copy full SHA for cb9aa13
.pre-commit-config.yaml
@@ -13,7 +13,7 @@ repos:
13
- id: end-of-file-fixer
14
- id: trailing-whitespace
15
- repo: https://github.com/psf/black
16
- rev: 21.10b0
+ rev: 22.1.0
17
hooks:
18
- id: black
19
exclude: "versioneer.py|dpctl/_version.py"
dpctl/tests/test_sycl_event.py
@@ -202,7 +202,7 @@ def test_sycl_timer():
202
# device task
203
m1.copy_from_device(m2)
204
# host task
205
- [x ** 2 for x in range(1024)]
+ [x**2 for x in range(1024)]
206
host_dt, device_dt = timer.dt
207
assert host_dt > device_dt
208
q_no_profiling = dpctl.SyclQueue()
0 commit comments