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
The line mul!(C,A,B) should change C in-place. (As we already initialized it with the correct entries (and block-structure), this function should not change C in this specific case.)
Actual output or behavior
The dense code works as expected and overwrites C, the block-sparse code errors.
If you provided a minimal code that demonstrates the bug or unexpected behavior, provide the output you get from that code. If the code leads to an error or warning, include the full error or warning below.
Description of bug
The function
mul!(C, A, B)
errors, when using BlockSparseTensors. It, however, works for dense tensors.Minimal code demonstrating the bug or unexpected behavior
Expected output or behavior
Describe what you expected to happen.
The line mul!(C,A,B) should change C in-place. (As we already initialized it with the correct entries (and block-structure), this function should not change C in this specific case.)
Actual output or behavior
The dense code works as expected and overwrites C, the block-sparse code errors.
If you provided a minimal code that demonstrates the bug or unexpected behavior, provide the output you get from that code. If the code leads to an error or warning, include the full error or warning below.
Output of minimal runnable code
Version information
versioninfo()
:using Pkg; Pkg.status("ITensors")
:The text was updated successfully, but these errors were encountered: