redid benchmarks with new options

especially calling did improve
also binaries don't get crazy big even for bigger heaps, because they are just ints
This commit is contained in:
2019-08-24 16:03:35 +03:00
parent 259edb51e9
commit d3a0aa3d8e
5 changed files with 10 additions and 10 deletions

View File

@ -14,9 +14,9 @@ class Space
return result
end
# ran with --parfait=80000
# ran with --integers=1600000 , result -noop * 25
def main(arg)
b = 1000
b = 2000
while( b >= 1 )
b = b - 1
fibo_i(40)

View File

@ -9,9 +9,9 @@ class Space
return a + b
end
# ran with --parfait=70000
# ran with --integers=170000 , result - noop * 10
def main(arg)
b = 2
b = 5
res = 0
while( b >= 1 )
b = b - 1

View File

@ -1,5 +1,5 @@
class Space
# ran with --parfait=25000
# ran with --parfait=21000
def main(arg)
b = 10000
while( b >= 1 )

View File

@ -1,6 +1,6 @@
class Space
# ran with --parfait=101000
# ran with --integers=102400 , result -noop * 10
def main(arg)
b = 100000
while( b >= 1 )