Skip to content

Commit

Permalink
Copy hardcoded bin for MU test
Browse files Browse the repository at this point in the history
  • Loading branch information
mcoduoza committed Dec 20, 2024
1 parent eaf8a68 commit 4c506a0
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions aha/util/regress.py
Original file line number Diff line number Diff line change
Expand Up @@ -505,6 +505,17 @@ def test_matrix_unit_app(test, width, height, env_parameters, extra_args, layer=
env_vars["MU_DATAWIDTH"] = str(mu_datawidth)

#buildkite_call(buildkite_args)

try:
subprocess.call(["make", "clean"], cwd=app_path)
except:
pass

try:
print(f"copying hardcoded bin folder", flush=True)
shutil.copytree(f"{app_path}/hardcoded_bin", f"{app_path}/bin")
except:
raise RuntimeError(f"[ERROR] Please don't delete hardcoded bin folder")

print(f"--- {testname} - glb testing", flush=True)
start = time.time()
Expand Down

0 comments on commit 4c506a0

Please sign in to comment.