From 9e77d191c612a7d470058d453911367f9fd40a11 Mon Sep 17 00:00:00 2001 From: Ben van Werkhoven Date: Wed, 21 Jan 2026 17:01:02 +0100 Subject: [PATCH] add searchspace object to design documentation --- doc/source/design.rst | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/doc/source/design.rst b/doc/source/design.rst index 9c2f6ff9..209cd2ef 100644 --- a/doc/source/design.rst +++ b/doc/source/design.rst @@ -60,6 +60,19 @@ discussed above. For the documentation of the user API see the :doc:`user-api`. +SearchSpace +----------- + +The SearchSpace object is central to Kernel Tuner as it represents the search space that is to be +explored by the search strategies. + +kernel_tuner.searchspace.SearchSpace +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +.. autoclass:: kernel_tuner.searchspace.SearchSpace + :special-members: __init__ + :members: + + Strategies ----------