Commit b312d488 authored by Emanuele De Rubeis's avatar Emanuele De Rubeis
Browse files

FULL GPU - FFT cube creation

parent 68949672
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -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);