Skip to content

Commit 620a2e5

Browse files
committed
Remove debug statements
1 parent f0f715b commit 620a2e5

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

GNNGraphs/ext/GNNGraphsCUDAExt.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ end
4242
function GNNGraphs.to_sparse(coo::CUDA_COO_T, T = nothing; dir = :out, num_nodes = nothing,
4343
weighted = true, is_coalesced = false)
4444
s, t, eweight = coo
45-
@debug "Using CUDA to_sparse for COO with is_coalesced=$is_coalesced"
4645
T = T === nothing ? (eweight === nothing ? eltype(s) : eltype(eweight)) : T
4746

4847
if eweight === nothing || !weighted

GNNlib/ext/GNNlibCUDAExt.jl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ const CUDA_COO_T = Tuple{T, T, V} where {T <: AnyCuArray{<:Integer}, V <: Union{
1515
## avoid the fast path on gpu until we have better cuda support
1616
function GNNlib.propagate(::typeof(copy_xj), g::GNNGraph{<:COO_T}, ::typeof(+),
1717
xi, xj::AnyCuMatrix, e)
18-
@debug "Using CUDA propagate for copy_xj"
1918
A = _adjacency_matrix(g, eltype(xj); weighted = false)
2019

2120
return xj * A
@@ -52,7 +51,6 @@ end
5251

5352
function _adjacency_matrix(g::GNNGraph{<:CUDA_COO_T}, T::DataType = eltype(g); dir = :out,
5453
weighted = true)
55-
@debug "Using CUDA _adjacency_matrix for COO GNNGraph"
5654
if !g.is_coalesced
5755
# Revisit after
5856
# https://github.com/JuliaGPU/CUDA.jl/issues/1113

0 commit comments

Comments
 (0)