Skip to content

Commit

Permalink
remove unused member lower_only (#2415)
Browse files Browse the repository at this point in the history
Signed-off-by: Carl Pearson <[email protected]>
  • Loading branch information
cwpearson authored Nov 5, 2024
1 parent afb3771 commit 1f8809b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions common/src/KokkosKernels_Utils.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,6 @@ struct FillSymmetricEdgesHashMap {
in_lno_nnz_view_t adj;
hashmap_t umap;
out_lno_row_view_t pre_pps;
bool lower_only;

FillSymmetricEdgesHashMap(idx num_rows_, in_lno_row_view_t xadj_, in_lno_nnz_view_t adj_, hashmap_t hashmap_,
out_lno_row_view_t pre_pps_)
Expand Down Expand Up @@ -177,7 +176,7 @@ struct FillSymmetricLowerEdgesHashMap {
out_lno_row_view_t pre_pps;

FillSymmetricLowerEdgesHashMap(idx num_rows_, in_lno_row_view_t xadj_, in_lno_nnz_view_t adj_, hashmap_t hashmap_,
out_lno_row_view_t pre_pps_, bool /* lower_only_ */ = false)
out_lno_row_view_t pre_pps_)
: num_rows(num_rows_), nnz(adj_.extent(0)), xadj(xadj_), adj(adj_), umap(hashmap_), pre_pps(pre_pps_) {}

KOKKOS_INLINE_FUNCTION
Expand Down

0 comments on commit 1f8809b

Please sign in to comment.