From ee7bb65fdb08c05164134a27b8a8a6ced5d660b0 Mon Sep 17 00:00:00 2001 From: Brian Kelley Date: Wed, 22 May 2024 07:28:26 -0600 Subject: [PATCH] Fix unused param warning --- sparse/impl/KokkosSparse_spmv_spec.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sparse/impl/KokkosSparse_spmv_spec.hpp b/sparse/impl/KokkosSparse_spmv_spec.hpp index 3405ae7575..67a2f05639 100644 --- a/sparse/impl/KokkosSparse_spmv_spec.hpp +++ b/sparse/impl/KokkosSparse_spmv_spec.hpp @@ -203,7 +203,8 @@ struct SPMV_MV { typedef typename YVector::non_const_value_type coefficient_type; - static void spmv_mv(const ExecutionSpace& space, Handle* handle, + // TODO: pass handle through to implementation and use tuning parameters + static void spmv_mv(const ExecutionSpace& space, Handle* /* handle */, const char mode[], const coefficient_type& alpha, const AMatrix& A, const XVector& x, const coefficient_type& beta, const YVector& y) {