Unverified Commit 1405b7ba by Tianqi Chen Committed by GitHub

[DOCS] Minimize necessary doc change (#5129)

parent 7bc0b27e
...@@ -90,7 +90,7 @@ doc: ...@@ -90,7 +90,7 @@ doc:
javadoc: javadoc:
# build artifact is in jvm/core/target/site/apidocs # build artifact is in jvm/core/target/site/apidocs
cd jvm && mvn javadoc:javadoc cd jvm && mvn javadoc:javadoc -Dnotimestamp=true
# Cython build # Cython build
cython: cython:
......
...@@ -1165,7 +1165,7 @@ HTML_COLORSTYLE_GAMMA = 80 ...@@ -1165,7 +1165,7 @@ HTML_COLORSTYLE_GAMMA = 80
# The default value is: YES. # The default value is: YES.
# This tag requires that the tag GENERATE_HTML is set to YES. # This tag requires that the tag GENERATE_HTML is set to YES.
HTML_TIMESTAMP = YES HTML_TIMESTAMP = NO
# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML # If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML
# documentation will contain sections that can be hidden and shown after the # documentation will contain sections that can be hidden and shown after the
......
...@@ -51,7 +51,7 @@ sys.path.insert(0, os.path.join(curr_path, '../vta/python')) ...@@ -51,7 +51,7 @@ sys.path.insert(0, os.path.join(curr_path, '../vta/python'))
# General information about the project. # General information about the project.
project = u'tvm' project = u'tvm'
author = u'Apache Software Foundation' author = u'Apache Software Foundation'
copyright = u'2019, %s' % author copyright = u'2020, %s' % author
github_doc_root = 'https://github.com/apache/incubator-tvm/tree/master/docs/' github_doc_root = 'https://github.com/apache/incubator-tvm/tree/master/docs/'
# add markdown parser # add markdown parser
......
...@@ -34,10 +34,11 @@ find . -type f -path "*.log" | xargs rm -f ...@@ -34,10 +34,11 @@ find . -type f -path "*.log" | xargs rm -f
# C++ doc # C++ doc
make doc make doc
rm -f docs/doxygen/html/*.map docs/doxygen/html/*.md5
mv docs/doxygen docs/_build/html/doxygen mv docs/doxygen docs/_build/html/doxygen
# JS doc # JS doc
jsdoc web/tvm_runtime.js web/README.md jsdoc -c web/.jsdoc_conf.json web/tvm_runtime.js web/README.md
mv out docs/_build/html/jsdoc mv out docs/_build/html/jsdoc
# Java doc # Java doc
......
{
"templates": {
"default": {
"includeDate": false
}
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment