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
DeviceAgentVector's root shared_ptr is now owned by the CUDAAgent.
This has a tiny optimisation benefit of reducing unnecessary syncs, if consecutive host fns use the same device vector.
Closes#522
DeviceAgentVector's root shared_ptr is now owned by the CUDAAgent.
This has a tiny optimisation benefit of reducing unnecessary syncs, if consecutive host fns use the same device vector.
Closes#522
DeviceAgentVector's root shared_ptr is now owned by the CUDAAgent.
This has a tiny optimisation benefit of reducing unnecessary syncs, if consecutive host fns use the same device vector.
Closes#522
vec_a
is owned by the temporary object created byFLAMEGPU->agent("agent", "a")
, as such by the time it is used it has been deallocated.Presumed fix would be centralise the storage inside the main
HostAPI
object or the respectiveCUDAAgent
.The text was updated successfully, but these errors were encountered: