Skip to content

Commit c890b7f

Browse files
committed
Added ;
1 parent 6785bdd commit c890b7f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/source_base/module_fft/fft_cuda.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ void FFT_CUDA<float>::setupFFT()
2828
cufftPlanMany(&c_handle, rank, n,
2929
inembed, istride, idist,
3030
onembed, ostride, odist,
31-
CUFFT_C2C, this->batch_size)
31+
CUFFT_C2C, this->batch_size);
3232
}
3333
else{
3434
cufftPlan3d(&c_handle, this->nx, this->ny, this->nz, CUFFT_C2C);
@@ -51,7 +51,7 @@ void FFT_CUDA<double>::setupFFT()
5151
cufftPlanMany(&z_handle, rank, n,
5252
inembed, istride, idist,
5353
onembed, ostride, odist,
54-
CUFFT_Z2Z, this->batch_size)
54+
CUFFT_Z2Z, this->batch_size);
5555
}
5656
else{
5757
cufftPlan3d(&z_handle, this->nx, this->ny, this->nz, CUFFT_Z2Z);

0 commit comments

Comments
 (0)