Skip to content

Commit

Permalink
Update header and namespace triangle counting test
Browse files Browse the repository at this point in the history
Fixing a small issue with the triangle counting performance test for the upcoming move of StaticCrsGraph
  • Loading branch information
lucbv authored Dec 8, 2024
1 parent 4615b00 commit b8efaef
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion perf_test/graph/KokkosGraph_triangle.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
#include <iostream>
#include "KokkosKernels_IOUtils.hpp"
#include "KokkosGraph_Triangle.hpp"
#include "KokkosSparse_StaticCrsGraph.hpp"
#include "KokkosSparse_CrsMatrix.hpp"
#include "KokkosSparse_IOUtils.hpp" //for read_kokkos_crst_graph
#include "KokkosKernels_TestStringUtils.hpp"
Expand Down Expand Up @@ -232,7 +233,7 @@ void run_experiment(int argc, char **argv, perf_test::CommonInputParams) {
using device_t = Kokkos::Device<exec_space, mem_space>;
using lno_t = KokkosKernels::default_lno_t;
using size_type = KokkosKernels::default_size_type;
using graph_t = Kokkos::StaticCrsGraph<lno_t, KokkosKernels::default_layout, device_t, void, size_type>;
using graph_t = StaticCrsGraph<lno_t, KokkosKernels::default_layout, device_t, void, size_type>;
using KernelHandle =
KokkosKernels::Experimental::KokkosKernelsHandle<size_type, lno_t, lno_t, exec_space, mem_space, mem_space>;

Expand Down

0 comments on commit b8efaef

Please sign in to comment.