Read the Docs build information Build id: 2201752 Project: advanced-micro-devices-hipfft Version: docs-6.0.0 Commit: 30e3f2c1f09036ee9dadcfe4da4ee828c76ddc9c Date: 2024-05-07T20:05:30.663460Z State: finished Success: True [rtd-command-info] start-time: 2024-05-07T20:06:18.499109Z, end-time: 2024-05-07T20:06:19.010926Z, duration: 0, exit-code: 0 git clone --depth 1 https://github.com/ROCm/hipFFT.git . Cloning into '.'... [rtd-command-info] start-time: 2024-05-07T20:06:19.087931Z, end-time: 2024-05-07T20:06:19.702121Z, duration: 0, exit-code: 0 git fetch origin --force --prune --prune-tags --depth 50 refs/heads/docs/6.0.0:refs/remotes/origin/docs/6.0.0 From https://github.com/ROCm/hipFFT * [new branch] docs/6.0.0 -> origin/docs/6.0.0 [rtd-command-info] start-time: 2024-05-07T20:06:19.834335Z, end-time: 2024-05-07T20:06:19.896959Z, duration: 0, exit-code: 0 git checkout --force origin/docs/6.0.0 Note: switching to 'origin/docs/6.0.0'. You are in 'detached HEAD' state. You can look around, make experimental changes and commit them, and you can discard any commits you make in this state without impacting any branches by switching back to a branch. If you want to create a new branch to retain commits you create, you may do so (now or later) by using -c with the switch command. Example: git switch -c Or undo this operation with: git switch - Turn off this advice by setting config variable advice.detachedHead to false HEAD is now at 30e3f2c Fix doxygen errors [rtd-command-info] start-time: 2024-05-07T20:06:19.964059Z, end-time: 2024-05-07T20:06:20.026575Z, duration: 0, exit-code: 0 git clean -d -f -f [rtd-command-info] start-time: 2024-05-07T20:06:20.100746Z, end-time: 2024-05-07T20:06:20.161600Z, duration: 0, exit-code: 0 cat .readthedocs.yaml # Read the Docs configuration file # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details version: 2 sphinx: configuration: docs/conf.py formats: [htmlzip, pdf, epub] python: install: - requirements: docs/sphinx/requirements.txt build: os: ubuntu-22.04 tools: python: "mambaforge-22.9" conda: environment: docs/environment.yml [rtd-command-info] start-time: 2024-05-07T20:06:30.595546Z, end-time: 2024-05-07T20:06:30.681151Z, duration: 0, exit-code: 0 asdf global python mambaforge-22.9.0-3 [rtd-command-info] start-time: 2024-05-07T20:06:32.429485Z, end-time: 2024-05-07T20:06:32.490605Z, duration: 0, exit-code: 0 cat docs/environment.yml channels: - conda-forge - defaults dependencies: - python=3.10 - pip - doxygen=1.9.8 - pip: - readthedocs-sphinx-ext - -r ./sphinx/requirements.txt - sphinx name: RTD [rtd-command-info] start-time: 2024-05-07T20:06:32.550472Z, end-time: 2024-05-07T20:07:45.647327Z, duration: 73, exit-code: 0 mamba env create --quiet --name docs-6.0.0 --file docs/environment.yml Preparing transaction: ...working... done Verifying transaction: ...working... done Executing transaction: ...working... done Installing pip dependencies: ...working... done Retrieving notices: ...working... done [rtd-command-info] start-time: 2024-05-07T20:07:46.985302Z, end-time: 2024-05-07T20:07:47.046198Z, duration: 0, exit-code: 0 cat docs/conf.py # 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 external_projects_current_project = "hipfft" docs_core = ROCmDocs("hipFFT Documentation") docs_core.run_doxygen(doxygen_root="doxygen", doxygen_path="doxygen/xml") docs_core.setup() for sphinx_var in ROCmDocs.SPHINX_VARS: globals()[sphinx_var] = getattr(docs_core, sphinx_var) ########################################################################### # auto-created readthedocs.org specific configuration # ########################################################################### # # The following code was added during an automated build on readthedocs.org # It is auto created and injected for every build. The result is based on the # conf.py.tmpl file found in the readthedocs.org codebase: # https://github.com/rtfd/readthedocs.org/blob/main/readthedocs/doc_builder/templates/doc_builder/conf.py.tmpl # # Note: this file shouldn't rely on extra dependencies. import importlib import sys import os.path # Borrowed from six. PY3 = sys.version_info[0] == 3 string_types = str if PY3 else basestring from sphinx import version_info # Get suffix for proper linking to GitHub # This is deprecated in Sphinx 1.3+, # as each page can have its own suffix if globals().get('source_suffix', False): if isinstance(source_suffix, string_types): SUFFIX = source_suffix elif isinstance(source_suffix, (list, tuple)): # Sphinx >= 1.3 supports list/tuple to define multiple suffixes SUFFIX = source_suffix[0] elif isinstance(source_suffix, dict): # Sphinx >= 1.8 supports a mapping dictionary for multiple suffixes SUFFIX = list(source_suffix.keys())[0] # make a ``list()`` for py2/py3 compatibility else: # default to .rst SUFFIX = '.rst' else: SUFFIX = '.rst' # Add RTD Static Path. Add to the end because it overwrites previous files. if not 'html_static_path' in globals(): html_static_path = [] if os.path.exists('_static'): html_static_path.append('_static') # Define this variable in case it's not defined by the user. # It defaults to `alabaster` which is the default from Sphinx. # https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-html_theme html_theme = globals().get('html_theme', 'alabaster') #Add project information to the template context. context = { 'html_theme': html_theme, 'current_version': "docs/6.0.0", 'version_slug': "docs-6.0.0", 'MEDIA_URL': "https://media.readthedocs.com/media/", 'STATIC_URL': "https://assets.readthedocs.com/", 'PRODUCTION_DOMAIN': "readthedocs.com", 'proxied_static_path': "/_/static/", 'versions': [ ("latest", "/en/latest/"), ("docs-6.1.0", "/en/docs-6.1.0/"), ("docs-6.0.2", "/en/docs-6.0.2/"), ("docs-6.0.0", "/en/docs-6.0.0/"), ("docs-5.7.1", "/en/docs-5.7.1/"), ("docs-5.7.0", "/en/docs-5.7.0/"), ("docs-5.6.1", "/en/docs-5.6.1/"), ("docs-5.6.0", "/en/docs-5.6.0/"), ("docs-5.5.1", "/en/docs-5.5.1/"), ("docs-5.5.0", "/en/docs-5.5.0/"), ("docs-5.4.4", "/en/docs-5.4.4/"), ("docs-5.4.3", "/en/docs-5.4.3/"), ("docs-5.4.2", "/en/docs-5.4.2/"), ("docs-5.4.1", "/en/docs-5.4.1/"), ("docs-5.4.0", "/en/docs-5.4.0/"), ("docs-5.3.3", "/en/docs-5.3.3/"), ("docs-5.3.2", "/en/docs-5.3.2/"), ("docs-5.3.1", "/en/docs-5.3.1/"), ("docs-5.3.0", "/en/docs-5.3.0/"), ("docs-5.2.3", "/en/docs-5.2.3/"), ("docs-5.2.1", "/en/docs-5.2.1/"), ("docs-5.2.0", "/en/docs-5.2.0/"), ("docs-5.1.3", "/en/docs-5.1.3/"), ("docs-5.1.1", "/en/docs-5.1.1/"), ("docs-5.1.0", "/en/docs-5.1.0/"), ("docs-5.0.2", "/en/docs-5.0.2/"), ("docs-5.0.1", "/en/docs-5.0.1/"), ("docs-5.0.0", "/en/docs-5.0.0/"), ("develop", "/en/develop/"), ], 'downloads': [ ("html", "//rocm.docs.amd.com/_/downloads/hipFFT/en/docs-6.0.0/htmlzip/"), ], 'subprojects': [ ], 'slug': 'advanced-micro-devices-hipfft', 'name': u'hipFFT', 'rtd_language': u'en', 'programming_language': u'words', 'canonical_url': '', 'analytics_code': 'None', 'single_version': False, 'conf_py_path': '/docs/', 'api_host': 'https://readthedocs.com', 'github_user': 'ROCm', 'proxied_api_host': '/_', 'github_repo': 'hipFFT', 'github_version': 'docs/6.0.0', 'display_github': True, 'bitbucket_user': 'None', 'bitbucket_repo': 'None', 'bitbucket_version': 'docs/6.0.0', 'display_bitbucket': False, 'gitlab_user': 'None', 'gitlab_repo': 'None', 'gitlab_version': 'docs/6.0.0', 'display_gitlab': False, 'READTHEDOCS': True, 'using_theme': (html_theme == "default"), 'new_theme': (html_theme == "sphinx_rtd_theme"), 'source_suffix': SUFFIX, 'ad_free': False, 'docsearch_disabled': False, 'user_analytics_code': '', 'global_analytics_code': None, 'commit': '30e3f2c1', } # For sphinx >=1.8 we can use html_baseurl to set the canonical URL. # https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-html_baseurl if version_info >= (1, 8): if not globals().get('html_baseurl'): html_baseurl = context['canonical_url'] context['canonical_url'] = None if 'html_context' in globals(): for key in context: if key not in html_context: html_context[key] = context[key] else: html_context = context # Add custom RTD extension if 'extensions' in globals(): # Insert at the beginning because it can interfere # with other extensions. # See https://github.com/rtfd/readthedocs.org/pull/4054 extensions.insert(0, "readthedocs_ext.readthedocs") else: extensions = ["readthedocs_ext.readthedocs"] # Add External version warning banner to the external version documentation if 'branch' == 'external': extensions.insert(1, "readthedocs_ext.external_version_warning") readthedocs_vcs_url = 'None' readthedocs_build_url = 'https://readthedocs.com/projects/advanced-micro-devices-hipfft/builds/2201752/' project_language = 'en' # User's Sphinx configurations language_user = globals().get('language', None) latex_engine_user = globals().get('latex_engine', None) latex_elements_user = globals().get('latex_elements', None) # Remove this once xindy gets installed in Docker image and XINDYOPS # env variable is supported # https://github.com/rtfd/readthedocs-docker-images/pull/98 latex_use_xindy = False chinese = any([ language_user in ('zh_CN', 'zh_TW'), project_language in ('zh_CN', 'zh_TW'), ]) japanese = any([ language_user == 'ja', project_language == 'ja', ]) if chinese: latex_engine = latex_engine_user or 'xelatex' latex_elements_rtd = { 'preamble': '\\usepackage[UTF8]{ctex}\n', } latex_elements = latex_elements_user or latex_elements_rtd elif japanese: latex_engine = latex_engine_user or 'platex' # Make sure our build directory is always excluded exclude_patterns = globals().get('exclude_patterns', []) exclude_patterns.extend(['_build']) [rtd-command-info] start-time: 2024-05-07T20:07:47.134844Z, end-time: 2024-05-07T20:07:54.152267Z, duration: 7, exit-code: 0 python -m sphinx -T -b html -d _build/doctrees -D language=en . $READTHEDOCS_OUTPUT/html Running Sphinx v7.3.7 /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/conda/docs-6.0.0/lib/python3.10/site-packages/rocm_docs/doxygen.py:22: RemovedInSphinx80Warning: The alias 'sphinx.util.progress_message' is deprecated, use 'sphinx.util.display.progress_message' instead. Check CHANGES for Sphinx API modifications. from sphinx.util import logging, progress_message /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/conda/docs-6.0.0/lib/python3.10/site-packages/breathe/project.py:116: RemovedInSphinx80Warning: Sphinx 8 will drop support for representing paths as strings. Use "pathlib.Path" or "os.fspath" instead. self._default_build_dir = os.path.dirname(app.doctreedir.rstrip(os.sep)) making output directory... done 1.9.8 (00ffe3cd98343427b08707e059559021fb36a4b1*) warning: Tag 'TCL_SUBST' at line 247 of file '/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/Doxyfile' has become obsolete. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u" warning: Tag 'CLANG_ASSISTED_PARSING' at line 1068 of file '/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/Doxyfile' belongs to an option that was not enabled at compile time. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u", or recompile doxygen with this feature enabled. warning: Tag 'CLANG_OPTIONS' at line 1076 of file '/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/Doxyfile' belongs to an option that was not enabled at compile time. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u", or recompile doxygen with this feature enabled. warning: Tag 'COLS_IN_ALPHA_INDEX' at line 1094 of file '/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/Doxyfile' has become obsolete. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u" warning: Tag 'HTML_TIMESTAMP' at line 1230 of file '/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/Doxyfile' has become obsolete. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u" warning: Tag 'FORMULA_TRANSPARENT' at line 1511 of file '/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/Doxyfile' has become obsolete. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u" warning: Tag 'LATEX_SOURCE_CODE' at line 1799 of file '/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/Doxyfile' has become obsolete. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u" warning: Tag 'RTF_SOURCE_CODE' at line 1873 of file '/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/Doxyfile' has become obsolete. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u" warning: Tag 'DOCBOOK_PROGRAMLISTING' at line 1971 of file '/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/Doxyfile' has become obsolete. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u" warning: Tag 'PERL_PATH' at line 2153 of file '/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/Doxyfile' has become obsolete. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u" warning: Tag 'CLASS_DIAGRAMS' at line 2166 of file '/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/Doxyfile' has become obsolete. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u" warning: Tag 'MSCGEN_PATH' at line 2175 of file '/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/Doxyfile' has become obsolete. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u" warning: Tag 'DOT_FONTNAME' at line 2217 of file '/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/Doxyfile' has become obsolete. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u" warning: Tag 'DOT_FONTSIZE' at line 2224 of file '/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/Doxyfile' has become obsolete. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u" warning: Tag 'DOT_TRANSPARENT' at line 2443 of file '/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/Doxyfile' has become obsolete. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u" warning: Changing CLASS_GRAPH option to TEXT because obsolete option CLASS_DIAGRAM was found and set to NO. Doxygen version used: 1.9.8 (00ffe3cd98343427b08707e059559021fb36a4b1*) Searching for include files... Searching for example files... Searching for images... Searching for dot files... Searching for msc files... Searching for dia files... Searching for files to exclude Searching INPUT for files to process... Searching for files in directory /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/library/include/hipfft Reading and parsing tag files Parsing files Preprocessing /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/library/include/hipfft/hipfft.h... Parsing file /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/library/include/hipfft/hipfft.h... Preprocessing /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/library/include/hipfft/hipfftXt.h... Parsing file /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/library/include/hipfft/hipfftXt.h... Preprocessing /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/library/include/hipfft/hiplibxt.h... Parsing file /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/library/include/hipfft/hiplibxt.h... Building macro definition list... Building group list... Building directory list... Building namespace list... Building file list... Building class list... Building concept list... Computing nesting relations for classes... Associating documentation with classes... Associating documentation with concepts... Associating documentation with modules... Building example list... Searching for enumerations... Searching for documented typedefs... Searching for members imported via using declarations... Searching for included using directives... Searching for documented variables... Building interface member list... Building member list... Searching for friends... Searching for documented defines... Computing class inheritance relations... Computing class usage relations... Flushing cached template relations that have become invalid... Computing class relations... Add enum values to enums... Searching for member function documentation... Creating members for template instances... Building page list... Search for main page... Computing page relations... Determining the scope of groups... Computing module relations... Sorting lists... Determining which enums are documented Computing member relations... Building full member lists recursively... Adding members to member groups. Distributing member group documentation. Computing member references... Inheriting documentation... Generating disk names... Adding source references... Adding xrefitems... Sorting member lists... Setting anonymous enum type... Computing dependencies between directories... Generating citations page... Counting members... Counting data structures... Resolving user defined references... Finding anchors and sections in the documentation... Transferring function references... Combining using relations... Adding members to index pages... Correcting members for VHDL... Computing tooltip texts... Generating style sheet... Generating search indices... Generating example documentation... Generating file sources... Generating code for file hipfft.h... Generating code for file hipfftXt.h... Generating code for file hiplibxt.h... Generating file documentation... Generating docs for file hipfft.h... Generating docs for file hipfftXt.h... Generating docs for file hiplibxt.h... Generating page documentation... Generating group documentation... Generating class documentation... Generating docs for compound hipLibXtDesc... Generating docs for compound hipXtDesc... Generating concept documentation... Generating module documentation... Generating namespace documentation... Generating graph info page... Generating directory documentation... Generating index page... Generating page index... Generating topic index... Generating module index... Generating module member index... Generating namespace index... Generating namespace member index... Generating concept index... Generating annotated compound index... Generating alphabetical compound index... Generating hierarchical class index... Generating member index... Generating file index... Generating file member index... Generating example index... finalizing index lists... writing tag file... Generating XML output... Generating XML output for class hipLibXtDesc Generating XML output for class hipXtDesc Generating XML output for file hipfft.h Generating XML output for file hipfftXt.h Generating XML output for file hiplibxt.h Generating XML output for group hipfftXtExecDescriptor Combining RTF output... Running plantuml with JAVA... type lookup cache used 143/65536 hits=1184 misses=144 symbol lookup cache used 227/65536 hits=204 misses=227 finished... doxylink not enabled, skipping setting up the current project Remote mappings will be fetched from RadeonOpenCompute/rocm-docs-core branch=develop Following Github server redirection from /repos/RadeonOpenCompute/rocm-docs-core to /repositories/590674019 myst v3.0.1: MdParserConfig(commonmark_only=False, gfm_only=False, enable_extensions={'substitution', 'replacements', 'dollarmath', 'html_image', 'colon_fence', 'fieldlist'}, disable_syntax=[], all_links_external=False, links_external_new_tab=False, url_schemes=('http', 'https', 'mailto', 'ftp'), ref_domains=None, fence_as_directive=set(), number_code_blocks=[], title_to_header=False, heading_anchors=3, heading_slug_func=None, html_meta={}, footnote_transition=True, words_per_minute=200, substitutions={}, linkify_fuzzy_links=True, dmath_allow_labels=True, dmath_allow_space=True, dmath_allow_digits=True, dmath_double_inline=False, update_mathjax=True, mathjax_classes='tex2jax_process|mathjax_process|math|output_area', enable_checkboxes=False, suppress_warnings=[], highlight_code_blocks=True) loading intersphinx inventory from https://rocm.docs.amd.com/projects/AMDMIGraphX/en/docs-6.0.0/objects.inv... loading intersphinx inventory from https://rocm.docs.amd.com/projects/amdsmi/en/docs-6.0.0/objects.inv... loading intersphinx inventory from https://rocm.docs.amd.com/projects/composable_kernel/en/docs-6.0.0/objects.inv... loading intersphinx inventory from https://rocm.docs.amd.com/projects/HIP/en/docs-6.0.0/objects.inv... loading intersphinx inventory from https://rocm.docs.amd.com/projects/hipBLAS/en/docs-6.0.0/objects.inv... loading intersphinx inventory from https://rocm.docs.amd.com/projects/hipBLASLt/en/docs-6.0.0/objects.inv... loading intersphinx inventory from https://rocm.docs.amd.com/projects/HIPCC/en/docs-6.0.0/objects.inv... loading intersphinx inventory from https://rocm.docs.amd.com/projects/hipCUB/en/docs-6.0.0/objects.inv... loading intersphinx inventory from https://rocm.docs.amd.com/projects/hipFFT/en/docs-6.0.0/objects.inv... loading intersphinx inventory from https://rocm.docs.amd.com/projects/hipfort/en/docs-6.0.0/objects.inv... loading intersphinx inventory from https://rocm.docs.amd.com/projects/HIPIFY/en/docs-6.0.0/objects.inv... loading intersphinx inventory from https://rocm.docs.amd.com/projects/hip-python/en/docs-6.0.0/objects.inv... loading intersphinx inventory from https://rocm.docs.amd.com/projects/hipRAND/en/docs-6.0.0/objects.inv... loading intersphinx inventory from https://rocm.docs.amd.com/projects/hipSOLVER/en/docs-6.0.0/objects.inv... loading intersphinx inventory from https://rocm.docs.amd.com/projects/hipSPARSE/en/docs-6.0.0/objects.inv... loading intersphinx inventory from https://rocm.docs.amd.com/projects/hipSPARSELt/en/docs-6.0.0/objects.inv... loading intersphinx inventory from https://rocm.docs.amd.com/projects/hipTensor/en/docs-6.0.0/objects.inv... loading intersphinx inventory from https://rocm.docs.amd.com/projects/hip-vs/en/docs-6.0.0/objects.inv... loading intersphinx inventory from https://rocm.docs.amd.com/projects/MIOpen/en/docs-6.0.0/objects.inv... loading intersphinx inventory from https://rocm.docs.amd.com/projects/MIVisionX/en/docs-6.0.0/objects.inv... loading intersphinx inventory from https://docs.python.org/3/objects.inv... loading intersphinx inventory from https://rocm.docs.amd.com/projects/rccl/en/docs-6.0.0/objects.inv... loading intersphinx inventory from https://rocm.docs.amd.com/projects/rdc/en/docs-6.0.0/objects.inv... loading intersphinx inventory from https://rocm.docs.amd.com/projects/radeon/en/docs-6.0.0/objects.inv... loading intersphinx inventory from https://rocm.docs.amd.com/projects/rocAL/en/docs-6.0.0/objects.inv... loading intersphinx inventory from https://rocm.docs.amd.com/projects/rocALUTION/en/docs-6.0.0/objects.inv... loading intersphinx inventory from https://rocm.docs.amd.com/projects/rocBLAS/en/docs-6.0.0/objects.inv... loading intersphinx inventory from https://rocm.docs.amd.com/projects/ROCdbgapi/en/docs-6.0.0/objects.inv... loading intersphinx inventory from https://rocm.docs.amd.com/projects/rocDecode/en/docs-6.0.0/objects.inv... loading intersphinx inventory from https://rocm.docs.amd.com/projects/rocFFT/en/docs-6.0.0/objects.inv... loading intersphinx inventory from https://rocm.docs.amd.com/projects/ROCgdb/en/docs-6.0.0/objects.inv... WARNING: failed to reach any of the inventories with the following issues: intersphinx inventory 'https://rocm.docs.amd.com/projects/radeon/en/docs-6.0.0/objects.inv' not fetchable due to : 404 Client Error: Not Found for url: https://rocm.docs.amd.com/projects/radeon/en/docs-6.0.0/objects.inv loading intersphinx inventory from https://rocm.docs.amd.com/en/docs-6.0.0/objects.inv... loading intersphinx inventory from https://rocm.docs.amd.com/projects/rocm-docs-core/en/docs-6.0.0/objects.inv... loading intersphinx inventory from https://rocm.docs.amd.com/projects/install-on-linux/en/docs-6.0.0/objects.inv... loading intersphinx inventory from https://rocm.docs.amd.com/projects/install-on-windows/en/docs-6.0.0/objects.inv... loading intersphinx inventory from https://rocm.docs.amd.com/projects/rocm_smi_lib/en/docs-6.0.0/objects.inv... WARNING: failed to reach any of the inventories with the following issues: intersphinx inventory 'https://rocm.docs.amd.com/projects/rocDecode/en/docs-6.0.0/objects.inv' not fetchable due to : 404 Client Error: Not Found for url: https://rocm.docs.amd.com/projects/rocDecode/en/docs-6.0.0/objects.inv loading intersphinx inventory from https://rocm.docs.amd.com/projects/ROCmCMakeBuildTools/en/docs-6.0.0/objects.inv... loading intersphinx inventory from https://rocm.docs.amd.com/projects/ROCmValidationSuite/en/docs-6.0.0/objects.inv... loading intersphinx inventory from https://rocm.docs.amd.com/projects/rocPRIM/en/docs-6.0.0/objects.inv... loading intersphinx inventory from https://rocm.docs.amd.com/projects/rocprofiler/en/docs-6.0.0/objects.inv... WARNING: failed to reach any of the inventories with the following issues: intersphinx inventory 'https://rocm.docs.amd.com/projects/rocm-docs-core/en/docs-6.0.0/objects.inv' not fetchable due to : 404 Client Error: Not Found for url: https://rocm.docs.amd.com/projects/rocm-docs-core/en/docs-6.0.0/objects.inv loading intersphinx inventory from https://rocm.docs.amd.com/projects/rocRAND/en/docs-6.0.0/objects.inv... loading intersphinx inventory from https://rocm.docs.amd.com/projects/rocSOLVER/en/docs-6.0.0/objects.inv... loading intersphinx inventory from https://rocm.docs.amd.com/projects/rocSPARSE/en/docs-6.0.0/objects.inv... WARNING: failed to reach any of the inventories with the following issues: intersphinx inventory 'https://rocm.docs.amd.com/projects/ROCmCMakeBuildTools/en/docs-6.0.0/objects.inv' not fetchable due to : 404 Client Error: Not Found for url: https://rocm.docs.amd.com/projects/ROCmCMakeBuildTools/en/docs-6.0.0/objects.inv loading intersphinx inventory from https://rocm.docs.amd.com/projects/rocThrust/en/docs-6.0.0/objects.inv... loading intersphinx inventory from https://rocm.docs.amd.com/projects/roctracer/en/docs-6.0.0/objects.inv... loading intersphinx inventory from https://rocm.docs.amd.com/projects/rocWMMA/en/docs-6.0.0/objects.inv... loading intersphinx inventory from https://rocm.docs.amd.com/projects/rpp/en/docs-6.0.0/objects.inv... loading intersphinx inventory from https://docs.readthedocs.io/en/stable/objects.inv... loading intersphinx inventory from https://www.sphinx-doc.org/en/master/objects.inv... loading intersphinx inventory from https://rocm.docs.amd.com/projects/TransferBench/en/docs-6.0.0/objects.inv... [autosummary] generating autosummary for: api.rst, index.rst, overview.rst The default value for `navigation_with_keys` will change to `False` in the next release. If you wish to preserve the old behavior for your site, set `navigation_with_keys=True` in the `html_theme_options` dict in your `conf.py` file. Be aware that `navigation_with_keys = True` has negative accessibility implications: https://github.com/pydata/pydata-sphinx-theme/issues/1492 building [mo]: targets for 0 po files that are out of date writing output... building [html]: targets for 3 source files that are out of date updating environment: [new config] 3 added, 0 changed, 0 removed reading sources... [ 33%] api reading sources... [ 67%] index reading sources... [100%] overview /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/api.rst:26: WARNING: doxygenenum: Cannot find enum "hipfftType_t" in doxygen xml output for project "hipFFT Documentation" from directory: /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/xml /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/api.rst:30: WARNING: doxygenenum: Cannot find enum "hipfftResult_t" in doxygen xml output for project "hipFFT Documentation" from directory: /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/xml /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/api.rst:163: WARNING: doxygenstruct: Cannot find class "hipXtDesc_t" in doxygen xml output for project "hipFFT Documentation" from directory: /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/xml /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/api.rst:164: WARNING: doxygenstruct: Cannot find class "hipLibXtDesc_t" in doxygen xml output for project "hipFFT Documentation" from directory: /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/xml /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/api.rst:1: WARNING: toctree directive not expected with external-toc [etoc.toctree] /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/index.rst:7: WARNING: toctree directive not expected with external-toc [etoc.toctree] /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/index.rst:: WARNING: toctree contains reference to nonexisting document 'allapi' [etoc.ref] /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/index.rst:: WARNING: toctree contains reference to nonexisting document 'license' [etoc.ref] /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/overview.rst:1: WARNING: toctree directive not expected with external-toc [etoc.toctree] looking for now-outdated files... none found pickling environment... done checking consistency... done preparing documents... done copying assets... copying static files... done copying extra files... done done writing output... [ 33%] api writing output... [ 67%] index writing output... [100%] overview generating indices... genindex done writing additional pages... search done dumping search index in English (code: en)... done dumping object inventory... done Updating searchtools for Read the Docs search... ====================== slowest reading durations ======================= 0.631 api 0.006 index 0.005 overview build succeeded, 13 warnings. The HTML pages are in ../_readthedocs/html. [rtd-command-info] start-time: 2024-05-07T20:07:54.223847Z, end-time: 2024-05-07T20:07:57.855226Z, duration: 3, exit-code: 0 python -m sphinx -T -b readthedocssinglehtmllocalmedia -d _build/doctrees -D language=en . $READTHEDOCS_OUTPUT/htmlzip Running Sphinx v7.3.7 /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/conda/docs-6.0.0/lib/python3.10/site-packages/rocm_docs/doxygen.py:22: RemovedInSphinx80Warning: The alias 'sphinx.util.progress_message' is deprecated, use 'sphinx.util.display.progress_message' instead. Check CHANGES for Sphinx API modifications. from sphinx.util import logging, progress_message /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/conda/docs-6.0.0/lib/python3.10/site-packages/breathe/project.py:116: RemovedInSphinx80Warning: Sphinx 8 will drop support for representing paths as strings. Use "pathlib.Path" or "os.fspath" instead. self._default_build_dir = os.path.dirname(app.doctreedir.rstrip(os.sep)) making output directory... done 1.9.8 (00ffe3cd98343427b08707e059559021fb36a4b1*) warning: Tag 'TCL_SUBST' at line 247 of file '/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/Doxyfile' has become obsolete. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u" warning: Tag 'CLANG_ASSISTED_PARSING' at line 1068 of file '/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/Doxyfile' belongs to an option that was not enabled at compile time. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u", or recompile doxygen with this feature enabled. warning: Tag 'CLANG_OPTIONS' at line 1076 of file '/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/Doxyfile' belongs to an option that was not enabled at compile time. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u", or recompile doxygen with this feature enabled. warning: Tag 'COLS_IN_ALPHA_INDEX' at line 1094 of file '/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/Doxyfile' has become obsolete. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u" warning: Tag 'HTML_TIMESTAMP' at line 1230 of file '/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/Doxyfile' has become obsolete. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u" warning: Tag 'FORMULA_TRANSPARENT' at line 1511 of file '/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/Doxyfile' has become obsolete. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u" warning: Tag 'LATEX_SOURCE_CODE' at line 1799 of file '/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/Doxyfile' has become obsolete. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u" warning: Tag 'RTF_SOURCE_CODE' at line 1873 of file '/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/Doxyfile' has become obsolete. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u" warning: Tag 'DOCBOOK_PROGRAMLISTING' at line 1971 of file '/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/Doxyfile' has become obsolete. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u" warning: Tag 'PERL_PATH' at line 2153 of file '/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/Doxyfile' has become obsolete. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u" warning: Tag 'CLASS_DIAGRAMS' at line 2166 of file '/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/Doxyfile' has become obsolete. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u" warning: Tag 'MSCGEN_PATH' at line 2175 of file '/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/Doxyfile' has become obsolete. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u" warning: Tag 'DOT_FONTNAME' at line 2217 of file '/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/Doxyfile' has become obsolete. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u" warning: Tag 'DOT_FONTSIZE' at line 2224 of file '/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/Doxyfile' has become obsolete. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u" warning: Tag 'DOT_TRANSPARENT' at line 2443 of file '/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/Doxyfile' has become obsolete. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u" warning: Changing CLASS_GRAPH option to TEXT because obsolete option CLASS_DIAGRAM was found and set to NO. Doxygen version used: 1.9.8 (00ffe3cd98343427b08707e059559021fb36a4b1*) Searching for include files... Searching for example files... Searching for images... Searching for dot files... Searching for msc files... Searching for dia files... Searching for files to exclude Searching INPUT for files to process... Searching for files in directory /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/library/include/hipfft Reading and parsing tag files Parsing files Preprocessing /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/library/include/hipfft/hipfft.h... Parsing file /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/library/include/hipfft/hipfft.h... Preprocessing /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/library/include/hipfft/hipfftXt.h... Parsing file /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/library/include/hipfft/hipfftXt.h... Preprocessing /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/library/include/hipfft/hiplibxt.h... Parsing file /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/library/include/hipfft/hiplibxt.h... Building macro definition list... Building group list... Building directory list... Building namespace list... Building file list... Building class list... Building concept list... Computing nesting relations for classes... Associating documentation with classes... Associating documentation with concepts... Associating documentation with modules... Building example list... Searching for enumerations... Searching for documented typedefs... Searching for members imported via using declarations... Searching for included using directives... Searching for documented variables... Building interface member list... Building member list... Searching for friends... Searching for documented defines... Computing class inheritance relations... Computing class usage relations... Flushing cached template relations that have become invalid... Computing class relations... Add enum values to enums... Searching for member function documentation... Creating members for template instances... Building page list... Search for main page... Computing page relations... Determining the scope of groups... Computing module relations... Sorting lists... Determining which enums are documented Computing member relations... Building full member lists recursively... Adding members to member groups. Distributing member group documentation. Computing member references... Inheriting documentation... Generating disk names... Adding source references... Adding xrefitems... Sorting member lists... Setting anonymous enum type... Computing dependencies between directories... Generating citations page... Counting members... Counting data structures... Resolving user defined references... Finding anchors and sections in the documentation... Transferring function references... Combining using relations... Adding members to index pages... Correcting members for VHDL... Computing tooltip texts... Generating style sheet... Generating search indices... Generating example documentation... Generating file sources... Generating code for file hipfft.h... Generating code for file hipfftXt.h... Generating code for file hiplibxt.h... Generating file documentation... Generating docs for file hipfft.h... Generating docs for file hipfftXt.h... Generating docs for file hiplibxt.h... Generating page documentation... Generating group documentation... Generating class documentation... Generating docs for compound hipLibXtDesc... Generating docs for compound hipXtDesc... Generating concept documentation... Generating module documentation... Generating namespace documentation... Generating graph info page... Generating directory documentation... Generating index page... Generating page index... Generating topic index... Generating module index... Generating module member index... Generating namespace index... Generating namespace member index... Generating concept index... Generating annotated compound index... Generating alphabetical compound index... Generating hierarchical class index... Generating member index... Generating file index... Generating file member index... Generating example index... finalizing index lists... writing tag file... Generating XML output... Generating XML output for class hipLibXtDesc Generating XML output for class hipXtDesc Generating XML output for file hipfft.h Generating XML output for file hipfftXt.h Generating XML output for file hiplibxt.h Generating XML output for group hipfftXtExecDescriptor Combining RTF output... Running plantuml with JAVA... type lookup cache used 143/65536 hits=1184 misses=144 symbol lookup cache used 227/65536 hits=204 misses=227 finished... doxylink not enabled, skipping setting up the current project Remote mappings will be fetched from RadeonOpenCompute/rocm-docs-core branch=develop Following Github server redirection from /repos/RadeonOpenCompute/rocm-docs-core to /repositories/590674019 loading pickled environment... done myst v3.0.1: MdParserConfig(commonmark_only=False, gfm_only=False, enable_extensions={'substitution', 'dollarmath', 'replacements', 'html_image', 'colon_fence', 'fieldlist'}, disable_syntax=[], all_links_external=False, links_external_new_tab=False, url_schemes=('http', 'https', 'mailto', 'ftp'), ref_domains=None, fence_as_directive=set(), number_code_blocks=[], title_to_header=False, heading_anchors=3, heading_slug_func=None, html_meta={}, footnote_transition=True, words_per_minute=200, substitutions={}, linkify_fuzzy_links=True, dmath_allow_labels=True, dmath_allow_space=True, dmath_allow_digits=True, dmath_double_inline=False, update_mathjax=True, mathjax_classes='tex2jax_process|mathjax_process|math|output_area', enable_checkboxes=False, suppress_warnings=[], highlight_code_blocks=True) loading intersphinx inventory from https://rocm.docs.amd.com/projects/radeon/en/docs-6.0.0/objects.inv... loading intersphinx inventory from https://rocm.docs.amd.com/projects/rocDecode/en/docs-6.0.0/objects.inv... loading intersphinx inventory from https://rocm.docs.amd.com/projects/rocm-docs-core/en/docs-6.0.0/objects.inv... loading intersphinx inventory from https://rocm.docs.amd.com/projects/ROCmCMakeBuildTools/en/docs-6.0.0/objects.inv... WARNING: failed to reach any of the inventories with the following issues: intersphinx inventory 'https://rocm.docs.amd.com/projects/ROCmCMakeBuildTools/en/docs-6.0.0/objects.inv' not fetchable due to : 404 Client Error: Not Found for url: https://rocm.docs.amd.com/projects/ROCmCMakeBuildTools/en/docs-6.0.0/objects.inv WARNING: failed to reach any of the inventories with the following issues: intersphinx inventory 'https://rocm.docs.amd.com/projects/rocm-docs-core/en/docs-6.0.0/objects.inv' not fetchable due to : 404 Client Error: Not Found for url: https://rocm.docs.amd.com/projects/rocm-docs-core/en/docs-6.0.0/objects.inv WARNING: failed to reach any of the inventories with the following issues: intersphinx inventory 'https://rocm.docs.amd.com/projects/rocDecode/en/docs-6.0.0/objects.inv' not fetchable due to : 404 Client Error: Not Found for url: https://rocm.docs.amd.com/projects/rocDecode/en/docs-6.0.0/objects.inv WARNING: failed to reach any of the inventories with the following issues: intersphinx inventory 'https://rocm.docs.amd.com/projects/radeon/en/docs-6.0.0/objects.inv' not fetchable due to : 404 Client Error: Not Found for url: https://rocm.docs.amd.com/projects/radeon/en/docs-6.0.0/objects.inv [autosummary] generating autosummary for: api.rst, index.rst, overview.rst The default value for `navigation_with_keys` will change to `False` in the next release. If you wish to preserve the old behavior for your site, set `navigation_with_keys=True` in the `html_theme_options` dict in your `conf.py` file. Be aware that `navigation_with_keys = True` has negative accessibility implications: https://github.com/pydata/pydata-sphinx-theme/issues/1492 building [mo]: targets for 0 po files that are out of date writing output... building [readthedocssinglehtmllocalmedia]: all documents updating environment: 0 added, 2 changed, 0 removed reading sources... [ 50%] api reading sources... [100%] index /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/api.rst:26: WARNING: doxygenenum: Cannot find enum "hipfftType_t" in doxygen xml output for project "hipFFT Documentation" from directory: /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/xml /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/api.rst:30: WARNING: doxygenenum: Cannot find enum "hipfftResult_t" in doxygen xml output for project "hipFFT Documentation" from directory: /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/xml /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/api.rst:163: WARNING: doxygenstruct: Cannot find class "hipXtDesc_t" in doxygen xml output for project "hipFFT Documentation" from directory: /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/xml /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/api.rst:164: WARNING: doxygenstruct: Cannot find class "hipLibXtDesc_t" in doxygen xml output for project "hipFFT Documentation" from directory: /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/xml /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/api.rst:1: WARNING: toctree directive not expected with external-toc [etoc.toctree] /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/index.rst:7: WARNING: toctree directive not expected with external-toc [etoc.toctree] /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/index.rst:: WARNING: toctree contains reference to nonexisting document 'allapi' [etoc.ref] /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/index.rst:: WARNING: toctree contains reference to nonexisting document 'license' [etoc.ref] looking for now-outdated files... none found pickling environment... done checking consistency... done preparing documents... done assembling single document... overview api done writing... done writing additional files... done copying static files... done copying extra files... done dumping object inventory... done Updating searchtools for Read the Docs search... ====================== slowest reading durations ======================= 0.637 api 0.007 index build succeeded, 12 warnings. The HTML page is in ../_readthedocs/htmlzip. [rtd-command-info] start-time: 2024-05-07T20:07:58.520262Z, end-time: 2024-05-07T20:08:01.749600Z, duration: 3, exit-code: 0 python -m sphinx -T -b latex -d _build/doctrees -D language=en . $READTHEDOCS_OUTPUT/pdf Running Sphinx v7.3.7 /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/conda/docs-6.0.0/lib/python3.10/site-packages/rocm_docs/doxygen.py:22: RemovedInSphinx80Warning: The alias 'sphinx.util.progress_message' is deprecated, use 'sphinx.util.display.progress_message' instead. Check CHANGES for Sphinx API modifications. from sphinx.util import logging, progress_message /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/conda/docs-6.0.0/lib/python3.10/site-packages/breathe/project.py:116: RemovedInSphinx80Warning: Sphinx 8 will drop support for representing paths as strings. Use "pathlib.Path" or "os.fspath" instead. self._default_build_dir = os.path.dirname(app.doctreedir.rstrip(os.sep)) making output directory... done 1.9.8 (00ffe3cd98343427b08707e059559021fb36a4b1*) warning: Tag 'TCL_SUBST' at line 247 of file '/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/Doxyfile' has become obsolete. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u" warning: Tag 'CLANG_ASSISTED_PARSING' at line 1068 of file '/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/Doxyfile' belongs to an option that was not enabled at compile time. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u", or recompile doxygen with this feature enabled. warning: Tag 'CLANG_OPTIONS' at line 1076 of file '/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/Doxyfile' belongs to an option that was not enabled at compile time. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u", or recompile doxygen with this feature enabled. warning: Tag 'COLS_IN_ALPHA_INDEX' at line 1094 of file '/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/Doxyfile' has become obsolete. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u" warning: Tag 'HTML_TIMESTAMP' at line 1230 of file '/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/Doxyfile' has become obsolete. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u" warning: Tag 'FORMULA_TRANSPARENT' at line 1511 of file '/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/Doxyfile' has become obsolete. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u" warning: Tag 'LATEX_SOURCE_CODE' at line 1799 of file '/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/Doxyfile' has become obsolete. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u" warning: Tag 'RTF_SOURCE_CODE' at line 1873 of file '/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/Doxyfile' has become obsolete. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u" warning: Tag 'DOCBOOK_PROGRAMLISTING' at line 1971 of file '/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/Doxyfile' has become obsolete. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u" warning: Tag 'PERL_PATH' at line 2153 of file '/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/Doxyfile' has become obsolete. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u" warning: Tag 'CLASS_DIAGRAMS' at line 2166 of file '/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/Doxyfile' has become obsolete. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u" warning: Tag 'MSCGEN_PATH' at line 2175 of file '/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/Doxyfile' has become obsolete. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u" warning: Tag 'DOT_FONTNAME' at line 2217 of file '/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/Doxyfile' has become obsolete. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u" warning: Tag 'DOT_FONTSIZE' at line 2224 of file '/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/Doxyfile' has become obsolete. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u" warning: Tag 'DOT_TRANSPARENT' at line 2443 of file '/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/Doxyfile' has become obsolete. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u" warning: Changing CLASS_GRAPH option to TEXT because obsolete option CLASS_DIAGRAM was found and set to NO. Doxygen version used: 1.9.8 (00ffe3cd98343427b08707e059559021fb36a4b1*) Searching for include files... Searching for example files... Searching for images... Searching for dot files... Searching for msc files... Searching for dia files... Searching for files to exclude Searching INPUT for files to process... Searching for files in directory /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/library/include/hipfft Reading and parsing tag files Parsing files Preprocessing /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/library/include/hipfft/hipfft.h... Parsing file /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/library/include/hipfft/hipfft.h... Preprocessing /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/library/include/hipfft/hipfftXt.h... Parsing file /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/library/include/hipfft/hipfftXt.h... Preprocessing /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/library/include/hipfft/hiplibxt.h... Parsing file /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/library/include/hipfft/hiplibxt.h... Building macro definition list... Building group list... Building directory list... Building namespace list... Building file list... Building class list... Building concept list... Computing nesting relations for classes... Associating documentation with classes... Associating documentation with concepts... Associating documentation with modules... Building example list... Searching for enumerations... Searching for documented typedefs... Searching for members imported via using declarations... Searching for included using directives... Searching for documented variables... Building interface member list... Building member list... Searching for friends... Searching for documented defines... Computing class inheritance relations... Computing class usage relations... Flushing cached template relations that have become invalid... Computing class relations... Add enum values to enums... Searching for member function documentation... Creating members for template instances... Building page list... Search for main page... Computing page relations... Determining the scope of groups... Computing module relations... Sorting lists... Determining which enums are documented Computing member relations... Building full member lists recursively... Adding members to member groups. Distributing member group documentation. Computing member references... Inheriting documentation... Generating disk names... Adding source references... Adding xrefitems... Sorting member lists... Setting anonymous enum type... Computing dependencies between directories... Generating citations page... Counting members... Counting data structures... Resolving user defined references... Finding anchors and sections in the documentation... Transferring function references... Combining using relations... Adding members to index pages... Correcting members for VHDL... Computing tooltip texts... Generating style sheet... Generating search indices... Generating example documentation... Generating file sources... Generating code for file hipfft.h... Generating code for file hipfftXt.h... Generating code for file hiplibxt.h... Generating file documentation... Generating docs for file hipfft.h... Generating docs for file hipfftXt.h... Generating docs for file hiplibxt.h... Generating page documentation... Generating group documentation... Generating class documentation... Generating docs for compound hipLibXtDesc... Generating docs for compound hipXtDesc... Generating concept documentation... Generating module documentation... Generating namespace documentation... Generating graph info page... Generating directory documentation... Generating index page... Generating page index... Generating topic index... Generating module index... Generating module member index... Generating namespace index... Generating namespace member index... Generating concept index... Generating annotated compound index... Generating alphabetical compound index... Generating hierarchical class index... Generating member index... Generating file index... Generating file member index... Generating example index... finalizing index lists... writing tag file... Generating XML output... Generating XML output for class hipLibXtDesc Generating XML output for class hipXtDesc Generating XML output for file hipfft.h Generating XML output for file hipfftXt.h Generating XML output for file hiplibxt.h Generating XML output for group hipfftXtExecDescriptor Combining RTF output... Running plantuml with JAVA... type lookup cache used 143/65536 hits=1184 misses=144 symbol lookup cache used 227/65536 hits=204 misses=227 finished... doxylink not enabled, skipping setting up the current project Remote mappings will be fetched from RadeonOpenCompute/rocm-docs-core branch=develop Following Github server redirection from /repos/RadeonOpenCompute/rocm-docs-core to /repositories/590674019 loading pickled environment... done myst v3.0.1: MdParserConfig(commonmark_only=False, gfm_only=False, enable_extensions={'html_image', 'replacements', 'fieldlist', 'colon_fence', 'substitution', 'dollarmath'}, disable_syntax=[], all_links_external=False, links_external_new_tab=False, url_schemes=('http', 'https', 'mailto', 'ftp'), ref_domains=None, fence_as_directive=set(), number_code_blocks=[], title_to_header=False, heading_anchors=3, heading_slug_func=None, html_meta={}, footnote_transition=True, words_per_minute=200, substitutions={}, linkify_fuzzy_links=True, dmath_allow_labels=True, dmath_allow_space=True, dmath_allow_digits=True, dmath_double_inline=False, update_mathjax=True, mathjax_classes='tex2jax_process|mathjax_process|math|output_area', enable_checkboxes=False, suppress_warnings=[], highlight_code_blocks=True) loading intersphinx inventory from https://rocm.docs.amd.com/projects/radeon/en/docs-6.0.0/objects.inv... loading intersphinx inventory from https://rocm.docs.amd.com/projects/rocDecode/en/docs-6.0.0/objects.inv... loading intersphinx inventory from https://rocm.docs.amd.com/projects/rocm-docs-core/en/docs-6.0.0/objects.inv... loading intersphinx inventory from https://rocm.docs.amd.com/projects/ROCmCMakeBuildTools/en/docs-6.0.0/objects.inv... WARNING: failed to reach any of the inventories with the following issues: intersphinx inventory 'https://rocm.docs.amd.com/projects/ROCmCMakeBuildTools/en/docs-6.0.0/objects.inv' not fetchable due to : 404 Client Error: Not Found for url: https://rocm.docs.amd.com/projects/ROCmCMakeBuildTools/en/docs-6.0.0/objects.inv WARNING: failed to reach any of the inventories with the following issues: intersphinx inventory 'https://rocm.docs.amd.com/projects/radeon/en/docs-6.0.0/objects.inv' not fetchable due to : 404 Client Error: Not Found for url: https://rocm.docs.amd.com/projects/radeon/en/docs-6.0.0/objects.inv WARNING: failed to reach any of the inventories with the following issues: intersphinx inventory 'https://rocm.docs.amd.com/projects/rocDecode/en/docs-6.0.0/objects.inv' not fetchable due to : 404 Client Error: Not Found for url: https://rocm.docs.amd.com/projects/rocDecode/en/docs-6.0.0/objects.inv WARNING: failed to reach any of the inventories with the following issues: intersphinx inventory 'https://rocm.docs.amd.com/projects/rocm-docs-core/en/docs-6.0.0/objects.inv' not fetchable due to : 404 Client Error: Not Found for url: https://rocm.docs.amd.com/projects/rocm-docs-core/en/docs-6.0.0/objects.inv [autosummary] generating autosummary for: api.rst, index.rst, overview.rst building [mo]: targets for 0 po files that are out of date writing output... building [latex]: all documents updating environment: 0 added, 2 changed, 0 removed reading sources... [ 50%] api reading sources... [100%] index /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/api.rst:26: WARNING: doxygenenum: Cannot find enum "hipfftType_t" in doxygen xml output for project "hipFFT Documentation" from directory: /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/xml /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/api.rst:30: WARNING: doxygenenum: Cannot find enum "hipfftResult_t" in doxygen xml output for project "hipFFT Documentation" from directory: /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/xml /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/api.rst:163: WARNING: doxygenstruct: Cannot find class "hipXtDesc_t" in doxygen xml output for project "hipFFT Documentation" from directory: /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/xml /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/api.rst:164: WARNING: doxygenstruct: Cannot find class "hipLibXtDesc_t" in doxygen xml output for project "hipFFT Documentation" from directory: /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/xml /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/api.rst:1: WARNING: toctree directive not expected with external-toc [etoc.toctree] /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/index.rst:7: WARNING: toctree directive not expected with external-toc [etoc.toctree] /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/index.rst:: WARNING: toctree contains reference to nonexisting document 'allapi' [etoc.ref] /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/index.rst:: WARNING: toctree contains reference to nonexisting document 'license' [etoc.ref] looking for now-outdated files... none found pickling environment... done checking consistency... done copying TeX support files... copying TeX support files... done processing python.tex... index overview api resolving references... done writing... done Missing searchtools: /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/_readthedocs/pdf/_static/searchtools.js ====================== slowest reading durations ======================= 0.649 api 0.007 index build succeeded, 12 warnings. The LaTeX files are in ../_readthedocs/pdf. Run 'make' in that directory to run these through (pdf)latex (use `make latexpdf' here to do that automatically). [rtd-command-info] start-time: 2024-05-07T20:08:01.830514Z, end-time: 2024-05-07T20:08:01.894825Z, duration: 0, exit-code: 0 cat latexmkrc $latex = 'latex ' . $ENV{'LATEXOPTS'} . ' %O %S'; $pdflatex = 'pdflatex ' . $ENV{'LATEXOPTS'} . ' %O %S'; $lualatex = 'lualatex ' . $ENV{'LATEXOPTS'} . ' %O %S'; $xelatex = 'xelatex --no-pdf ' . $ENV{'LATEXOPTS'} . ' %O %S'; $makeindex = 'makeindex -s python.ist %O -o %D %S'; add_cus_dep( "glo", "gls", 0, "makeglo" ); sub makeglo { return system( "makeindex -s gglo.ist -o '$_[0].gls' '$_[0].glo'" ); } [rtd-command-info] start-time: 2024-05-07T20:08:01.952393Z, end-time: 2024-05-07T20:08:05.330419Z, duration: 3, exit-code: 0 latexmk -r latexmkrc -pdf -f -dvi- -ps- -jobname=advanced-micro-devices-hipfft -interaction=nonstopmode Use of uninitialized value in concatenation (.) or string at (eval 10) line 1. Use of uninitialized value in concatenation (.) or string at (eval 10) line 2. Use of uninitialized value in concatenation (.) or string at (eval 10) line 3. Use of uninitialized value in concatenation (.) or string at (eval 10) line 4. Subroutine makeglo redefined at (eval 11) line 7. Use of uninitialized value in concatenation (.) or string at (eval 11) line 1. Use of uninitialized value in concatenation (.) or string at (eval 11) line 2. Use of uninitialized value in concatenation (.) or string at (eval 11) line 3. Use of uninitialized value in concatenation (.) or string at (eval 11) line 4. Rc files read: /etc/LatexMk latexmkrc latexmkrc Latexmk: This is Latexmk, John Collins, 20 November 2021, version: 4.76. Rule 'pdflatex': File changes, etc: Changed files, or newly in use since previous run(s): 'python.tex' ------------ Run number 1 of rule 'pdflatex' ------------ ------------ Running 'pdflatex -interaction=nonstopmode -recorder --jobname="advanced-micro-devices-hipfft" "python.tex"' ------------ Latexmk: applying rule 'pdflatex'... This is pdfTeX, Version 3.141592653-2.6-1.40.22 (TeX Live 2022/dev/Debian) (preloaded format=pdflatex) restricted \write18 enabled. entering extended mode (./python.tex LaTeX2e <2021-11-15> patch level 1 L3 programming layer <2022-01-21> (./sphinxmanual.cls Document Class: sphinxmanual 2019/12/01 v2.3.0 Document class (Sphinx manual) (/usr/share/texlive/texmf-dist/tex/latex/base/report.cls Document Class: report 2021/10/04 v1.4n Standard LaTeX document class (/usr/share/texlive/texmf-dist/tex/latex/base/size10.clo))) (/usr/share/texlive/texmf-dist/tex/latex/base/inputenc.sty) (/usr/share/texlive/texmf-dist/tex/latex/cmap/cmap.sty) (/usr/share/texlive/texmf-dist/tex/latex/base/fontenc.sty<>) (/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsmath.sty For additional information on amsmath, use the `?' option. (/usr/share/texlive/texmf-dist/tex/latex/amsmath/amstext.sty (/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsgen.sty)) (/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsbsy.sty) (/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsopn.sty)) (/usr/share/texlive/texmf-dist/tex/latex/amsfonts/amssymb.sty (/usr/share/texlive/texmf-dist/tex/latex/amsfonts/amsfonts.sty)) (/usr/share/texlive/texmf-dist/tex/generic/babel/babel.sty (/usr/share/texlive/texmf-dist/tex/generic/babel/txtbabel.def) (/usr/share/texlive/texmf-dist/tex/generic/babel-english/english.ldf)) (/usr/share/texmf/tex/latex/tex-gyre/tgtermes.sty (/usr/share/texlive/texmf-dist/tex/latex/kvoptions/kvoptions.sty (/usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty) (/usr/share/texlive/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty) (/usr/share/texlive/texmf-dist/tex/generic/kvsetkeys/kvsetkeys.sty))) (/usr/share/texmf/tex/latex/tex-gyre/tgheros.sty) (/usr/share/texlive/texmf-dist/tex/latex/fncychap/fncychap.sty) (./sphinx.sty (/usr/share/texlive/texmf-dist/tex/latex/xcolor/xcolor.sty (/usr/share/texlive/texmf-dist/tex/latex/graphics-cfg/color.cfg) (/usr/share/texlive/texmf-dist/tex/latex/graphics-def/pdftex.def)) (./sphinxoptionshyperref.sty) (./sphinxoptionsgeometry.sty) (/usr/share/texlive/texmf-dist/tex/latex/base/textcomp.sty) (/usr/share/texlive/texmf-dist/tex/latex/float/float.sty) (/usr/share/texlive/texmf-dist/tex/latex/wrapfig/wrapfig.sty) (/usr/share/texlive/texmf-dist/tex/latex/capt-of/capt-of.sty) (/usr/share/texlive/texmf-dist/tex/latex/tools/multicol.sty) (/usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty (/usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty (/usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty) (/usr/share/texlive/texmf-dist/tex/latex/graphics-cfg/graphics.cfg))) (./sphinxlatexgraphics.sty) (./sphinxpackageboxes.sty (/usr/share/texlive/texmf-dist/tex/latex/pict2e/pict2e.sty (/usr/share/texlive/texmf-dist/tex/latex/pict2e/pict2e.cfg) (/usr/share/texlive/texmf-dist/tex/latex/pict2e/p2e-pdftex.def)) (/usr/share/texlive/texmf-dist/tex/latex/ellipse/ellipse.sty)) (./sphinxlatexadmonitions.sty (/usr/share/texlive/texmf-dist/tex/latex/framed/framed.sty)) (./sphinxlatexliterals.sty (/usr/share/texlive/texmf-dist/tex/latex/fancyvrb/fancyvrb.sty) (/usr/share/texlive/texmf-dist/tex/latex/base/alltt.sty) (/usr/share/texlive/texmf-dist/tex/latex/upquote/upquote.sty) (/usr/share/texlive/texmf-dist/tex/latex/needspace/needspace.sty)) (./sphinxlatexshadowbox.sty) (./sphinxlatexcontainers.sty) (./sphinxhighlight.sty) (./sphinxlatextables.sty (/usr/share/texlive/texmf-dist/tex/latex/tabulary/tabulary.sty (/usr/share/texlive/texmf-dist/tex/latex/tools/array.sty)) (/usr/share/texlive/texmf-dist/tex/latex/tools/longtable.sty) (/usr/share/texlive/texmf-dist/tex/latex/varwidth/varwidth.sty) (/usr/share/texlive/texmf-dist/tex/latex/colortbl/colortbl.sty) (/usr/share/texlive/texmf-dist/tex/latex/booktabs/booktabs.sty)) (./sphinxlatexnumfig.sty) (./sphinxlatexlists.sty) (./sphinxpackagefootnote.sty ) (./sphinxlatexindbibtoc.sty (/usr/share/texlive/texmf-dist/tex/latex/base/makeidx.sty)) (./sphinxlatexstylepage.sty (/usr/share/texlive/texmf-dist/tex/latex/parskip/parskip.sty (/usr/share/texlive/texmf-dist/tex/latex/parskip/parskip-2001-04-09.sty)) (/usr/share/texlive/texmf-dist/tex/latex/fancyhdr/fancyhdr.sty)) (./sphinxlatexstyleheadings.sty (/usr/share/texlive/texmf-dist/tex/latex/titlesec/titlesec.sty)) (./sphinxlatexstyletext.sty) (./sphinxlatexobjects.sty)) (/usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty (/usr/share/texlive/texmf-dist/tex/generic/iftex/ifvtex.sty (/usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty))) (/usr/share/texlive/texmf-dist/tex/latex/hyperref/hyperref.sty (/usr/share/texlive/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty (/usr/share/texlive/texmf-dist/tex/generic/infwarerr/infwarerr.sty)) (/usr/share/texlive/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty) (/usr/share/texlive/texmf-dist/tex/generic/pdfescape/pdfescape.sty) (/usr/share/texlive/texmf-dist/tex/latex/hycolor/hycolor.sty) (/usr/share/texlive/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty) (/usr/share/texlive/texmf-dist/tex/latex/auxhook/auxhook.sty) (/usr/share/texlive/texmf-dist/tex/latex/hyperref/pd1enc.def) (/usr/share/texlive/texmf-dist/tex/latex/hyperref/hyperref-langpatches.def) (/usr/share/texlive/texmf-dist/tex/generic/intcalc/intcalc.sty) (/usr/share/texlive/texmf-dist/tex/generic/etexcmds/etexcmds.sty) (/usr/share/texlive/texmf-dist/tex/latex/hyperref/puenc.def) (/usr/share/texlive/texmf-dist/tex/latex/url/url.sty) (/usr/share/texlive/texmf-dist/tex/generic/bitset/bitset.sty (/usr/share/texlive/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty)) (/usr/share/texlive/texmf-dist/tex/latex/base/atbegshi-ltx.sty)) (/usr/share/texlive/texmf-dist/tex/latex/hyperref/hpdftex.def (/usr/share/texlive/texmf-dist/tex/latex/base/atveryend-ltx.sty) (/usr/share/texlive/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty (/usr/share/texlive/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty))) (/usr/share/texlive/texmf-dist/tex/latex/oberdiek/hypcap.sty) (./sphinxmessages.sty) Writing index file advanced-micro-devices-hipfft.idx (/usr/share/texmf/tex/latex/tex-gyre/t1qtm.fd) (/usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def) (./advanced-micro-devices-hipfft.aux) (/usr/share/texlive/texmf-dist/tex/context/base/mkii/supp-pdf.mkii [Loading MPS to PDF converter (version 2006.09.02).] ) (/usr/share/texlive/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty (/usr/share/texlive/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg)) *geometry* driver: auto-detecting *geometry* detected driver: pdftex (/usr/share/texlive/texmf-dist/tex/latex/hyperref/nameref.sty (/usr/share/texlive/texmf-dist/tex/latex/refcount/refcount.sty) (/usr/share/texlive/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty)) (/usr/share/texmf/tex/latex/tex-gyre/t1qhv.fd)<><><><> (/usr/share/texlive/texmf-dist/tex/latex/amsfonts/umsa.fd) (/usr/share/texlive/texmf-dist/tex/latex/amsfonts/umsb.fd) Overfull \hbox (174.46388pt too wide) in paragraph at lines 81--81 [][] [1{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}] [2] [1] [2] [1] [2] Chapter 1. (/usr/share/texmf/tex/latex/tex-gyre/ts1qtm.fd) [3] [4] Chapter 2. (/usr/share/texlive/texmf-dist/tex/latex/txfonts/t1txtt.fd) [5] LaTeX Warning: Hyper reference `api:_CPPv412hipfftHandle' on page 6 undefined o n input line 217. LaTeX Warning: Hyper reference `api:_CPPv412hipfftHandle' on page 6 undefined o n input line 255. LaTeX Warning: Hyper reference `api:_CPPv412hipfftHandle' on page 6 undefined o n input line 293. [6] LaTeX Warning: Hyper reference `api:_CPPv412hipfftHandle' on page 7 undefined o n input line 346. LaTeX Warning: Hyper reference `api:_CPPv412hipfftHandle' on page 7 undefined o n input line 360. LaTeX Warning: Hyper reference `api:_CPPv412hipfftHandle' on page 7 undefined o n input line 374. LaTeX Warning: Hyper reference `api:_CPPv412hipfftHandle' on page 7 undefined o n input line 401. LaTeX Warning: Hyper reference `api:_CPPv412hipfftHandle' on page 7 undefined o n input line 443. LaTeX Warning: Hyper reference `api:_CPPv412hipfftHandle' on page 7 undefined o n input line 485. [7] LaTeX Warning: Hyper reference `api:_CPPv412hipfftHandle' on page 8 undefined o n input line 534. LaTeX Warning: Hyper reference `api:_CPPv412hipfftHandle' on page 8 undefined o n input line 619. [8] [9] [10] LaTeX Warning: Hyper reference `api:_CPPv412hipfftHandle' on page 11 undefined on input line 905. LaTeX Warning: Hyper reference `api:_CPPv412hipfftHandle' on page 11 undefined on input line 944. LaTeX Warning: Hyper reference `api:_CPPv412hipfftHandle' on page 11 undefined on input line 983. LaTeX Warning: Hyper reference `api:_CPPv412hipfftHandle' on page 11 undefined on input line 1026. [11] LaTeX Warning: Hyper reference `api:_CPPv412hipfftHandle' on page 12 undefined on input line 1093. LaTeX Warning: Hyper reference `api:hipfft_xt_8h_1a8635fab320bc65b26477471df45f ee8f' on page 12 undefined on input line 1100. [12] LaTeX Warning: Hyper reference `api:_CPPv412hipfftHandle' on page 13 undefined on input line 1184. LaTeX Warning: Hyper reference `api:_CPPv412hipfftHandle' on page 13 undefined on input line 1222. LaTeX Warning: Hyper reference `api:_CPPv412hipfftHandle' on page 13 undefined on input line 1256. LaTeX Warning: Hyper reference `api:_CPPv412hipfftHandle' on page 13 undefined on input line 1290. LaTeX Warning: Hyper reference `api:_CPPv412hipfftHandle' on page 13 undefined on input line 1328. [13] LaTeX Warning: Hyper reference `api:_CPPv412hipfftHandle' on page 14 undefined on input line 1362. LaTeX Warning: Hyper reference `api:_CPPv412hipfftHandle' on page 14 undefined on input line 1396. LaTeX Warning: Hyper reference `api:_CPPv412hipfftHandle' on page 14 undefined on input line 1440. LaTeX Warning: Hyper reference `api:_CPPv412hipfftHandle' on page 14 undefined on input line 1478. [14] LaTeX Warning: Hyper reference `api:_CPPv412hipfftHandle' on page 15 undefined on input line 1508. LaTeX Warning: Hyper reference `api:_CPPv412hipfftHandle' on page 15 undefined on input line 1544. LaTeX Warning: Hyper reference `api:_CPPv415hipfftXtSetGPUs12hipfftHandleiPi' o n page 15 undefined on input line 1545. LaTeX Warning: Hyper reference `api:_CPPv414hipfftXtMalloc12hipfftHandlePP12hip LibXtDesc17hipfftXtSubFormat' on page 15 undefined on input line 1548. LaTeX Warning: Hyper reference `api:_CPPv412hipfftXtFreeP12hipLibXtDesc' on pag e 15 undefined on input line 1548. LaTeX Warning: Hyper reference `api:_CPPv414hipfftXtMemcpy12hipfftHandlePvPv16h ipfftXtCopyType' on page 15 undefined on input line 1549. LaTeX Warning: Hyper reference `api:_CPPv422hipfftXtExecDescriptor12hipfftHandl eP12hipLibXtDescP12hipLibXtDesci' on page 15 undefined on input line 1555. LaTeX Warning: Hyper reference `api:_CPPv412hipfftHandle' on page 15 undefined on input line 1562. LaTeX Warning: Hyper reference `api:hipfft_8h_1ac29ff23b8787a79ed3aeb7b9a4a9641 1' on page 15 undefined on input line 1572. LaTeX Warning: Hyper reference `api:hipfft_8h_1a161c62bdc08dcfa8ca37c220a82a8a8 c' on page 15 undefined on input line 1572. LaTeX Warning: Hyper reference `api:hipfft_8h_1a48f69945bde62d42c003f5dfd42d4c4 5' on page 15 undefined on input line 1572. LaTeX Warning: Hyper reference `api:hipfft_8h_1aec4cf36f90582ece527d4633faca469 3' on page 15 undefined on input line 1572. [15] LaTeX Warning: Hyper reference `api:_CPPv412hipfftHandle' on page 16 undefined on input line 1614. LaTeX Warning: Hyper reference `api:hipfft_xt_8h_1a69db1daa9a85fb326a6b2b70c3f6 4dd9' on page 16 undefined on input line 1627. LaTeX Warning: Hyper reference `api:hipfft_xt_8h_1a56270d18a1e5709044f71849fe8c b1a4' on page 16 undefined on input line 1646. LaTeX Warning: Hyper reference `api:_CPPv412hipfftHandle' on page 16 undefined on input line 1661. [16] LaTeX Warning: Hyper reference `api:_CPPv412hipfftHandle' on page 17 undefined on input line 1716. LaTeX Warning: Hyper reference `api:_CPPv412hipfftHandle' on page 17 undefined on input line 1730. LaTeX Warning: Hyper reference `api:_CPPv412hipfftHandle' on page 17 undefined on input line 1744. LaTeX Warning: Hyper reference `api:_CPPv412hipfftHandle' on page 17 undefined on input line 1758. LaTeX Warning: Hyper reference `api:_CPPv412hipfftHandle' on page 17 undefined on input line 1772. LaTeX Warning: Hyper reference `api:_CPPv412hipfftHandle' on page 17 undefined on input line 1786. LaTeX Warning: Hyper reference `api:_CPPv412hipfftHandle' on page 17 undefined on input line 1800. No file advanced-micro-devices-hipfft.ind. [17] (./advanced-micro-devices-hipfft.aux) LaTeX Warning: There were undefined references. LaTeX Warning: Label(s) may have changed. Rerun to get cross-references right. Package rerunfilecheck Warning: File `advanced-micro-devices-hipfft.out' has ch anged. (rerunfilecheck) Rerun to get outlines right (rerunfilecheck) or use package `bookmark'. ) (see the transcript file for additional information){/usr/share/texmf/fonts/enc /dvips/tex-gyre/q-ec.enc}{/usr/share/texmf/fonts/enc/dvips/tex-gyre/q-ts1.enc}< /usr/share/texmf/fonts/type1/public/tex-gyre/qhvb.pfb> Output written on advanced-micro-devices-hipfft.pdf (21 pages, 155164 bytes). Transcript written on advanced-micro-devices-hipfft.log. Latexmk: Index file 'advanced-micro-devices-hipfft.idx' was written Latexmk: Missing input file 'advanced-micro-devices-hipfft.ind' (or dependence on it) from following: 'No file advanced-micro-devices-hipfft.ind.' Latexmk: References changed. Latexmk: References changed. Latexmk: Log file says output to 'advanced-micro-devices-hipfft.pdf' Rule 'makeindex advanced-micro-devices-hipfft.idx': File changes, etc: Changed files, or newly in use since previous run(s): 'advanced-micro-devices-hipfft.idx' ------------ Run number 1 of rule 'makeindex advanced-micro-devices-hipfft.idx' ------------ ------------ Running 'makeindex -s python.ist -o "advanced-micro-devices-hipfft.ind" "advanced-micro-devices-hipfft.idx"' ------------ Latexmk: Examining 'advanced-micro-devices-hipfft.log' === TeX engine is 'pdfTeX' Latexmk: applying rule 'makeindex advanced-micro-devices-hipfft.idx'... This is makeindex, version 2.15 [TeX Live 2022/dev] (kpathsea + Thai support). Scanning style file ./python.ist.......done (7 attributes redefined, 0 ignored). Scanning input file advanced-micro-devices-hipfft.idx....done (44 entries accepted, 0 rejected). Sorting entries....done (258 comparisons). Generating output file advanced-micro-devices-hipfft.ind....done (53 lines written, 0 warnings). Output written in advanced-micro-devices-hipfft.ind. Transcript written in advanced-micro-devices-hipfft.ilg. Rule 'pdflatex': File changes, etc: Changed files, or newly in use since previous run(s): 'advanced-micro-devices-hipfft.aux' 'advanced-micro-devices-hipfft.ind' 'advanced-micro-devices-hipfft.out' ------------ Run number 2 of rule 'pdflatex' ------------ ------------ Running 'pdflatex -interaction=nonstopmode -recorder --jobname="advanced-micro-devices-hipfft" "python.tex"' ------------ Latexmk: applying rule 'pdflatex'... This is pdfTeX, Version 3.141592653-2.6-1.40.22 (TeX Live 2022/dev/Debian) (preloaded format=pdflatex) restricted \write18 enabled. entering extended mode (./python.tex LaTeX2e <2021-11-15> patch level 1 L3 programming layer <2022-01-21> (./sphinxmanual.cls Document Class: sphinxmanual 2019/12/01 v2.3.0 Document class (Sphinx manual) (/usr/share/texlive/texmf-dist/tex/latex/base/report.cls Document Class: report 2021/10/04 v1.4n Standard LaTeX document class (/usr/share/texlive/texmf-dist/tex/latex/base/size10.clo))) (/usr/share/texlive/texmf-dist/tex/latex/base/inputenc.sty) (/usr/share/texlive/texmf-dist/tex/latex/cmap/cmap.sty) (/usr/share/texlive/texmf-dist/tex/latex/base/fontenc.sty<>) (/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsmath.sty For additional information on amsmath, use the `?' option. (/usr/share/texlive/texmf-dist/tex/latex/amsmath/amstext.sty (/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsgen.sty)) (/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsbsy.sty) (/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsopn.sty)) (/usr/share/texlive/texmf-dist/tex/latex/amsfonts/amssymb.sty (/usr/share/texlive/texmf-dist/tex/latex/amsfonts/amsfonts.sty)) (/usr/share/texlive/texmf-dist/tex/generic/babel/babel.sty (/usr/share/texlive/texmf-dist/tex/generic/babel/txtbabel.def) (/usr/share/texlive/texmf-dist/tex/generic/babel-english/english.ldf)) (/usr/share/texmf/tex/latex/tex-gyre/tgtermes.sty (/usr/share/texlive/texmf-dist/tex/latex/kvoptions/kvoptions.sty (/usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty) (/usr/share/texlive/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty) (/usr/share/texlive/texmf-dist/tex/generic/kvsetkeys/kvsetkeys.sty))) (/usr/share/texmf/tex/latex/tex-gyre/tgheros.sty) (/usr/share/texlive/texmf-dist/tex/latex/fncychap/fncychap.sty) (./sphinx.sty (/usr/share/texlive/texmf-dist/tex/latex/xcolor/xcolor.sty (/usr/share/texlive/texmf-dist/tex/latex/graphics-cfg/color.cfg) (/usr/share/texlive/texmf-dist/tex/latex/graphics-def/pdftex.def)) (./sphinxoptionshyperref.sty) (./sphinxoptionsgeometry.sty) (/usr/share/texlive/texmf-dist/tex/latex/base/textcomp.sty) (/usr/share/texlive/texmf-dist/tex/latex/float/float.sty) (/usr/share/texlive/texmf-dist/tex/latex/wrapfig/wrapfig.sty) (/usr/share/texlive/texmf-dist/tex/latex/capt-of/capt-of.sty) (/usr/share/texlive/texmf-dist/tex/latex/tools/multicol.sty) (/usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty (/usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty (/usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty) (/usr/share/texlive/texmf-dist/tex/latex/graphics-cfg/graphics.cfg))) (./sphinxlatexgraphics.sty) (./sphinxpackageboxes.sty (/usr/share/texlive/texmf-dist/tex/latex/pict2e/pict2e.sty (/usr/share/texlive/texmf-dist/tex/latex/pict2e/pict2e.cfg) (/usr/share/texlive/texmf-dist/tex/latex/pict2e/p2e-pdftex.def)) (/usr/share/texlive/texmf-dist/tex/latex/ellipse/ellipse.sty)) (./sphinxlatexadmonitions.sty (/usr/share/texlive/texmf-dist/tex/latex/framed/framed.sty)) (./sphinxlatexliterals.sty (/usr/share/texlive/texmf-dist/tex/latex/fancyvrb/fancyvrb.sty) (/usr/share/texlive/texmf-dist/tex/latex/base/alltt.sty) (/usr/share/texlive/texmf-dist/tex/latex/upquote/upquote.sty) (/usr/share/texlive/texmf-dist/tex/latex/needspace/needspace.sty)) (./sphinxlatexshadowbox.sty) (./sphinxlatexcontainers.sty) (./sphinxhighlight.sty) (./sphinxlatextables.sty (/usr/share/texlive/texmf-dist/tex/latex/tabulary/tabulary.sty (/usr/share/texlive/texmf-dist/tex/latex/tools/array.sty)) (/usr/share/texlive/texmf-dist/tex/latex/tools/longtable.sty) (/usr/share/texlive/texmf-dist/tex/latex/varwidth/varwidth.sty) (/usr/share/texlive/texmf-dist/tex/latex/colortbl/colortbl.sty) (/usr/share/texlive/texmf-dist/tex/latex/booktabs/booktabs.sty)) (./sphinxlatexnumfig.sty) (./sphinxlatexlists.sty) (./sphinxpackagefootnote.sty ) (./sphinxlatexindbibtoc.sty (/usr/share/texlive/texmf-dist/tex/latex/base/makeidx.sty)) (./sphinxlatexstylepage.sty (/usr/share/texlive/texmf-dist/tex/latex/parskip/parskip.sty (/usr/share/texlive/texmf-dist/tex/latex/parskip/parskip-2001-04-09.sty)) (/usr/share/texlive/texmf-dist/tex/latex/fancyhdr/fancyhdr.sty)) (./sphinxlatexstyleheadings.sty (/usr/share/texlive/texmf-dist/tex/latex/titlesec/titlesec.sty)) (./sphinxlatexstyletext.sty) (./sphinxlatexobjects.sty)) (/usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty (/usr/share/texlive/texmf-dist/tex/generic/iftex/ifvtex.sty (/usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty))) (/usr/share/texlive/texmf-dist/tex/latex/hyperref/hyperref.sty (/usr/share/texlive/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty (/usr/share/texlive/texmf-dist/tex/generic/infwarerr/infwarerr.sty)) (/usr/share/texlive/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty) (/usr/share/texlive/texmf-dist/tex/generic/pdfescape/pdfescape.sty) (/usr/share/texlive/texmf-dist/tex/latex/hycolor/hycolor.sty) (/usr/share/texlive/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty) (/usr/share/texlive/texmf-dist/tex/latex/auxhook/auxhook.sty) (/usr/share/texlive/texmf-dist/tex/latex/hyperref/pd1enc.def) (/usr/share/texlive/texmf-dist/tex/latex/hyperref/hyperref-langpatches.def) (/usr/share/texlive/texmf-dist/tex/generic/intcalc/intcalc.sty) (/usr/share/texlive/texmf-dist/tex/generic/etexcmds/etexcmds.sty) (/usr/share/texlive/texmf-dist/tex/latex/hyperref/puenc.def) (/usr/share/texlive/texmf-dist/tex/latex/url/url.sty) (/usr/share/texlive/texmf-dist/tex/generic/bitset/bitset.sty (/usr/share/texlive/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty)) (/usr/share/texlive/texmf-dist/tex/latex/base/atbegshi-ltx.sty)) (/usr/share/texlive/texmf-dist/tex/latex/hyperref/hpdftex.def (/usr/share/texlive/texmf-dist/tex/latex/base/atveryend-ltx.sty) (/usr/share/texlive/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty (/usr/share/texlive/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty))) (/usr/share/texlive/texmf-dist/tex/latex/oberdiek/hypcap.sty) (./sphinxmessages.sty) Writing index file advanced-micro-devices-hipfft.idx (/usr/share/texmf/tex/latex/tex-gyre/t1qtm.fd) (/usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def) (./advanced-micro-devices-hipfft.aux) (/usr/share/texlive/texmf-dist/tex/context/base/mkii/supp-pdf.mkii [Loading MPS to PDF converter (version 2006.09.02).] ) (/usr/share/texlive/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty (/usr/share/texlive/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg)) *geometry* driver: auto-detecting *geometry* detected driver: pdftex (/usr/share/texlive/texmf-dist/tex/latex/hyperref/nameref.sty (/usr/share/texlive/texmf-dist/tex/latex/refcount/refcount.sty) (/usr/share/texlive/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty)) (./advanced-micro-devices-hipfft.out) (./advanced-micro-devices-hipfft.out) (/usr/share/texmf/tex/latex/tex-gyre/t1qhv.fd)<><><><> (/usr/share/texlive/texmf-dist/tex/latex/amsfonts/umsa.fd) (/usr/share/texlive/texmf-dist/tex/latex/amsfonts/umsb.fd) Overfull \hbox (174.46388pt too wide) in paragraph at lines 81--81 [][] [1{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}] [2] (./advanced-micro-devices-hipfft.toc) [1] [2] [1] [2] Chapter 1. (/usr/share/texmf/tex/latex/tex-gyre/ts1qtm.fd) [3] [4] Chapter 2. (/usr/share/texlive/texmf-dist/tex/latex/txfonts/t1txtt.fd) [5] [6] [7] [8] [9] [10] [11] [12] [13] [14] [15] [16] (./advanced-micro-devices-hipfft.ind [17] [18] [19]) (./advanced-micro-devices-hipfft.aux) Package rerunfilecheck Warning: File `advanced-micro-devices-hipfft.out' has ch anged. (rerunfilecheck) Rerun to get outlines right (rerunfilecheck) or use package `bookmark'. ) (see the transcript file for additional information){/usr/share/texmf/fonts/enc /dvips/tex-gyre/q-ec.enc}{/usr/share/texmf/fonts/enc/dvips/tex-gyre/q-ts1.enc}< /usr/share/texmf/fonts/type1/public/tex-gyre/qhvb.pfb> Output written on advanced-micro-devices-hipfft.pdf (23 pages, 180047 bytes). Transcript written on advanced-micro-devices-hipfft.log. Latexmk: Index file 'advanced-micro-devices-hipfft.idx' was written Latexmk: References changed. Latexmk: Log file says output to 'advanced-micro-devices-hipfft.pdf' Rule 'pdflatex': File changes, etc: Changed files, or newly in use since previous run(s): 'advanced-micro-devices-hipfft.aux' 'advanced-micro-devices-hipfft.out' 'advanced-micro-devices-hipfft.toc' ------------ Run number 3 of rule 'pdflatex' ------------ Latexmk: Examining 'advanced-micro-devices-hipfft.log' === TeX engine is 'pdfTeX' Latexmk: applying rule 'pdflatex'... ------------ Running 'pdflatex -interaction=nonstopmode -recorder --jobname="advanced-micro-devices-hipfft" "python.tex"' ------------ This is pdfTeX, Version 3.141592653-2.6-1.40.22 (TeX Live 2022/dev/Debian) (preloaded format=pdflatex) restricted \write18 enabled. entering extended mode (./python.tex LaTeX2e <2021-11-15> patch level 1 L3 programming layer <2022-01-21> (./sphinxmanual.cls Document Class: sphinxmanual 2019/12/01 v2.3.0 Document class (Sphinx manual) (/usr/share/texlive/texmf-dist/tex/latex/base/report.cls Document Class: report 2021/10/04 v1.4n Standard LaTeX document class (/usr/share/texlive/texmf-dist/tex/latex/base/size10.clo))) (/usr/share/texlive/texmf-dist/tex/latex/base/inputenc.sty) (/usr/share/texlive/texmf-dist/tex/latex/cmap/cmap.sty) (/usr/share/texlive/texmf-dist/tex/latex/base/fontenc.sty<>) (/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsmath.sty For additional information on amsmath, use the `?' option. (/usr/share/texlive/texmf-dist/tex/latex/amsmath/amstext.sty (/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsgen.sty)) (/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsbsy.sty) (/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsopn.sty)) (/usr/share/texlive/texmf-dist/tex/latex/amsfonts/amssymb.sty (/usr/share/texlive/texmf-dist/tex/latex/amsfonts/amsfonts.sty)) (/usr/share/texlive/texmf-dist/tex/generic/babel/babel.sty (/usr/share/texlive/texmf-dist/tex/generic/babel/txtbabel.def) (/usr/share/texlive/texmf-dist/tex/generic/babel-english/english.ldf)) (/usr/share/texmf/tex/latex/tex-gyre/tgtermes.sty (/usr/share/texlive/texmf-dist/tex/latex/kvoptions/kvoptions.sty (/usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty) (/usr/share/texlive/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty) (/usr/share/texlive/texmf-dist/tex/generic/kvsetkeys/kvsetkeys.sty))) (/usr/share/texmf/tex/latex/tex-gyre/tgheros.sty) (/usr/share/texlive/texmf-dist/tex/latex/fncychap/fncychap.sty) (./sphinx.sty (/usr/share/texlive/texmf-dist/tex/latex/xcolor/xcolor.sty (/usr/share/texlive/texmf-dist/tex/latex/graphics-cfg/color.cfg) (/usr/share/texlive/texmf-dist/tex/latex/graphics-def/pdftex.def)) (./sphinxoptionshyperref.sty) (./sphinxoptionsgeometry.sty) (/usr/share/texlive/texmf-dist/tex/latex/base/textcomp.sty) (/usr/share/texlive/texmf-dist/tex/latex/float/float.sty) (/usr/share/texlive/texmf-dist/tex/latex/wrapfig/wrapfig.sty) (/usr/share/texlive/texmf-dist/tex/latex/capt-of/capt-of.sty) (/usr/share/texlive/texmf-dist/tex/latex/tools/multicol.sty) (/usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty (/usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty (/usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty) (/usr/share/texlive/texmf-dist/tex/latex/graphics-cfg/graphics.cfg))) (./sphinxlatexgraphics.sty) (./sphinxpackageboxes.sty (/usr/share/texlive/texmf-dist/tex/latex/pict2e/pict2e.sty (/usr/share/texlive/texmf-dist/tex/latex/pict2e/pict2e.cfg) (/usr/share/texlive/texmf-dist/tex/latex/pict2e/p2e-pdftex.def)) (/usr/share/texlive/texmf-dist/tex/latex/ellipse/ellipse.sty)) (./sphinxlatexadmonitions.sty (/usr/share/texlive/texmf-dist/tex/latex/framed/framed.sty)) (./sphinxlatexliterals.sty (/usr/share/texlive/texmf-dist/tex/latex/fancyvrb/fancyvrb.sty) (/usr/share/texlive/texmf-dist/tex/latex/base/alltt.sty) (/usr/share/texlive/texmf-dist/tex/latex/upquote/upquote.sty) (/usr/share/texlive/texmf-dist/tex/latex/needspace/needspace.sty)) (./sphinxlatexshadowbox.sty) (./sphinxlatexcontainers.sty) (./sphinxhighlight.sty) (./sphinxlatextables.sty (/usr/share/texlive/texmf-dist/tex/latex/tabulary/tabulary.sty (/usr/share/texlive/texmf-dist/tex/latex/tools/array.sty)) (/usr/share/texlive/texmf-dist/tex/latex/tools/longtable.sty) (/usr/share/texlive/texmf-dist/tex/latex/varwidth/varwidth.sty) (/usr/share/texlive/texmf-dist/tex/latex/colortbl/colortbl.sty) (/usr/share/texlive/texmf-dist/tex/latex/booktabs/booktabs.sty)) (./sphinxlatexnumfig.sty) (./sphinxlatexlists.sty) (./sphinxpackagefootnote.sty ) (./sphinxlatexindbibtoc.sty (/usr/share/texlive/texmf-dist/tex/latex/base/makeidx.sty)) (./sphinxlatexstylepage.sty (/usr/share/texlive/texmf-dist/tex/latex/parskip/parskip.sty (/usr/share/texlive/texmf-dist/tex/latex/parskip/parskip-2001-04-09.sty)) (/usr/share/texlive/texmf-dist/tex/latex/fancyhdr/fancyhdr.sty)) (./sphinxlatexstyleheadings.sty (/usr/share/texlive/texmf-dist/tex/latex/titlesec/titlesec.sty)) (./sphinxlatexstyletext.sty) (./sphinxlatexobjects.sty)) (/usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty (/usr/share/texlive/texmf-dist/tex/generic/iftex/ifvtex.sty (/usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty))) (/usr/share/texlive/texmf-dist/tex/latex/hyperref/hyperref.sty (/usr/share/texlive/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty (/usr/share/texlive/texmf-dist/tex/generic/infwarerr/infwarerr.sty)) (/usr/share/texlive/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty) (/usr/share/texlive/texmf-dist/tex/generic/pdfescape/pdfescape.sty) (/usr/share/texlive/texmf-dist/tex/latex/hycolor/hycolor.sty) (/usr/share/texlive/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty) (/usr/share/texlive/texmf-dist/tex/latex/auxhook/auxhook.sty) (/usr/share/texlive/texmf-dist/tex/latex/hyperref/pd1enc.def) (/usr/share/texlive/texmf-dist/tex/latex/hyperref/hyperref-langpatches.def) (/usr/share/texlive/texmf-dist/tex/generic/intcalc/intcalc.sty) (/usr/share/texlive/texmf-dist/tex/generic/etexcmds/etexcmds.sty) (/usr/share/texlive/texmf-dist/tex/latex/hyperref/puenc.def) (/usr/share/texlive/texmf-dist/tex/latex/url/url.sty) (/usr/share/texlive/texmf-dist/tex/generic/bitset/bitset.sty (/usr/share/texlive/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty)) (/usr/share/texlive/texmf-dist/tex/latex/base/atbegshi-ltx.sty)) (/usr/share/texlive/texmf-dist/tex/latex/hyperref/hpdftex.def (/usr/share/texlive/texmf-dist/tex/latex/base/atveryend-ltx.sty) (/usr/share/texlive/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty (/usr/share/texlive/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty))) (/usr/share/texlive/texmf-dist/tex/latex/oberdiek/hypcap.sty) (./sphinxmessages.sty) Writing index file advanced-micro-devices-hipfft.idx (/usr/share/texmf/tex/latex/tex-gyre/t1qtm.fd) (/usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def) (./advanced-micro-devices-hipfft.aux) (/usr/share/texlive/texmf-dist/tex/context/base/mkii/supp-pdf.mkii [Loading MPS to PDF converter (version 2006.09.02).] ) (/usr/share/texlive/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty (/usr/share/texlive/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg)) *geometry* driver: auto-detecting *geometry* detected driver: pdftex (/usr/share/texlive/texmf-dist/tex/latex/hyperref/nameref.sty (/usr/share/texlive/texmf-dist/tex/latex/refcount/refcount.sty) (/usr/share/texlive/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty)) (./advanced-micro-devices-hipfft.out) (./advanced-micro-devices-hipfft.out) (/usr/share/texmf/tex/latex/tex-gyre/t1qhv.fd)<><><><> (/usr/share/texlive/texmf-dist/tex/latex/amsfonts/umsa.fd) (/usr/share/texlive/texmf-dist/tex/latex/amsfonts/umsb.fd) Overfull \hbox (174.46388pt too wide) in paragraph at lines 81--81 [][] [1{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}] [2] (./advanced-micro-devices-hipfft.toc) [1] [2] [1] [2] Chapter 1. (/usr/share/texmf/tex/latex/tex-gyre/ts1qtm.fd) [3] [4] Chapter 2. (/usr/share/texlive/texmf-dist/tex/latex/txfonts/t1txtt.fd) [5] [6] [7] [8] [9] [10] [11] [12] [13] [14] [15] [16] (./advanced-micro-devices-hipfft.ind [17] [18] [19]) (./advanced-micro-devices-hipfft.aux) ) (see the transcript file for additional information){/usr/share/texmf/fonts/enc /dvips/tex-gyre/q-ec.enc}{/usr/share/texmf/fonts/enc/dvips/tex-gyre/q-ts1.enc}< /usr/share/texmf/fonts/type1/public/tex-gyre/qhvb.pfb> Output written on advanced-micro-devices-hipfft.pdf (23 pages, 180544 bytes). Transcript written on advanced-micro-devices-hipfft.log. Latexmk: Index file 'advanced-micro-devices-hipfft.idx' was written Latexmk: Log file says output to 'advanced-micro-devices-hipfft.pdf' Latexmk: Examining 'advanced-micro-devices-hipfft.log' === TeX engine is 'pdfTeX' Latexmk: All targets (advanced-micro-devices-hipfft.pdf) are up-to-date [rtd-command-info] start-time: 2024-05-07T20:08:05.655910Z, end-time: 2024-05-07T20:08:08.975697Z, duration: 3, exit-code: 0 python -m sphinx -T -b epub -d _build/doctrees -D language=en . $READTHEDOCS_OUTPUT/epub Running Sphinx v7.3.7 /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/conda/docs-6.0.0/lib/python3.10/site-packages/rocm_docs/doxygen.py:22: RemovedInSphinx80Warning: The alias 'sphinx.util.progress_message' is deprecated, use 'sphinx.util.display.progress_message' instead. Check CHANGES for Sphinx API modifications. from sphinx.util import logging, progress_message /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/conda/docs-6.0.0/lib/python3.10/site-packages/breathe/project.py:116: RemovedInSphinx80Warning: Sphinx 8 will drop support for representing paths as strings. Use "pathlib.Path" or "os.fspath" instead. self._default_build_dir = os.path.dirname(app.doctreedir.rstrip(os.sep)) making output directory... done 1.9.8 (00ffe3cd98343427b08707e059559021fb36a4b1*) warning: Tag 'TCL_SUBST' at line 247 of file '/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/Doxyfile' has become obsolete. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u" warning: Tag 'CLANG_ASSISTED_PARSING' at line 1068 of file '/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/Doxyfile' belongs to an option that was not enabled at compile time. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u", or recompile doxygen with this feature enabled. warning: Tag 'CLANG_OPTIONS' at line 1076 of file '/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/Doxyfile' belongs to an option that was not enabled at compile time. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u", or recompile doxygen with this feature enabled. warning: Tag 'COLS_IN_ALPHA_INDEX' at line 1094 of file '/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/Doxyfile' has become obsolete. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u" warning: Tag 'HTML_TIMESTAMP' at line 1230 of file '/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/Doxyfile' has become obsolete. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u" warning: Tag 'FORMULA_TRANSPARENT' at line 1511 of file '/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/Doxyfile' has become obsolete. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u" warning: Tag 'LATEX_SOURCE_CODE' at line 1799 of file '/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/Doxyfile' has become obsolete. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u" warning: Tag 'RTF_SOURCE_CODE' at line 1873 of file '/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/Doxyfile' has become obsolete. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u" warning: Tag 'DOCBOOK_PROGRAMLISTING' at line 1971 of file '/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/Doxyfile' has become obsolete. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u" warning: Tag 'PERL_PATH' at line 2153 of file '/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/Doxyfile' has become obsolete. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u" warning: Tag 'CLASS_DIAGRAMS' at line 2166 of file '/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/Doxyfile' has become obsolete. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u" warning: Tag 'MSCGEN_PATH' at line 2175 of file '/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/Doxyfile' has become obsolete. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u" warning: Tag 'DOT_FONTNAME' at line 2217 of file '/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/Doxyfile' has become obsolete. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u" warning: Tag 'DOT_FONTSIZE' at line 2224 of file '/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/Doxyfile' has become obsolete. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u" warning: Tag 'DOT_TRANSPARENT' at line 2443 of file '/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/Doxyfile' has become obsolete. To avoid this warning please remove this line from your configuration file or upgrade it using "doxygen -u" warning: Changing CLASS_GRAPH option to TEXT because obsolete option CLASS_DIAGRAM was found and set to NO. Doxygen version used: 1.9.8 (00ffe3cd98343427b08707e059559021fb36a4b1*) Searching for include files... Searching for example files... Searching for images... Searching for dot files... Searching for msc files... Searching for dia files... Searching for files to exclude Searching INPUT for files to process... Searching for files in directory /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/library/include/hipfft Reading and parsing tag files Parsing files Preprocessing /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/library/include/hipfft/hipfft.h... Parsing file /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/library/include/hipfft/hipfft.h... Preprocessing /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/library/include/hipfft/hipfftXt.h... Parsing file /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/library/include/hipfft/hipfftXt.h... Preprocessing /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/library/include/hipfft/hiplibxt.h... Parsing file /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/library/include/hipfft/hiplibxt.h... Building macro definition list... Building group list... Building directory list... Building namespace list... Building file list... Building class list... Building concept list... Computing nesting relations for classes... Associating documentation with classes... Associating documentation with concepts... Associating documentation with modules... Building example list... Searching for enumerations... Searching for documented typedefs... Searching for members imported via using declarations... Searching for included using directives... Searching for documented variables... Building interface member list... Building member list... Searching for friends... Searching for documented defines... Computing class inheritance relations... Computing class usage relations... Flushing cached template relations that have become invalid... Computing class relations... Add enum values to enums... Searching for member function documentation... Creating members for template instances... Building page list... Search for main page... Computing page relations... Determining the scope of groups... Computing module relations... Sorting lists... Determining which enums are documented Computing member relations... Building full member lists recursively... Adding members to member groups. Distributing member group documentation. Computing member references... Inheriting documentation... Generating disk names... Adding source references... Adding xrefitems... Sorting member lists... Setting anonymous enum type... Computing dependencies between directories... Generating citations page... Counting members... Counting data structures... Resolving user defined references... Finding anchors and sections in the documentation... Transferring function references... Combining using relations... Adding members to index pages... Correcting members for VHDL... Computing tooltip texts... Generating style sheet... Generating search indices... Generating example documentation... Generating file sources... Generating code for file hipfft.h... Generating code for file hipfftXt.h... Generating code for file hiplibxt.h... Generating file documentation... Generating docs for file hipfft.h... Generating docs for file hipfftXt.h... Generating docs for file hiplibxt.h... Generating page documentation... Generating group documentation... Generating class documentation... Generating docs for compound hipLibXtDesc... Generating docs for compound hipXtDesc... Generating concept documentation... Generating module documentation... Generating namespace documentation... Generating graph info page... Generating directory documentation... Generating index page... Generating page index... Generating topic index... Generating module index... Generating module member index... Generating namespace index... Generating namespace member index... Generating concept index... Generating annotated compound index... Generating alphabetical compound index... Generating hierarchical class index... Generating member index... Generating file index... Generating file member index... Generating example index... finalizing index lists... writing tag file... Generating XML output... Generating XML output for class hipLibXtDesc Generating XML output for class hipXtDesc Generating XML output for file hipfft.h Generating XML output for file hipfftXt.h Generating XML output for file hiplibxt.h Generating XML output for group hipfftXtExecDescriptor Combining RTF output... Running plantuml with JAVA... type lookup cache used 143/65536 hits=1184 misses=144 symbol lookup cache used 227/65536 hits=204 misses=227 finished... doxylink not enabled, skipping setting up the current project Remote mappings will be fetched from RadeonOpenCompute/rocm-docs-core branch=develop Following Github server redirection from /repos/RadeonOpenCompute/rocm-docs-core to /repositories/590674019 loading pickled environment... done WARNING: conf value "version" should not be empty for EPUB3 myst v3.0.1: MdParserConfig(commonmark_only=False, gfm_only=False, enable_extensions={'colon_fence', 'dollarmath', 'html_image', 'replacements', 'substitution', 'fieldlist'}, disable_syntax=[], all_links_external=False, links_external_new_tab=False, url_schemes=('http', 'https', 'mailto', 'ftp'), ref_domains=None, fence_as_directive=set(), number_code_blocks=[], title_to_header=False, heading_anchors=3, heading_slug_func=None, html_meta={}, footnote_transition=True, words_per_minute=200, substitutions={}, linkify_fuzzy_links=True, dmath_allow_labels=True, dmath_allow_space=True, dmath_allow_digits=True, dmath_double_inline=False, update_mathjax=True, mathjax_classes='tex2jax_process|mathjax_process|math|output_area', enable_checkboxes=False, suppress_warnings=[], highlight_code_blocks=True) loading intersphinx inventory from https://rocm.docs.amd.com/projects/radeon/en/docs-6.0.0/objects.inv... loading intersphinx inventory from https://rocm.docs.amd.com/projects/rocDecode/en/docs-6.0.0/objects.inv... loading intersphinx inventory from https://rocm.docs.amd.com/projects/rocm-docs-core/en/docs-6.0.0/objects.inv... loading intersphinx inventory from https://rocm.docs.amd.com/projects/ROCmCMakeBuildTools/en/docs-6.0.0/objects.inv... WARNING: failed to reach any of the inventories with the following issues: intersphinx inventory 'https://rocm.docs.amd.com/projects/ROCmCMakeBuildTools/en/docs-6.0.0/objects.inv' not fetchable due to : 404 Client Error: Not Found for url: https://rocm.docs.amd.com/projects/ROCmCMakeBuildTools/en/docs-6.0.0/objects.inv WARNING: failed to reach any of the inventories with the following issues: intersphinx inventory 'https://rocm.docs.amd.com/projects/radeon/en/docs-6.0.0/objects.inv' not fetchable due to : 404 Client Error: Not Found for url: https://rocm.docs.amd.com/projects/radeon/en/docs-6.0.0/objects.inv WARNING: failed to reach any of the inventories with the following issues: intersphinx inventory 'https://rocm.docs.amd.com/projects/rocm-docs-core/en/docs-6.0.0/objects.inv' not fetchable due to : 404 Client Error: Not Found for url: https://rocm.docs.amd.com/projects/rocm-docs-core/en/docs-6.0.0/objects.inv WARNING: failed to reach any of the inventories with the following issues: intersphinx inventory 'https://rocm.docs.amd.com/projects/rocDecode/en/docs-6.0.0/objects.inv' not fetchable due to : 404 Client Error: Not Found for url: https://rocm.docs.amd.com/projects/rocDecode/en/docs-6.0.0/objects.inv [autosummary] generating autosummary for: api.rst, index.rst, overview.rst building [mo]: targets for 0 po files that are out of date writing output... building [epub]: targets for 3 source files that are out of date updating environment: 0 added, 2 changed, 0 removed reading sources... [ 50%] api reading sources... [100%] index /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/api.rst:26: WARNING: doxygenenum: Cannot find enum "hipfftType_t" in doxygen xml output for project "hipFFT Documentation" from directory: /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/xml /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/api.rst:30: WARNING: doxygenenum: Cannot find enum "hipfftResult_t" in doxygen xml output for project "hipFFT Documentation" from directory: /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/xml /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/api.rst:163: WARNING: doxygenstruct: Cannot find class "hipXtDesc_t" in doxygen xml output for project "hipFFT Documentation" from directory: /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/xml /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/api.rst:164: WARNING: doxygenstruct: Cannot find class "hipLibXtDesc_t" in doxygen xml output for project "hipFFT Documentation" from directory: /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/doxygen/xml /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/api.rst:1: WARNING: toctree directive not expected with external-toc [etoc.toctree] /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/index.rst:7: WARNING: toctree directive not expected with external-toc [etoc.toctree] /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/index.rst:: WARNING: toctree contains reference to nonexisting document 'allapi' [etoc.ref] /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-hipfft/checkouts/docs-6.0.0/docs/index.rst:: WARNING: toctree contains reference to nonexisting document 'license' [etoc.ref] looking for now-outdated files... none found pickling environment... done checking consistency... done preparing documents... done copying assets... copying static files... done copying extra files... done done writing output... [ 33%] api writing output... [ 67%] index writing output... [100%] overview generating indices... genindex done writing additional pages... done writing mimetype file... writing META-INF/container.xml file... writing content.opf file... writing nav.xhtml file... writing toc.ncx file... writing Python.epub file... Updating searchtools for Read the Docs search... ====================== slowest reading durations ======================= 0.657 api 0.007 index build succeeded, 13 warnings. The ePub file is in ../_readthedocs/epub.