Skip to content

Commit 6dbdf9f

Browse files
author
Wimmerer
committed
fix missing symbols
1 parent c015451 commit 6dbdf9f

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

src/lib/LibGraphBLAS.jl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -345,6 +345,10 @@ function GxB_Monoid_terminal_new_UINT32(monoid, op, identity, terminal)
345345
end
346346
monoidtermnew[UInt32] = GxB_Monoid_terminal_new_UINT32
347347
function GxB_Monoid_terminal_new_INT64(monoid, op, identity, terminal)
348+
println(monoid)
349+
println(op)
350+
println(terminal)
351+
println(identity)
348352
@wraperror ccall((:GxB_Monoid_terminal_new_INT64, libgraphblas), GrB_Info, (Ptr{GrB_Monoid}, GrB_BinaryOp, Int64, Int64), monoid, op, identity, terminal)
349353
end
350354
monoidtermnew[Int64] = GxB_Monoid_terminal_new_INT64

src/operators/binaryops.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ function _addbinaryop(
124124
end
125125
opref = Ref{libgb.GrB_BinaryOp}()
126126
binaryopfn_C = @cfunction($binaryopfn, Cvoid, (Ptr{T}, Ref{U}, Ref{V}))
127-
libgb.GrB_BinaryOp_new(opref, binaryopfn_C, ztype, xtype, ytype, op.name)
127+
libgb.GB_BinaryOp_new(opref, binaryopfn_C, ztype, xtype, ytype, op.name)
128128
op.pointers[U] = opref[]
129129
return nothing
130130
end

src/operators/unaryops.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ function _addunaryop(op::AbstractUnaryOp, fn::Function, ztype::GBType{T}, xtype:
122122
end
123123
opref = Ref{libgb.GrB_UnaryOp}()
124124
unaryopfn_C = @cfunction($unaryopfn, Cvoid, (Ptr{T}, Ref{U}))
125-
libgb.GrB_UnaryOp_new(opref, unaryopfn_C, ztype, xtype, op.name)
125+
libgb.GB_UnaryOp_new(opref, unaryopfn_C, ztype, xtype, op.name)
126126
op.pointers[U] = opref[]
127127
return nothing
128128
end

0 commit comments

Comments
 (0)