Revert "fix the flatmm (#2349)" (#2352)

This reverts commit d996bc78be.
This commit is contained in:
Illia Silin
2025-06-16 07:54:55 -07:00
committed by GitHub
parent f6c2ff9dce
commit 5523df4b2d
4 changed files with 4 additions and 8 deletions

View File

@@ -278,13 +278,13 @@ def main():
shapes = tuples(filename)
all_results = []
from tqdm import tqdm
from functools import partial
from os import path
profiler_bin = path.join(args["build_dir"], "bin", "ckProfiler")
total = len(shapes)
for idx, s in enumerate(shapes, 1):
for s in tqdm(shapes):
run_shape_stdout_lines = run_shape(
s, profiler_bin, args["op_name"], args["dtype"], args["layout"]
)