Skip to content

Commit

Permalink
enable benchmarks again
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilippGrulich committed Oct 6, 2024
1 parent 2191088 commit c5f2bbf
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions nautilus/test/benchmark/TracingBenchmark.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,16 @@
namespace nautilus::engine {

static auto tests = std::vector<std::tuple<std::string, std::function<void()>>> {
//{"add", details::createFunctionWrapper(int8AddExpression)},
// {"ifThenElse", details::createFunctionWrapper(ifThenCondition)},
{"add", details::createFunctionWrapper(int8AddExpression)},
{"ifThenElse", details::createFunctionWrapper(ifThenCondition)},
{"deeplyNestedIfElse", details::createFunctionWrapper(deeplyNestedIfElseIfCondition)},
//{"loop", details::createFunctionWrapper(sumLoop)},
//{"ifInsideLoop", details::createFunctionWrapper(ifInsideLoop)},
//{"loopDirectCall", details::createFunctionWrapper(loopDirectCall)},
//{"pointerLoop", details::createFunctionWrapper(sumArray)},
//{"staticLoop", details::createFunctionWrapper(staticLoop)},
//{"fibonacci", details::createFunctionWrapper(fibonacci)},
//{"gcd", details::createFunctionWrapper(gcd)},
{"loop", details::createFunctionWrapper(sumLoop)},
{"ifInsideLoop", details::createFunctionWrapper(ifInsideLoop)},
{"loopDirectCall", details::createFunctionWrapper(loopDirectCall)},
{"pointerLoop", details::createFunctionWrapper(sumArray)},
{"staticLoop", details::createFunctionWrapper(staticLoop)},
{"fibonacci", details::createFunctionWrapper(fibonacci)},
{"gcd", details::createFunctionWrapper(gcd)},
};

TEST_CASE("Tracing Benchmark") {
Expand Down

0 comments on commit c5f2bbf

Please sign in to comment.