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
When inputting a very large matrix into my program, the majority of the time spent is reading (attoparsec from matrix-market-attoparsec) and matrix creation (the IntM functions). Is there a way to increase performance in both of these libraries? I see that the matrix creation uses lookup for membership existance and then insert, these can be merged into Data.IntMap.Strict.alter, right? I'm sure there are other ways to improve this performance as well...
When inputting a very large matrix into my program, the majority of the time spent is reading (attoparsec from
matrix-market-attoparsec
) and matrix creation (the IntM functions). Is there a way to increase performance in both of these libraries? I see that the matrix creation useslookup
for membership existance and theninsert
, these can be merged intoData.IntMap.Strict.alter
, right? I'm sure there are other ways to improve this performance as well...The text was updated successfully, but these errors were encountered: