Skip to content

Commit e215823

Browse files
committed
rm old print debugging
1 parent b8e160c commit e215823

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

src/asjulia.jl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,11 @@ function asCSCVectors(f::Function, A::GBMatrix{T}; freeunpacked=false) where {T}
3333
result = try
3434
f(colptr, rowidx, values, A)
3535
finally
36-
println("I'm finally")
3736
if freeunpacked
3837
ccall(:jl_free, Cvoid, (Ptr{libgb.GrB_Index},), pointer(colptr))
3938
ccall(:jl_free, Cvoid, (Ptr{libgb.GrB_Index},), pointer(rowidx))
4039
ccall(:jl_free, Cvoid, (Ptr{T},), pointer(values))
4140
else
42-
println("I repacked!")
4341
_packcscmatrix!(A, colptr, rowidx, values)
4442
end
4543
end

src/operators/binaryops.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,6 @@ macro binop(expr...)
108108
ytypes = xtypes
109109
end
110110
outtypes = symtotype(types.args[3])
111-
println(outtypes)
112111
constquote = typedbinopexprs(jlfunc, builtin, name, xtypes, ytypes, outtypes)
113112
dispatchquote = Base.remove_linenums!(quote
114113
$newfunc

0 commit comments

Comments
 (0)