metaltile-std 0.1.0

MetalTile kernel standard library — benchmark metadata and type definitions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Copyright 2026 0xClandestine, Ekryski, TheTom, Ambisphaeric
//! SPDX-License-Identifier: Apache-2.0
//! MetalTile kernel standard library: benchmark metadata and type definitions.
//!
//! `metaltile-std` provides the data types shared between kernel definitions
//! (`#[bench_kernel]`) and the CLI runner. It contains no GPU runtime code.

pub mod bench_types;
pub mod error;
pub mod ffai;
pub mod mlx;
pub mod probe;
pub mod run_spec;
pub mod runner;
pub mod spec;
pub mod stats;