updating benchmarks

on the new machine, consistent
not rubyx yet
This commit is contained in:
2019-07-23 20:14:28 +03:00
parent 861fa3203f
commit 00bf38a0e6
17 changed files with 47 additions and 56 deletions

View File

@ -20,6 +20,6 @@ func main() {
sum := 1
for sum < 100000 {
sum += 1
fibo( 40 )
fibo( 20 )
}
}

View File

@ -10,8 +10,8 @@ func fib(n uint) uint {
func main() {
sum := 1
for sum < 1000 {
for sum < 100000 {
sum += 1
fib( 20 )
fib( 10 )
}
}

5
test/bench/go/noop.go Normal file
View File

@ -0,0 +1,5 @@
package main
func main() {
return
}