diff --git a/helion/autotuner/base_search.py b/helion/autotuner/base_search.py index cfff6a7f3..962983268 100644 --- a/helion/autotuner/base_search.py +++ b/helion/autotuner/base_search.py @@ -88,7 +88,9 @@ def __init__(self, kernel: BoundKernel, args: Sequence[object]) -> None: self.args: Sequence[object] = args self.counters: collections.Counter[str] = collections.Counter() self.log = LambdaLogger(self.settings.autotune_log_level) - random.seed(self.settings.autotune_random_seed) + seed = self.settings.autotune_random_seed + random.seed(seed) + self.log(f"Autotune random seed: {seed}") self._original_args: Sequence[object] = self._clone_args(self.args) ( self._baseline_output,