Skip to content

Commit 2e4c67c

Browse files
committed
Add scikit-optmize as testing dependency
1 parent 632df23 commit 2e4c67c

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

kernel_tuner/interface.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -597,7 +597,6 @@ def tune_kernel(
597597

598598
kernelsource = core.KernelSource(kernel_name, kernel_source, lang, defines)
599599

600-
print("block_size_names", block_size_names)
601600
_check_user_input(kernel_name, kernelsource, arguments, block_size_names)
602601

603602
# default objective if none is specified
@@ -680,7 +679,6 @@ def preprocess_cache(filepath):
680679

681680
# create search space
682681
tuning_options.restrictions_unmodified = deepcopy(restrictions)
683-
print(searchspace_construction_options)
684682
searchspace = Searchspace(tune_params, restrictions, runner.dev.max_threads, **searchspace_construction_options)
685683
restrictions = searchspace._modified_restrictions
686684
tuning_options.restrictions = restrictions

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,7 @@ nox-poetry = "^1.0.3"
128128
ruff = "^0.4.8"
129129
pep440 = "^0.1.2"
130130
tomli = "^2.0.1" # held back by Python <= 3.10, can be replaced by built-in [tomllib](https://docs.python.org/3.11/library/tomllib.html) from Python 3.11 onwards
131+
scikit-optimize = "0.10"
131132

132133
# development dependencies are unused for now, as this is already covered by test and docs
133134
# # ATTENTION: if anything is changed here, run `poetry update`

0 commit comments

Comments
 (0)