Skip to main content

bb_ops/aggregators/
mod.rs

1//! Concrete `Aggregator` Contract implementations the framework
2//! ships out of the box. Each impl bridges the user-facing
3//! `bb_runtime::contracts::Aggregator` trait to the engine's
4//! `dispatch_atomic` path through the `bb_derive::Aggregator`
5//! macro and self-registers via `inventory::submit!`.
6
7pub mod fedavg;
8
9pub use fedavg::{FedAvg, FedAvgMeta};