Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dpctl/_sycl_context.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ _logger = logging.getLogger(__name__)
cdef class SyclContextCreationError(Exception):
"""
A ``SyclContextCreationError`` exception is raised
when :class:`.SyclContext` could not created.
when :class:`.SyclContext` could not be created.
"""
pass

Expand Down
2 changes: 1 addition & 1 deletion dpctl/_sycl_device.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ __all__ = [
cdef class SyclDeviceCreationError(Exception):
"""
A ``SyclDeviceCreationError`` exception is raised when
:class:`.SyclDevice` instance could not created.
:class:`.SyclDevice` instance could not be created.
"""
pass

Expand Down
2 changes: 1 addition & 1 deletion dpctl/tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ def test_order_manager():
try:
q = dpctl.SyclQueue()
except dpctl.SyclQueueCreationError:
pytest.skip("Queue could not created for default-selected device")
pytest.skip("Queue could not be created for default-selected device")
_som = dpctl.utils.SequentialOrderManager
_mngr = _som[q]
assert isinstance(_mngr.num_host_task_events, int)
Expand Down
2 changes: 1 addition & 1 deletion examples/cython/usm_memory/scripts/bench.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def gen_option_params(
continue

if not queues:
print("No queues could not created, nothing to do.")
print("No queues could be created, nothing to do.")
exit(0)

opt_params_list = []
Expand Down
Loading