-
Notifications
You must be signed in to change notification settings - Fork 163
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(gpu): Implement fft128 in cuda backend
- Loading branch information
1 parent
bd06971
commit 0f9b661
Showing
15 changed files
with
17,780 additions
and
2 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#include <stdint.h> | ||
extern "C" { | ||
void cuda_fourier_transform_forward_as_torus_f128_async( | ||
void *stream, uint32_t gpu_index, void *re0, void *re1, void *im0, | ||
void *im1, void const *standard, uint32_t const N, | ||
const uint32_t number_of_samples); | ||
|
||
void cuda_fourier_transform_forward_as_integer_f128_async( | ||
void *stream, uint32_t gpu_index, void *re0, void *re1, void *im0, | ||
void *im1, void const *standard, uint32_t const N, | ||
const uint32_t number_of_samples); | ||
|
||
void cuda_fourier_transform_backward_as_torus_f128_async( | ||
void *stream, uint32_t gpu_index, void *standard, void const *re0, | ||
void const *re1, void const *im0, void const *im1, uint32_t const N, | ||
const uint32_t number_of_samples); | ||
} |
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.