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

This reverts commit 37f25427f2ec6c907bf12030338f69945691f54c.

[ROCm/composable_kernel commit: 5523df4b2d]
This commit is contained in:
Illia Silin
2025-06-16 07:54:55 -07:00
committed by GitHub
parent b5b0797513
commit fba2ac98ae
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"]
)