0

スタックオーバーフローに関する私の最初の質問。

私はcudaが初めてです。
単純に 2D 複素数から複素数への FFT を実行したいだけです。
入力データは処理され、パディングは必要ありません。
期待した結果しか得られません。これが私のコードです:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>

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

typedef float2 Complex;

#define M2 512          // number of rows
#define N2 2048         // number of columns

int main()
{
    int     i, j;
    FILE    *fp;
    char    *fmt = "%16e";

    // Allocate memory for h_input and h_output on host
    // And make sure they are continuous

    Complex     **h_input, **h_output;

    h_input = (Complex **)malloc(M2*sizeof(Complex *));
    h_output= (Complex **)malloc(M2*sizeof(Complex *));

    h_input[0] = (Complex *)malloc(M2*N2*sizeof(Complex));
    h_output[0]= (Complex *)malloc(M2*N2*sizeof(Complex));

    for (i = 1; i < M2; i++){
        h_input[i] = h_input[i - 1] + N2;
        h_output[i]= h_output[i - 1] + N2;
    }

    // Load h_input from a file 
    if ((fp = fopen("INFLU_ORIGIN.DAT", "rt")) == NULL){
        printf("\nCannot open file strike any key exit!");
    }

    for (i = 0; i <= M2 - 1; i++){
        for (j = 0; j <= N2 - 1; j++){
            fscanf(fp, fmt, &h_input[i][j].x);
            h_input[i][j].y = 0.0;
        }
        fscanf(fp, "%\n");
    }

    fclose(fp);


    // allocate memory on device and copy h_input into d_array
    Complex     *d_array;
    size_t      host_orig_pitch = N2 * sizeof(Complex);
    size_t      pitch;

    cudaMallocPitch(&d_array, &pitch, N2 * sizeof(Complex), M2);

    cudaMemcpy2D(d_array, pitch, h_input[0], host_orig_pitch, 
        N2* sizeof(Complex), M2, cudaMemcpyHostToDevice);


    // Copy d_array back to host, and write it to a file
    // to check if they are as correctly copied into device

    cudaMemcpy2D(h_output[0], host_orig_pitch, d_array, pitch, 
        N2* sizeof(Complex), M2, cudaMemcpyDeviceToHost);

    if ((fp = fopen("INFLU_FFT_GET.DAT", "wt")) == NULL){
        printf("\nCannot create file strike any key exit!");
    }

    for (i = 0; i <= M2 - 1; i++){
        for (j = 0; j <= N2 - 1; j++){
            fprintf(fp, fmt, h_output[i][j].x);
        }
        fprintf(fp, "%\n");
    }

    fclose(fp);


    // create CUFFT plan
    cufftHandle plan;
    cufftResult filter_result;

    filter_result = cufftPlan2d(&plan, M2, N2, CUFFT_C2C);

    if (filter_result != CUFFT_SUCCESS){
        printf("\n failed to create plan \n");
    }
    else{
        printf("\n succeeded in creating plan \n");
    }

    // perform forward FFT on d_array
    printf("\nTransforming influence coefficient cufftExecC2C\n");
    filter_result = cufftExecC2C(plan, (cufftComplex *)d_array, 
        (cufftComplex *)d_array, CUFFT_FORWARD);

    if (filter_result != CUFFT_SUCCESS){
        printf("\ntransform failed\n");
    }
    else{
        printf("\ntranform succeed\n");
    }

    // Copy the fft result to host, write it to a file
    // to observe the result of FFT
    cudaMemcpy2D(h_output[0], host_orig_pitch, d_array, pitch, 
        N2* sizeof(Complex), M2, cudaMemcpyHostToDevice);

    if ((fp = fopen("INFLU_FFT_C.DAT", "wt")) == NULL){
        printf("\nCannot create file strike any key exit!");
    }

    for (i = 0; i <= M2-1; i++){
        for (j = 0; j <= N2-1; j++){
            fprintf(fp, fmt, h_output[i][j].x);
        }
        fprintf(fp, "%\n");
    }

    fclose(fp);

    cufftDestroy(plan);

    free(h_input[0]);
    free(h_input);
    free(h_output[0]);
    free(h_output);
    cudaFree(d_array);

    cudaDeviceReset();

}

このコードのワークフローは次のとおりです。

(1) ホスト上で h_input と h_output を割り当てます
(2) ファイルから h_input にデータを読み込みます -- "INFLU.DAT"
(3) デバイス上で d_array を割り当て、h_input をそこにコピーします
(4) d_array を h_output にコピーし、次に書き込みますファイル -- "INFLU_GET.DAT"
---- d_array が正しいデータを受信したかどうかを確認します
(5) d_array で複素数から複素数への順方向 FFT を実行します
(6) d_array を h_output にコピーし、ファイルに書き込みます -- " INFLU_FFT.DAT"
---- FFT の結果を観察する

手順 (4) を実行することで、h_input の d_array へのコピーが正しいと確信できます。

私の問題は次のとおりです
。ステップ(6)で、FFTの後、d_arrayとh_outputがまだ入力と同じであることがわかりました。

入力ファイルは次のとおりです:
https://drive.google.com/file/d/0B88U83cfBwMmdGFtbGJ2MVlURDg/view?usp=sharing
ファイル名は INFLU.DAT、サイズは 16MB です。

比較用の結果ファイルがあります (Fortran で実行):
https://drive.google.com/file/d/0B88U83cfBwMmcDR1YzYyRzF4Mjg/view?usp=sharing
ファイル名は INFLU_FFT_F.DAT、サイズも 16MB です。

どんな提案でも大歓迎です!ありがとう!

4

1 に答える 1

0

問題は最後のものから来るかもしれませんcudaMemcpy():

cudaMemcpy2D(h_output[0], host_orig_pitch, d_array, pitch, 
    N2* sizeof(Complex), M2, cudaMemcpyHostToDevice);

ホストからデバイスにデータをコピーします。上記の数行と同じように、デバイスからホストにコピーしようとしていると思います。

cudaMemcpy2D(h_output[0], host_orig_pitch, d_array, pitch, 
    N2* sizeof(Complex), M2, cudaMemcpyDeviceToHost);
于 2015-07-08T16:31:23.617 に答える