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
Methods for vector initialization Vector::setToConst and Vector::setToZero do not set flags cpu_updated_ or gpu_updated_. This means that other functions would see the initialized memory space of vector as out of date and could overwrite it.
The fix is to call setDataUpdated method inside the initialization function.
Methods for vector initialization
Vector::setToConst
andVector::setToZero
do not set flagscpu_updated_
orgpu_updated_
. This means that other functions would see the initialized memory space of vector as out of date and could overwrite it.The fix is to call
setDataUpdated
method inside the initialization function.CC @kswirydo
The text was updated successfully, but these errors were encountered: