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
We (Joey, David, and I) noticed that the copyChunk function in RootPPL can potentially be optimized further by doing aligned copies even when the source and target locations are not exactly aligned on the GPU. Currently, when unaligned, copyChunk resorts to memcpy as soon as this is not the case (and memcpy is quite inefficient on the GPU for some reason).
The text was updated successfully, but these errors were encountered:
We (Joey, David, and I) noticed that the
copyChunk
function in RootPPL can potentially be optimized further by doing aligned copies even when the source and target locations are not exactly aligned on the GPU. Currently, when unaligned,copyChunk
resorts tomemcpy
as soon as this is not the case (andmemcpy
is quite inefficient on the GPU for some reason).The text was updated successfully, but these errors were encountered: