-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[big.Integer] slow operations div and mod #24132
Comments
Connected to Huly®: V_0.6-22523 |
Question: I notice first you show a Golang program with results and then you edited this into V? Now I see two V programs... |
That's right, this is how 2 V programs should be. |
VI found V division of
And V division of
import time
import math.big
fn main() {
iterations := 1_000_000
a := big.integer_from_string('115792089237316195423570985008687907853269984665640564039457584007908834671663')!
b := big.integer_from_string('105792089237316195423570985008687907852837564279074904382605163141518161494337')!
//b := big.integer_from_string('7852837564279074904382605163141518161494337')!
t1 := time.now()
for _ in 0..iterations {
a / b
}
t2 := time.now()
println('Iterations:${iterations}')
println('Div: ${(t2-t1)/iterations}')
} GoFor the two cases above, I found Golang takes aprox. package main
import (
"fmt"
"math/big"
"time"
)
func main() {
a := new(big.Int)
fmt.Sscan("115792089237316195423570985008687907853269984665640564039457584007908834671663", a)
b := new(big.Int)
fmt.Sscan("105792089237316195423570985008687907852837564279074904382605163141518161494337", b)
//fmt.Sscan("7852837564279074904382605163141518161494337", b)
iterations := 1_000_000
t1 := time.Now()
for i := 0; i < iterations; i++ {
new(big.Int).Div(a, b)
}
div := int64(time.Since(t1))
fmt.Printf("Iterations:%d\n", iterations)
fmt.Printf("Div:%d ns/oper\n", div/int64(iterations))
} |
Result
Next
Result
The text was updated successfully, but these errors were encountered: