libmir-metal 0.1.0

Metal inference backend for libmir
1
2
3
4
5
6
7
8
9
10
use std::path::PathBuf;

#[derive(Debug, Clone, Default)]
pub struct MetalDiagnosticsConfig {
    pub profile_layers: bool,
    pub profile_components: bool,
    pub profile_graph_build: bool,
    pub prefill_evaluation_layers: Option<usize>,
    pub graph_dump: Option<PathBuf>,
}