From 43d66081f4bfb3445d13983e48fd31cee3221b1c Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner Date: Sun, 13 Sep 2020 12:39:02 -0500 Subject: [PATCH] Fix doc warnings --- doc/source/conf.py | 2 +- doc/source/driver.rst | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/doc/source/conf.py b/doc/source/conf.py index 43196439..ff2ca2d9 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -118,7 +118,7 @@ html_sidebars = { # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". -html_static_path = ['_static'] +#html_static_path = ['_static'] # If not '', a 'Last updated on:' timestamp is inserted at every page bottom, # using the given strftime format. diff --git a/doc/source/driver.rst b/doc/source/driver.rst index 3edbdc5a..ce983546 100644 --- a/doc/source/driver.rst +++ b/doc/source/driver.rst @@ -1626,6 +1626,7 @@ Structured Memory Transfers copy bandwidth. .. method:: __call__(stream) + :noindex: Perform the memory copy asynchronously, serialized via the :class:`Stream` *stream*. Any host memory involved in the transfer must be page-locked. @@ -2032,8 +2033,8 @@ Just-in-time Compilation Unless *no_extern_c* is *True*, the given source code is wrapped in *extern "C" { ... }* to prevent C++ name mangling. - `arch` and `code` specify the values to be passed for the :option:`-arch` - and :option:`-code` options on the :program:`nvcc` command line. If `arch` is + `arch` and `code` specify the values to be passed for the ``-arch`` + and ``-code`` options on the :program:`nvcc` command line. If `arch` is `None`, it defaults to the current context's device's compute capability. If `code` is `None`, it will not be specified. -- GitLab