[package]
edition = "2021"
rust-version = "1.89"
name = "cutile"
version = "0.0.1"
authors = ["Melih Elibol"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "cuTile Rust lets programmers safely author and execute tile kernels directly in Rust."
readme = "README.md"
keywords = [
"mlir",
"cutile",
"cuda",
"gpu",
"async",
]
license = "Apache-2.0"
repository = "https://github.com/nvlabs/cutile-rs"
[features]
default = []
[lib]
name = "cutile"
path = "src/lib.rs"
[[test]]
name = "arange"
path = "tests/arange.rs"
[[test]]
name = "basics_and_inlining"
path = "tests/basics_and_inlining.rs"
[[test]]
name = "binary_math_ops"
path = "tests/binary_math_ops.rs"
[[test]]
name = "bitwise_and_bitcast_ops"
path = "tests/bitwise_and_bitcast_ops.rs"
[[test]]
name = "control_flow_ops"
path = "tests/control_flow_ops.rs"
[[test]]
name = "error_quality"
path = "tests/error_quality.rs"
[[test]]
name = "gpu"
path = "tests/gpu.rs"
[[test]]
name = "gpu_execution_ops"
path = "tests/gpu_execution_ops.rs"
[[test]]
name = "integer_ops"
path = "tests/integer_ops.rs"
[[test]]
name = "memory_and_atomic_ops"
path = "tests/memory_and_atomic_ops.rs"
[[test]]
name = "optimization_hints"
path = "tests/optimization_hints.rs"
[[test]]
name = "reduce_scan_ops"
path = "tests/reduce_scan_ops.rs"
[[test]]
name = "slice_non_divisible"
path = "tests/slice_non_divisible.rs"
[[test]]
name = "span_source_location"
path = "tests/span_source_location.rs"
[[test]]
name = "specialization_bits"
path = "tests/specialization_bits.rs"
[[test]]
name = "tensor_and_matrix_ops"
path = "tests/tensor_and_matrix_ops.rs"
[[test]]
name = "tensor_reinterpret"
path = "tests/tensor_reinterpret.rs"
[[test]]
name = "tensor_views"
path = "tests/tensor_views.rs"
[[test]]
name = "type_conversion_ops"
path = "tests/type_conversion_ops.rs"
[[test]]
name = "unary_math_ops"
path = "tests/unary_math_ops.rs"
[dependencies.anyhow]
version = "1"
[dependencies.cuda-async]
version = "0.0.1"
[dependencies.cuda-core]
version = "0.0.1"
[dependencies.cutile-compiler]
version = "0.0.1"
[dependencies.cutile-ir]
version = "0.0.1"
[dependencies.cutile-macro]
version = "0.0.1"
[dependencies.half]
version = "2"
[dependencies.num-traits]
version = "0"
[dependencies.proc-macro2]
version = "1"
features = ["span-locations"]
[dependencies.quote]
version = "1.0.35"
[dependencies.syn]
version = "2.0"
features = [
"full",
"extra-traits",
"visit",
"visit-mut",
"fold",
]