Skip to content
Snippets Groups Projects
Commit b312d488 authored by Emanuele De Rubeis's avatar Emanuele De Rubeis
Browse files

FULL GPU - FFT cube creation

parent 68949672
No related branches found
No related tags found
No related merge requests found
......@@ -83,7 +83,7 @@ void op_filename() {
strcpy(buf, num_buf);
strcat(buf, outparam.fftfile);
strcpy(out.fftfile, buf);
#ifdef WRITE_DATA
strcpy(buf, num_buf);
strcat(buf, outparam.fftfile_writedata1);
strcpy(out.fftfile_writedata1, buf);
......@@ -91,7 +91,7 @@ void op_filename() {
strcpy(buf, num_buf);
strcat(buf, outparam.fftfile_writedata2);
strcpy(out.fftfile_writedata2, buf);
#endif
strcpy(buf, num_buf);
strcat(buf, outparam.fftfile2);
strcpy(out.fftfile2, buf);
......@@ -212,6 +212,7 @@ void read_parameter_file(char *fname)
{
strcpy(outparam.fftfile, buf2);
}
#ifdef WRITE_DATA
if(strcmp(buf1, "fftfile_writedata1") == 0)
{
strcpy(outparam.fftfile_writedata1, buf2);
......@@ -220,6 +221,7 @@ void read_parameter_file(char *fname)
{
strcpy(outparam.fftfile_writedata2, buf2);
}
#endif
if(strcmp(buf1, "fftfile2") == 0)
{
strcpy(outparam.fftfile2, buf2);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment