Skip to content

Commit 7e6694d

Browse files
Removed debug prints
Co-authored-by: Carlo Lucibello <[email protected]>
1 parent ccd9058 commit 7e6694d

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

GNNGraphs/ext/GNNGraphsCUDAExt.jl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,10 @@ GNNGraphs.dense_zeros_like(a::CUMAT_T, T::Type, sz = size(a)) = CUDA.zeros(T, sz
2222
GNNGraphs.iscuarray(x::AnyCuArray) = true
2323

2424
function GNNGraphs.binarize(Mat::CUSPARSE.CuSparseMatrixCSC)
25-
@debug "Binarizing CuSparseMatrixCSC"
2625
bin_vals = fill!(similar(nonzeros(Mat), Bool), true)
2726
return CUSPARSE.CuSparseMatrixCSC(Mat.colPtr, rowvals(Mat), bin_vals, size(Mat))
2827
end
2928
function GNNGraphs.binarize(Mat::CUSPARSE.CuSparseMatrixCSC, T::DataType)
30-
@debug "Binarizing CuSparseMatrixCSC with type $(T)"
3129
bin_vals = fill!(similar(nonzeros(Mat)), one(T))
3230
# Binarize a CuSparseMatrixCSC by setting all nonzero values to one(T)
3331
return CUSPARSE.CuSparseMatrixCSC(Mat.colPtr, rowvals(Mat), bin_vals, size(Mat))

0 commit comments

Comments
 (0)