Skip to content

Commit d1132d0

Browse files
Clean logging
1 parent a5d6145 commit d1132d0

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

cpu/src/ball_query.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,9 @@ std::pair<at::Tensor, at::Tensor> ball_query(at::Tensor support, at::Tensor quer
5555

5656
at::Tensor degree(at::Tensor row, int64_t num_nodes)
5757
{
58-
std::cout << "-- Start degree" << std::endl;
59-
std::cout << "Num nodes " << num_nodes << std::endl;
6058
auto zero = at::zeros(num_nodes, row.options());
61-
std::cout << "Row size " << row.size(0) << std::endl;
6259
auto one = at::ones(row.size(0), row.options());
6360
auto out = zero.scatter_add_(0, row, one);
64-
std::cout << "-- End degree" << std::endl;
6561
return out;
6662
}
6763

0 commit comments

Comments
 (0)