manta-cli 1.64.3

Another CLI for ALPS
1
2
3
4
5
6
7
8
9
10
//! Re-exports hardware cluster common utilities.

/// LCM (Least Common Multiple) used to normalize memory
/// capacity values reported by hardware inventory. Memory
/// DIMMs come in multiples of 16 GiB (16384 MiB), so this
/// value is used to bucket nodes by memory capacity.
pub const MEMORY_CAPACITY_LCM: u64 = 16384; // 1024 * 16

pub mod command;
pub mod utils;