Files
composable_kernel/docs/conf.py
Sam Wu 2268a29786 standardize docs (#655)
[ROCm/composable_kernel commit: f80776d937]
2023-03-23 20:58:59 -07:00

25 lines
599 B
Python

# Configuration file for the Sphinx documentation builder.
#
# This file only contains a selection of the most common options. For a full
# list see the documentation:
# https://www.sphinx-doc.org/en/master/usage/configuration.html
from rocm_docs import ROCmDocs
docs_core = ROCmDocs("Composable Kernel Documentation")
docs_core.run_doxygen()
docs_core.setup()
mathjax3_config = {
'tex': {
'macros': {
'diag': '\\operatorname{diag}',
}
}
}
bibtex_bibfiles = ['refs.bib']
for sphinx_var in ROCmDocs.SPHINX_VARS:
globals()[sphinx_var] = getattr(docs_core, sphinx_var)