From 9c32be19bf768706a874aa68d7e90964d1d80f08 Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Fri, 16 Sep 2022 11:25:35 +0200 Subject: Remove disabled and pointless OpenCL support. --- bicgstab.h | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) (limited to 'bicgstab.h') diff --git a/bicgstab.h b/bicgstab.h index cecc06d..249da18 100644 --- a/bicgstab.h +++ b/bicgstab.h @@ -21,23 +21,12 @@ #include "config.h" -#if HAVE_OPENCL -#include -#else -typedef void* cl_context; -typedef void* cl_command_queue; -#endif - typedef struct BiCGStabContext BiCGStabContext; /** * Allocate and initialize the solver for the NxN system. - * - * If the OpenCL context and command queue are provided (non-NULL), the solver - * will run using clBLAS. */ -int tdi_bicgstab_context_alloc(BiCGStabContext **ctx, int N, int maxiter, - cl_context ocl_ctx, cl_command_queue ocl_q); +int tdi_bicgstab_context_alloc(BiCGStabContext **ctx, int N, int maxiter); /** * Free the solver and all its internal state. -- cgit v1.2.3