Skip to content

Commit b7d9515

Browse files
Typos found by @ndigrigorian
Also added few workd to the list is known-to-be-correctly-spelled
1 parent a1093d9 commit b7d9515

File tree

4 files changed

+18
-5
lines changed

4 files changed

+18
-5
lines changed

docs/doc_sources/conf.py.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ extensions = [
4545

4646
copybutton_prompt_text = ">>> "
4747
spelling_warning = True
48+
spelling_word_list_filename = "known_words.txt"
4849

4950
googleanalytics_id = 'G-7TCKS5BHYE'
5051
googleanalytics_enabled = True

docs/doc_sources/known_words.txt

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ conda
88
cmake
99
scikit
1010
oneAPI
11+
oneapi
1112
oneMKL
1213
dpctl
1314
runtime
@@ -25,18 +26,29 @@ accessor
2526
doxygen
2627
const
2728
namespace
28-
DRef
29-
PRef
30-
QRef
29+
uint
3130
CRef
31+
DRef
32+
ERef
3233
KBRef
3334
KRef
35+
PRef
36+
QRef
3437
MRef
38+
VRef
3539
Ptr
3640
Src
3741
Dst
42+
Dest
3843
sycl
3944
nullptr
4045
opencl
4146
cuda
4247
enqueued
48+
submodule
49+
syclinterface
50+
bitwise
51+
bitflag
52+
subdevice
53+
subdevices
54+
async

docs/doc_sources/user_guides/basic_concepts.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ they do not compare equal, since they correspond to two independent scheduling e
162162
.. note::
163163
:class:`dpctl.tensor.usm_ndarray` objects one associated with ``q1`` and another associated with ``q2``
164164
could not be combined in a call to the same function that implements
165-
:ref:`compute-followed-data programming model <dpctl_tensor_compute_follows_data>` in :mod:`dpctl.tensor`.
165+
:ref:`compute-follows-data <dpctl_tensor_compute_follows_data>` programming model in :mod:`dpctl.tensor`.
166166

167167

168168
Event

docs/doc_sources/user_guides/execution_model.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ case it is the execution queue used. Alternatively :exc:`dpctl.utils.ExecutionPl
9494
x1 : dpctl.tensor.usm_ndarray,
9595
x2 : dpctl.tensor.usm_ndarray
9696
):
97-
exec_q = dpctil.utils.get_execution_queue((x1.sycl_queue, x2.sycl_queue))
97+
exec_q = dpctl.utils.get_execution_queue((x1.sycl_queue, x2.sycl_queue))
9898
if exec_q is None:
9999
raise dpctl.utils.ExecutionPlacementError
100100
...

0 commit comments

Comments
 (0)