Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for BenchmarkMul (0.53 sec)

  1. src/math/big/calibrate_test.go

    	}
    	if maxSqr != 0 {
    		fmt.Printf("found karatsubaSqrThreshold = %d\n", maxSqr)
    	} else {
    		fmt.Println("no karatsubaSqrThreshold found")
    	}
    }
    
    func karatsubaLoad(b *testing.B) {
    	BenchmarkMul(b)
    }
    
    // measureKaratsuba returns the time to run a Karatsuba-relevant benchmark
    // given Karatsuba threshold th.
    func measureKaratsuba(th int) time.Duration {
    	th, karatsubaThreshold = karatsubaThreshold, th
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  2. src/math/big/nat_test.go

    }
    
    // rndNat1 is like rndNat but the result is guaranteed to be > 0.
    func rndNat1(n int) nat {
    	x := nat(rndV(n)).norm()
    	if len(x) == 0 {
    		x.setWord(1)
    	}
    	return x
    }
    
    func BenchmarkMul(b *testing.B) {
    	mulx := rndNat(1e4)
    	muly := rndNat(1e4)
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		var z nat
    		z.mul(mulx, muly)
    	}
    }
    
    func benchmarkNatMul(b *testing.B, nwords int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 09 15:29:36 UTC 2024
    - 26.2K bytes
    - Viewed (0)
Back to top