Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ SuiteSparse = "4607b0f0-06f3-5cda-b6b1-a6196a1729e9"
ChainRulesCore = "1"
MacroTools = "0.5"
Preferences = "1"
SpecialFunctions = "2"
SSGraphBLAS_jll = "7.2"
SpecialFunctions = "2"
StorageOrders = "0.2"
julia = "1.6"
KLU = "0.4"

Empty file added lib/libinternal.jl
Empty file.
17 changes: 11 additions & 6 deletions src/SuiteSparseGraphBLAS.jl
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ using SpecialFunctions: lgamma, gamma, erf, erfc
using Base.Broadcast
using Serialization
using StorageOrders
using KLU

export ColMajor, RowMajor, storageorder #reexports from StorageOrders
include("abstracts.jl")
Expand All @@ -31,7 +32,7 @@ include("libutils.jl")
include("../lib/LibGraphBLAS_gen.jl")
using .LibGraphBLAS

include("operators/libgbops.jl")
include("operators/libgbops.jl")

include("gbtypes.jl")
include("types.jl")
Expand Down Expand Up @@ -61,7 +62,12 @@ include("vector.jl")
include("matrix.jl")
include("abstractgbarray.jl")
include("random.jl")
#
# Miscellaneous Operations
include("print.jl")
include("pack.jl")
include("unpack.jl")
include("options.jl")
# Core operations (mul, elementwise, etc)
include("operations/operationutils.jl")
include("operations/transpose.jl")
include("operations/mul.jl")
Expand All @@ -74,10 +80,6 @@ include("operations/concat.jl")
include("operations/resize.jl")
include("operations/sort.jl")
#
include("print.jl")
include("pack.jl")
include("unpack.jl")
include("options.jl")

include("operations/broadcasts.jl")
include("chainrules/chainruleutils.jl")
Expand All @@ -95,6 +97,9 @@ include("misc.jl")
include("mmread.jl")
# include("iterator.jl")
include("oriented.jl")
include("solvers/klu.jl")
include("solvers/umfpack.jl")
include("shallowtypes.jl")

export SparseArrayCompat
export LibGraphBLAS
Expand Down
Loading