diff --git a/src/estimator/likwid.jl b/src/estimator/likwid.jl new file mode 100644 index 0000000..560fe49 --- /dev/null +++ b/src/estimator/likwid.jl @@ -0,0 +1,14 @@ +using LIKWID + +""" + LIKWIDEstimator <: AbstractEstimator + +An estimator using LIKWID.jl to measure the total FLOPS needed to execute the graph. +""" +struct LIKWIDEstimator <: AbstractEstimator end + +cost_type(::LIKWIDEstimator) = Float64 + +function graph_cost(::LIKWIDEstimator, graph::DAG) + +end