Skip to content

Commit

Permalink
blas/netlib: run go generate to add Zgerc comment
Browse files Browse the repository at this point in the history
  • Loading branch information
vladimir-ch committed Aug 12, 2017
1 parent 0ff0bc1 commit fe7a028
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions blas/netlib/blas.go
Original file line number Diff line number Diff line change
Expand Up @@ -3929,6 +3929,10 @@ func (Implementation) Zgeru(m, n int, alpha complex128, x []complex128, incX int
C.cblas_zgeru(C.enum_CBLAS_ORDER(rowMajor), C.int(m), C.int(n), unsafe.Pointer(&alpha), unsafe.Pointer(_x), C.int(incX), unsafe.Pointer(_y), C.int(incY), unsafe.Pointer(_a), C.int(lda))
}

// Zgerc performs the rank-one operation
// A += alpha * x * y^H
// where A is an m×n dense matrix, alpha is a scalar, x is an m element vector,
// and y is an n element vector.
func (Implementation) Zgerc(m, n int, alpha complex128, x []complex128, incX int, y []complex128, incY int, a []complex128, lda int) {
// declared at cblas.h:415:6 void cblas_zgerc ...

Expand Down

0 comments on commit fe7a028

Please sign in to comment.