mirror of
https://github.com/gonum/gonum.git
synced 2025-10-07 08:01:20 +08:00
48 lines
1008 B
Go
48 lines
1008 B
Go
package cgo
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/gonum/blas/testblas"
|
|
)
|
|
|
|
func BenchmarkDgerSmSmInc1(b *testing.B) {
|
|
testblas.DgerBenchmark(b, impl, Sm, Sm, 1, 1)
|
|
}
|
|
|
|
func BenchmarkDgerSmSmIncN(b *testing.B) {
|
|
testblas.DgerBenchmark(b, impl, Sm, Sm, 2, 3)
|
|
}
|
|
|
|
func BenchmarkDgerMedMedInc1(b *testing.B) {
|
|
testblas.DgerBenchmark(b, impl, Med, Med, 1, 1)
|
|
}
|
|
|
|
func BenchmarkDgerMedMedIncN(b *testing.B) {
|
|
testblas.DgerBenchmark(b, impl, Med, Med, 2, 3)
|
|
}
|
|
|
|
func BenchmarkDgerLgLgInc1(b *testing.B) {
|
|
testblas.DgerBenchmark(b, impl, Lg, Lg, 1, 1)
|
|
}
|
|
|
|
func BenchmarkDgerLgLgIncN(b *testing.B) {
|
|
testblas.DgerBenchmark(b, impl, Lg, Lg, 2, 3)
|
|
}
|
|
|
|
func BenchmarkDgerLgSmInc1(b *testing.B) {
|
|
testblas.DgerBenchmark(b, impl, Lg, Sm, 1, 1)
|
|
}
|
|
|
|
func BenchmarkDgerLgSmIncN(b *testing.B) {
|
|
testblas.DgerBenchmark(b, impl, Lg, Sm, 2, 3)
|
|
}
|
|
|
|
func BenchmarkDgerSmLgInc1(b *testing.B) {
|
|
testblas.DgerBenchmark(b, impl, Sm, Lg, 1, 1)
|
|
}
|
|
|
|
func BenchmarkDgerSmLgIncN(b *testing.B) {
|
|
testblas.DgerBenchmark(b, impl, Sm, Lg, 2, 3)
|
|
}
|