Skip to content

Commit

Permalink
Update mst.cu
Browse files Browse the repository at this point in the history
  • Loading branch information
afender authored Oct 27, 2020
1 parent 0000c94 commit 01c671a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion cpp/test/mst.cu
Original file line number Diff line number Diff line change
Expand Up @@ -160,9 +160,14 @@ Graph 1:
*/

const std::vector<CSRHost<int, int, float>> csr_in_h = {
// {nullptr, nullptr, nullptr, 0, 0},
{{0, 3, 5, 7, 8}, {1, 2, 3, 0, 3, 0, 0, 1}, {2, 3, 4, 2, 1, 3, 4, 1}}};

const std::vector<CSRHost<int, int, float>> csr_in2_h = {
{{0, 4, 6, 9, 12, 15, 17, 20},
{2, 4, 5, 6, 3, 6, 0, 4, 5, 1, 4, 6, 0, 2, 3, 0, 2, 0, 1, 3},
{5.0, 9.0, 1.0, 4.0, 8.0, 7.0, 5.0, 2.0, 6.0, 8.0,
3.0, 4.0, 9.0, 2.0, 3.0, 1.0, 6.0, 4.0, 7.0, 10.0}}};

typedef MSTTest<int, int, float> MSTTestSequential;
TEST_P(MSTTestSequential, Sequential) {
mst_sequential();
Expand Down

0 comments on commit 01c671a

Please sign in to comment.