We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bbc2be4 commit 247be92Copy full SHA for 247be92
helion/autotuner/differential_evolution.py
@@ -81,7 +81,6 @@ def iter_candidates(self) -> Iterator[tuple[int, PopulationMember]]:
81
def evolve_population(self) -> int:
82
replaced = 0
83
for i, candidate in self.iter_candidates():
84
- candidate = self.benchmark_flat(self.mutate(i))
85
if candidate.perf < self.population[i].perf:
86
self.population[i] = candidate
87
replaced += 1
0 commit comments