Skip to content

Commit 7c47b70

Browse files
authored
cleanup for 1.2 provisional rev 1 (#436)
1 parent 36b574c commit 7c47b70

File tree

8 files changed

+9
-54
lines changed

8 files changed

+9
-54
lines changed

README.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,10 @@ Build the pdf version wit the following command::
101101

102102
The generated PDF will be located at build/latexpdf/oneAPI-spec.pdf.
103103

104+
Spell check::
105+
106+
python oneapi.doc. --verbose spelling
107+
104108
--
105109
CI
106110
--

scripts/oneapi.py

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
import os.path
1010
import shutil
1111
import subprocess
12-
from distutils.dir_util import copy_tree as copy_tree_update
1312
from functools import wraps
1413
from os.path import join
1514

@@ -74,18 +73,6 @@ def rm(dir):
7473
shutil.rmtree(dir, ignore_errors=True)
7574

7675

77-
def copytree(src, dst, dirs_exist_ok=False):
78-
log('cp -r', src, dst)
79-
if cl_args.dry_run:
80-
return
81-
# dirs_exist_ok needs python 3.8 or later, use copy_tree_update
82-
# for now
83-
if dirs_exist_ok:
84-
copy_tree_update(src, dst)
85-
else:
86-
shutil.copytree(src, dst)
87-
88-
8976
def copy(src, dst):
9077
log('cp', src, dst)
9178
if cl_args.dry_run:

source/elements/oneCCL/source/spec/main_objects.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ Communicator
205205

206206
oneCCL specification defines ``communicator`` class that describes a group of communicating ranks, where a rank is an addressable entity in a communication operation and corresponds to single oneCCL device.
207207

208-
``communicator`` defines communication operations on memory buffers between homogenous oneCCL devices, that is, all oneCCL devices either wrap native device objects of the same type (for example CPUs only or GPUs only) or do not wrap native objects.
208+
``communicator`` defines communication operations on memory buffers between homogeneous oneCCL devices, that is, all oneCCL devices either wrap native device objects of the same type (for example CPUs only or GPUs only) or do not wrap native objects.
209209

210210
Each process may correspond to multiple ranks.
211211

source/elements/oneDAL/Doxyfile

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -267,12 +267,6 @@ TAB_SIZE = 4
267267

268268
ALIASES =
269269

270-
# This tag can be used to specify a number of word-keyword mappings (TCL only).
271-
# A mapping has the form "name=value". For example adding "class=itcl::class"
272-
# will allow you to use the command class in the itcl::class meaning.
273-
274-
TCL_SUBST =
275-
276270
# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources
277271
# only. Doxygen will then generate output that is more tailored for C. For
278272
# instance, some of the names that are used will be different. The list of all
@@ -1154,13 +1148,6 @@ VERBATIM_HEADERS = YES
11541148

11551149
ALPHABETICAL_INDEX = YES
11561150

1157-
# The COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns in
1158-
# which the alphabetical index list will be split.
1159-
# Minimum value: 1, maximum value: 20, default value: 5.
1160-
# This tag requires that the tag ALPHABETICAL_INDEX is set to YES.
1161-
1162-
COLS_IN_ALPHA_INDEX = 5
1163-
11641151
# In case all classes in a project start with a common prefix, all classes will
11651152
# be put under the same header in the alphabetical index. The IGNORE_PREFIX tag
11661153
# can be used to specify a prefix (or a list of prefixes) that should be ignored

source/elements/oneDNN/Doxyfile

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -267,12 +267,6 @@ TAB_SIZE = 4
267267

268268
ALIASES =
269269

270-
# This tag can be used to specify a number of word-keyword mappings (TCL only).
271-
# A mapping has the form "name=value". For example adding "class=itcl::class"
272-
# will allow you to use the command class in the itcl::class meaning.
273-
274-
TCL_SUBST =
275-
276270
# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources
277271
# only. Doxygen will then generate output that is more tailored for C. For
278272
# instance, some of the names that are used will be different. The list of all
@@ -1154,13 +1148,6 @@ CLANG_OPTIONS =
11541148

11551149
ALPHABETICAL_INDEX = YES
11561150

1157-
# The COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns in
1158-
# which the alphabetical index list will be split.
1159-
# Minimum value: 1, maximum value: 20, default value: 5.
1160-
# This tag requires that the tag ALPHABETICAL_INDEX is set to YES.
1161-
1162-
COLS_IN_ALPHA_INDEX = 5
1163-
11641151
# In case all classes in a project start with a common prefix, all classes will
11651152
# be put under the same header in the alphabetical index. The IGNORE_PREFIX tag
11661153
# can be used to specify a prefix (or a list of prefixes) that should be ignored

source/elements/oneTBB/source/algorithms/functions/collaborative_call_once_func.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Example
4848
-------
4949

5050
The following example shows a class in which the "Lazy initialization" pattern is implemented on
51-
the "cachedProperty" field.
51+
the ``cachedProperty`` field.
5252

5353

5454
.. code:: cpp

source/elements/oneVPL/Doxyfile

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -267,12 +267,6 @@ TAB_SIZE = 4
267267

268268
ALIASES =
269269

270-
# This tag can be used to specify a number of word-keyword mappings (TCL only).
271-
# A mapping has the form "name=value". For example adding "class=itcl::class"
272-
# will allow you to use the command class in the itcl::class meaning.
273-
274-
TCL_SUBST =
275-
276270
# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources
277271
# only. Doxygen will then generate output that is more tailored for C. For
278272
# instance, some of the names that are used will be different. The list of all
@@ -1154,13 +1148,6 @@ CLANG_OPTIONS =
11541148

11551149
ALPHABETICAL_INDEX = YES
11561150

1157-
# The COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns in
1158-
# which the alphabetical index list will be split.
1159-
# Minimum value: 1, maximum value: 20, default value: 5.
1160-
# This tag requires that the tag ALPHABETICAL_INDEX is set to YES.
1161-
1162-
COLS_IN_ALPHA_INDEX = 5
1163-
11641151
# In case all classes in a project start with a common prefix, all classes will
11651152
# be put under the same header in the alphabetical index. The IGNORE_PREFIX tag
11661153
# can be used to specify a prefix (or a list of prefixes) that should be ignored

source/spelling_wordlist.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -811,3 +811,6 @@ zgebrd
811811
812812
813813
814+
parmeterizes
815+
QNaN
816+
decrementing

0 commit comments

Comments
 (0)