[package]
edition = "2024"
name = "cubecl-opt"
version = "0.10.0"
authors = ["Genna Wingert"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Compiler optimizations for CubeCL"
readme = "README.md"
keywords = [
"gpu",
"compiler",
]
categories = ["algorithms"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/tracel-ai/cubecl/tree/main/crates/cubecl-opt"
resolver = "2"
[features]
default = [
"std",
"cubecl-common/default",
"cubecl-ir/default",
]
std = ["cubecl-common/std"]
tracing = [
"cubecl-common/tracing",
"cubecl-ir/tracing",
"cubecl-core/tracing",
]
[lib]
name = "cubecl_opt"
path = "src/lib.rs"
[dependencies.cubecl-common]
version = "0.10.0"
default-features = false
[dependencies.cubecl-core]
version = "0.10.0"
default-features = false
[dependencies.cubecl-ir]
version = "0.10.0"
default-features = false
[dependencies.float-ord]
version = "0.3"
[dependencies.log]
version = "0.4"
[dependencies.num]
version = "0.4"
[dependencies.petgraph]
version = "0.8"
[dependencies.smallvec]
version = "1"
features = [
"union",
"const_generics",
"const_new",
]
[dependencies.stable-vec]
version = "0.4"
[dependencies.type-map]
version = "0.5"
[dev-dependencies.test-log]
version = "^0.2"
features = ["trace"]
default-features = false
[lints.clippy]
doc_markdown = "warn"
[lints.rust]
warnings = "warn"
[lints.rustdoc]
broken_intra_doc_links = "warn"
invalid_html_tags = "warn"