forked from rapidsai/cugraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mg_sssp_test.cpp
296 lines (243 loc) · 11.5 KB
/
mg_sssp_test.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
/*
* Copyright (c) 2021-2022, NVIDIA CORPORATION.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <utilities/base_fixture.hpp>
#include <utilities/device_comm_wrapper.hpp>
#include <utilities/high_res_clock.h>
#include <utilities/mg_utilities.hpp>
#include <utilities/test_graphs.hpp>
#include <utilities/test_utilities.hpp>
#include <utilities/thrust_wrapper.hpp>
#include <cugraph/algorithms.hpp>
#include <cugraph/graph.hpp>
#include <cugraph/graph_functions.hpp>
#include <cugraph/graph_view.hpp>
#include <cugraph/partition_manager.hpp>
#include <raft/comms/comms.hpp>
#include <raft/comms/mpi_comms.hpp>
#include <raft/handle.hpp>
#include <rmm/device_scalar.hpp>
#include <rmm/device_uvector.hpp>
#include <gtest/gtest.h>
#include <random>
struct SSSP_Usecase {
size_t source{0};
bool check_correctness{true};
};
template <typename input_usecase_t>
class Tests_MGSSSP : public ::testing::TestWithParam<std::tuple<SSSP_Usecase, input_usecase_t>> {
public:
Tests_MGSSSP() {}
static void SetUpTestCase() { handle_ = cugraph::test::initialize_mg_handle(); }
static void TearDownTestCase() { handle_.reset(); }
virtual void SetUp() {}
virtual void TearDown() {}
// Compare the results of running SSSP on multiple GPUs to that of a single-GPU run
template <typename vertex_t, typename edge_t, typename weight_t>
void run_current_test(SSSP_Usecase const& sssp_usecase, input_usecase_t const& input_usecase)
{
HighResClock hr_clock{};
// 1. create MG graph
if (cugraph::test::g_perf) {
RAFT_CUDA_TRY(cudaDeviceSynchronize()); // for consistent performance measurement
handle_->get_comms().barrier();
hr_clock.start();
}
auto [mg_graph, d_mg_renumber_map_labels] =
cugraph::test::construct_graph<vertex_t, edge_t, weight_t, false, true>(
*handle_, input_usecase, true, true);
if (cugraph::test::g_perf) {
RAFT_CUDA_TRY(cudaDeviceSynchronize()); // for consistent performance measurement
handle_->get_comms().barrier();
double elapsed_time{0.0};
hr_clock.stop(&elapsed_time);
std::cout << "MG construct_graph took " << elapsed_time * 1e-6 << " s.\n";
}
auto mg_graph_view = mg_graph.view();
ASSERT_TRUE(static_cast<vertex_t>(sssp_usecase.source) >= 0 &&
static_cast<vertex_t>(sssp_usecase.source) < mg_graph_view.number_of_vertices())
<< "Invalid starting source.";
// 2. run MG SSSP
rmm::device_uvector<weight_t> d_mg_distances(mg_graph_view.local_vertex_partition_range_size(),
handle_->get_stream());
rmm::device_uvector<vertex_t> d_mg_predecessors(
mg_graph_view.local_vertex_partition_range_size(), handle_->get_stream());
if (cugraph::test::g_perf) {
RAFT_CUDA_TRY(cudaDeviceSynchronize()); // for consistent performance measurement
handle_->get_comms().barrier();
hr_clock.start();
}
cugraph::sssp(*handle_,
mg_graph_view,
d_mg_distances.data(),
d_mg_predecessors.data(),
static_cast<vertex_t>(sssp_usecase.source),
std::numeric_limits<weight_t>::max());
if (cugraph::test::g_perf) {
RAFT_CUDA_TRY(cudaDeviceSynchronize()); // for consistent performance measurement
handle_->get_comms().barrier();
double elapsed_time{0.0};
hr_clock.stop(&elapsed_time);
std::cout << "MG SSSP took " << elapsed_time * 1e-6 << " s.\n";
}
// 3. copmare SG & MG results
if (sssp_usecase.check_correctness) {
// 3-1. aggregate MG results
auto d_mg_aggregate_renumber_map_labels = cugraph::test::device_gatherv(
*handle_, (*d_mg_renumber_map_labels).data(), (*d_mg_renumber_map_labels).size());
auto d_mg_aggregate_distances =
cugraph::test::device_gatherv(*handle_, d_mg_distances.data(), d_mg_distances.size());
auto d_mg_aggregate_predecessors =
cugraph::test::device_gatherv(*handle_, d_mg_predecessors.data(), d_mg_predecessors.size());
if (handle_->get_comms().get_rank() == int{0}) {
// 3-2. unrenumber MG results
cugraph::unrenumber_int_vertices<vertex_t, false>(
*handle_,
d_mg_aggregate_predecessors.data(),
d_mg_aggregate_predecessors.size(),
d_mg_aggregate_renumber_map_labels.data(),
std::vector<vertex_t>{mg_graph_view.number_of_vertices()});
std::tie(std::ignore, d_mg_aggregate_distances) = cugraph::test::sort_by_key(
*handle_, d_mg_aggregate_renumber_map_labels, d_mg_aggregate_distances);
std::tie(std::ignore, d_mg_aggregate_predecessors) = cugraph::test::sort_by_key(
*handle_, d_mg_aggregate_renumber_map_labels, d_mg_aggregate_predecessors);
// 3-3. create SG graph
cugraph::graph_t<vertex_t, edge_t, weight_t, false, false> sg_graph(*handle_);
std::tie(sg_graph, std::ignore) =
cugraph::test::construct_graph<vertex_t, edge_t, weight_t, false, false>(
*handle_, input_usecase, true, false);
auto sg_graph_view = sg_graph.view();
ASSERT_TRUE(mg_graph_view.number_of_vertices() == sg_graph_view.number_of_vertices());
// 3-4. run SG SSSP
rmm::device_uvector<weight_t> d_sg_distances(
sg_graph_view.local_vertex_partition_range_size(), handle_->get_stream());
rmm::device_uvector<vertex_t> d_sg_predecessors(
sg_graph_view.local_vertex_partition_range_size(), handle_->get_stream());
vertex_t unrenumbered_source{};
raft::update_host(&unrenumbered_source,
d_mg_aggregate_renumber_map_labels.data() + sssp_usecase.source,
size_t{1},
handle_->get_stream());
handle_->sync_stream();
cugraph::sssp(*handle_,
sg_graph_view,
d_sg_distances.data(),
d_sg_predecessors.data(),
unrenumbered_source,
std::numeric_limits<weight_t>::max());
// 3-5. compare
auto h_sg_offsets =
cugraph::test::to_host(*handle_, sg_graph_view.local_edge_partition_view().offsets());
auto h_sg_indices =
cugraph::test::to_host(*handle_, sg_graph_view.local_edge_partition_view().indices());
auto h_sg_weights =
cugraph::test::to_host(*handle_, *(sg_graph_view.local_edge_partition_view().weights()));
auto h_mg_aggregate_distances = cugraph::test::to_host(*handle_, d_mg_aggregate_distances);
auto h_mg_aggregate_predecessors =
cugraph::test::to_host(*handle_, d_mg_aggregate_predecessors);
auto h_sg_distances = cugraph::test::to_host(*handle_, d_sg_distances);
auto h_sg_predecessors = cugraph::test::to_host(*handle_, d_sg_predecessors);
auto max_weight_element = std::max_element(h_sg_weights.begin(), h_sg_weights.end());
auto epsilon = *max_weight_element * weight_t{1e-6};
auto nearly_equal = [epsilon](auto lhs, auto rhs) {
return std::fabs(lhs - rhs) < epsilon;
};
ASSERT_TRUE(std::equal(h_mg_aggregate_distances.begin(),
h_mg_aggregate_distances.end(),
h_sg_distances.begin(),
nearly_equal));
for (size_t i = 0; i < h_mg_aggregate_predecessors.size(); ++i) {
if (h_mg_aggregate_predecessors[i] == cugraph::invalid_vertex_id<vertex_t>::value) {
ASSERT_TRUE(h_sg_predecessors[i] == h_mg_aggregate_predecessors[i])
<< "vertex reachability does not match with the SG result.";
} else {
auto pred_distance = h_sg_distances[h_mg_aggregate_predecessors[i]];
bool found{false};
for (auto j = h_sg_offsets[h_mg_aggregate_predecessors[i]];
j < h_sg_offsets[h_mg_aggregate_predecessors[i] + 1];
++j) {
if (h_sg_indices[j] == i) {
if (nearly_equal(pred_distance + h_sg_weights[j], h_sg_distances[i])) {
found = true;
break;
}
}
}
ASSERT_TRUE(found)
<< "no edge from the predecessor vertex to this vertex with the matching weight.";
}
}
}
}
}
private:
static std::unique_ptr<raft::handle_t> handle_;
};
template <typename input_usecase_t>
std::unique_ptr<raft::handle_t> Tests_MGSSSP<input_usecase_t>::handle_ = nullptr;
using Tests_MGSSSP_File = Tests_MGSSSP<cugraph::test::File_Usecase>;
using Tests_MGSSSP_Rmat = Tests_MGSSSP<cugraph::test::Rmat_Usecase>;
TEST_P(Tests_MGSSSP_File, CheckInt32Int32Float)
{
auto param = GetParam();
run_current_test<int32_t, int32_t, float>(std::get<0>(param), std::get<1>(param));
}
TEST_P(Tests_MGSSSP_Rmat, CheckInt32Int32Float)
{
auto param = GetParam();
run_current_test<int32_t, int32_t, float>(
std::get<0>(param), override_Rmat_Usecase_with_cmd_line_arguments(std::get<1>(param)));
}
TEST_P(Tests_MGSSSP_Rmat, CheckInt32Int64Float)
{
auto param = GetParam();
run_current_test<int32_t, int64_t, float>(
std::get<0>(param), override_Rmat_Usecase_with_cmd_line_arguments(std::get<1>(param)));
}
TEST_P(Tests_MGSSSP_Rmat, CheckInt64Int64Float)
{
auto param = GetParam();
run_current_test<int64_t, int64_t, float>(
std::get<0>(param), override_Rmat_Usecase_with_cmd_line_arguments(std::get<1>(param)));
}
INSTANTIATE_TEST_SUITE_P(
file_test,
Tests_MGSSSP_File,
::testing::Values(
// enable correctness checks
std::make_tuple(SSSP_Usecase{0}, cugraph::test::File_Usecase("test/datasets/karate.mtx")),
std::make_tuple(SSSP_Usecase{0}, cugraph::test::File_Usecase("test/datasets/dblp.mtx")),
std::make_tuple(SSSP_Usecase{1000},
cugraph::test::File_Usecase("test/datasets/wiki2003.mtx"))));
INSTANTIATE_TEST_SUITE_P(rmat_small_test,
Tests_MGSSSP_Rmat,
::testing::Values(
// enable correctness checks
std::make_tuple(SSSP_Usecase{0},
cugraph::test::Rmat_Usecase(
10, 16, 0.57, 0.19, 0.19, 0, false, false, 0, true))));
INSTANTIATE_TEST_SUITE_P(
rmat_benchmark_test, /* note that scale & edge factor can be overridden in benchmarking (with
--gtest_filter to select only the rmat_benchmark_test with a specific
vertex & edge type combination) by command line arguments and do not
include more than one Rmat_Usecase that differ only in scale or edge
factor (to avoid running same benchmarks more than once) */
Tests_MGSSSP_Rmat,
::testing::Values(
// disable correctness checks for large graphs
std::make_tuple(
SSSP_Usecase{0, false},
cugraph::test::Rmat_Usecase(20, 32, 0.57, 0.19, 0.19, 0, false, false, 0, true))));
CUGRAPH_MG_TEST_PROGRAM_MAIN()