Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

✨ Benchmark for physical simulators. #338

Merged
merged 2 commits into from
Nov 23, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
85 changes: 85 additions & 0 deletions test/benchmark/simulation.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
//
// Created by Jan Drewniok on 22.11.23.
//

#include <catch2/benchmark/catch_benchmark.hpp>
#include <catch2/catch_test_macros.hpp>

#include <fiction/algorithms/simulation/sidb/quickexact.hpp>
#include <fiction/algorithms/simulation/sidb/quicksim.hpp>
#include <fiction/technology/cell_technologies.hpp>
#include <fiction/types.hpp>

using namespace fiction;

TEST_CASE("Benchmark simulators", "[benchmark]")
{
// crossing bestagon gate
sidb_cell_clk_lyt_siqad lyt{};

lyt.assign_cell_type({36, 1, 0}, sidb_technology::cell_type::INPUT);
lyt.assign_cell_type({2, 1, 0}, sidb_technology::cell_type::INPUT);

lyt.assign_cell_type({0, 0, 0}, sidb_technology::cell_type::INPUT);
lyt.assign_cell_type({38, 0, 0}, sidb_technology::cell_type::INPUT);

lyt.assign_cell_type({6, 2, 0}, sidb_technology::cell_type::NORMAL);
lyt.assign_cell_type({20, 12, 0}, sidb_technology::cell_type::NORMAL);
lyt.assign_cell_type({8, 3, 0}, sidb_technology::cell_type::NORMAL);
lyt.assign_cell_type({14, 5, 0}, sidb_technology::cell_type::NORMAL);
lyt.assign_cell_type({14, 11, 1}, sidb_technology::cell_type::NORMAL);

lyt.assign_cell_type({12, 4, 0}, sidb_technology::cell_type::NORMAL);
lyt.assign_cell_type({14, 15, 0}, sidb_technology::cell_type::NORMAL);
lyt.assign_cell_type({26, 4, 0}, sidb_technology::cell_type::NORMAL);

lyt.assign_cell_type({14, 9, 0}, sidb_technology::cell_type::NORMAL);
lyt.assign_cell_type({24, 15, 0}, sidb_technology::cell_type::NORMAL);
lyt.assign_cell_type({12, 16, 0}, sidb_technology::cell_type::NORMAL);

lyt.assign_cell_type({18, 9, 0}, sidb_technology::cell_type::NORMAL);
lyt.assign_cell_type({26, 16, 0}, sidb_technology::cell_type::NORMAL);
lyt.assign_cell_type({24, 13, 1}, sidb_technology::cell_type::NORMAL);

lyt.assign_cell_type({24, 5, 0}, sidb_technology::cell_type::NORMAL);
lyt.assign_cell_type({30, 3, 0}, sidb_technology::cell_type::NORMAL);
lyt.assign_cell_type({16, 13, 1}, sidb_technology::cell_type::NORMAL);

lyt.assign_cell_type({32, 2, 0}, sidb_technology::cell_type::NORMAL);
lyt.assign_cell_type({20, 8, 0}, sidb_technology::cell_type::NORMAL);

lyt.assign_cell_type({30, 17, 0}, sidb_technology::cell_type::OUTPUT);
lyt.assign_cell_type({6, 18, 0}, sidb_technology::cell_type::OUTPUT);

lyt.assign_cell_type({32, 18, 0}, sidb_technology::cell_type::OUTPUT);
lyt.assign_cell_type({8, 17, 0}, sidb_technology::cell_type::OUTPUT);

lyt.assign_cell_type({2, 19, 0}, sidb_technology::cell_type::NORMAL);
lyt.assign_cell_type({36, 19, 0}, sidb_technology::cell_type::NORMAL);

BENCHMARK("QuickExact")
{
const quickexact_params<sidb_cell_clk_lyt_siqad> sim_params{sidb_simulation_parameters{2, -0.32}};
return quickexact<sidb_cell_clk_lyt_siqad>(lyt, sim_params);
};

BENCHMARK("QuickSim")
{
const quicksim_params quicksim_params{sidb_simulation_parameters{2, -0.32}};
return quicksim<sidb_cell_clk_lyt_siqad>(lyt, quicksim_params);
};
}

// Mac M1, Ventura 13.0, Apple clang version 14.0.0 (22.11.23)

// benchmark name samples iterations est run time
// mean low mean high mean
// std dev low std dev high std dev
// -------------------------------------------------------------------------------
// QuickExact 100 1 1.75185 m
// 1.03471 s 1.03254 s 1.03694 s
// 11.2095 ms 10.2241 ms 12.5137 ms
//
// QuickSim 100 1 449.61 ms
// 4.49349 ms 4.47125 ms 4.51652 ms
// 115.682 us 101.563 us 135.051 us
Loading