chore(ci): update feature on perf regression command generation

AVX512 feature is not considered a nightly one anymore.
This commit is contained in:
David Testé
2025-12-08 12:13:23 +01:00
committed by David Testé
parent b20a33ca6c
commit b04585fa10

View File

@@ -322,9 +322,9 @@ class ProfileDefinition:
match self.backend:
case TfheBackend.Cpu:
features.append("nightly-avx512")
features.append("avx512")
case TfheBackend.Gpu:
features.extend(["gpu", "nightly-avx512"])
features.extend(["gpu", "avx512"])
case TfheBackend.Hpu:
features.extend(["hpu", "hpu-v80"])