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
// TPU Coordination and Orchestration Primitives
//
// This module provides synchronization and coordination primitives specifically designed for TPU pod coordination,
// including coordination strategies, orchestration mechanisms, and pod-level synchronization primitives.
//
// The functionality has been modularized and is available through the coordination subdirectory.
// This file serves as a convenience re-export for backward compatibility.

// Re-export everything from the modular coordination implementation
pub use self::coordination::*;

// Import the modular coordination module
pub mod coordination;