diff options
author | Thomas White <taw@physics.org> | 2010-12-03 16:43:19 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2012-02-22 15:27:07 +0100 |
commit | 9aafea1bdb0255ad7d2491d96174ac3407a6ca69 (patch) | |
tree | 69bb5865124beea2285917fa4eaa62e092896525 /src/indexamajig.c | |
parent | c25120f4b71da8b82476c8a14b1617c8f7b72d57 (diff) |
Use symmetry when simulating on the GPU
Diffstat (limited to 'src/indexamajig.c')
-rw-r--r-- | src/indexamajig.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/indexamajig.c b/src/indexamajig.c index e99b1bd3..2fb6dd85 100644 --- a/src/indexamajig.c +++ b/src/indexamajig.c @@ -286,7 +286,7 @@ static void simulate_and_write(struct image *simage, struct gpu_context **gctx, * Unfortunately, setup has to go here since until now we don't know * enough about the situation. */ if ( (gctx != NULL) && (*gctx == NULL) ) { - *gctx = setup_gpu(0, simage, intensities, flags, gpu_dev); + *gctx = setup_gpu(0, simage, intensities, flags, sym, gpu_dev); } if ( (gctx != NULL) && (*gctx != NULL) ) { |