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
GC performance is bad due to lots of temporary array allocation during the kernel launching phase (used as size arrays to configure GPU resources) and the kernel running phase (used as temporary arrays to avoid control flow divergence).
Consider creating a cache to store all these temporary arrays together before running the rhs! iteration.
The text was updated successfully, but these errors were encountered:
GC performance is bad due to lots of temporary array allocation during the kernel launching phase (used as size arrays to configure GPU resources) and the kernel running phase (used as temporary arrays to avoid control flow divergence).
Consider creating a cache to store all these temporary arrays together before running the
rhs!
iteration.The text was updated successfully, but these errors were encountered: