1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
//! HPGO!

#![allow(non_snake_case)]

extern crate itertools;
extern crate ordered_float;
extern crate pyo3;
extern crate rayon;

/// HPGO Model Analysis
pub mod analysis;

/// HPGO Hardware Environment: Ethernet, GPU, NVLink, etc.
pub mod environment;

/// HPGO Model Importer, currently TorchGraphImporter only
pub mod input;

/// HPGO Model Abstract Definition
pub mod model;

/// HPGO Orchestration Variations
pub mod orchestration;

/// HPGO Parallelism Definitions and Helpers
pub mod parallelism;

/// HPGO Public API: C & Python
pub mod api;