Skip to content

Commit 2fbe8eb

Browse files
committed
[software] Update benchmarking scripts
1 parent 22b13ee commit 2fbe8eb

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

scripts/plot_benchmarks.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111

1212
HARDWARE_DIR = "../../hardware"
1313
APPS_DIR = "../apps"
14-
KMP_APPS_DIR = APPS_DIR + "/kmp"
1514
OMP_APPS_DIR = APPS_DIR + "/omp"
1615
UART_REGEX = re.compile(r"\[UART\] (.*): (\d+)")
1716
GIT_COMMIT_HASH = subprocess.check_output(

scripts/run_benchmarks.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -161,12 +161,12 @@ def runAll(dir, compiler, simulator="verilate", config="minpool-no-xpulp"):
161161
def main():
162162
os.makedirs(f'results/{GIT_COMMIT_HASH}', exist_ok=True)
163163

164-
compileAll(OMP_APPS_DIR, "llvm")
165-
runAll(OMP_APPS_DIR, "llvm")
166-
167164
compileAll(OMP_APPS_DIR, "gcc")
168165
runAll(OMP_APPS_DIR, "gcc")
169166

167+
compileAll(OMP_APPS_DIR, "llvm")
168+
runAll(OMP_APPS_DIR, "llvm")
169+
170170

171171
if __name__ == '__main__':
172172
main()

0 commit comments

Comments
 (0)