You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
func (impl *Implementation) Zdotc(n int, x []complex128, incX int, y []complex128, incY int) (dotc complex128) {
212
+
func (impl *Standalone) Zdotc(n int, x []complex128, incX int, y []complex128, incY int) (dotc complex128) {
213
213
if impl.e != nil {
214
214
return
215
215
}
@@ -235,27 +235,27 @@ func (impl *Implementation) Zdotc(n int, x []complex128, incX int, y []complex12
235
235
return dotc
236
236
}
237
237
238
-
func (impl *Implementation) Sdsdot(n int, alpha float32, x []float32, incX int, y []float32, incY int) float32 {
238
+
func (impl *Standalone) Sdsdot(n int, alpha float32, x []float32, incX int, y []float32, incY int) float32 {
239
239
panic("Unimplemented in cuBLAS. Please contact nvidia.")
240
240
}
241
241
242
-
func (impl *Implementation) Dsdot(n int, x []float32, incX int, y []float32, incY int) float64 {
242
+
func (impl *Standalone) Dsdot(n int, x []float32, incX int, y []float32, incY int) float64 {
243
243
panic("Unimplemented in cuBLAS. Please contact nvidia.")
244
244
}
245
245
246
-
func (impl *Implementation) Strmm(s blas.Side, ul blas.Uplo, tA blas.Transpose, d blas.Diag, m, n int, alpha float32, a []float32, lda int, b []float32, ldb int){
246
+
func (impl *Standalone) Strmm(s blas.Side, ul blas.Uplo, tA blas.Transpose, d blas.Diag, m, n int, alpha float32, a []float32, lda int, b []float32, ldb int){
247
247
panic("Unimplemented in cuBLAS. Please contact nvidia.")
248
248
}
249
249
250
-
func (impl *Implementation) Dtrmm(s blas.Side, ul blas.Uplo, tA blas.Transpose, d blas.Diag, m, n int, alpha float64, a []float64, lda int, b []float64, ldb int){
250
+
func (impl *Standalone) Dtrmm(s blas.Side, ul blas.Uplo, tA blas.Transpose, d blas.Diag, m, n int, alpha float64, a []float64, lda int, b []float64, ldb int){
251
251
panic("Unimplemented in cuBLAS. Please contact nvidia.")
252
252
}
253
253
254
-
func (impl *Implementation) Ctrmm(s blas.Side, ul blas.Uplo, tA blas.Transpose, d blas.Diag, m, n int, alpha complex64, a []complex64, lda int, b []complex64, ldb int){
254
+
func (impl *Standalone) Ctrmm(s blas.Side, ul blas.Uplo, tA blas.Transpose, d blas.Diag, m, n int, alpha complex64, a []complex64, lda int, b []complex64, ldb int){
255
255
panic("Unimplemented in cuBLAS. Please contact nvidia.")
256
256
}
257
257
258
-
func (impl *Implementation) Ztrmm(s blas.Side, ul blas.Uplo, tA blas.Transpose, d blas.Diag, m, n int, alpha complex128, a []complex128, lda int, b []complex128, ldb int){
258
+
func (impl *Standalone) Ztrmm(s blas.Side, ul blas.Uplo, tA blas.Transpose, d blas.Diag, m, n int, alpha complex128, a []complex128, lda int, b []complex128, ldb int){
259
259
panic("Unimplemented in cuBLAS. Please contact nvidia.")
260
260
}
261
261
@@ -265,10 +265,10 @@ func (impl *Implementation) Ztrmm(s blas.Side, ul blas.Uplo, tA blas.Transpose,
0 commit comments