gwr_components/arbiter/policy/
mod.rs

1// Copyright (c) 2025 Graphcore Ltd. All rights reserved.
2
3pub mod priority_round_robin;
4pub mod round_robin;
5pub mod weighted_round_robin;
6
7pub use priority_round_robin::{Priority, PriorityRoundRobin};
8pub use round_robin::RoundRobin;
9pub use weighted_round_robin::WeightedRoundRobin;