Skip to content

Commit 5d553cf

Browse files
Merge pull request #319 from KernelTuner/fix_documentation
Fix documentation
2 parents 68daa9f + 51648c9 commit 5d553cf

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

doc/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
# import data from pyproject.toml using https://github.com/sphinx-toolbox/sphinx-pyproject
3030
# additional data can be added with `[tool.sphinx-pyproject]` and retrieved with `config['']`.
3131
config = SphinxConfig(
32-
"../../pyproject.toml", style="poetry"
32+
"../../pyproject.toml",
3333
) # add `, globalns=globals()` to directly insert in namespace
3434
year = time.strftime("%Y")
3535
startyear = "2016"

kernel_tuner/interface.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,8 +126,8 @@ def __deepcopy__(self, _):
126126
(
127127
"""Specifies the language used for GPU kernels. The kernel_tuner
128128
automatically detects the language, but if it fails, you may specify
129-
the language using this argument, currently supported: "CUDA", "Cupy",
130-
"OpenCL", "HIP", or "C".""",
129+
the language using this argument, currently supported: "CUDA", "CuPy",
130+
"nvcuda", "OpenCL", "HIP", or "C".""",
131131
"string",
132132
),
133133
),
@@ -530,7 +530,7 @@ def _get_docstring(opts):
530530

531531

532532
_tune_kernel_docstring = (
533-
""" Tune a CUDA kernel given a set of tunable parameters
533+
""" Tune a GPU kernel given a set of tunable parameters
534534
535535
%s
536536

0 commit comments

Comments
 (0)