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
Sort and merge new values in CrsMatrix::insertLocalValues
Why
CrsMatrix::insertLocalValues does not sort/merge existing values. Instead, indices/values are appended to their row of the matrix, regardless if they are already present in the row. During fillComplete, rows are sorted/merged so that duplicate entries are "compressed" out. For StaticProfile matrix, this can lead to running out of capacity due to duplicate entries.
What
Sort and merge new values in
CrsMatrix::insertLocalValues
Why
CrsMatrix::insertLocalValues
does not sort/merge existing values. Instead, indices/values are appended to their row of the matrix, regardless if they are already present in the row. DuringfillComplete
, rows are sorted/merged so that duplicate entries are "compressed" out. ForStaticProfile
matrix, this can lead to running out of capacity due to duplicate entries.@trilinos/tpetra
Related Issues
#4278, #4279, #4280
The text was updated successfully, but these errors were encountered: