This repository has been archived by the owner on Nov 10, 2023. It is now read-only.
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removed the wait when adding to an experience replay buffer. Since we wait for concurrent processes to finish before every operation, there is no need to wait for the experience replayer to finish adding to its cache when `Add` is called. If another operation is called after `Add` was called, that operation will wait until `Add` finishes running before that operation runs. In other words, we were too concurrency safe before. Now we are still concurrency safe, but the runtime has sped up.
- Loading branch information