forked from vosen/ZLUDA
-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add dummy cuFFTW library. * Bump version. * Implement fft functions required to run torch fftn, ifftn, and rfftn.
- Loading branch information
1 parent
d60bddb
commit c4994b3
Showing
14 changed files
with
1,049 additions
and
193 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,65 +1,66 @@ | ||
[workspace] | ||
|
||
resolver = "2" | ||
|
||
# Remember to also update the project's Cargo.toml | ||
# if it's a top-level project | ||
members = [ | ||
"atiadlxx-sys", | ||
"comgr", | ||
"cuda_base", | ||
"cuda_types", | ||
"detours-sys", | ||
"ext/llvm-sys.rs", | ||
"hip_common", | ||
"hip_runtime-sys", | ||
"hipblaslt-sys", | ||
"hipfft-sys", | ||
"hiprt-sys", | ||
"miopen-sys", | ||
"offline_compiler", | ||
"optix_base", | ||
"optix_dump", | ||
"process_address_table", | ||
"ptx", | ||
"rocblas-sys", | ||
"rocm_smi-sys", | ||
"rocsparse-sys", | ||
"xtask", | ||
"zluda", | ||
"zluda_api", | ||
"zluda_blas", | ||
"zluda_blaslt", | ||
"zluda_ccl", | ||
"zluda_dark_api", | ||
"zluda_dnn", | ||
"zluda_dump", | ||
"zluda_fft", | ||
"zluda_inject", | ||
"zluda_lib", | ||
"zluda_llvm", | ||
"zluda_ml", | ||
"zluda_redirect", | ||
"zluda_rt", | ||
"zluda_rtc", | ||
"zluda_runtime", | ||
"zluda_sparse", | ||
] | ||
|
||
# Cargo does not support OS-specific or profile-specific | ||
# targets. We keep list here to bare minimum and rely on xtask | ||
default-members = [ | ||
"zluda_lib", | ||
"zluda_ml", | ||
"zluda_inject", | ||
"zluda_redirect" | ||
] | ||
|
||
[profile.dev.package.blake3] | ||
opt-level = 3 | ||
|
||
[profile.dev.package.lz4-sys] | ||
opt-level = 3 | ||
|
||
[profile.dev.package.xtask] | ||
opt-level = 2 | ||
[workspace] | ||
|
||
resolver = "2" | ||
|
||
# Remember to also update the project's Cargo.toml | ||
# if it's a top-level project | ||
members = [ | ||
"atiadlxx-sys", | ||
"comgr", | ||
"cuda_base", | ||
"cuda_types", | ||
"detours-sys", | ||
"ext/llvm-sys.rs", | ||
"hip_common", | ||
"hip_runtime-sys", | ||
"hipblaslt-sys", | ||
"hipfft-sys", | ||
"hiprt-sys", | ||
"miopen-sys", | ||
"offline_compiler", | ||
"optix_base", | ||
"optix_dump", | ||
"process_address_table", | ||
"ptx", | ||
"rocblas-sys", | ||
"rocm_smi-sys", | ||
"rocsparse-sys", | ||
"xtask", | ||
"zluda", | ||
"zluda_api", | ||
"zluda_blas", | ||
"zluda_blaslt", | ||
"zluda_ccl", | ||
"zluda_dark_api", | ||
"zluda_dnn", | ||
"zluda_dump", | ||
"zluda_fft", | ||
"zluda_fftw", | ||
"zluda_inject", | ||
"zluda_lib", | ||
"zluda_llvm", | ||
"zluda_ml", | ||
"zluda_redirect", | ||
"zluda_rt", | ||
"zluda_rtc", | ||
"zluda_runtime", | ||
"zluda_sparse", | ||
] | ||
|
||
# Cargo does not support OS-specific or profile-specific | ||
# targets. We keep list here to bare minimum and rely on xtask | ||
default-members = [ | ||
"zluda_lib", | ||
"zluda_ml", | ||
"zluda_inject", | ||
"zluda_redirect" | ||
] | ||
|
||
[profile.dev.package.blake3] | ||
opt-level = 3 | ||
|
||
[profile.dev.package.lz4-sys] | ||
opt-level = 3 | ||
|
||
[profile.dev.package.xtask] | ||
opt-level = 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.