weiss_core/pool/
mod.rs

1//! Batched environment stepping and parallelism helpers.
2//!
3//! Related docs:
4//! - <https://github.com/victorwp288/weiss-schwarz-simulator/blob/main/docs/README.md>
5//! - <https://github.com/victorwp288/weiss-schwarz-simulator/blob/main/docs/rl_contract.md>
6//! - <https://github.com/victorwp288/weiss-schwarz-simulator/blob/main/docs/performance_benchmarks.md>
7
8mod buffers;
9mod core;
10mod helpers;
11mod logits;
12mod outputs;
13mod reset;
14mod step;
15mod threading;
16
17pub use buffers::*;
18pub use core::EnvPool;
19pub use outputs::*;
20
21#[cfg(test)]
22mod tests;