Skip to content

Commit

Permalink
blas/netlib: enable tests for Zgbmv and Zhbmv
Browse files Browse the repository at this point in the history
  • Loading branch information
vladimir-ch committed Mar 19, 2018
1 parent 27b4967 commit e1e182c
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions blas/netlib/level2cmplx128_test.go
Expand Up @@ -10,6 +10,10 @@ import (
"gonum.org/v1/gonum/blas/testblas"
)

func TestZgbmv(t *testing.T) {
testblas.ZgbmvTest(t, impl)
}

func TestZgemv(t *testing.T) {
testblas.ZgemvTest(t, impl)
}
Expand All @@ -22,6 +26,10 @@ func TestZgeru(t *testing.T) {
testblas.ZgeruTest(t, impl)
}

func TestZhbmv(t *testing.T) {
testblas.ZhbmvTest(t, impl)
}

func TestZhemv(t *testing.T) {
testblas.ZhemvTest(t, impl)
}
Expand Down

0 comments on commit e1e182c

Please sign in to comment.