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 ----------