gpufft-cuda-sys 0.1.2

Raw FFI bindings to cuFFT + CUDA Runtime. Internal plumbing for gpufft.
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
 * gpufft-cuda-sys: bindgen surface for cuFFT + the CUDA Runtime subset we
 * need for memory management. Filtered down to the FFT and buffer paths by
 * the allowlists in build.rs.
 */

#ifndef GPUFFT_CUDA_WRAPPER_H
#define GPUFFT_CUDA_WRAPPER_H

#include <cuda_runtime.h>
#include <cufft.h>

#endif /* GPUFFT_CUDA_WRAPPER_H */