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 current implementation of the scattering cross-section is relatively slow on the GPU.
This is due to the numba atomic add operator aggregating the values in a matrix. If another thread wants to access the current index, it needs to be checked if another thread has priority. This slows things down.