-
Notifications
You must be signed in to change notification settings - Fork 176
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[2021.2.1-rls] Enable sklearnex documentation (#613)
- Loading branch information
1 parent
b70d897
commit 24cd6bf
Showing
30 changed files
with
822 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Minimal makefile for Sphinx documentation | ||
# | ||
|
||
# You can set these variables from the command line. | ||
SPHINXOPTS = | ||
SPHINXBUILD = sphinx-build | ||
SPHINXPROJ = daal4py | ||
SOURCEDIR = . | ||
BUILDDIR = _build | ||
|
||
# Put it first so that "make" without argument is like "make help". | ||
help: | ||
@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) | ||
|
||
.PHONY: help Makefile | ||
|
||
# Catch-all target: route all unknown targets to Sphinx using the new | ||
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). | ||
%: Makefile | ||
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
@ECHO OFF | ||
|
||
pushd %~dp0 | ||
|
||
REM Command file for Sphinx documentation | ||
|
||
if "%SPHINXBUILD%" == "" ( | ||
set SPHINXBUILD=sphinx-build | ||
) | ||
set SOURCEDIR=. | ||
set BUILDDIR=_build | ||
set SPHINXPROJ=daal4py | ||
|
||
if "%1" == "" goto help | ||
|
||
%SPHINXBUILD% >NUL 2>NUL | ||
if errorlevel 9009 ( | ||
echo. | ||
echo.The 'sphinx-build' command was not found. Make sure you have Sphinx | ||
echo.installed, then set the SPHINXBUILD environment variable to point | ||
echo.to the full path of the 'sphinx-build' executable. Alternatively you | ||
echo.may add the Sphinx directory to PATH. | ||
echo. | ||
echo.If you don't have Sphinx installed, grab it from | ||
echo.http://sphinx-doc.org/ | ||
exit /b 1 | ||
) | ||
|
||
%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% | ||
goto end | ||
|
||
:help | ||
%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% | ||
|
||
:end | ||
popd |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,120 @@ | ||
/* override table width restrictions */ | ||
@media screen and (min-width: 767px) { | ||
|
||
.wy-table-responsive table td { | ||
/* !important prevents the common CSS stylesheets from overriding | ||
this as on RTD they are loaded after this stylesheet */ | ||
|
||
white-space: normal !important; | ||
} | ||
} | ||
|
||
.code-block-caption { | ||
color: #000; | ||
font: italic 85%/1 arial,sans-serif; | ||
padding: 1em 0; | ||
text-align: center; | ||
} | ||
|
||
|
||
.collapsible { | ||
margin-left: -10px; | ||
background-color: #f1f1f1; | ||
cursor: pointer; | ||
padding: 18px 18px 18px 10px; | ||
width: 100%; | ||
border: none; | ||
text-align: left; | ||
outline: none; | ||
font-weight: 700; | ||
font-family: "Roboto Slab","ff-tisa-web-pro","Georgia",Arial,sans-serif; | ||
} | ||
|
||
code.sig-name.descname { | ||
white-space: initial; | ||
} | ||
|
||
table.optimization-notice td { | ||
white-space: initial; | ||
} | ||
|
||
table.optimization-notice td p:last-child { | ||
text-align: right; | ||
} | ||
|
||
img.with-border { | ||
border:1px solid #021a40; | ||
} | ||
|
||
div.column { | ||
float: left; | ||
width: 50%; | ||
padding: 10px; | ||
} | ||
|
||
/* Clear floats after the columns */ | ||
.column:after { | ||
content: ""; | ||
display: table; | ||
clear: both; | ||
} | ||
|
||
.comparison:after { | ||
content: ""; | ||
display: table; | ||
clear: both; | ||
} | ||
|
||
div.admonition-container { | ||
width: 49%; | ||
padding: 0 3px 0 0; | ||
} | ||
|
||
/* Clear floats after the columns */ | ||
.admonition-container:after { | ||
content: ""; | ||
display: table; | ||
clear: both; | ||
} | ||
|
||
div.quotation { | ||
background-color: #fffff1; | ||
padding: 1em 0 0 1em; | ||
} | ||
|
||
.rst-content div[class^='highlight'] pre { | ||
white-space: pre-wrap; | ||
} | ||
|
||
/* A workaround for https://github.com/readthedocs/sphinx_rtd_theme/issues/647 | ||
* Override display for function signatures so that there is spacing between | ||
* types and arguments */ | ||
.rst-content dl:not(.docutils) dt { | ||
display: table-cell !important; | ||
} | ||
.rst-content dl:not(.docutils) dd { | ||
margin-top: 6px; | ||
} | ||
|
||
/* | ||
.rst-content tt.literal, .rst-content code.literal, .highlight { | ||
background: #f0f0f0; | ||
} | ||
.rst-content tt.literal, .rst-content code.literal { | ||
color: #000000; | ||
}*/ | ||
|
||
|
||
.eqno { | ||
margin-left: 5px; | ||
float: right; | ||
} | ||
.math .headerlink { | ||
display: none; | ||
visibility: hidden; | ||
} | ||
.math:hover .headerlink { | ||
display: inline-block; | ||
visibility: visible; | ||
margin-right: -0.7em; | ||
} |
Oops, something went wrong.