From cf163cb27898705b4f14344ad0b9a8edc2181d35 Mon Sep 17 00:00:00 2001 From: Thomas White Date: Fri, 19 Feb 2010 15:49:10 +0100 Subject: Split OpenCL initialisation into separate routing to avoid re-compiling all the time --- src/diffraction-gpu.h | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) (limited to 'src/diffraction-gpu.h') 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 */ -- cgit v1.2.3