lambdaworks_gpu/lib.rs
1#[cfg(all(feature = "metal", feature = "cuda"))]
2compile_error!(
3 "Can't enable both \"metal\" and \"cuda\" features at the same time.
4If you were using the `--all-features` flag please read this crate's Cargo.toml"
5);
6
7#[cfg(feature = "metal")]
8pub mod metal;
9
10#[cfg(feature = "cuda")]
11pub mod cuda;