bb-ops 0.3.4

Canonical concrete components for the bytesandbrains framework — syscalls, wire transport, backends, protocols, role implementations.
1
2
3
4
5
6
7
8
9
10
//! Concrete `Aggregator` Contract implementations the framework
//! ships out of the box. Each impl plugs in via
//! `Node::with_aggregator(&impl)` and bridges the user-facing
//! `bb_runtime::contracts::Aggregator` trait to the engine's
//! `dispatch_atomic` path through the
//! `bb_derive::Aggregator` macro.

pub mod fedavg;

pub use fedavg::{FedAvg, FedAvgMeta};