[benchmark] Add triton version in the moe tuned config (#24769)

Signed-off-by: Jee Jee Li <pandaleefree@gmail.com>
This commit is contained in:
Jee Jee Li
2025-09-16 14:10:54 +08:00
committed by GitHub
parent 238c4c1705
commit 04ad0dc275
3 changed files with 6 additions and 3 deletions

View File

@@ -560,7 +560,7 @@ def save_configs(
filename = os.path.join(save_dir, filename)
print(f"Writing best config to {filename}...")
with open(filename, "w") as f:
json.dump(configs, f, indent=4)
json.dump({"triton_version": triton.__version__, **configs}, f, indent=4)
f.write("\n")