aboutsummaryrefslogtreecommitdiff
path: root/src/diffraction-gpu.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/diffraction-gpu.h')
-rw-r--r--src/diffraction-gpu.h14
1 files changed, 10 insertions, 4 deletions
diff --git a/src/diffraction-gpu.h b/src/diffraction-gpu.h
index 687fecf3..a7446a98 100644
--- a/src/diffraction-gpu.h
+++ b/src/diffraction-gpu.h
@@ -19,16 +19,22 @@
#include "image.h"
#include "cell.h"
+struct gpu_context;
+
#if HAVE_OPENCL
-extern void get_diffraction_gpu(struct image *image, int na, int nb, int nc,
- int nosfac);
+extern void get_diffraction_gpu(struct gpu_context *gctx, struct image *image,
+ int na, int nb, int nc);
#else
-static void get_diffraction_gpu(struct image *image, int na, int nb, int nc,
- int nosfac)
+static void get_diffraction_gpu(struct gpu_context *gctx, struct image *image,
+ int na, int nb, int nc)
{
/* Do nothing */
ERROR("This copy of CrystFEL was not compiled with OpenCL support.\n");
}
#endif
+extern struct gpu_context *setup_gpu(int no_sfac, struct image *image,
+ struct molecule *molecule);
+extern void cleanup_gpu(struct gpu_context *gctx);
+
#endif /* DIFFRACTION_GPU_H */