diff options
author | Thomas White <taw@physics.org> | 2010-03-01 17:10:41 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2010-03-01 17:52:03 +0100 |
commit | f213d4dc787d4d6edb8981c41138f4ace1e2f324 (patch) | |
tree | b9e3b4d59993474a6c5e4c769d3d4f75638b04c1 /src/pattern_sim.c | |
parent | 8c01976e4bc6670c6f824479357c42caa18fb2ff (diff) |
Use a lookup table for sinc values in GPU calculation
Diffstat (limited to 'src/pattern_sim.c')
-rw-r--r-- | src/pattern_sim.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pattern_sim.c b/src/pattern_sim.c index 65e020ac..4eee7c57 100644 --- a/src/pattern_sim.c +++ b/src/pattern_sim.c @@ -276,9 +276,9 @@ int main(int argc, char *argv[]) if ( config_gpu ) { if ( gctx == NULL ) { gctx = setup_gpu(config_nosfac, &image, - image.molecule); + image.molecule, na, nb, nc); } - get_diffraction_gpu(gctx, &image, na, nb, nc); + get_diffraction_gpu(gctx, &image); } else { get_diffraction(&image, na, nb, nc, config_nosfac, !config_nowater); |