Skip to content

Commit bef10aa

Browse files
committed
Remove debug print statement from binarize function
1 parent adc6cf9 commit bef10aa

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

GNNGraphs/ext/GNNGraphsCUDAExt.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ 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, T::DataType = Bool)
25-
@debug "Binarizing sparse matrix of type $(typeof(Mat)) to type $(T)"
2625
bin_vals = fill!(similar(nonzeros(Mat)), one(T))
2726
return CUSPARSE.CuSparseMatrixCSC(Mat.colPtr, rowvals(Mat), bin_vals, size(Mat))
2827
end

0 commit comments

Comments
 (0)