Skip to content

Commit

Permalink
Merge pull request #100 from lanl/Fix_Set_Value_bug
Browse files Browse the repository at this point in the history
BUG: Remove extra set_values() function declarations
  • Loading branch information
jacob-moore22 authored Sep 27, 2024
2 parents 4d15353 + 8015177 commit b9a399a
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions src/include/kokkos_types.h
Original file line number Diff line number Diff line change
Expand Up @@ -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_;
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit b9a399a

Please sign in to comment.