From 80151774994fdea15c27617f6c91e9ddffe07aa4 Mon Sep 17 00:00:00 2001 From: Jacob Moore Date: Fri, 27 Sep 2024 15:42:06 -0500 Subject: [PATCH] BUG: Remove extra set_values() function declarations from ragged data types --- src/include/kokkos_types.h | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/include/kokkos_types.h b/src/include/kokkos_types.h index ff70bcfa..82127ce1 100644 --- a/src/include/kokkos_types.h +++ b/src/include/kokkos_types.h @@ -7536,10 +7536,6 @@ class RaggedDownArrayKokkos { //print values void print() const; - - //set values to input - KOKKOS_INLINE_FUNCTION - void set_values(T val); // Kokkos views of strides and start indices Strides1D mystrides_; @@ -7895,10 +7891,6 @@ class DynamicRaggedRightArrayKokkos { KOKKOS_INLINE_FUNCTION const std::string get_name() const; - // set values to input - KOKKOS_INLINE_FUNCTION - void set_values(T val); - // Overload operator() to access data as array(i,j), // where i=[0:N-1], j=[stride(i)] KOKKOS_INLINE_FUNCTION @@ -8115,10 +8107,6 @@ class DynamicRaggedDownArrayKokkos { KOKKOS_INLINE_FUNCTION const std::string get_name() const; - //set values to input - KOKKOS_INLINE_FUNCTION - void set_values(T val); - // Overload operator() to access data as array(i,j), // where i=[stride(j)], j=[0:N-1] KOKKOS_INLINE_FUNCTION