You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now the hyperion reports from doAnalyze are only available in JSON form (doAnalyze performs the benchmarks, the analysis and the JSON reporting). This means that, currently, the two ways to access those reports from other Haskell code is to either (1) export the reports as JSON and parse them back or (2) copy the logic from doAnalyze. A better way would be to have a function doAnalyze similar to:
doAnalyze
::Config--^ Hyperion config.-> [Benchmark] --^ Benchmarks to be run.->IO (HashMapBenchmarkIdReport)
doAnalyze =...
that the user could use directly.
The text was updated successfully, but these errors were encountered:
Right now the hyperion reports from
doAnalyze
are only available in JSON form (doAnalyze
performs the benchmarks, the analysis and the JSON reporting). This means that, currently, the two ways to access those reports from other Haskell code is to either (1) export the reports as JSON and parse them back or (2) copy the logic fromdoAnalyze
. A better way would be to have a functiondoAnalyze
similar to:that the user could use directly.
The text was updated successfully, but these errors were encountered: