Skip to content

Commit 172394f

Browse files
Fixed qualifier name typo
1 parent 87d1c13 commit 172394f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dpctl/tests/test_sycl_queue_manager.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Data Parallel Control (dpctl)
22
#
3-
# Copyright 2020-2022 Intel Corporation
3+
# Copyright 2020-2023 Intel Corporation
44
#
55
# Licensed under the Apache License, Version 2.0 (the "License");
66
# you may not use this file except in compliance with the License.
@@ -69,7 +69,7 @@ def test_is_in_device_context_inside_nested_device_ctxt_cpu():
6969
n = cpu.max_compute_units
7070
n_half = n // 2
7171
try:
72-
d0, d1 = cpu.create_subdevices(partition=[n_half, n - n_half])
72+
d0, d1 = cpu.create_sub_devices(partition=[n_half, n - n_half])
7373
except Exception:
7474
pytest.skip("Could not create subdevices")
7575
assert 0 == dpctl.get_num_activated_queues()

0 commit comments

Comments
 (0)