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 GPU implementation is currently bottlenecked by the time that it takes to generate orbits which are then solved on the GPU. There are two solutions that could make the GPU implementation worth using.
Generate the orbits on the GPU. This would require moving a large portion of the orbitize code from python to C/CUDA which would make the code more difficult to maintain.
Run the GPU implementation out of a single thread and use the rest of the threads in the C solver mode. This was partially implemented in the pycuda_mp branch.
The text was updated successfully, but these errors were encountered:
The GPU implementation is currently bottlenecked by the time that it takes to generate orbits which are then solved on the GPU. There are two solutions that could make the GPU implementation worth using.
The text was updated successfully, but these errors were encountered: