mirror of
https://github.com/gonum/gonum.git
synced 2025-10-16 20:20:41 +08:00
11 lines
144 B
Go
11 lines
144 B
Go
package referenceblas
|
|
|
|
import (
|
|
"github.com/gonum/blas/testblas"
|
|
"testing"
|
|
)
|
|
|
|
func TestGemv(t *testing.T) {
|
|
testblas.DgemvTest(t, blasser)
|
|
}
|