Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要计算 cufft forward and inverse algorithm 的 gflops 。
我有 :
double gflops = 1.0e-9 * dNumOps/gpuTime;
但我不知道如何设置 dNumOps ,我需要知道 cufft 正向和反向的总操作。
我记得 fft 通常有一个 N*logr(N) 操作,其中 r 是 fft 中数据集划分的数量,但是对于 cufft 呢?