diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/gpu_sim_check.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/gpu_sim_check.c b/tests/gpu_sim_check.c index ba51b8db..8c666775 100644 --- a/tests/gpu_sim_check.c +++ b/tests/gpu_sim_check.c @@ -171,7 +171,7 @@ int main(int argc, char *argv[]) gpu_image.spectrum = generate_tophat(&gpu_image); start = get_hires_seconds(); - if ( get_diffraction_gpu(gctx, &gpu_image, 8, 8, 8, cell, 1) ) { + if ( get_diffraction_gpu(gctx, &gpu_image, 8, 8, 8, cell, 0, 0) ) { return 1; } end = get_hires_seconds(); @@ -195,7 +195,7 @@ int main(int argc, char *argv[]) start = get_hires_seconds(); get_diffraction(&cpu_image, 8, 8, 8, NULL, NULL, NULL, cell, - GRADIENT_MOSAIC, sym, 1); + GRADIENT_MOSAIC, sym, 0, 0); end = get_hires_seconds(); cpu_time = end - start; |