Add benchmark running to the pipeline

This commit is contained in:
2023-06-29 16:22:58 +02:00
parent 0cd83fedd9
commit f2638ab74f
5 changed files with 36 additions and 25 deletions

View File

@@ -1,21 +1,4 @@
module MetagraphOptimization
import Base.show
import Base.==
import Base.in
import Base.copy
include("tasks.jl")
include("nodes.jl")
include("graph.jl")
include("task_functions.jl")
include("node_functions.jl")
include("graph_functions.jl")
include("graph_operations.jl")
include("import.jl")
include("utility.jl")
include("abc_model/tasks.jl")
include("abc_model/task_functions.jl")
export Node, Edge, ComputeTaskNode, DataTaskNode, DAG
export AbstractTask, AbstractComputeTask, AbstractDataTask, DataTask, ComputeTaskP, ComputeTaskS1, ComputeTaskS2, ComputeTaskV, ComputeTaskU, ComputeTaskSum, FusedComputeTask
@@ -27,4 +10,25 @@ export ==, in, show
export bytes_to_human_readable
import Base.show
import Base.==
import Base.in
import Base.copy
include("tasks.jl")
include("nodes.jl")
include("graph.jl")
include("task_functions.jl")
include("node_functions.jl")
include("graph_functions.jl")
include("graph_operations.jl")
include("import.jl")
include("utility.jl")
include("abc_model/tasks.jl")
include("abc_model/task_functions.jl")
end # module MetagraphOptimization