From 8aff8c658925f0c7522555ff5907632bcafe4554 Mon Sep 17 00:00:00 2001 From: Thomas White Date: Mon, 13 May 2019 15:41:54 +0200 Subject: gpu_sim_check: Succeed if GPU not available On recent OSes, OpenCL (the API) is always available, but a GPU device not always. Therefore, this test will always be built, and shouldn't fail just because a GPU isn't present. --- tests/gpu_sim_check.c | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'tests') diff --git a/tests/gpu_sim_check.c b/tests/gpu_sim_check.c index aee7a068..e42bc68b 100644 --- a/tests/gpu_sim_check.c +++ b/tests/gpu_sim_check.c @@ -3,11 +3,11 @@ * * Check that GPU simulation agrees with CPU version * - * Copyright © 2012-2015 Deutsches Elektronen-Synchrotron DESY, + * Copyright © 2012-2019 Deutsches Elektronen-Synchrotron DESY, * a research centre of the Helmholtz Association. * * Authors: - * 2012-2015 Thomas White + * 2012-2019 Thomas White * * This file is part of CrystFEL. * @@ -42,6 +42,7 @@ #include "../src/diffraction.h" #include "../src/diffraction-gpu.h" +#include "../src/cl-utils.h" #include #include #include @@ -90,6 +91,11 @@ int main(int argc, char *argv[]) SymOpList *sym; gsl_rng *rng; + if ( have_gpu_device() == 0 ) { + ERROR("No GPU device found - skipping test.\n"); + return 0; + } + rng = gsl_rng_alloc(gsl_rng_mt19937); gctx = setup_gpu(1, NULL, NULL, NULL, 0); -- cgit v1.2.3