Skip to content

Commit b935225

Browse files
committed
merge from master
2 parents ffe988c + b8d1ccc commit b935225

File tree

12 files changed

+55
-45
lines changed

12 files changed

+55
-45
lines changed

scripts/oneapi.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,11 +120,13 @@ def sphinx(root, target):
120120
if not args.verbose:
121121
os.environ['LATEXMKOPTS'] = '--silent'
122122
os.environ['LATEXOPTS'] = '-interaction=nonstopmode -halt-on-error'
123-
sphinx_args = ''
123+
sphinx_args = '-N -j auto'
124124
if not args.verbose:
125125
sphinx_args += ' -q'
126126
if args.a:
127127
sphinx_args += ' -a'
128+
if args.n:
129+
sphinx_args += ' -n'
128130
shell('%s -M %s %s %s %s' % (sphinx_build,
129131
target,
130132
join(root,source_dir),
@@ -394,7 +396,8 @@ def main():
394396
parser.add_argument('--branch')
395397
parser.add_argument('--verbose', action='store_true')
396398
parser.add_argument('--dry-run', action='store_true')
397-
parser.add_argument('-a', action='store_true')
399+
parser.add_argument('-a', action='store_true', help='sphinx -a (build all files)')
400+
parser.add_argument('-n', action='store_true', help='sphinx -n (nitpicky mode)')
398401
args = parser.parse_args()
399402

400403
commands[args.action](args.root, args.action)

source/conf/common_conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def path_relative_to_repo_root(relative_path):
3131
]
3232

3333
env = {
34-
'oneapi_version': '0.7',
34+
'oneapi_version': '0.8',
3535
'l0_version': '0.91',
3636
}
3737

source/elements/dpcpp/source/index.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
44
.. _onedpcpp-section:
55

6-
=========================
7-
DPC++ |dpcpp_version|
8-
=========================
6+
=====
7+
DPC++
8+
=====
99

1010
Overview
1111
--------

source/elements/l0/source/index.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
44
.. _l0-section:
55

6-
=======================
7-
Level Zero |l0_version|
8-
=======================
6+
==========
7+
Level Zero
8+
==========
99

1010
The |l0_full_name| (Level Zero) provides low-level
1111
direct-to-metal interfaces that are tailored to the devices in a

source/elements/oneCCL/source/index.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
.. _oneCCL-section:
22

3-
====================
4-
oneCCL |ccl_version|
5-
====================
3+
======
4+
oneCCL
5+
======
66

77
.. toctree::
88

source/elements/oneDAL/source/index.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
44
.. _oneDAL-section:
55

6-
==============================
7-
|dal_short_name| |dal_version|
8-
==============================
6+
================
7+
|dal_short_name|
8+
================
99

1010

1111
.. |default_ctor_doc| replace:: Creates a new instance of class \

source/elements/oneDNN/source/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77

88
.. _oneDNN-section:
99

10-
oneDNN |dnn_version|
11-
====================
10+
oneDNN
11+
======
1212

1313
|dnn_full_name| (oneDNN) is a performance library containing building blocks
1414
for for deep learning applications and frameworks. oneDNN supports:

source/elements/oneDPL/source/index.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
44
.. _oneDPL-section:
55

6-
====================
7-
oneDPL |dpl_version|
8-
====================
6+
======
7+
oneDPL
8+
======
99

1010
The |dpl_full_name| (oneDPL) provides the functionality
1111
specified in the C++ standard, with extensions to support data parallelism

source/elements/oneMKL/source/index.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
44
.. _oneMKL-section:
55

6-
====================
7-
oneMKL |mkl_version|
8-
====================
6+
======
7+
oneMKL
8+
======
99

1010
The |mkl_full_name| (oneMKL) defines a set of fundamental mathematical routines for use in high-performance computing and other applications. As part of oneAPI, oneMKL is designed to allow execution on a wide variety of computational devices: CPUs, GPUs, FPGAs, and other accelerators. The functionality is subdivided into several domains: dense linear algebra, sparse linear algebra, discrete Fourier transforms, random number generators and vector math.
1111

source/elements/oneTBB/source/nested-index.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
.. _oneTBB-section:
22

3-
====================
4-
oneTBB |tbb_version|
5-
====================
3+
======
4+
oneTBB
5+
======
66

77
.. toctree::
88
:maxdepth: 2

0 commit comments

Comments
 (0)