Skip to content

Commit

Permalink
Merge 8365da4 into e672cac
Browse files Browse the repository at this point in the history
  • Loading branch information
vladimir-ch committed Jan 12, 2018
2 parents e672cac + 8365da4 commit 0232430
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
6 changes: 6 additions & 0 deletions blas/netlib/blas.go
Original file line number Diff line number Diff line change
Expand Up @@ -2619,6 +2619,12 @@ func (Implementation) Ztbmv(ul blas.Uplo, tA blas.Transpose, d blas.Diag, n, k i
C.cblas_ztbmv(C.enum_CBLAS_ORDER(rowMajor), C.enum_CBLAS_UPLO(ul), C.enum_CBLAS_TRANSPOSE(tA), C.enum_CBLAS_DIAG(d), C.int(n), C.int(k), unsafe.Pointer(_a), C.int(lda), unsafe.Pointer(_x), C.int(incX))
}

// Ztpmv performs one of the matrix-vector operations
// x = A * x if trans = blas.NoTrans
// x = A^T * x if trans = blas.Trans
// x = A^H * x if trans = blas.ConjTrans
// where x is an n element vector and A is an n×n triangular matrix, supplied in
// packed form.
func (Implementation) Ztpmv(ul blas.Uplo, tA blas.Transpose, d blas.Diag, n int, ap, x []complex128, incX int) {
// declared at cblas.h:288:6 void cblas_ztpmv ...

Expand Down
8 changes: 8 additions & 0 deletions blas/netlib/level2cmplx128_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ func TestZher2(t *testing.T) {
testblas.Zher2Test(t, impl)
}

func TestZhpmv(t *testing.T) {
testblas.ZhpmvTest(t, impl)
}

func TestZhpr(t *testing.T) {
testblas.ZhprTest(t, impl)
}
Expand All @@ -42,6 +46,10 @@ func TestZhpr2(t *testing.T) {
testblas.Zhpr2Test(t, impl)
}

func TestZtpmv(t *testing.T) {
testblas.ZtpmvTest(t, impl)
}

func TestZtrmv(t *testing.T) {
testblas.ZtrmvTest(t, impl)
}
Expand Down

0 comments on commit 0232430

Please sign in to comment.