SparseArrays: mul!(W, X', V)
much slower than mul!(V, X, W)
for Float32
entries
#822
Labels
mul!(W, X', V)
much slower than mul!(V, X, W)
for Float32
entries
#822
I'm seeing surprisingly low performance for
mul!(W, X', V)
whenX
is aSparseMatrixCSC
withFloat64
entries (X=sprand(2504, 100000, 0.05)
) andW
andV
are dense matrices withFloat32
entries. This operation takes about an order of magnitude longer than the same operation whenW
andV
are dense matrices withFloat64
entries. However, ifX
hasBool
entries (X=sprand(Bool, 2504, 100000, 0.05)
) I don't see any performance difference betweenFloat64
andFloat32
entries forV
andW
.The text was updated successfully, but these errors were encountered: