From dd26ba3cfc57a39801a4cce4e9d33e8afff8c83d Mon Sep 17 00:00:00 2001 From: Matteo Perotti Date: Tue, 28 Mar 2023 18:56:18 +0200 Subject: [PATCH] [script] Fix pathfinder performance calculation --- scripts/performance.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/performance.py b/scripts/performance.py index dedb3d522..ae9bbbece 100755 --- a/scripts/performance.py +++ b/scripts/performance.py @@ -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])