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
Hello,
When trying to improve the performance of my program, I changed all of my variables and input data from Int to Int32. After doing so, I encountered an error with the SVector construction method:
This: SVector{md.nbM, Int32}(md.r[md.ct[v]][a]) is likely suboptimal. If md.nbM can't be constant-propagated (and almost surely it can't), there will be a lot of dynamic conversions and dispatch. You need to carefully profile it to see if this isn't slower than just using Vector.
Hello,
When trying to improve the performance of my program, I changed all of my variables and input data from Int to Int32. After doing so, I encountered an error with the SVector construction method:
The error description:
How to get rid of this error when using Int32 please?
The text was updated successfully, but these errors were encountered: