Merge commit 'd996bc78befb15ee0405ff78d0ad0da00f8550f3' into develop

This commit is contained in:
assistant-librarian[bot]
2025-06-16 10:09:10 +00:00
parent fffaadf44e
commit 4501568487
5 changed files with 155 additions and 24 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")
for s in tqdm(shapes):
total = len(shapes)
for idx, s in enumerate(shapes, 1):
run_shape_stdout_lines = run_shape(
s, profiler_bin, args["op_name"], args["dtype"], args["layout"]
)