Skip to content

Commit

Permalink
[scripts] Fix performance script for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
mp-17 committed Dec 2, 2023
1 parent cad6184 commit eb02192
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/performance.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,8 @@ def main():
if len(sys.argv) > 4:
print(metadata[0], metadata[1], result[0], metadata[3], result[1], real_max_perf, metadata[4], dcache_stall, icache_stall, sb_full)
else:
print(metadata[0], metadata[1], result[0], metadata[3], result[1], real_max_perf, metadata[4])
# CI run. Print only basic information for the roofline plots
print(result[0], result[1])

if __name__ == '__main__':
main()

0 comments on commit eb02192

Please sign in to comment.