Files
luminal/crates/luminal_metal/Cargo.toml
xiaoniaoyouhuajiang 6c7f60299d feat(metal): add initial luminal_metal crate skeleton
- Add MetalRuntime implementing Runtime trait
- Add MetalKernelOp trait for Metal kernel operations
- Implement initial ops: MetalExp2, MetalAdd, MetalMul
- Add egglog integration with rewrites for HLIR->Metal ops
2026-01-12 11:34:05 +08:00

19 lines
324 B
TOML

[package]
name = "luminal_metal"
version = "0.2.0"
edition = "2021"
description = "Metal backend for luminal"
license = "MIT OR Apache-2.0"
[dependencies]
luminal = { path = "../.." }
metal = "0.31"
objc = "0.2"
as-any = "0.3.2"
itertools = "0.12.1"
half = "2.7.1"
tracing = "0.1.43"
[dev-dependencies]
proptest = "1.9.0"