Skip to content

Commit

Permalink
remove debug print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
ChuckHastings committed Nov 6, 2023
1 parent 40e3e74 commit 21b6a6d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion cpp/src/link_analysis/hits_impl.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,6 @@ std::tuple<result_t, size_t> hits(raft::handle_t const& handle,
if (diff_sum < epsilon) {
break;
} else if (iter >= max_iterations) {
std::cout << "diff_sum = " << diff_sum << ", epsilon = " << epsilon << ", iter = " << iter << std::endl;
CUGRAPH_FAIL("HITS failed to converge.");
}
}
Expand Down
2 changes: 1 addition & 1 deletion cpp/tests/link_analysis/hits_test.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2020-2022, NVIDIA CORPORATION.
* Copyright (c) 2020-2023, NVIDIA CORPORATION.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down

0 comments on commit 21b6a6d

Please sign in to comment.