We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06a7b8d commit f01777aCopy full SHA for f01777a
1 file changed
kernel_tuner/searchspace.py
@@ -733,7 +733,7 @@ def get_list_param_indices_numpy(self) -> np.ndarray:
733
tune_params_to_index_lookup.append({ value: index for index, value in enumerate(param_values) })
734
tune_params_from_index_lookup.append({ index: value for index, value in enumerate(param_values) })
735
if (all_values_integer_nonnegative and
736
- not all(isinstance(v, int) and 0 < v < 2**15 for v in param_values)
+ not all(isinstance(v, int) and 0 <= v < 2**15 for v in param_values)
737
):
738
all_values_integer_nonnegative = False
739
0 commit comments