Add estimator interface and global metric estimator implementation

This commit is contained in:
2023-10-28 17:23:45 +02:00
committed by Anton Reinhard
parent 61b6541b81
commit 8b4e2b5ef7
4 changed files with 58 additions and 2 deletions

View File

@ -6,6 +6,16 @@ The interface that has to be implemented for an estimator.
```@autodocs
Modules = [MetagraphOptimization]
Pages = ["models/estimator.jl"]
Pages = ["estimator/interafce.jl"]
Order = [:type, :constant, :function]
```
## Global Metric Estimator
Implementation of a global metric estimator. It uses the graph properties compute effort, data transfer, and compute intensity.
```@autodocs
Modules = [MetagraphOptimization]
Pages = ["estimator/global_metric.jl"]
Order = [:type, :function]
```