optirs-tpu 0.3.1

OptiRS TPU coordination and pod management
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Layout Management Module for TPU Pod Topology
//
// This module provides comprehensive layout management functionality for TPU pod coordination,
// including physical layout, thermal management, power distribution, logical topology,
// and layout algorithms.

pub mod algorithms;
pub mod logical;
pub mod physical;
pub mod power;
pub mod thermal;

// Re-export main types explicitly to avoid ambiguous glob re-exports
// Users can access submodules directly via layout::physical::management, layout::thermal::management, etc.
pub use self::algorithms::*;
pub use self::logical::*;