fix: double delta_blue benchmark iterations and update expected result

The delta_blue benchmark was updated to run 40 iterations instead of 20 in both the Python and Wren implementations, and the expected benchmark result was adjusted from 7032700 to 14065400 to match the doubled workload. Additionally, the Wren source was cleaned up by removing forward declaration placeholders for global variables and converting them to proper `var` declarations with immediate initialization.
This commit is contained in:
Bob Nystrom
2015-08-27 13:25:24 +00:00
parent 674f682ce1
commit bd0957dc48
3 changed files with 11 additions and 22 deletions
+1 -1
View File
@@ -626,7 +626,7 @@ planner = None
def delta_blue():
global total
start = time.clock()
for i in range(20):
for i in range(40):
chain_test(100)
projection_test(100)
print(total)