aboutsummaryrefslogtreecommitdiff
path: root/bicgstab.h
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2018-04-27 16:20:23 +0200
committerAnton Khirnov <anton@khirnov.net>2018-04-27 16:20:23 +0200
commit40f16f2d2155bde6a6cc00d9946a7a424aae36d9 (patch)
tree06a38480b97853e702dccea5801835e361d0e7b9 /bicgstab.h
parent788f68c3bbf7c74b717d8894be4610d39d0d97f2 (diff)
bicgstab: make the number of iterations runtime-configurable
Diffstat (limited to 'bicgstab.h')
-rw-r--r--bicgstab.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/bicgstab.h b/bicgstab.h
index 338a4a9..cecc06d 100644
--- a/bicgstab.h
+++ b/bicgstab.h
@@ -36,7 +36,7 @@ typedef struct BiCGStabContext BiCGStabContext;
* 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 tdi_bicgstab_context_alloc(BiCGStabContext **ctx, int N, int maxiter,
cl_context ocl_ctx, cl_command_queue ocl_q);
/**