From 493accc7de8343ac164191c2413b8308913d6c3e Mon Sep 17 00:00:00 2001 From: Ben van Werkhoven Date: Thu, 3 Jul 2025 14:45:33 +0200 Subject: [PATCH 1/2] fix documentation building after pyproject.toml conversion --- doc/source/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/conf.py b/doc/source/conf.py index c480dfdf2..4036c5576 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -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" From 51648c9ccafcc310b2eb0f6f2e8749197b7271b5 Mon Sep 17 00:00:00 2001 From: Ben van Werkhoven Date: Thu, 3 Jul 2025 14:48:31 +0200 Subject: [PATCH 2/2] fix issue #305 --- kernel_tuner/interface.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kernel_tuner/interface.py b/kernel_tuner/interface.py index 2a420705f..a759dec07 100644 --- a/kernel_tuner/interface.py +++ b/kernel_tuner/interface.py @@ -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", ), ), @@ -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