[package] authors = [ "nathanielsimard ", "louisfd ", ] categories = ["science", "mathematics", "algorithms"] description = "CubeCL Linear Algebra Library." edition.workspace = true keywords = [] license.workspace = true name = "cubecl-linalg" readme.workspace = true repository = "https://github.com/tracel-ai/cubecl/tree/main/cubecl-linalg" version.workspace = true [features] default = [ "std", "cubecl-runtime/default", "cubecl-core/default", ] export_tests = ["pretty_assertions"] std = ["cubecl-runtime/std", "cubecl-core/std"] [dependencies] bytemuck = { workspace = true } cubecl-core = { path = "../cubecl-core", version = "0.3.0", default-features = false } cubecl-runtime = { path = "../cubecl-runtime", version = "0.3.0", default-features = false } half = { workspace = true, features = ["bytemuck"] } pretty_assertions = { workspace = true, optional = true } [dev-dependencies] trybuild = "1"