Skip to content

Commit

Permalink
[script] Fix pathfinder performance calculation
Browse files Browse the repository at this point in the history
  • Loading branch information
mp-17 committed Nov 28, 2023
1 parent 0ba8a03 commit dd26ba3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/performance.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def pathfinder(args, cycles):
num_runs = int(args[0])
cols = int(args[1])
rows = int(args[2])
performance = 2 * num_runs * (cols - 1) * (rows - 1) / cycles
performance = 3 * num_runs * (cols - 1) * (rows - 1) / cycles
return [cols, performance]
def dotproduct(args, cycles):
size = int(args[0])
Expand Down

0 comments on commit dd26ba3

Please sign in to comment.