ppl/core/
mod.rs

1//! Core components of the framework.
2//!
3//! This module contains the core components of the framework.
4//!
5//! The main idea behind the architecture of the framework is to have an orchestrator,
6//! composed by a set of partitions. Each partition represent a core of the machine.
7//! The orchestrator is responsible for the creation of the partitions, and for the
8//! distribution of the tasks to the partitions. Each partition contain, if present,
9//! one or more executors.
10//!
11
12/// Configuration of the framework
13pub mod configuration;
14
15/// Orchestrator of the framework
16pub mod orchestrator;