建立单个连续数据序列n维R2C变换的plan。
C interface:
kml_ffth_plan kml_ffth_plan_dft_scale_r2c(int rank, const int *n, __fp16 *in, kml_ffth_float_complex *out, unsigned flags);
函数返回一个kml_ffth_plan类型的结构体指针。将该对象作为参数传入kml_fft(f/h)_execute函数中使用,将对当前提供的输入in和输出out执行FFT变换;另外,也可以通过将该对象作为参数传入kml_ffth_execute_dft_scale_r2c函数中以对新的输入in和输出out执行FFT变换。
如果函数返回非空指针,则表示plan执行成功,否则表示执行失败。
参数名 |
数据类型 |
描述 |
输入/输出 |
---|---|---|---|
rank |
int |
FFT变换的维度是rank,约束:1 <= rank <= 3。 |
输入 |
n |
const int* |
n是维度为rank的数组,包含FFT序列每一维度的大小,约束:n[i] >= 1, for i in 0 to rank - 1。 |
输入 |
in |
|
输入待变换的数据。 |
输入 |
out |
|
输出快速傅里叶变换后的数据。 |
输出 |
flags |
unsigned int |
planning选项,描述ESTIMATE模式或PATIENT模式。 KML_FFT_ESTIMATE:ESTIMATE模式 KML_FFT_PATIENT:PATIENT模式 |
输入 |
C: "kfft.h"
C interface:
int rank = 2; int *n; n = (int*)kml_ffth_malloc(sizeof(int) * rank); n[0] = 2; n[1] = 4; double init[8] = {1, 2, 3, 4, 5, 6, 7, 8}; double *in; in = (__fp16*)kml_ffth_malloc(sizeof(__fp16) * n[0] * n[1]); for (int i = 0; i < n[0] * n[1]; i++) { in[i] = init[i]; } kml_ffth_float_complex *out; out = (kml_ffth_float_complex*)kml_ffth_malloc(sizeof(kml_ffth_float_complex) * n[0] * (n[1] / 2 + 1)); kml_ffth_plan plan; plan = kml_ffth_planh_dft_scale_r2c(rank, n, in, out, KML_FFT_ESTIMATE); kml_ffth_execute_dft_scale_r2c(plan, in, out); kml_ffth_destroy_plan(plan); kml_ffth_free(n); kml_ffth_free(in); kml_ffth_free(out); /* * out = {{3.600000e+01, 0.000000e+00}, {-4.000000e+00, 4.000000e+00}, * {-4.000000e+00, 0.000000e+00}, {-1.600000e+01, 0.000000e+00}, * {0.000000e+00, 0.000000e+00}, {0.000000e+00, 0.000000e+00}} */