Skip to content

Commit

Permalink
Merge branch 'oneapi-src:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaron Johnson authored Nov 10, 2021
2 parents f9b11d4 + d9d350a commit 9ae2225
Show file tree
Hide file tree
Showing 23 changed files with 1,621 additions and 1,149 deletions.
4 changes: 2 additions & 2 deletions oneapi-doc.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.1-provisional-rev-2",
"version": "1.1-rev-1",
"vpl_version": "2.5.0",
"art_version": "0.5-rev-1"
"art_version": "1.0-rev-1"
}
2 changes: 2 additions & 0 deletions source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@
repo_root = '..'
exec(open(join(repo_root, 'source', 'conf', 'common_conf.py')).read())

extensions += ['notfound.extension'] # noqa: F821

# -- Project information -----------------------------------------------------

project = u'oneAPI Specification'
Expand Down
3 changes: 0 additions & 3 deletions source/conf/common_conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,12 @@
)

extensions = [
'notfound.extension',
'sphinx.ext.autodoc',
'sphinx.ext.doctest',
'sphinx.ext.todo',
'sphinx.ext.coverage',
'sphinx.ext.mathjax',
'sphinx.ext.ifconfig',
# 'sphinx.ext.imgconverter',
'sphinx.ext.viewcode',
'sphinx.ext.githubpages',
'sphinx.ext.graphviz',
Expand All @@ -41,7 +39,6 @@
'sphinx_substitution_extensions',
'sphinxcontrib.plantuml',
'breathe',
# 'vplapi',
'dalapi', # oneDAL API generator
]

Expand Down
9 changes: 5 additions & 4 deletions source/elements/dpcpp/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,11 @@
#
import os
import sys
sys.path.insert(0, os.path.abspath(os.path.join('..','..','..','conf')))
# element_conf needs to import this conf
sys.path.insert(0, os.path.abspath('.'))
from os.path import join


project = 'dpcpp'

from element_conf import *
repo_root = join('..', '..', '..', '..')
exec(open(join(repo_root, 'source', 'conf', 'common_conf.py')).read())
exec(open(join(repo_root, 'source', 'conf', 'element_conf.py')).read())
194 changes: 67 additions & 127 deletions source/elements/dpcpp/source/index.rst

Large diffs are not rendered by default.

7 changes: 6 additions & 1 deletion source/elements/element_list.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,9 @@
- :ref:`oneVPL-section`: Algorithms for accelerated video processing
- :ref:`oneMKL-section`: High performance math routines for science,
engineering, and financial applications
- :ref:`oneART-section`: A set of advanced ray tracing and high-fidelity rendering and computation routines for use in a wide variety of 3D graphics uses including, film and television photorealistic visual effects and animation rendering, scientific visualization, high-performance computing computations, gaming, and more.
- :ref:`oneART-section`: A set of advanced ray tracing and
high-fidelity rendering and computation routines for use in a wide
variety of 3D graphics uses including, film and television
photorealistic visual effects and animation rendering, scientific
visualization, high-performance computing computations, gaming, and
more.
2 changes: 1 addition & 1 deletion source/elements/oneART/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
from os.path import join


project = 'oneART'
project = 'Ray Tracing'

repo_root = join('..', '..', '..', '..')
exec(open(join(repo_root, 'source', 'conf', 'common_conf.py')).read())
Expand Down
Loading

0 comments on commit 9ae2225

Please sign in to comment.