Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
# import data from pyproject.toml using https://github.com/sphinx-toolbox/sphinx-pyproject
# additional data can be added with `[tool.sphinx-pyproject]` and retrieved with `config['']`.
config = SphinxConfig(
"../../pyproject.toml", style="poetry"
"../../pyproject.toml",
) # add `, globalns=globals()` to directly insert in namespace
year = time.strftime("%Y")
startyear = "2016"
Expand Down
6 changes: 3 additions & 3 deletions kernel_tuner/interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,8 @@ def __deepcopy__(self, _):
(
"""Specifies the language used for GPU kernels. The kernel_tuner
automatically detects the language, but if it fails, you may specify
the language using this argument, currently supported: "CUDA", "Cupy",
"OpenCL", "HIP", or "C".""",
the language using this argument, currently supported: "CUDA", "CuPy",
"nvcuda", "OpenCL", "HIP", or "C".""",
"string",
),
),
Expand Down Expand Up @@ -530,7 +530,7 @@ def _get_docstring(opts):


_tune_kernel_docstring = (
""" Tune a CUDA kernel given a set of tunable parameters
""" Tune a GPU kernel given a set of tunable parameters

%s

Expand Down