This commit is contained in:
Anton Reinhard 2024-01-03 16:57:49 +01:00
parent 82ed774b7e
commit 9cd2bcdba2

14
src/estimator/likwid.jl Normal file
View File

@ -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