Skip to content
This repository was archived by the owner on Mar 14, 2026. It is now read-only.

Commit f1f3f34

Browse files
committed
Fix ambiguity between mv! and its doc def.
1 parent 24914fa commit f1f3f34

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

src/sparse.jl

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -676,14 +676,12 @@ end
676676

677677
## level 2 functions
678678

679-
"""
679+
@doc """
680680
mv!(transa::SparseChar, alpha::BlasFloat, A::CudaSparseMatrix, X::CudaVector, beta::BlasFloat, Y::CudaVector, index::SparseChar)
681681
682682
Performs `Y = alpha * op(A) *X + beta * Y`, where `op` can be nothing (`transa = N`), tranpose (`transa = T`)
683683
or conjugate transpose (`transa = C`). `X` is a sparse vector, and `Y` is dense.
684-
"""
685-
function mv!(transa::SparseChar, alpha::BlasFloat, A::CudaSparseMatrix, X::CudaVector,
686-
beta::BlasFloat, Y::CudaVector, index::SparseChar) end
684+
""" mv!
687685
for (fname,elty) in ((:cusparseSbsrmv, :Float32),
688686
(:cusparseDbsrmv, :Float64),
689687
(:cusparseCbsrmv, :Complex64),

0 commit comments

Comments
 (0)