-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (33 loc) · 863 Bytes
/
Copy pathCargo.toml
File metadata and controls
40 lines (33 loc) · 863 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[package]
name = "gpu-fft"
version = "1.2.0"
edition = "2021"
authors = ["Eugene Hauptmann"]
description = "A Rust library for performing Fast Fourier Transform (FFT) and Inverse FFT using GPU acceleration."
repository = "https://github.com/eugenehp/gpu-fft.git"
keywords = ["FFT", "GPU", "CubeCL", "Rust", "Kernel"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/eugenehp/gpu-fft"
documentation = "https://docs.rs/gpu-fft"
exclude = [
"bench-results/**/*"
]
[dependencies]
cubecl = { version = "0.9.0" }
[features]
default = ["wgpu"]
cuda = ["cubecl/cuda"]
wgpu = ["cubecl/wgpu"]
mlx = ["dep:cc"]
[build-dependencies]
cc = { version = "1.2", optional = true }
[dev-dependencies]
criterion = "0.8.2"
[[bench]]
harness = false
name = "fft_bench"
[[bench]]
harness = false
name = "compare_bench"
required-features = ["wgpu", "mlx"]