From 9cd2bcdba20403df1a225b034a055cd284754523 Mon Sep 17 00:00:00 2001 From: Anton Reinhard Date: Wed, 3 Jan 2024 16:57:49 +0100 Subject: [PATCH] WIP --- src/estimator/likwid.jl | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/estimator/likwid.jl 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