Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion crates/cubecl-cuda/src/compute/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,8 @@ impl ComputeServer for CudaServer {
pixels_per_column: _,
} => {
return Err(LaunchError::Unknown {
context: "CUDA version 12.8 required for tensor map format Im2colWide".into,
context: "CUDA version 12.8 required for tensor map format Im2colWide"
.into(),
});
}
};
Expand Down
16 changes: 16 additions & 0 deletions examples/permute/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
[package]
name = "permute-example"
version = "0.1.0"
edition = "2021"
publish = false

[dependencies]
cubecl = { path = "../../crates/cubecl", version = "=0.9.0-pre.3" }
cubecl-core = { path = "../../crates/cubecl-core", default-features = false }
cubecl-std = { path = "../../crates/cubecl-std", default-features = false }


[features]
default = []
wgpu = ["cubecl/wgpu"]
cuda = ["cubecl/cuda"]
Loading
Loading