Skip to content

Commit 201922a

Browse files
committed
remove prints
1 parent 2693efc commit 201922a

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

csrc/cuda/segment_coo_cuda.cu

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -215,12 +215,6 @@ segment_coo_cuda(torch::Tensor src, torch::Tensor index,
215215
auto N = out.size(dim);
216216
auto avg_len = (float)E_2 / (float)N;
217217

218-
std::cout << "E " << E << std::endl;
219-
std::cout << "E2 " << E_2 << std::endl;
220-
std::cout << "E1 " << E_1 << std::endl;
221-
std::cout << "K " << K << std::endl;
222-
std::cout << "N " << N << std::endl;
223-
224218
auto index_info = at::cuda::detail::getTensorInfo<int64_t, int>(index);
225219
auto stream = at::cuda::getCurrentCUDAStream();
226220
AT_DISPATCH_ALL_TYPES(src.scalar_type(), "segment_coo_kernel", [&] {

0 commit comments

Comments
 (0)