From b7235770c20fc1e48a0d537ab95344d948656c11 Mon Sep 17 00:00:00 2001 From: Fabian Knorr Date: Tue, 10 Dec 2024 19:56:31 +0100 Subject: [PATCH 1/5] Cache set of active transfers in receive_arbiter --- include/receive_arbiter.h | 3 +++ include/utils.h | 6 ------ src/receive_arbiter.cc | 24 +++++++++++++++--------- 3 files changed, 18 insertions(+), 15 deletions(-) diff --git a/include/receive_arbiter.h b/include/receive_arbiter.h index 1f354ac2..1e4b7610 100644 --- a/include/receive_arbiter.h +++ b/include/receive_arbiter.h @@ -143,6 +143,9 @@ class receive_arbiter { /// the same transfer id that did not temporally overlap with the original ones. std::unordered_map m_transfers; + /// Cache for all transfer ids in m_transfers that are not unassigned_transfers. Bounds complexity of iterating to poll all transfer events. + std::vector m_active_transfers; + /// Initiates a new `region_request` for which the caller can construct events to await either the entire region or sub-regions. receive_arbiter_detail::stable_region_request& initiate_region_request( const transfer_id& trid, const region<3>& request, void* allocation, const box<3>& allocated_box, size_t elem_size); diff --git a/include/utils.h b/include/utils.h index 5b6c91a8..4794966b 100644 --- a/include/utils.h +++ b/include/utils.h @@ -21,12 +21,6 @@ namespace celerity::detail::utils { -/// Like std::move, but move-constructs the result so it does not reference the argument after returning. -template -T take(T& from) { - return std::move(from); -} - template bool isa(const P* p) { return dynamic_cast(p) != nullptr; diff --git a/src/receive_arbiter.cc b/src/receive_arbiter.cc index 3b817c23..c0f59825 100644 --- a/src/receive_arbiter.cc +++ b/src/receive_arbiter.cc @@ -117,12 +117,17 @@ receive_arbiter_detail::stable_region_request& receive_arbiter::initiate_region_ multi_region_transfer* mrt = nullptr; if(const auto entry = m_transfers.find(trid); entry != m_transfers.end()) { matchbox::match( - entry->second, // - [&](unassigned_transfer& ut) { mrt = &entry->second.emplace(elem_size, utils::take(ut.pilots)); }, + entry->second, + [&](unassigned_transfer& ut) { + auto pilots = std::move(ut.pilots); + mrt = &entry->second.emplace(elem_size, std::move(pilots)); + m_active_transfers.push_back(trid); + }, [&](multi_region_transfer& existing_mrt) { mrt = &existing_mrt; }, [&](gather_transfer& gt) { utils::panic("calling receive_arbiter::begin_receive on an active gather transfer"); }); } else { mrt = &m_transfers[trid].emplace(elem_size); + m_active_transfers.push_back(trid); } // Add a new region_request to the `mrt` (transfers have transfer_id granularity, but there might be multiple receives from independent range mappers @@ -194,19 +199,20 @@ async_event receive_arbiter::gather_receive(const transfer_id& trid, void* const // Otherwise, we insert the transfer as pending and wait for the first pilots to arrive. m_transfers.emplace(trid, gather_transfer{gr}); } + m_active_transfers.push_back(trid); return make_async_event(gr); } void receive_arbiter::poll_communicator() { // Try completing all pending payload sends / receives by polling their communicator events - for(auto entry = m_transfers.begin(); entry != m_transfers.end();) { - if(std::visit([](auto& transfer) { return transfer.do_complete(); }, entry->second)) { - entry = m_transfers.erase(entry); - } else { - ++entry; - } - } + std::erase_if(m_active_transfers, [&](const transfer_id& trid) { + const auto entry = m_transfers.find(trid); + assert(entry != m_transfers.end()); + const bool is_complete = std::visit([](auto& transfer) { return transfer.do_complete(); }, entry->second); + if(is_complete) { m_transfers.erase(entry); } + return is_complete; + }); for(const auto& pilot : m_comm->poll_inbound_pilots()) { if(const auto entry = m_transfers.find(pilot.message.transfer_id); entry != m_transfers.end()) { From 0a6eb4b8222507ef12eeefbd03f39ddcefa5c146 Mon Sep 17 00:00:00 2001 From: Fabian Knorr Date: Tue, 10 Dec 2024 20:21:27 +0100 Subject: [PATCH 2/5] Refactor receive_arbiter control flow for legibility --- src/receive_arbiter.cc | 54 +++++++++++++++++++----------------------- 1 file changed, 25 insertions(+), 29 deletions(-) diff --git a/src/receive_arbiter.cc b/src/receive_arbiter.cc index c0f59825..46b662a3 100644 --- a/src/receive_arbiter.cc +++ b/src/receive_arbiter.cc @@ -64,30 +64,27 @@ class gather_receive_event final : public async_event_impl { }; bool region_request::do_complete() { - const auto complete_fragment = [&](const incoming_region_fragment& fragment) { + std::erase_if(incoming_fragments, [&](const incoming_region_fragment& fragment) { if(!fragment.communication.is_complete()) return false; incomplete_region = region_difference(incomplete_region, fragment.box); return true; - }; - incoming_fragments.erase(std::remove_if(incoming_fragments.begin(), incoming_fragments.end(), complete_fragment), incoming_fragments.end()); + }); assert(!incomplete_region.empty() || incoming_fragments.empty()); return incomplete_region.empty(); } bool multi_region_transfer::do_complete() { - const auto complete_request = [](stable_region_request& rr) { return rr->do_complete(); }; - active_requests.erase(std::remove_if(active_requests.begin(), active_requests.end(), complete_request), active_requests.end()); + std::erase_if(active_requests, [](stable_region_request& rr) { return rr->do_complete(); }); return active_requests.empty() && unassigned_pilots.empty(); } bool gather_request::do_complete() { - const auto complete_chunk = [&](const incoming_gather_chunk& chunk) { + std::erase_if(incoming_chunks, [&](const incoming_gather_chunk& chunk) { if(!chunk.communication.is_complete()) return false; assert(num_incomplete_chunks > 0); num_incomplete_chunks -= 1; return true; - }; - incoming_chunks.erase(std::remove_if(incoming_chunks.begin(), incoming_chunks.end(), complete_chunk), incoming_chunks.end()); + }); return num_incomplete_chunks == 0; } @@ -110,33 +107,33 @@ receive_arbiter::receive_arbiter(communicator& comm) : m_comm(&comm), m_num_node receive_arbiter::~receive_arbiter() { assert(std::uncaught_exceptions() > 0 || m_transfers.empty()); } receive_arbiter_detail::stable_region_request& receive_arbiter::initiate_region_request( - const transfer_id& trid, const region<3>& request, void* const allocation, const box<3>& allocated_box, const size_t elem_size) { + const transfer_id& trid, const region<3>& request, void* const allocation, const box<3>& allocated_box, const size_t elem_size) // +{ assert(allocated_box.covers(bounding_box(request))); // Ensure there is a multi_region_transfer present - if there is none, create it by consuming unassigned pilots - multi_region_transfer* mrt = nullptr; - if(const auto entry = m_transfers.find(trid); entry != m_transfers.end()) { - matchbox::match( - entry->second, - [&](unassigned_transfer& ut) { - auto pilots = std::move(ut.pilots); - mrt = &entry->second.emplace(elem_size, std::move(pilots)); - m_active_transfers.push_back(trid); - }, - [&](multi_region_transfer& existing_mrt) { mrt = &existing_mrt; }, - [&](gather_transfer& gt) { utils::panic("calling receive_arbiter::begin_receive on an active gather transfer"); }); - } else { - mrt = &m_transfers[trid].emplace(elem_size); - m_active_transfers.push_back(trid); - } + auto& transfer = m_transfers[trid]; // allow default-insert as unassigned_transfer + auto& mrt = matchbox::match( + transfer, + [&](unassigned_transfer& ut) -> multi_region_transfer& { + auto pilots = std::move(ut.pilots); + m_active_transfers.push_back(trid); + return transfer.emplace(elem_size, std::move(pilots)); + }, + [&](multi_region_transfer& existing_mrt) -> multi_region_transfer& { // + return existing_mrt; + }, + [&](gather_transfer& gt) -> multi_region_transfer& { // + utils::panic("calling receive_arbiter::begin_receive on an active gather transfer"); + }); // Add a new region_request to the `mrt` (transfers have transfer_id granularity, but there might be multiple receives from independent range mappers - assert(std::all_of(mrt->active_requests.begin(), mrt->active_requests.end(), + assert(std::all_of(mrt.active_requests.begin(), mrt.active_requests.end(), [&](const stable_region_request& rr) { return region_intersection(rr->incomplete_region, request).empty(); })); - auto& rr = mrt->active_requests.emplace_back(std::make_shared(request, allocation, allocated_box)); + auto& rr = mrt.active_requests.emplace_back(std::make_shared(request, allocation, allocated_box)); // If the new region_request matches any of the still-unassigned pilots associated with `mrt`, immediately initiate the appropriate payload-receives - const auto assign_pilot = [&](const inbound_pilot& pilot) { + std::erase_if(mrt.unassigned_pilots, [&](const inbound_pilot& pilot) { assert((region_intersection(rr->incomplete_region, pilot.message.box) != pilot.message.box) == region_intersection(rr->incomplete_region, pilot.message.box).empty()); if(region_intersection(rr->incomplete_region, pilot.message.box) == pilot.message.box) { @@ -144,8 +141,7 @@ receive_arbiter_detail::stable_region_request& receive_arbiter::initiate_region_ return true; } return false; - }; - mrt->unassigned_pilots.erase(std::remove_if(mrt->unassigned_pilots.begin(), mrt->unassigned_pilots.end(), assign_pilot), mrt->unassigned_pilots.end()); + }); return rr; } From da8657f6a1d3ff3641a9c391de7c4a5322f96d89 Mon Sep 17 00:00:00 2001 From: Fabian Knorr Date: Wed, 11 Dec 2024 09:45:28 +0100 Subject: [PATCH 3/5] Add receive_arbiter fast-path for polling incomplete regions requests --- include/receive_arbiter.h | 13 +++++++++---- src/receive_arbiter.cc | 25 ++++++++++++++++--------- test/receive_arbiter_tests.cc | 8 +++++--- 3 files changed, 30 insertions(+), 16 deletions(-) diff --git a/include/receive_arbiter.h b/include/receive_arbiter.h index 1e4b7610..ca5d6ce8 100644 --- a/include/receive_arbiter.h +++ b/include/receive_arbiter.h @@ -20,6 +20,8 @@ namespace celerity::detail::receive_arbiter_detail { struct incoming_region_fragment { detail::box<3> box; async_event communication; ///< async communicator event for receiving this fragment + + bool is_complete() const { return communication.is_complete(); } }; /// State for a single incomplete `receive` operation or a `begin_split_receive` / `await_split_receive_subregion` tree. @@ -28,9 +30,11 @@ struct region_request { box<3> allocated_box; region<3> incomplete_region; std::vector incoming_fragments; + bool may_await_subregion; - region_request(region<3> requested_region, void* const allocation, const box<3>& allocated_bounding_box) - : allocation(allocation), allocated_box(allocated_bounding_box), incomplete_region(std::move(requested_region)) {} + region_request(region<3> requested_region, void* const allocation, const box<3>& allocated_bounding_box, const bool may_await_subregion) + : allocation(allocation), allocated_box(allocated_bounding_box), incomplete_region(std::move(requested_region)), + may_await_subregion(may_await_subregion) {} bool do_complete(); }; @@ -146,9 +150,10 @@ class receive_arbiter { /// Cache for all transfer ids in m_transfers that are not unassigned_transfers. Bounds complexity of iterating to poll all transfer events. std::vector m_active_transfers; - /// Initiates a new `region_request` for which the caller can construct events to await either the entire region or sub-regions. + /// Initiates a new `region_request` for which the caller can construct events to await either the entire region or sub-regions (may_await_subregion = + /// true). receive_arbiter_detail::stable_region_request& initiate_region_request( - const transfer_id& trid, const region<3>& request, void* allocation, const box<3>& allocated_box, size_t elem_size); + const transfer_id& trid, const region<3>& request, void* allocation, const box<3>& allocated_box, size_t elem_size, bool may_await_subregion); /// Updates the state of an active `region_request` from receiving an inbound pilot. void handle_region_request_pilot(receive_arbiter_detail::region_request& rr, const inbound_pilot& pilot, size_t elem_size); diff --git a/src/receive_arbiter.cc b/src/receive_arbiter.cc index 46b662a3..61ba2891 100644 --- a/src/receive_arbiter.cc +++ b/src/receive_arbiter.cc @@ -64,6 +64,9 @@ class gather_receive_event final : public async_event_impl { }; bool region_request::do_complete() { + // Fast path: Avoid polling the entire fragment set when we know that neither the request as a whole nor any subregion-request will complete at this time + if(!may_await_subregion && !incoming_fragments.empty() && !incoming_fragments.front().communication.is_complete()) return false; + std::erase_if(incoming_fragments, [&](const incoming_region_fragment& fragment) { if(!fragment.communication.is_complete()) return false; incomplete_region = region_difference(incomplete_region, fragment.box); @@ -106,8 +109,8 @@ receive_arbiter::receive_arbiter(communicator& comm) : m_comm(&comm), m_num_node receive_arbiter::~receive_arbiter() { assert(std::uncaught_exceptions() > 0 || m_transfers.empty()); } -receive_arbiter_detail::stable_region_request& receive_arbiter::initiate_region_request( - const transfer_id& trid, const region<3>& request, void* const allocation, const box<3>& allocated_box, const size_t elem_size) // +receive_arbiter_detail::stable_region_request& receive_arbiter::initiate_region_request(const transfer_id& trid, const region<3>& request, + void* const allocation, const box<3>& allocated_box, const size_t elem_size, const bool may_await_subregion) // { assert(allocated_box.covers(bounding_box(request))); @@ -130,7 +133,7 @@ receive_arbiter_detail::stable_region_request& receive_arbiter::initiate_region_ // Add a new region_request to the `mrt` (transfers have transfer_id granularity, but there might be multiple receives from independent range mappers assert(std::all_of(mrt.active_requests.begin(), mrt.active_requests.end(), [&](const stable_region_request& rr) { return region_intersection(rr->incomplete_region, request).empty(); })); - auto& rr = mrt.active_requests.emplace_back(std::make_shared(request, allocation, allocated_box)); + auto& rr = mrt.active_requests.emplace_back(std::make_shared(request, allocation, allocated_box, may_await_subregion)); // If the new region_request matches any of the still-unassigned pilots associated with `mrt`, immediately initiate the appropriate payload-receives std::erase_if(mrt.unassigned_pilots, [&](const inbound_pilot& pilot) { @@ -148,7 +151,7 @@ receive_arbiter_detail::stable_region_request& receive_arbiter::initiate_region_ void receive_arbiter::begin_split_receive( const transfer_id& trid, const region<3>& request, void* const allocation, const box<3>& allocated_box, const size_t elem_size) { - initiate_region_request(trid, request, allocation, allocated_box, elem_size); + initiate_region_request(trid, request, allocation, allocated_box, elem_size, true /* may_await_subregion */); } async_event receive_arbiter::await_split_receive_subregion(const transfer_id& trid, const region<3>& subregion) { @@ -169,16 +172,20 @@ async_event receive_arbiter::await_split_receive_subregion(const transfer_id& tr #endif // If the transfer (by transfer_id) as a whole has not completed yet but the subregion is, this "await" also completes immediately. - const auto req_it = std::find_if(mrt.active_requests.begin(), mrt.active_requests.end(), + const auto rr_it = std::find_if(mrt.active_requests.begin(), mrt.active_requests.end(), [&](const stable_region_request& rr) { return !region_intersection(rr->incomplete_region, subregion).empty(); }); - if(req_it == mrt.active_requests.end()) { return make_complete_event(); } + if(rr_it == mrt.active_requests.end()) { return make_complete_event(); } - return make_async_event(*req_it, subregion); + auto& rr = *rr_it; + assert(rr->may_await_subregion && "attempting await_split_receive_subregion() on region that was not initiated with begin_split_receive()"); + return make_async_event(rr, subregion); } async_event receive_arbiter::receive( - const transfer_id& trid, const region<3>& request, void* const allocation, const box<3>& allocated_box, const size_t elem_size) { - return make_async_event(initiate_region_request(trid, request, allocation, allocated_box, elem_size)); + const transfer_id& trid, const region<3>& request, void* const allocation, const box<3>& allocated_box, const size_t elem_size) // +{ + auto& rr = initiate_region_request(trid, request, allocation, allocated_box, elem_size, false /* may_await_subregion */); + return make_async_event(rr); } async_event receive_arbiter::gather_receive(const transfer_id& trid, void* const allocation, const size_t node_chunk_size) { diff --git a/test/receive_arbiter_tests.cc b/test/receive_arbiter_tests.cc index a36da571..8fa40f54 100644 --- a/test/receive_arbiter_tests.cc +++ b/test/receive_arbiter_tests.cc @@ -219,9 +219,11 @@ TEST_CASE("receive_arbiter aggregates receives from multiple incoming fragments" REQUIRE(receive.has_value()); CHECK(receive->is_complete()); - // it is legal to `await` a transfer that has already been completed and is not tracked by the receive_arbiter anymore - CHECK(ra.await_split_receive_subregion(trid, requested_regions[0]).is_complete()); - CHECK(ra.await_split_receive_subregion(trid, incoming_fragments[0]).is_complete()); + if(receive_method == "split_await") { + // it is legal to `await` a transfer that has already been completed and is not tracked by the receive_arbiter anymore + CHECK(ra.await_split_receive_subregion(trid, requested_regions[0]).is_complete()); + CHECK(ra.await_split_receive_subregion(trid, incoming_fragments[0]).is_complete()); + } std::vector expected_allocation(alloc_box.get_range().size()); for(size_t which = 0; which < incoming_fragments.size(); ++which) { From b25453c62e787a475c3a304d2c7ac714b9724868 Mon Sep 17 00:00:00 2001 From: Fabian Knorr Date: Thu, 12 Dec 2024 21:53:31 +0100 Subject: [PATCH 4/5] Avoid incomplete_region update during recv arbiter poll --- include/receive_arbiter.h | 3 ++- src/receive_arbiter.cc | 7 ++++--- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/include/receive_arbiter.h b/include/receive_arbiter.h index ca5d6ce8..98cd88b0 100644 --- a/include/receive_arbiter.h +++ b/include/receive_arbiter.h @@ -29,12 +29,13 @@ struct region_request { void* allocation; box<3> allocated_box; region<3> incomplete_region; + size_t incomplete_area; std::vector incoming_fragments; bool may_await_subregion; region_request(region<3> requested_region, void* const allocation, const box<3>& allocated_bounding_box, const bool may_await_subregion) : allocation(allocation), allocated_box(allocated_bounding_box), incomplete_region(std::move(requested_region)), - may_await_subregion(may_await_subregion) {} + incomplete_area(incomplete_region.get_area()), may_await_subregion(may_await_subregion) {} bool do_complete(); }; diff --git a/src/receive_arbiter.cc b/src/receive_arbiter.cc index 61ba2891..9a2cc029 100644 --- a/src/receive_arbiter.cc +++ b/src/receive_arbiter.cc @@ -69,11 +69,12 @@ bool region_request::do_complete() { std::erase_if(incoming_fragments, [&](const incoming_region_fragment& fragment) { if(!fragment.communication.is_complete()) return false; - incomplete_region = region_difference(incomplete_region, fragment.box); + if(may_await_subregion) { incomplete_region = region_difference(incomplete_region, fragment.box); } + incomplete_area -= fragment.box.get_area(); return true; }); - assert(!incomplete_region.empty() || incoming_fragments.empty()); - return incomplete_region.empty(); + assert(incomplete_area > 0 || incoming_fragments.empty()); + return incomplete_area == 0; } bool multi_region_transfer::do_complete() { From 5afe6214cf710b9282cdb8da27f3fc1925321018 Mon Sep 17 00:00:00 2001 From: Fabian Knorr Date: Wed, 15 Jan 2025 14:21:55 +0100 Subject: [PATCH 5/5] Update benchmark results for active-transfer cache --- ci/perf/gpuc2_bench.csv | 382 +++++++++++++++++++-------------------- ci/perf/gpuc2_bench.md | 384 ++++++++++++++++++++-------------------- 2 files changed, 383 insertions(+), 383 deletions(-) diff --git a/ci/perf/gpuc2_bench.csv b/ci/perf/gpuc2_bench.csv index a2a7303b..559101a0 100644 --- a/ci/perf/gpuc2_bench.csv +++ b/ci/perf/gpuc2_bench.csv @@ -1,192 +1,192 @@ test case,benchmark name,samples,iterations,estimated,mean,low mean,high mean,std dev,low std dev,high std dev,tags,raw -benchmark intrusive graph dependency handling with N nodes - 1,creating nodes,100,6083,2433200,4.4969,4.4849,4.5261,0.0991,0.0569,0.1580,"benchmark,group:graph-nodes","4.4813,4.4797,4.4846,4.4813,4.4812,4.4797,4.4797,4.4797,4.4795,5.0677,4.4797,4.4795,4.4812,4.4813,4.4797,4.4797,4.4795,4.4813,4.4813,4.4797,4.4680,4.4781,4.4797,4.4797,4.4812,4.4797,4.4797,4.4797,4.4795,4.4781,4.4813,4.4813,4.4812,4.4795,4.4797,4.4797,4.4797,4.4680,4.4797,4.4813,4.4813,4.4795,4.4813,4.4781,4.4797,4.4795,5.0612,4.4797,4.4795,4.4797,4.4797,4.4781,4.4795,4.4813,4.4797,4.4797,4.4680,4.4797,4.4797,4.4797,4.4812,4.4795,4.4797,4.4797,4.4797,4.4812,4.4797,4.4813,4.4797,4.4795,4.4813,4.4797,4.4797,4.4680,4.4781,4.4813,4.4797,4.4812,4.4797,4.4797,4.4813,4.4812,5.0511,4.4813,4.4797,4.4781,4.4812,4.4795,4.4813,4.4797,4.4781,4.4812,4.4797,4.4797,4.4797,4.4795,4.4797,4.4797,4.4682,4.4795" -benchmark intrusive graph dependency handling with N nodes - 1,creating and adding dependencies,100,1140,2394000,22.2138,22.1480,22.3692,0.5179,0.2822,0.8311,"benchmark,group:graph-nodes","22.1281,24.9316,22.1807,22.0921,22.2421,22.2509,22.2070,22.1368,22.2158,22.2509,22.0754,22.2070,22.1281,22.1719,22.2509,22.1368,22.0930,22.2333,22.0404,22.2070,22.1544,22.1456,25.2570,22.0921,22.0570,22.1281,22.1368,22.1018,22.0930,22.0930,22.1018,22.1009,22.0921,22.1368,22.1368,22.1368,22.1193,22.1105,22.1193,22.1018,22.0570,22.1272,22.1456,22.1368,22.1193,22.1105,22.1368,22.1018,22.1193,22.1018,22.1193,22.0658,22.0491,22.0930,22.1018,22.0579,22.1368,22.1009,22.1272,22.1456,22.1193,25.2482,22.0930,22.1018,22.1009,22.1447,22.1368,22.1281,22.1193,22.1018,22.1018,22.1105,22.1281,22.0930,22.1281,22.1272,22.1018,22.1018,22.1018,22.0930,22.1018,22.1018,22.1281,22.1184,22.1096,22.1368,22.1281,22.1018,22.1368,22.1105,22.1105,22.1368,22.1281,22.0921,22.1009,22.0930,22.0930,22.1018,22.1018,22.1193" -benchmark intrusive graph dependency handling with N nodes - 1,adding and removing dependencies,100,1609,2413500,15.6299,15.5671,15.7716,0.4702,0.2639,0.7481,"benchmark,group:graph-nodes","15.6401,15.6401,15.6905,15.5973,15.4786,15.4792,15.4599,15.4910,15.5973,15.5594,15.5407,18.3741,15.5227,15.6339,15.4605,15.6339,15.5227,15.4848,15.4854,15.4848,15.4972,15.6159,15.4848,15.4916,15.5904,15.6408,15.6408,15.6159,15.4848,15.4537,15.6159,15.5345,15.4848,15.5407,15.6035,15.4848,15.4543,15.6277,15.5227,15.5780,15.6408,15.6408,15.6408,15.6159,15.4848,15.6159,15.5345,15.5662,15.5842,15.5103,15.6408,18.3306,15.6153,15.4916,15.6029,15.6470,15.6346,15.6408,15.6159,15.4537,15.4848,15.6159,15.5345,15.5662,15.5848,15.4848,15.4910,15.6159,15.6470,15.5221,15.5786,15.5786,15.4910,15.4972,15.6159,15.4910,15.4848,15.4848,15.4848,15.4848,15.4848,15.4599,15.4916,15.4848,15.4848,15.4848,15.4848,15.4848,15.4537,15.4786,18.1187,15.5662,15.5911,15.6464,15.6464,15.6097,15.4910,15.4605,15.4848,15.5973" -benchmark intrusive graph dependency handling with N nodes - 1,checking for dependencies,100,16213,1621300,1.4604,1.4520,1.4778,0.0590,0.0335,0.0936,"benchmark,group:graph-nodes","1.4490,1.4483,1.4503,1.4490,1.4484,1.4490,1.4484,1.4484,1.4483,1.4484,1.4490,1.4483,1.4490,1.8111,1.6603,1.4490,1.4484,1.4484,1.4490,1.4484,1.4490,1.4484,1.4484,1.4490,1.4484,1.4483,1.4490,1.4484,1.4490,1.4484,1.4484,1.4490,1.4484,1.4490,1.4484,1.4484,1.4490,1.4484,1.4484,1.4490,1.4484,1.4490,1.4484,1.4484,1.4490,1.4484,1.4490,1.4483,1.4484,1.4490,1.4484,1.4490,1.4490,1.4484,1.4490,1.7858,1.4484,1.4490,1.4483,1.4490,1.4483,1.4483,1.4490,1.4483,1.4490,1.4484,1.4490,1.4484,1.4483,1.4490,1.4484,1.4490,1.4484,1.4484,1.4490,1.4484,1.4490,1.4484,1.4490,1.4483,1.4484,1.4490,1.4483,1.4490,1.4483,1.4484,1.4490,1.4483,1.4490,1.4483,1.4490,1.4484,1.4483,1.4490,1.4483,1.4490,1.4484,1.4483,1.7172,1.4484" -benchmark intrusive graph dependency handling with N nodes - 10,creating nodes,100,664,2456800,41.4168,41.3041,41.6878,0.9043,0.4948,1.4590,"benchmark,group:graph-nodes","41.2801,41.2651,41.3554,41.2651,41.2801,41.2651,41.0693,41.2500,41.2801,41.2651,41.2651,46.6370,41.3253,41.2651,41.2651,41.2952,41.2651,41.2500,41.2651,41.2801,41.2651,41.2801,41.2651,41.2801,41.2801,41.2651,41.2651,41.0693,41.2651,41.2651,41.2952,41.2801,41.2651,41.2801,41.2651,41.2651,41.2801,41.2500,41.2651,41.2651,41.2801,41.2651,41.2651,41.2801,41.2651,41.0979,41.2048,46.7877,41.1145,41.2651,41.2651,41.2651,41.2801,41.2801,41.2651,41.2651,41.2801,41.2500,41.2651,41.2651,41.2651,41.2651,41.2651,41.2651,41.2651,41.2801,41.0693,41.2651,41.2801,41.2651,41.2651,41.2651,41.2651,41.2801,41.2651,41.2651,41.2801,41.2651,41.2801,41.2651,41.2801,41.2651,41.2651,41.2801,46.2139,41.2801,41.1295,41.1446,41.2801,41.2500,41.2801,41.2801,41.2801,41.2651,41.2651,41.2651,41.2651,41.2636,41.2801,41.2651" -benchmark intrusive graph dependency handling with N nodes - 10,creating and adding dependencies,100,106,2512200,242.8947,242.1351,244.8074,5.6193,1.2705,10.2535,"benchmark,group:graph-nodes","241.6698,242.0472,248.0000,242.0472,242.8019,242.8019,240.0566,242.7075,242.6132,242.8962,243.2736,242.6132,242.3208,242.0472,242.1415,239.8679,244.1226,242.5189,241.4811,244.4057,240.2453,243.3585,240.5283,242.7075,242.6132,242.4151,276.6321,239.5849,241.1981,242.5189,240.8113,241.7642,242.9906,241.4811,242.3208,241.8585,242.4245,242.7075,242.7075,243.5566,242.8019,241.8491,242.6132,242.5189,242.0472,242.7075,242.5094,242.1415,244.4057,243.4623,243.0849,243.9434,244.4057,239.7736,243.7453,244.3113,242.5189,240.5377,242.6038,242.8868,241.6698,241.6698,242.5189,242.9811,285.4245,239.3019,242.2358,241.0000,241.5660,241.4811,242.8019,241.2830,241.4811,241.8585,241.3774,241.8585,241.8585,241.5660,241.7642,241.1981,241.3774,241.4811,240.7170,241.6698,243.1792,241.9528,240.4340,241.4811,243.5566,241.9434,239.8679,241.8491,242.2264,241.6698,242.5189,240.2453,241.1038,241.7547,241.0094,240.8113" -benchmark intrusive graph dependency handling with N nodes - 10,adding and removing dependencies,100,124,2517200,207.8168,207.2267,209.2426,4.7202,2.6785,7.6113,"benchmark,group:graph-nodes","207.0645,207.1532,209.0887,207.1532,206.9032,206.6694,206.9919,207.0726,206.9839,207.0726,206.9113,206.9113,233.8145,206.9839,206.2581,207.0726,207.0726,207.0645,207.0726,207.0726,206.9919,207.0726,207.0645,206.2661,207.0726,206.9839,206.9032,206.9113,207.0726,207.0726,206.8226,207.0726,206.5081,206.9839,206.9032,206.9919,207.0726,207.0726,207.0645,207.0726,206.8306,206.5000,207.1452,207.0726,207.0726,206.9919,206.9032,207.0726,206.9919,206.5081,206.6613,233.7339,207.8790,206.8306,206.8306,206.8226,206.9113,207.0726,207.0726,206.5806,207.0726,206.8306,207.0726,207.1452,207.1532,207.0726,206.9919,206.7419,206.5000,207.2339,207.3145,207.2339,207.2258,207.0726,206.9919,207.7984,206.8306,206.2581,206.9919,207.3145,206.9839,206.8226,206.8306,207.1532,207.3952,206.5806,206.7500,206.8306,206.8226,236.1613,206.8306,206.9032,207.0645,206.9113,207.0726,206.5000,207.1532,206.9919,207.0726,207.1532" -benchmark intrusive graph dependency handling with N nodes - 10,checking for dependencies,100,1055,2426500,23.9901,23.9029,24.2113,0.6141,0.0308,1.1195,"benchmark,group:graph-nodes","23.8919,23.8919,23.9678,23.9204,23.9014,23.9014,23.9005,23.9014,23.9014,23.8919,23.8919,23.8919,23.9014,23.9014,23.9014,23.9005,23.9014,23.8919,23.8919,23.8919,23.8919,23.9014,23.9014,23.9014,28.2408,24.1962,23.9014,23.9005,23.9014,23.9014,23.9014,23.9014,23.9014,23.9014,23.9014,23.8919,23.8910,23.8919,23.9014,23.9014,23.9014,23.9014,23.9014,23.9014,23.9014,23.9005,23.9014,23.9014,23.9014,23.8919,23.8919,23.8919,23.9014,23.9014,23.9005,23.9005,23.9014,23.9014,23.9014,23.9014,23.9014,23.9014,23.8919,28.3261,23.8919,23.8919,23.9014,23.9014,23.9014,23.9014,23.8919,23.8910,23.9014,23.9014,23.9014,23.9014,23.8919,23.8919,23.9014,23.9014,23.9005,23.9005,23.8919,23.8919,23.9014,23.9014,23.9014,23.9014,23.8919,23.8910,23.9005,23.9014,23.9014,23.9014,23.8919,23.8919,23.9014,23.9014,23.9005,23.9005" -benchmark intrusive graph dependency handling with N nodes - 100,creating nodes,100,64,2502400,454.9377,453.6628,458.0527,10.1863,5.7414,16.4687,"benchmark,group:graph-nodes","453.1719,453.0156,459.7500,453.0156,453.0156,452.7031,453.0156,452.8594,452.5469,452.7031,452.7031,452.8594,452.7031,452.8594,452.6875,452.8594,452.7031,516.7188,453.1719,453.0156,453.3281,453.3281,453.3281,453.1719,453.3281,453.4844,453.1719,453.1719,453.0156,453.0156,452.8438,452.8594,453.0156,453.0156,452.8594,453.0156,453.1719,453.3281,453.3281,453.1719,453.4844,453.1719,453.1719,453.1719,453.1719,453.0156,453.3281,453.0156,453.0156,453.0156,453.0156,453.0156,510.7812,453.3281,453.1719,453.1719,453.3281,453.3281,453.3281,453.3281,452.8594,453.0156,452.8594,453.0156,453.0156,453.0156,453.0156,453.1719,453.1875,453.1719,453.1719,453.3281,453.3281,453.3281,453.4844,453.1719,453.1719,453.0156,452.8594,453.0156,452.8594,453.0156,453.0156,453.0156,453.0156,453.1719,510.4688,453.3281,453.4844,453.3281,453.1719,453.1719,453.0156,452.8594,453.1719,452.8594,453.0156,452.8594,453.1719,453.1719" -benchmark intrusive graph dependency handling with N nodes - 100,creating and adding dependencies,100,7,2865800,3936.6857,3918.4971,3977.5186,132.7096,66.9574,226.1461,"benchmark,group:graph-nodes","4601.2857,3900.0000,4047.2857,3904.2857,3888.5714,3928.5714,3924.2857,3912.8571,3925.7143,3922.8571,3921.4286,3924.2857,3917.1429,3912.8571,3914.2857,3900.0000,3904.2857,3920.0000,3902.8571,3914.2857,3920.0000,3905.7143,3907.1429,3922.8571,3918.5714,3915.7143,3917.1429,3923.0000,4524.0000,3907.1429,3911.4286,3918.5714,3904.2857,3904.1429,3907.0000,3900.0000,3901.4286,3907.1429,3905.7143,3905.7143,3924.2857,3910.0000,3910.0000,3911.4286,3914.2857,3907.1429,3915.7143,3915.7143,3912.8571,3900.0000,3914.2857,3915.7143,3902.8571,3917.1429,3905.7143,3907.1429,3904.2857,3915.7143,3904.2857,3905.7143,3914.2857,3912.8571,3907.1429,3907.1429,4857.4286,4144.7143,3911.4286,3905.7143,3918.5714,3908.5714,3912.8571,3921.4286,3905.7143,3898.5714,3928.5714,3907.1429,3907.1429,3908.5714,3917.1429,3908.5714,3907.1429,3904.2857,3910.0000,3911.4286,3892.8571,3898.5714,3907.1429,3911.4286,3915.7143,3914.2857,3899.8571,3912.8571,3901.2857,3897.1429,3905.7143,3917.1429,3910.0000,3901.4286,3901.4286,3917.1429" -benchmark intrusive graph dependency handling with N nodes - 100,adding and removing dependencies,100,6,2798400,4753.8900,4735.4533,4798.5167,142.1236,71.2998,238.3200,"benchmark,group:graph-nodes","4738.5000,4730.1667,4807.1667,4715.3333,4735.3333,4745.3333,4717.0000,4737.0000,4737.0000,4730.3333,4735.1667,4745.3333,4728.5000,4733.5000,4747.0000,4742.0000,4747.0000,4742.0000,4743.6667,4725.3333,4727.0000,4730.1667,5513.3333,4735.3333,4717.0000,4727.0000,4742.0000,4698.5000,4710.1667,4715.3333,4715.3333,4735.3333,4735.3333,4740.3333,4732.0000,4737.0000,4733.5000,4721.8333,4718.6667,4730.3333,4730.3333,4730.3333,4725.3333,4730.3333,4738.6667,4738.6667,4732.0000,4740.3333,4725.1667,4727.0000,4727.0000,4730.3333,4740.3333,4730.3333,4710.3333,4718.5000,4738.5000,5705.3333,4743.6667,4745.3333,4725.1667,4740.3333,4742.0000,4725.1667,4723.6667,4720.3333,4707.0000,4722.0000,4713.5000,4722.0000,4733.6667,4723.6667,4725.3333,4725.3333,4742.0000,4726.8333,4720.1667,4718.6667,4725.3333,4723.6667,4742.0000,4711.8333,4711.8333,4738.6667,4725.3333,4723.6667,4747.0000,4737.0000,4707.0000,4713.5000,4727.0000,5433.3333,4735.3333,4712.0000,4723.6667,4715.1667,4710.3333,4723.6667,4720.3333,4718.5000" -benchmark intrusive graph dependency handling with N nodes - 100,checking for dependencies,100,14,2683800,1914.6957,1909.6593,1927.3271,35.9370,3.9613,65.3535,"benchmark,group:graph-nodes","1912.7857,1907.7857,1919.9286,1909.2143,1911.3571,1910.6429,1905.5714,1912.0714,1907.7857,1897.0000,1907.7857,1909.2143,1913.5000,1909.1429,1913.4286,1911.3571,1918.5000,1915.6429,1912.7857,1912.7857,1911.3571,1904.1429,1903.5000,1908.5000,1912.7857,1914.8571,1906.2857,1905.6429,1907.0714,2173.2143,1906.3571,1909.2143,1910.6429,1911.2857,1907.7143,1911.3571,1897.0000,1911.2857,1911.3571,1911.3571,1911.3571,1911.3571,1904.1429,1912.0714,1909.9286,1910.6429,1916.3571,1911.3571,1912.7143,1902.0714,1910.6429,1912.7857,1912.0000,1914.8571,1912.7143,1909.2143,1909.9286,1907.7857,1912.7143,1910.5714,1912.0714,1912.7857,1899.2143,1907.7143,1908.5000,1909.2143,2156.0714,1913.5000,1907.7857,1909.9286,1908.4286,1909.2143,1908.5000,1908.5000,1907.7143,1909.9286,1908.5000,1900.5714,1912.7857,1911.3571,1910.6429,1908.5000,1907.7143,1913.5000,1912.7857,1907.7857,1907.7857,1911.2857,1907.7143,1905.6429,1899.1429,1909.9286,1908.5000,1908.5000,1904.8571,1910.6429,1912.0714,1911.3571,1912.0714,1908.4286" -benchmark task handling,generating and deleting tasks,100,1,574886100,5875455.7800,5822204.5700,5908294.2800,204328.2613,128917.6177,283806.0885,"benchmark,group:task-graph","5957930.0000,5932082.0000,5934687.0000,5923314.0000,5920619.0000,5915741.0000,5915019.0000,5913306.0000,5916422.0000,5910891.0000,5913997.0000,5909408.0000,5908938.0000,5913526.0000,5940347.0000,5920891.0000,5916221.0000,5910170.0000,5912535.0000,5915940.0000,5913847.0000,5908025.0000,5909950.0000,5915300.0000,5911653.0000,5921451.0000,5914348.0000,5918456.0000,5916221.0000,5923355.0000,5956418.0000,5942792.0000,5912865.0000,5913456.0000,5094945.0000,5006637.0000,5018911.0000,5220222.0000,5923084.0000,5921331.0000,5915300.0000,5928955.0000,5919577.0000,5925980.0000,5917394.0000,5920279.0000,5922223.0000,5928324.0000,5919779.0000,5950716.0000,5922885.0000,5927362.0000,5926501.0000,5931450.0000,5926601.0000,5919858.0000,5923305.0000,5927873.0000,5932452.0000,5930719.0000,5934866.0000,5936449.0000,5987246.0000,5926050.0000,5927021.0000,5933063.0000,5958502.0000,5935367.0000,5932402.0000,5930949.0000,5927873.0000,5928584.0000,5933384.0000,5941700.0000,5926170.0000,5924488.0000,5080747.0000,5008120.0000,5889030.0000,5930378.0000,5927262.0000,5929237.0000,5923725.0000,5954655.0000,5929366.0000,5939205.0000,5926691.0000,5927634.0000,5939816.0000,5938083.0000,5934135.0000,5930549.0000,5929957.0000,5938163.0000,5943654.0000,5938604.0000,5925389.0000,5930147.0000,5931160.0000,5932973.0000" -generating large task graphs,soup topology,100,1,36057000,370531.0200,369926.2600,371207.1400,3251.7615,2919.3343,3879.0431,"benchmark,group:task-graph","367495.0000,368296.0000,381852.0000,368987.0000,375179.0000,369658.0000,366803.0000,370400.0000,370721.0000,368967.0000,376050.0000,366934.0000,373656.0000,367745.0000,371002.0000,371282.0000,368516.0000,365922.0000,372925.0000,367364.0000,369158.0000,373556.0000,370000.0000,376101.0000,369869.0000,368086.0000,375209.0000,370220.0000,369008.0000,373796.0000,371853.0000,375340.0000,367885.0000,367906.0000,376231.0000,367805.0000,368517.0000,373226.0000,368085.0000,373506.0000,371041.0000,367705.0000,372985.0000,367024.0000,369568.0000,374608.0000,368757.0000,368035.0000,374238.0000,368116.0000,372534.0000,365260.0000,365851.0000,373747.0000,369468.0000,366553.0000,376001.0000,366432.0000,371231.0000,366122.0000,369108.0000,369679.0000,368146.0000,367454.0000,373756.0000,366282.0000,375229.0000,367855.0000,368006.0000,375460.0000,369959.0000,368366.0000,372104.0000,369688.0000,365971.0000,375771.0000,369458.0000,374618.0000,370250.0000,370951.0000,375099.0000,369879.0000,369929.0000,373586.0000,369148.0000,371863.0000,370360.0000,366623.0000,374949.0000,367916.0000,367925.0000,373276.0000,369148.0000,373456.0000,367594.0000,366943.0000,374809.0000,368276.0000,367965.0000,375860.0000" -generating large task graphs,chain topology,100,1,3740000,37643.1400,37480.2300,37950.3400,1107.9228,650.6332,1643.8389,"benchmark,group:task-graph","37209.0000,37439.0000,40665.0000,37890.0000,37519.0000,37780.0000,37459.0000,37519.0000,37510.0000,37369.0000,37258.0000,42910.0000,37379.0000,37379.0000,37459.0000,37359.0000,37339.0000,37469.0000,37439.0000,37439.0000,37279.0000,37569.0000,37299.0000,37279.0000,37219.0000,37529.0000,37199.0000,37358.0000,37539.0000,37309.0000,37188.0000,37359.0000,37379.0000,37299.0000,37319.0000,37479.0000,37329.0000,43601.0000,37589.0000,37529.0000,37429.0000,37619.0000,37299.0000,37379.0000,37379.0000,37519.0000,37289.0000,37329.0000,37449.0000,37489.0000,37319.0000,37479.0000,37349.0000,37429.0000,37349.0000,37499.0000,37339.0000,37580.0000,37419.0000,37439.0000,37178.0000,37279.0000,37449.0000,37269.0000,42489.0000,37509.0000,37269.0000,37329.0000,37319.0000,37399.0000,37308.0000,37439.0000,37318.0000,37449.0000,37118.0000,37479.0000,37249.0000,37319.0000,37349.0000,37419.0000,37309.0000,37419.0000,37439.0000,37429.0000,37279.0000,37619.0000,37279.0000,37309.0000,37228.0000,37539.0000,42068.0000,37469.0000,37459.0000,37359.0000,37259.0000,37559.0000,37279.0000,37539.0000,37279.0000,37439.0000" -generating large task graphs,expanding tree topology,100,1,5758200,58059.3900,57838.2800,58425.2000,1418.8013,981.3835,2039.8101,"benchmark,group:task-graph","57947.0000,57667.0000,65653.0000,58659.0000,58720.0000,63148.0000,58298.0000,57848.0000,58299.0000,57707.0000,57658.0000,57216.0000,57577.0000,57517.0000,57316.0000,57096.0000,58268.0000,57547.0000,57587.0000,57457.0000,57788.0000,57677.0000,62447.0000,57226.0000,57748.0000,57788.0000,57507.0000,57547.0000,57667.0000,57426.0000,57547.0000,57256.0000,58048.0000,57397.0000,57076.0000,57377.0000,57898.0000,57216.0000,57447.0000,57487.0000,62918.0000,58048.0000,57637.0000,57708.0000,57778.0000,57457.0000,57687.0000,57688.0000,57907.0000,57717.0000,57567.0000,57688.0000,58078.0000,57828.0000,57537.0000,57487.0000,58008.0000,62236.0000,57848.0000,57527.0000,57968.0000,57718.0000,57687.0000,57848.0000,57958.0000,57437.0000,57678.0000,57457.0000,57767.0000,57558.0000,57507.0000,57246.0000,58269.0000,57217.0000,62446.0000,57858.0000,57968.0000,57677.0000,57858.0000,57467.0000,57798.0000,57477.0000,57327.0000,57267.0000,57867.0000,57467.0000,57897.0000,57568.0000,58218.0000,57698.0000,57246.0000,62066.0000,58279.0000,57767.0000,57688.0000,57276.0000,57897.0000,58159.0000,57617.0000,57667.0000" -generating large task graphs,contracting tree topology,100,1,5857800,60278.8600,60055.9500,60641.6500,1420.0088,972.6341,1933.9900,"benchmark,group:task-graph","59972.0000,60232.0000,66695.0000,60853.0000,60303.0000,60603.0000,60062.0000,60342.0000,59691.0000,59802.0000,59541.0000,60052.0000,59911.0000,60242.0000,65232.0000,60332.0000,59962.0000,59992.0000,59801.0000,59892.0000,59411.0000,60122.0000,59631.0000,60082.0000,59761.0000,59761.0000,59591.0000,59841.0000,59621.0000,59971.0000,59731.0000,65021.0000,59942.0000,59912.0000,59971.0000,59861.0000,59982.0000,60132.0000,59751.0000,59911.0000,59751.0000,59911.0000,59661.0000,59841.0000,59972.0000,59801.0000,59451.0000,64841.0000,60012.0000,60262.0000,59672.0000,60112.0000,59761.0000,60303.0000,59711.0000,60212.0000,59792.0000,59671.0000,59431.0000,59981.0000,59731.0000,59831.0000,59701.0000,60122.0000,64991.0000,59942.0000,59902.0000,59841.0000,59772.0000,60022.0000,59651.0000,60192.0000,59822.0000,59841.0000,59842.0000,59761.0000,59661.0000,60022.0000,59671.0000,59861.0000,64440.0000,59962.0000,59641.0000,59812.0000,59851.0000,60172.0000,59951.0000,59931.0000,59752.0000,59941.0000,59622.0000,59480.0000,59420.0000,60343.0000,59751.0000,60192.0000,59862.0000,66103.0000,59912.0000,59902.0000" -generating large task graphs,wave_sim topology,100,1,44925700,449444.5500,448797.8000,450113.4500,3365.3250,3057.5925,3770.6127,"benchmark,group:task-graph","444791.0000,450983.0000,451844.0000,452656.0000,445542.0000,448248.0000,455391.0000,448748.0000,452536.0000,445162.0000,451304.0000,445142.0000,451824.0000,446114.0000,445683.0000,452245.0000,445593.0000,451243.0000,449200.0000,452927.0000,445061.0000,451624.0000,449500.0000,455371.0000,449410.0000,448598.0000,455261.0000,446324.0000,450812.0000,446384.0000,452455.0000,449219.0000,454800.0000,450502.0000,446694.0000,451013.0000,445132.0000,451494.0000,445463.0000,451413.0000,446193.0000,450472.0000,448649.0000,453497.0000,449490.0000,449820.0000,456904.0000,449410.0000,457866.0000,449039.0000,455932.0000,446435.0000,453467.0000,448738.0000,445102.0000,451895.0000,445382.0000,452155.0000,445813.0000,452084.0000,445141.0000,451453.0000,444882.0000,453107.0000,445703.0000,445302.0000,451143.0000,444751.0000,451745.0000,445833.0000,450742.0000,445743.0000,450862.0000,446144.0000,446104.0000,451003.0000,449289.0000,455361.0000,447626.0000,453778.0000,446374.0000,451965.0000,446544.0000,454028.0000,448919.0000,448659.0000,452816.0000,445753.0000,451805.0000,444931.0000,452346.0000,445092.0000,450952.0000,449590.0000,445773.0000,450602.0000,445302.0000,449960.0000,443959.0000,451324.0000" -generating large task graphs,jacobi topology,100,1,11344500,116790.3900,116485.1800,117218.8100,1833.0647,1437.8072,2300.6269,"benchmark,group:task-graph","121108.0000,116759.0000,124143.0000,116980.0000,116669.0000,116459.0000,121869.0000,116539.0000,116229.0000,116439.0000,116178.0000,116529.0000,116359.0000,116258.0000,121328.0000,116800.0000,116398.0000,116459.0000,116279.0000,116248.0000,116479.0000,116209.0000,115707.0000,121568.0000,116529.0000,116478.0000,116279.0000,116238.0000,116048.0000,116438.0000,116138.0000,120987.0000,116309.0000,115947.0000,115868.0000,116008.0000,116239.0000,116368.0000,116118.0000,115987.0000,120917.0000,116599.0000,115988.0000,115447.0000,115817.0000,115917.0000,115648.0000,115927.0000,121047.0000,116369.0000,116228.0000,116058.0000,115718.0000,116188.0000,115968.0000,115497.0000,115627.0000,121108.0000,115597.0000,115628.0000,115557.0000,115657.0000,116028.0000,116058.0000,115497.0000,115948.0000,121238.0000,115918.0000,115838.0000,115917.0000,115698.0000,115817.0000,115817.0000,115968.0000,120927.0000,116459.0000,116209.0000,116268.0000,115698.0000,115597.0000,115777.0000,116169.0000,115537.0000,120897.0000,115758.0000,115937.0000,116048.0000,115887.0000,115928.0000,116128.0000,116118.0000,121057.0000,116209.0000,116308.0000,116078.0000,116309.0000,116499.0000,116299.0000,116258.0000,116459.0000" -generating large command graphs for N nodes - 1,soup topology,100,1,104327400,1042249.3500,1028052.2400,1052945.2300,62628.8867,50311.1854,73809.0848,"benchmark,group:command-graph","1054036.0000,1063514.0000,884805.0000,895666.0000,899583.0000,897008.0000,886078.0000,904903.0000,905274.0000,906496.0000,895686.0000,881409.0000,885577.0000,895505.0000,903531.0000,899112.0000,889784.0000,1054727.0000,1067391.0000,1080366.0000,1056220.0000,1059977.0000,1084153.0000,1066389.0000,1074144.0000,1060909.0000,1081027.0000,1057282.0000,1054276.0000,1059085.0000,1067902.0000,1059136.0000,1064826.0000,1092118.0000,1067541.0000,1086878.0000,1084193.0000,1074234.0000,1058725.0000,1059797.0000,1059256.0000,1071529.0000,1054466.0000,1058825.0000,1069535.0000,1078973.0000,1077982.0000,1086557.0000,1085616.0000,1083642.0000,1073193.0000,1082419.0000,1058253.0000,1057311.0000,1056290.0000,1062141.0000,1060058.0000,1060678.0000,1059967.0000,1061500.0000,1055248.0000,1083331.0000,1064716.0000,1061189.0000,1060558.0000,1086347.0000,1084143.0000,1062642.0000,1068333.0000,1082510.0000,1055990.0000,1081518.0000,1060588.0000,1061830.0000,1082400.0000,1056761.0000,1063304.0000,1059927.0000,1057773.0000,1056260.0000,1078933.0000,1084684.0000,1073853.0000,1081147.0000,1086437.0000,1082580.0000,1085535.0000,1059386.0000,1066890.0000,1060659.0000,1058905.0000,1059085.0000,1082179.0000,1061660.0000,1059416.0000,1062431.0000,1056140.0000,1084253.0000,1058624.0000,1059316.0000" -generating large command graphs for N nodes - 1,chain topology,100,1,7664700,77908.6000,77638.7600,78320.6600,1681.0748,1206.4632,2209.6428,"benchmark,group:command-graph","77365.0000,77435.0000,83957.0000,78036.0000,77916.0000,77405.0000,85079.0000,78116.0000,77776.0000,77495.0000,77445.0000,77184.0000,77445.0000,77515.0000,77245.0000,77094.0000,77255.0000,76833.0000,77324.0000,83336.0000,77816.0000,77345.0000,77184.0000,77365.0000,77335.0000,77385.0000,77294.0000,77335.0000,77214.0000,77555.0000,77004.0000,77344.0000,82314.0000,77475.0000,77384.0000,77575.0000,77144.0000,77265.0000,77485.0000,77324.0000,77245.0000,77485.0000,77214.0000,77464.0000,77294.0000,83006.0000,77545.0000,77455.0000,77575.0000,77395.0000,77535.0000,77705.0000,77265.0000,77254.0000,77234.0000,77194.0000,77264.0000,77445.0000,82895.0000,77445.0000,77626.0000,77224.0000,77405.0000,77395.0000,77334.0000,77454.0000,77875.0000,77185.0000,77475.0000,77515.0000,77395.0000,82254.0000,77334.0000,77324.0000,77295.0000,77194.0000,77185.0000,77355.0000,77154.0000,77625.0000,77024.0000,76924.0000,77225.0000,82865.0000,77996.0000,77776.0000,77395.0000,77094.0000,77194.0000,77465.0000,77345.0000,77565.0000,77325.0000,77074.0000,77325.0000,77595.0000,82625.0000,77124.0000,77575.0000,77434.0000" -generating large command graphs for N nodes - 1,expanding tree topology,100,1,14559400,145686.1100,145234.3700,146324.2800,2719.9637,2152.9542,3777.4493,"benchmark,group:command-graph","144693.0000,143961.0000,159310.0000,146445.0000,145534.0000,145503.0000,144431.0000,145484.0000,151946.0000,145353.0000,145464.0000,145504.0000,143891.0000,144442.0000,143991.0000,151095.0000,144592.0000,143801.0000,143690.0000,144943.0000,144252.0000,144021.0000,150624.0000,144211.0000,144853.0000,144662.0000,143911.0000,144452.0000,143881.0000,150253.0000,143981.0000,144803.0000,144763.0000,144221.0000,143621.0000,144772.0000,150874.0000,143841.0000,144272.0000,144201.0000,144563.0000,143520.0000,144362.0000,150613.0000,144773.0000,144161.0000,144061.0000,143770.0000,144441.0000,144112.0000,151565.0000,144352.0000,144743.0000,144071.0000,145855.0000,143820.0000,150804.0000,144171.0000,143530.0000,144933.0000,145544.0000,144542.0000,144462.0000,150975.0000,145544.0000,144332.0000,144181.0000,144302.0000,144863.0000,143640.0000,150664.0000,145804.0000,145483.0000,145343.0000,145484.0000,145304.0000,144502.0000,152066.0000,144963.0000,144733.0000,145033.0000,143811.0000,144692.0000,145424.0000,150994.0000,145103.0000,144902.0000,144952.0000,144882.0000,144001.0000,145143.0000,151265.0000,145023.0000,145023.0000,145354.0000,145173.0000,144652.0000,144612.0000,152537.0000,144542.0000" -generating large command graphs for N nodes - 1,contracting tree topology,100,1,15540700,155466.1700,154976.4400,156173.7000,2983.1515,2335.9048,4225.8528,"benchmark,group:command-graph","154752.0000,153489.0000,170862.0000,156945.0000,154461.0000,154040.0000,152927.0000,155482.0000,161615.0000,154291.0000,153869.0000,154110.0000,155122.0000,154431.0000,154551.0000,164109.0000,155262.0000,154992.0000,154912.0000,155052.0000,154291.0000,160732.0000,154430.0000,153979.0000,154511.0000,153929.0000,154841.0000,160984.0000,155062.0000,154621.0000,153900.0000,155182.0000,154000.0000,154310.0000,160913.0000,153949.0000,154080.0000,154150.0000,153840.0000,154010.0000,161234.0000,155122.0000,154090.0000,154190.0000,154481.0000,153439.0000,154321.0000,161614.0000,154872.0000,154892.0000,154160.0000,154371.0000,153850.0000,159571.0000,154942.0000,154851.0000,153549.0000,153889.0000,153929.0000,153208.0000,161725.0000,154210.0000,153930.0000,154772.0000,153800.0000,153599.0000,160582.0000,155262.0000,153670.0000,153879.0000,153899.0000,154310.0000,160693.0000,155823.0000,153178.0000,154501.0000,153569.0000,153810.0000,154281.0000,163387.0000,154541.0000,154040.0000,153900.0000,154180.0000,154652.0000,159580.0000,153950.0000,154311.0000,153920.0000,153880.0000,153539.0000,154110.0000,160372.0000,153619.0000,153750.0000,154471.0000,153579.0000,153850.0000,159520.0000,154410.0000" -generating large command graphs for N nodes - 1,wave_sim topology,100,1,99792000,1019933.8300,1019402.7700,1020852.3700,3483.3043,2338.1486,6267.3822,"benchmark,group:command-graph","1018067.0000,1015031.0000,1025121.0000,1020262.0000,1024560.0000,1026494.0000,1020923.0000,1023939.0000,1019130.0000,1018839.0000,1018118.0000,1044378.0000,1019270.0000,1024620.0000,1020042.0000,1022055.0000,1020412.0000,1020001.0000,1021785.0000,1019771.0000,1021274.0000,1020923.0000,1019170.0000,1022216.0000,1019630.0000,1017506.0000,1020893.0000,1018058.0000,1021404.0000,1021214.0000,1021264.0000,1019601.0000,1019741.0000,1021614.0000,1019270.0000,1018628.0000,1018850.0000,1019600.0000,1018178.0000,1021905.0000,1018588.0000,1015954.0000,1017757.0000,1028758.0000,1022345.0000,1015653.0000,1021003.0000,1017327.0000,1019711.0000,1026022.0000,1017036.0000,1018539.0000,1020703.0000,1018017.0000,1016815.0000,1019591.0000,1018709.0000,1015994.0000,1017747.0000,1016034.0000,1019220.0000,1018749.0000,1016445.0000,1018468.0000,1024260.0000,1019731.0000,1017627.0000,1020723.0000,1021494.0000,1021795.0000,1021114.0000,1017987.0000,1019010.0000,1021193.0000,1018438.0000,1021124.0000,1021394.0000,1015693.0000,1017848.0000,1020903.0000,1019520.0000,1021013.0000,1019140.0000,1017637.0000,1022506.0000,1022897.0000,1019290.0000,1018629.0000,1020112.0000,1017156.0000,1017757.0000,1017517.0000,1018228.0000,1016896.0000,1018498.0000,1016866.0000,1016274.0000,1017266.0000,1018708.0000,1018197.0000" -generating large command graphs for N nodes - 1,jacobi topology,100,1,25396300,259995.1100,259416.8000,260791.3000,3443.9387,2720.6220,4751.6276,"benchmark,group:command-graph","258228.0000,258438.0000,276151.0000,257657.0000,257927.0000,257726.0000,263808.0000,257766.0000,257236.0000,258167.0000,264739.0000,258978.0000,257396.0000,258077.0000,264469.0000,259621.0000,258438.0000,263657.0000,259630.0000,257736.0000,258728.0000,264950.0000,258719.0000,258037.0000,258578.0000,263678.0000,258448.0000,258869.0000,258027.0000,264529.0000,258809.0000,258087.0000,258258.0000,264209.0000,258889.0000,258708.0000,257356.0000,264900.0000,257767.0000,258648.0000,257376.0000,263748.0000,258028.0000,257005.0000,263187.0000,258097.0000,256705.0000,257166.0000,262315.0000,257586.0000,256955.0000,258117.0000,263217.0000,257055.0000,256824.0000,258387.0000,263618.0000,257707.0000,257937.0000,257716.0000,264198.0000,259099.0000,257987.0000,257376.0000,265531.0000,259891.0000,258628.0000,258297.0000,264570.0000,259059.0000,257907.0000,265361.0000,258458.0000,258158.0000,258869.0000,265150.0000,259611.0000,258407.0000,257746.0000,264971.0000,258788.0000,257857.0000,258909.0000,274238.0000,259320.0000,259019.0000,257506.0000,264109.0000,258388.0000,258989.0000,258428.0000,264108.0000,257997.0000,257506.0000,264189.0000,258778.0000,257617.0000,257817.0000,264840.0000,259049.0000" -generating large command graphs for N nodes - 4,soup topology,100,1,143181300,1434789.7200,1432381.8800,1438677.1200,15216.6084,10846.0119,26384.5766,"benchmark,group:command-graph","1427233.0000,1432674.0000,1432744.0000,1418276.0000,1437162.0000,1426131.0000,1435970.0000,1429318.0000,1430319.0000,1424989.0000,1427253.0000,1434907.0000,1425951.0000,1431842.0000,1430530.0000,1443123.0000,1458743.0000,1426441.0000,1437894.0000,1422224.0000,1430169.0000,1417314.0000,1434187.0000,1430209.0000,1423756.0000,1449635.0000,1449376.0000,1474513.0000,1425680.0000,1428105.0000,1431842.0000,1415401.0000,1455557.0000,1439507.0000,1447221.0000,1444476.0000,1427814.0000,1419899.0000,1426021.0000,1425991.0000,1428946.0000,1453833.0000,1451609.0000,1436721.0000,1432524.0000,1437022.0000,1427914.0000,1428175.0000,1437553.0000,1422955.0000,1437743.0000,1424869.0000,1445928.0000,1425540.0000,1451770.0000,1448573.0000,1448424.0000,1428526.0000,1428345.0000,1429878.0000,1455567.0000,1454765.0000,1443695.0000,1424267.0000,1424799.0000,1444135.0000,1457961.0000,1413257.0000,1430469.0000,1429167.0000,1427443.0000,1432944.0000,1425379.0000,1439216.0000,1428045.0000,1535429.0000,1428515.0000,1432463.0000,1429948.0000,1422775.0000,1429337.0000,1417745.0000,1449656.0000,1446239.0000,1458793.0000,1436441.0000,1418337.0000,1422855.0000,1422795.0000,1438013.0000,1421162.0000,1429207.0000,1424378.0000,1435730.0000,1436661.0000,1424188.0000,1427524.0000,1447601.0000,1429747.0000,1425079.0000" -generating large command graphs for N nodes - 4,chain topology,100,1,32958600,329665.2800,328892.9100,330801.8400,4746.8869,3578.9993,7648.4328,"benchmark,group:command-graph","326336.0000,326988.0000,345994.0000,328561.0000,328500.0000,338229.0000,329342.0000,328711.0000,336455.0000,328270.0000,326477.0000,336005.0000,328080.0000,326687.0000,334032.0000,327559.0000,327449.0000,335283.0000,327960.0000,328912.0000,333220.0000,328350.0000,327429.0000,335614.0000,328702.0000,327959.0000,336275.0000,328080.0000,328521.0000,335113.0000,327439.0000,327910.0000,333951.0000,328411.0000,327899.0000,334001.0000,328851.0000,326758.0000,333500.0000,328821.0000,327528.0000,326717.0000,333951.0000,326697.0000,326777.0000,334101.0000,327178.0000,326357.0000,333921.0000,327348.0000,324493.0000,332969.0000,325936.0000,325645.0000,333380.0000,326507.0000,326717.0000,331537.0000,326617.0000,325185.0000,332508.0000,324483.0000,324804.0000,357696.0000,326036.0000,325214.0000,332849.0000,327359.0000,325715.0000,333319.0000,326917.0000,325656.0000,332208.0000,326036.0000,326667.0000,332088.0000,326938.0000,327068.0000,333450.0000,327268.0000,326346.0000,334142.0000,326427.0000,326517.0000,333099.0000,326227.0000,327018.0000,333781.0000,326477.0000,326196.0000,333390.0000,326097.0000,326497.0000,333430.0000,327038.0000,326196.0000,334532.0000,326637.0000,326277.0000,333730.0000" -generating large command graphs for N nodes - 4,expanding tree topology,100,1,34035800,340282.1100,339588.0600,341041.3100,3704.4805,3366.4229,4260.1176,"benchmark,group:command-graph","337157.0000,345403.0000,342337.0000,338550.0000,345272.0000,337297.0000,336696.0000,345342.0000,338019.0000,335194.0000,342758.0000,336265.0000,338340.0000,342166.0000,336325.0000,336556.0000,343399.0000,336697.0000,335404.0000,344240.0000,338429.0000,335825.0000,343339.0000,336616.0000,335404.0000,343339.0000,336025.0000,337719.0000,345022.0000,338600.0000,337177.0000,345022.0000,337878.0000,336446.0000,343850.0000,337077.0000,338710.0000,344651.0000,336366.0000,343810.0000,338469.0000,337759.0000,342748.0000,338119.0000,335754.0000,347186.0000,337838.0000,338350.0000,344190.0000,338018.0000,336596.0000,344971.0000,339090.0000,337377.0000,351795.0000,338490.0000,337448.0000,346194.0000,337437.0000,338169.0000,345773.0000,340684.0000,338009.0000,346555.0000,340514.0000,340263.0000,346324.0000,339952.0000,339181.0000,344702.0000,337508.0000,340213.0000,346525.0000,340784.0000,336486.0000,346986.0000,338159.0000,337738.0000,345332.0000,338460.0000,345453.0000,339712.0000,336997.0000,345583.0000,338239.0000,338399.0000,343559.0000,338169.0000,338400.0000,344551.0000,337518.0000,337778.0000,343920.0000,337598.0000,336746.0000,345804.0000,338910.0000,338519.0000,344161.0000,337327.0000" -generating large command graphs for N nodes - 4,contracting tree topology,100,1,35107600,351361.2000,350585.2200,352567.4100,4826.5648,3538.0412,8095.6351,"benchmark,group:command-graph","354109.0000,349220.0000,362525.0000,357075.0000,348658.0000,348769.0000,353278.0000,347256.0000,348098.0000,353198.0000,348007.0000,346044.0000,353187.0000,349851.0000,347937.0000,355112.0000,350993.0000,350893.0000,356363.0000,347487.0000,348920.0000,354450.0000,349079.0000,354349.0000,348188.0000,348007.0000,356313.0000,347928.0000,348068.0000,355071.0000,347206.0000,347838.0000,354931.0000,349540.0000,349971.0000,355462.0000,349360.0000,348148.0000,353939.0000,348468.0000,347777.0000,354620.0000,347527.0000,355001.0000,348820.0000,347747.0000,358267.0000,348068.0000,349260.0000,355402.0000,348469.0000,348449.0000,355101.0000,347667.0000,348789.0000,355491.0000,348789.0000,349581.0000,356884.0000,348048.0000,353779.0000,348479.0000,348398.0000,355502.0000,349440.0000,348038.0000,381762.0000,347116.0000,347737.0000,355392.0000,347988.0000,346986.0000,356323.0000,347847.0000,348759.0000,352477.0000,349140.0000,354520.0000,348699.0000,347096.0000,355232.0000,351053.0000,349020.0000,354891.0000,351093.0000,347817.0000,355933.0000,347757.0000,350413.0000,365901.0000,349991.0000,348048.0000,354290.0000,349791.0000,347867.0000,355572.0000,348518.0000,355832.0000,349751.0000,348819.0000" -generating large command graphs for N nodes - 4,wave_sim topology,100,1,229497900,2289539.9000,2287984.4500,2291281.7700,8381.7288,7274.3885,9837.7445,"benchmark,group:command-graph","2302331.0000,2287062.0000,2289958.0000,2298354.0000,2286541.0000,2281983.0000,2292824.0000,2278918.0000,2285239.0000,2284118.0000,2283576.0000,2278807.0000,2284377.0000,2287814.0000,2285099.0000,2284298.0000,2288095.0000,2316018.0000,2288947.0000,2280791.0000,2294948.0000,2285610.0000,2289287.0000,2282354.0000,2285710.0000,2288125.0000,2274680.0000,2282965.0000,2288626.0000,2289107.0000,2290359.0000,2292804.0000,2280340.0000,2287413.0000,2292103.0000,2288385.0000,2288475.0000,2282625.0000,2295990.0000,2284207.0000,2291150.0000,2307332.0000,2295799.0000,2287003.0000,2283326.0000,2293876.0000,2275411.0000,2281002.0000,2295609.0000,2277124.0000,2282434.0000,2287844.0000,2286803.0000,2293104.0000,2291782.0000,2290109.0000,2281152.0000,2285861.0000,2296480.0000,2285740.0000,2285941.0000,2304656.0000,2288355.0000,2281562.0000,2279288.0000,2290038.0000,2280059.0000,2286352.0000,2277605.0000,2292413.0000,2280290.0000,2284988.0000,2307822.0000,2297773.0000,2283436.0000,2309254.0000,2288115.0000,2282795.0000,2289497.0000,2297593.0000,2289948.0000,2291321.0000,2290590.0000,2295709.0000,2281663.0000,2279389.0000,2287133.0000,2287734.0000,2275341.0000,2295509.0000,2306630.0000,2301731.0000,2305868.0000,2309154.0000,2299807.0000,2291752.0000,2304285.0000,2295969.0000,2297683.0000,2300738.0000" -generating large command graphs for N nodes - 4,jacobi topology,100,1,53502400,549029.5500,548283.0100,549776.4600,3815.8629,3526.8584,4170.2098,"benchmark,group:command-graph","552756.0000,547907.0000,556804.0000,555771.0000,548137.0000,555561.0000,549028.0000,554228.0000,548358.0000,553878.0000,552665.0000,546344.0000,551393.0000,544410.0000,552194.0000,542998.0000,550411.0000,543799.0000,554138.0000,546463.0000,553366.0000,551603.0000,544821.0000,554379.0000,546264.0000,555741.0000,547436.0000,550812.0000,545743.0000,553156.0000,552886.0000,547475.0000,552675.0000,545492.0000,550752.0000,545182.0000,551964.0000,543578.0000,551984.0000,542076.0000,550631.0000,551092.0000,544460.0000,552015.0000,543859.0000,549760.0000,543017.0000,552014.0000,544510.0000,551634.0000,546444.0000,553477.0000,550582.0000,543649.0000,550531.0000,543378.0000,550792.0000,544479.0000,552355.0000,544089.0000,549149.0000,549770.0000,545673.0000,552275.0000,544770.0000,552535.0000,546604.0000,553307.0000,543358.0000,552265.0000,545041.0000,551092.0000,551063.0000,546053.0000,552796.0000,545232.0000,550221.0000,544099.0000,551063.0000,544219.0000,553036.0000,544249.0000,552345.0000,550451.0000,543809.0000,549921.0000,543458.0000,551974.0000,544370.0000,550472.0000,545041.0000,549550.0000,551153.0000,547566.0000,553267.0000,547255.0000,552315.0000,544250.0000,553768.0000,546724.0000" -generating large command graphs for N nodes - 16,soup topology,100,1,162156000,1943372.6200,1940020.9900,1955605.0800,29200.3546,7262.1055,67618.8072,"benchmark,group:command-graph","1939835.0000,1935397.0000,1939243.0000,1949903.0000,1946978.0000,1957939.0000,1936207.0000,1942700.0000,1939053.0000,1939934.0000,1952108.0000,1935817.0000,1945265.0000,1934385.0000,1929465.0000,1939084.0000,1945124.0000,1944383.0000,1954042.0000,1961356.0000,1944473.0000,1941217.0000,1943291.0000,1944323.0000,1943702.0000,1931720.0000,1936779.0000,1954934.0000,1932921.0000,1930687.0000,1942009.0000,1917493.0000,1933733.0000,1946097.0000,1941408.0000,1938743.0000,1936127.0000,1928373.0000,1941648.0000,1933774.0000,1940726.0000,1936148.0000,1928904.0000,1940696.0000,1947880.0000,1939204.0000,1935166.0000,1932180.0000,1938171.0000,1933312.0000,1935126.0000,1944283.0000,1946368.0000,1953561.0000,1973238.0000,1941889.0000,1934725.0000,1944954.0000,1943161.0000,1939063.0000,1940557.0000,1938582.0000,1939003.0000,1941117.0000,1940386.0000,1931900.0000,1941949.0000,1937500.0000,1943161.0000,1942680.0000,1930998.0000,1966275.0000,1931579.0000,1935116.0000,1936679.0000,1936248.0000,1934584.0000,1946567.0000,2223342.0000,1944453.0000,1945315.0000,1943792.0000,1940737.0000,1946958.0000,1932661.0000,1935076.0000,1932802.0000,1947990.0000,1934726.0000,1942139.0000,1935767.0000,1944794.0000,1937770.0000,1941768.0000,1943933.0000,1940636.0000,1936669.0000,1939665.0000,1935607.0000,1935356.0000" -generating large command graphs for N nodes - 16,chain topology,100,1,92892100,1099139.1100,1098117.1500,1101658.6500,7703.1856,3746.0326,15855.4488,"benchmark,group:command-graph","1108679.0000,1100074.0000,1112747.0000,1098000.0000,1099692.0000,1101867.0000,1106806.0000,1097609.0000,1097879.0000,1097999.0000,1101376.0000,1098350.0000,1100845.0000,1100083.0000,1095234.0000,1096597.0000,1101135.0000,1098370.0000,1100324.0000,1098540.0000,1098690.0000,1098991.0000,1095554.0000,1095124.0000,1096516.0000,1098419.0000,1106184.0000,1125721.0000,1097078.0000,1098530.0000,1094894.0000,1096055.0000,1095664.0000,1093410.0000,1096176.0000,1096466.0000,1102998.0000,1099292.0000,1095625.0000,1094232.0000,1094232.0000,1095674.0000,1162692.0000,1099061.0000,1097488.0000,1100344.0000,1107227.0000,1099322.0000,1098470.0000,1099312.0000,1100103.0000,1096446.0000,1095254.0000,1097097.0000,1096626.0000,1097679.0000,1104131.0000,1095765.0000,1098931.0000,1095445.0000,1096646.0000,1101095.0000,1097258.0000,1097648.0000,1094552.0000,1096417.0000,1103860.0000,1096587.0000,1095665.0000,1099913.0000,1094462.0000,1095785.0000,1095765.0000,1096977.0000,1098320.0000,1097789.0000,1103229.0000,1099802.0000,1096897.0000,1098510.0000,1098300.0000,1099682.0000,1098840.0000,1097377.0000,1094292.0000,1098059.0000,1094363.0000,1102017.0000,1095965.0000,1093751.0000,1097989.0000,1096897.0000,1096066.0000,1095675.0000,1095535.0000,1095655.0000,1096586.0000,1102257.0000,1093861.0000,1094443.0000" -generating large command graphs for N nodes - 16,expanding tree topology,100,1,58371400,568793.8400,567540.0800,572381.7900,9952.0064,4463.4230,21566.0685,"benchmark,group:command-graph","570420.0000,563486.0000,573755.0000,572523.0000,565340.0000,570910.0000,563877.0000,576691.0000,571781.0000,563626.0000,572503.0000,563446.0000,574056.0000,562865.0000,570489.0000,568716.0000,564287.0000,571962.0000,563196.0000,570790.0000,562995.0000,573535.0000,563816.0000,569728.0000,569398.0000,561923.0000,569277.0000,562104.0000,569818.0000,563146.0000,568806.0000,570620.0000,563176.0000,570279.0000,562284.0000,576220.0000,561292.0000,568876.0000,569147.0000,563616.0000,570359.0000,562905.0000,571782.0000,562645.0000,571601.0000,572574.0000,563646.0000,571271.0000,562685.0000,578154.0000,563496.0000,656423.0000,573104.0000,563286.0000,571962.0000,563967.0000,570149.0000,563746.0000,570128.0000,571422.0000,561161.0000,569748.0000,561913.0000,576831.0000,561672.0000,569959.0000,570539.0000,564628.0000,572423.0000,562905.0000,570149.0000,563196.0000,569628.0000,568315.0000,564067.0000,569988.0000,564148.0000,575138.0000,561893.0000,583404.0000,569598.0000,566091.0000,568786.0000,563286.0000,570068.0000,564177.0000,570009.0000,564267.0000,569387.0000,570299.0000,563867.0000,577322.0000,562684.0000,569618.0000,563396.0000,568736.0000,570019.0000,562675.0000,571040.0000,562274.0000" -generating large command graphs for N nodes - 16,contracting tree topology,100,1,71073500,748342.7600,747565.2100,749361.3200,4501.6482,3417.7380,7226.8190,"benchmark,group:command-graph","746172.0000,752865.0000,758836.0000,751893.0000,750411.0000,743778.0000,749699.0000,749459.0000,746282.0000,742886.0000,775428.0000,752264.0000,745882.0000,741954.0000,748317.0000,751232.0000,749108.0000,742796.0000,749619.0000,750581.0000,749769.0000,744058.0000,749208.0000,748848.0000,748717.0000,742846.0000,746954.0000,747776.0000,748056.0000,739660.0000,748547.0000,746894.0000,743828.0000,748497.0000,748387.0000,750290.0000,742936.0000,746973.0000,750701.0000,749819.0000,744610.0000,751602.0000,748426.0000,748126.0000,744540.0000,750090.0000,749839.0000,749218.0000,737596.0000,751733.0000,748938.0000,752624.0000,744178.0000,750030.0000,747816.0000,748076.0000,745301.0000,748236.0000,747645.0000,748997.0000,744630.0000,748296.0000,748287.0000,749629.0000,742956.0000,750701.0000,754337.0000,749979.0000,744650.0000,749729.0000,752304.0000,748337.0000,738929.0000,749809.0000,748958.0000,751102.0000,743357.0000,749849.0000,750059.0000,747635.0000,743347.0000,749088.0000,749749.0000,748156.0000,742305.0000,748516.0000,751973.0000,749338.0000,742335.0000,748747.0000,747746.0000,749639.0000,743076.0000,752805.0000,754067.0000,753847.0000,741584.0000,751963.0000,752926.0000,749689.0000" -generating large command graphs for N nodes - 16,wave_sim topology,100,1,490718600,4745273.8200,4678169.7400,4798725.4100,302463.9060,254016.7665,343189.5518,"benchmark,group:command-graph","4896740.0000,4902320.0000,4909103.0000,4881871.0000,4879377.0000,4871972.0000,4894295.0000,4870129.0000,4882672.0000,4867163.0000,4873906.0000,4901688.0000,4901267.0000,4886320.0000,4913761.0000,4883424.0000,4893312.0000,4873586.0000,5114051.0000,4885568.0000,4888183.0000,4906288.0000,4892351.0000,4889265.0000,4893633.0000,4881240.0000,4866622.0000,4891118.0000,4899384.0000,4890347.0000,4887982.0000,4601429.0000,4110339.0000,4146157.0000,4138742.0000,4153791.0000,4120558.0000,4119857.0000,4127461.0000,4129956.0000,4120498.0000,4126028.0000,4113886.0000,4123854.0000,4123593.0000,4113093.0000,4129084.0000,4152769.0000,4175332.0000,4174030.0000,4131889.0000,4446847.0000,4876841.0000,4887201.0000,4885648.0000,4894665.0000,4898572.0000,4875719.0000,4906868.0000,4885428.0000,4888404.0000,4895767.0000,4884907.0000,4901007.0000,4901999.0000,4908040.0000,4878023.0000,4899755.0000,4898061.0000,4896048.0000,4874146.0000,4902861.0000,4890397.0000,4879687.0000,4924943.0000,4919011.0000,4920213.0000,4924552.0000,4940683.0000,4935202.0000,4914233.0000,4903231.0000,4887140.0000,4891008.0000,4913902.0000,4912539.0000,4966892.0000,4899765.0000,4897370.0000,4888754.0000,4900276.0000,4901418.0000,4886850.0000,4899895.0000,4881290.0000,4884946.0000,4888443.0000,4882212.0000,4890307.0000,4914132.0000" -generating large command graphs for N nodes - 16,jacobi topology,100,1,109915000,1292277.2800,1278678.1700,1300795.6600,54127.9056,36985.8594,72157.1544,"benchmark,group:command-graph","1301354.0000,1307706.0000,1323737.0000,1308698.0000,1306034.0000,1308037.0000,1303028.0000,1303800.0000,1310281.0000,1301485.0000,1299612.0000,1304861.0000,1301254.0000,1304650.0000,1304300.0000,1312115.0000,1303208.0000,1306936.0000,1311333.0000,1304411.0000,1302557.0000,1312035.0000,1304541.0000,1303378.0000,1310021.0000,1300072.0000,1305923.0000,1299972.0000,1314159.0000,1304892.0000,1301465.0000,1312065.0000,1303849.0000,1308068.0000,1307796.0000,1325159.0000,1306775.0000,1305864.0000,1303839.0000,1301305.0000,1302176.0000,1402216.0000,1103540.0000,1097168.0000,1095374.0000,1096967.0000,1095525.0000,1096917.0000,1106475.0000,1310422.0000,1302758.0000,1306474.0000,1306915.0000,1303618.0000,1305903.0000,1310692.0000,1307667.0000,1304160.0000,1309570.0000,1302798.0000,1297076.0000,1298539.0000,1310682.0000,1306865.0000,1303238.0000,1309710.0000,1300393.0000,1300824.0000,1311804.0000,1301515.0000,1300513.0000,1307305.0000,1304009.0000,1302036.0000,1302808.0000,1305853.0000,1303298.0000,1301053.0000,1311845.0000,1304791.0000,1303429.0000,1311854.0000,1303368.0000,1299391.0000,1308819.0000,1302517.0000,1302968.0000,1303889.0000,1312005.0000,1304661.0000,1298850.0000,1313608.0000,1304100.0000,1305753.0000,1310843.0000,1305112.0000,1304951.0000,1303068.0000,1309560.0000,1306915.0000" -generating large instruction graphs for N devices - 1,soup topology,100,1,463179800,4520326.3600,4474131.9800,4558233.8600,213912.8581,180643.6847,242068.6139,"benchmark,group:instruction-graph","4101221.0000,4104087.0000,4641635.0000,4627098.0000,4627489.0000,4608914.0000,4352798.0000,4081434.0000,4094779.0000,4090731.0000,4101763.0000,4081374.0000,4090901.0000,4088978.0000,4108215.0000,4084349.0000,4429995.0000,4636736.0000,4627028.0000,4630214.0000,4646354.0000,4631566.0000,4642397.0000,4635774.0000,4634392.0000,4633030.0000,4621708.0000,4628811.0000,4628891.0000,4621548.0000,4632458.0000,4620937.0000,4621327.0000,4641906.0000,4633800.0000,4631908.0000,4626958.0000,4629132.0000,4896980.0000,4632167.0000,4639150.0000,4623100.0000,4631878.0000,4622339.0000,4638009.0000,4622018.0000,4620235.0000,4633630.0000,4626848.0000,4617520.0000,4617801.0000,4627168.0000,4640283.0000,4624934.0000,4618542.0000,4628731.0000,4630535.0000,4618792.0000,4623681.0000,4647116.0000,4401982.0000,4090982.0000,4094208.0000,4098176.0000,4334824.0000,4637698.0000,4654941.0000,4595849.0000,4640734.0000,4627499.0000,4618592.0000,4640053.0000,4636927.0000,4629613.0000,4642487.0000,4625806.0000,4634843.0000,4631727.0000,4632248.0000,4637237.0000,4634782.0000,4646384.0000,4616839.0000,4614324.0000,4625054.0000,4618021.0000,4628170.0000,4624563.0000,4633430.0000,4617930.0000,4633690.0000,4618732.0000,4618902.0000,4631907.0000,4619403.0000,4125568.0000,4098887.0000,4094559.0000,4084289.0000,4086683.0000" -generating large instruction graphs for N devices - 1,chain topology,100,1,68171700,686547.8400,685608.6300,687664.2400,5236.3726,4252.0529,7778.6056,"benchmark,group:instruction-graph","680488.0000,688913.0000,700636.0000,688243.0000,680408.0000,688143.0000,692510.0000,682050.0000,689735.0000,689445.0000,689265.0000,680949.0000,691018.0000,687732.0000,676490.0000,688273.0000,687842.0000,679316.0000,714352.0000,688573.0000,680468.0000,688233.0000,690828.0000,679786.0000,689194.0000,688704.0000,690687.0000,680698.0000,690787.0000,690878.0000,679656.0000,691959.0000,689666.0000,680939.0000,689855.0000,688242.0000,678294.0000,688243.0000,688623.0000,680518.0000,690387.0000,689205.0000,689284.0000,681239.0000,686820.0000,687191.0000,680468.0000,690246.0000,688122.0000,680408.0000,689946.0000,689285.0000,679856.0000,686719.0000,688232.0000,679206.0000,686940.0000,687632.0000,678444.0000,687040.0000,690317.0000,688764.0000,681079.0000,692390.0000,689625.0000,679937.0000,686630.0000,687842.0000,682251.0000,690116.0000,688844.0000,680027.0000,688112.0000,689545.0000,680408.0000,688152.0000,689925.0000,688052.0000,680167.0000,688373.0000,688544.0000,681519.0000,688893.0000,688753.0000,680428.0000,688573.0000,691438.0000,679837.0000,687612.0000,687481.0000,680608.0000,685638.0000,688523.0000,684946.0000,683464.0000,687220.0000,689935.0000,678795.0000,686750.0000,687962.0000" -generating large instruction graphs for N devices - 1,expanding tree topology,100,1,84065000,819479.4300,818543.7300,820471.3700,4907.2078,4065.6266,6229.0163,"benchmark,group:instruction-graph","820924.0000,821485.0000,838167.0000,820724.0000,821455.0000,809142.0000,819091.0000,817097.0000,816676.0000,820243.0000,821926.0000,809773.0000,820454.0000,817077.0000,822547.0000,816426.0000,807649.0000,814612.0000,818239.0000,819942.0000,817978.0000,810364.0000,819582.0000,820303.0000,821766.0000,824661.0000,819662.0000,811116.0000,815654.0000,824281.0000,820213.0000,819221.0000,817668.0000,818630.0000,826595.0000,819701.0000,823549.0000,819190.0000,809031.0000,820173.0000,824731.0000,820763.0000,819611.0000,816005.0000,811046.0000,818650.0000,818008.0000,822436.0000,820974.0000,813760.0000,822537.0000,817758.0000,816796.0000,824701.0000,820423.0000,816907.0000,819361.0000,818339.0000,820644.0000,819341.0000,811767.0000,822858.0000,819391.0000,827586.0000,821486.0000,819471.0000,813771.0000,821435.0000,820533.0000,822246.0000,827005.0000,816015.0000,824391.0000,827596.0000,820653.0000,820233.0000,821666.0000,813079.0000,837035.0000,822377.0000,826976.0000,820774.0000,821886.0000,814542.0000,821074.0000,817948.0000,820103.0000,818479.0000,809412.0000,818259.0000,820683.0000,823679.0000,821575.0000,818439.0000,813470.0000,819161.0000,817829.0000,820784.0000,822587.0000,813911.0000" -generating large instruction graphs for N devices - 1,contracting tree topology,100,1,103501300,1031324.8200,1023617.0300,1036436.7200,31605.0483,22596.1067,40571.1140,"benchmark,group:instruction-graph","1039268.0000,1038497.0000,1056721.0000,1041632.0000,955089.0000,930241.0000,930001.0000,930242.0000,925833.0000,924180.0000,928919.0000,930822.0000,933939.0000,1015853.0000,1045330.0000,1044778.0000,1042564.0000,1044137.0000,1040290.0000,1044077.0000,1046171.0000,1040761.0000,1041763.0000,1043115.0000,1038696.0000,1040400.0000,1039839.0000,1037444.0000,1041011.0000,1045279.0000,1043496.0000,1039818.0000,1038696.0000,1041201.0000,1041172.0000,1037464.0000,1040861.0000,1038597.0000,1040009.0000,1038928.0000,1040069.0000,1044999.0000,1041352.0000,1039920.0000,1053274.0000,1040740.0000,1040420.0000,1039798.0000,1040680.0000,1042825.0000,1037916.0000,1039698.0000,1039318.0000,1040520.0000,1036583.0000,1040501.0000,1039218.0000,1040821.0000,1040550.0000,1047162.0000,1042064.0000,1039188.0000,1041833.0000,1044457.0000,1042754.0000,1042404.0000,1042283.0000,1038817.0000,1044648.0000,1037775.0000,1039869.0000,1038437.0000,1040450.0000,1038938.0000,1039127.0000,1039509.0000,1043125.0000,1039078.0000,1040200.0000,1039228.0000,1039669.0000,1040220.0000,1040219.0000,1041562.0000,1046131.0000,1040390.0000,1041482.0000,1038346.0000,1039999.0000,1062813.0000,1039849.0000,1042594.0000,1043105.0000,1043366.0000,1039067.0000,1040741.0000,1040561.0000,1037444.0000,1038776.0000,1038466.0000" -generating large instruction graphs for N devices - 1,wave_sim topology,100,1,515068200,5491460.6200,5427316.2300,5555598.4100,326397.9832,319586.1334,340704.5988,"benchmark,group:instruction-graph","5797116.0000,5814469.0000,6063681.0000,5864874.0000,5797577.0000,5799881.0000,5802817.0000,5788870.0000,5802596.0000,5797106.0000,5792257.0000,5811102.0000,5811323.0000,5805862.0000,5800162.0000,5779402.0000,5797908.0000,5791905.0000,5809018.0000,5877398.0000,5812796.0000,5828996.0000,5822694.0000,5810121.0000,5819879.0000,5817314.0000,5810682.0000,5823295.0000,5821462.0000,5823055.0000,5833735.0000,5801063.0000,5821061.0000,5819619.0000,5809339.0000,5431312.0000,5189224.0000,5168214.0000,5181659.0000,5156742.0000,5162844.0000,5167613.0000,5191307.0000,5164266.0000,5175026.0000,5165919.0000,5179706.0000,5165178.0000,5152764.0000,5151712.0000,5165048.0000,5142605.0000,5144930.0000,5151552.0000,5150470.0000,5158815.0000,5151722.0000,5143618.0000,5151592.0000,5140221.0000,5153646.0000,5150861.0000,5149589.0000,5158315.0000,5147314.0000,5162433.0000,5157012.0000,5159507.0000,5158585.0000,5151041.0000,5153356.0000,5146663.0000,5161541.0000,5149568.0000,5159156.0000,5159437.0000,5131705.0000,5157664.0000,5153987.0000,5133017.0000,5148647.0000,5183633.0000,5154247.0000,5133358.0000,5469866.0000,5809900.0000,5813587.0000,5800252.0000,5778260.0000,5789872.0000,5806884.0000,5801824.0000,5787638.0000,5817765.0000,5798529.0000,5811873.0000,5797787.0000,5793579.0000,5809098.0000,5800572.0000" -generating large instruction graphs for N devices - 1,jacobi topology,100,1,128018200,1282143.9900,1280998.3000,1284917.1800,8580.4847,4538.3199,17663.3918,"benchmark,group:instruction-graph","1278361.0000,1287108.0000,1288611.0000,1279242.0000,1275545.0000,1285634.0000,1281236.0000,1279473.0000,1281316.0000,1280735.0000,1282780.0000,1280615.0000,1294803.0000,1277509.0000,1275957.0000,1274003.0000,1282709.0000,1279323.0000,1281588.0000,1288490.0000,1285284.0000,1280324.0000,1277339.0000,1287829.0000,1277219.0000,1280485.0000,1282229.0000,1277138.0000,1276978.0000,1280956.0000,1295604.0000,1284954.0000,1285645.0000,1288090.0000,1284913.0000,1275837.0000,1278722.0000,1285254.0000,1271809.0000,1276247.0000,1285745.0000,1281617.0000,1281667.0000,1277540.0000,1282569.0000,1282399.0000,1280846.0000,1278471.0000,1286156.0000,1277039.0000,1274083.0000,1285615.0000,1279012.0000,1297196.0000,1275104.0000,1288550.0000,1282168.0000,1276647.0000,1281477.0000,1282038.0000,1280786.0000,1277930.0000,1289763.0000,1279854.0000,1274804.0000,1285054.0000,1278051.0000,1282509.0000,1280295.0000,1353203.0000,1281217.0000,1277078.0000,1289352.0000,1279814.0000,1279182.0000,1279994.0000,1287899.0000,1281637.0000,1276628.0000,1287258.0000,1279673.0000,1278001.0000,1280315.0000,1280535.0000,1275546.0000,1277199.0000,1285084.0000,1278732.0000,1279673.0000,1278772.0000,1286145.0000,1280745.0000,1274634.0000,1288841.0000,1283621.0000,1277690.0000,1278611.0000,1286186.0000,1282358.0000,1275897.0000" -generating large instruction graphs for N devices - 4,soup topology,100,1,456929300,4596033.4500,4560465.1200,4619621.1600,146048.2770,105422.3962,189266.2729,"benchmark,group:instruction-graph","4647246.0000,4647136.0000,4645053.0000,4657646.0000,4630384.0000,4637689.0000,4638199.0000,4634071.0000,4645213.0000,4631747.0000,4648749.0000,4639552.0000,4635434.0000,4655643.0000,4652696.0000,4636846.0000,4644792.0000,4637318.0000,4637778.0000,4644051.0000,4628410.0000,4669569.0000,4633671.0000,4625195.0000,4635654.0000,4643119.0000,4631737.0000,4655271.0000,4647748.0000,4638089.0000,4651775.0000,4641676.0000,4674648.0000,4132150.0000,4095670.0000,4114506.0000,4099368.0000,4407713.0000,4651103.0000,4632057.0000,4647818.0000,4647507.0000,4635013.0000,4666874.0000,4645232.0000,4652436.0000,4638890.0000,4642317.0000,4652376.0000,4641555.0000,4628721.0000,4640423.0000,4639191.0000,4632889.0000,4643439.0000,4646515.0000,4632639.0000,4651865.0000,4668847.0000,4639041.0000,4641866.0000,4635253.0000,4655502.0000,4648148.0000,4672694.0000,4635945.0000,4645133.0000,4631195.0000,4645573.0000,4644511.0000,4636897.0000,4641425.0000,4636225.0000,4646846.0000,4634953.0000,4631587.0000,4636025.0000,4648288.0000,4637979.0000,4649351.0000,4631115.0000,4641645.0000,4637598.0000,4637257.0000,4636917.0000,4632669.0000,4321268.0000,4092325.0000,4091974.0000,4104618.0000,4251717.0000,4648368.0000,4651485.0000,4670180.0000,4653528.0000,4639101.0000,4649501.0000,4634823.0000,4631637.0000,4640263.0000" -generating large instruction graphs for N devices - 4,chain topology,100,1,67889100,689668.9100,688519.2500,691747.6400,7620.1839,4848.1796,14108.3696,"benchmark,group:instruction-graph","679837.0000,687852.0000,705956.0000,684245.0000,693623.0000,690426.0000,693362.0000,684295.0000,692270.0000,692961.0000,683674.0000,692200.0000,692941.0000,686700.0000,694344.0000,691508.0000,680958.0000,692991.0000,691008.0000,689335.0000,683654.0000,693122.0000,692982.0000,681159.0000,691920.0000,692490.0000,682571.0000,693592.0000,694815.0000,683844.0000,691599.0000,715194.0000,691068.0000,686159.0000,690216.0000,692390.0000,682612.0000,689926.0000,691459.0000,682502.0000,693142.0000,691689.0000,681069.0000,692351.0000,694254.0000,685357.0000,692540.0000,692030.0000,694034.0000,685998.0000,691148.0000,688643.0000,681961.0000,693553.0000,692340.0000,680318.0000,690206.0000,690166.0000,683794.0000,690938.0000,691619.0000,689464.0000,683152.0000,689996.0000,689855.0000,681239.0000,690968.0000,689284.0000,681189.0000,690607.0000,688834.0000,682412.0000,691308.0000,689726.0000,681400.0000,690557.0000,689805.0000,679786.0000,690337.0000,690677.0000,689725.0000,684385.0000,689975.0000,689765.0000,680829.0000,690928.0000,691208.0000,682742.0000,689354.0000,744409.0000,691889.0000,684566.0000,690467.0000,693893.0000,684897.0000,691779.0000,693603.0000,682672.0000,688063.0000,690236.0000" -generating large instruction graphs for N devices - 4,expanding tree topology,100,1,91109700,898281.3600,891478.0700,903781.1000,31089.2257,25056.0603,37322.8725,"benchmark,group:instruction-graph","908280.0000,901767.0000,912016.0000,911445.0000,910925.0000,908921.0000,907629.0000,910985.0000,908209.0000,908730.0000,912227.0000,912067.0000,914412.0000,911646.0000,906406.0000,908510.0000,911215.0000,913700.0000,908560.0000,911125.0000,909021.0000,911646.0000,912097.0000,904332.0000,910233.0000,905164.0000,912047.0000,909041.0000,909813.0000,909672.0000,910174.0000,911075.0000,911115.0000,910855.0000,909882.0000,908941.0000,865639.0000,840641.0000,841754.0000,822527.0000,824161.0000,818519.0000,814151.0000,824902.0000,819681.0000,985926.0000,833297.0000,848446.0000,817828.0000,819602.0000,824931.0000,826945.0000,851262.0000,916585.0000,913599.0000,910093.0000,905444.0000,914992.0000,910173.0000,909672.0000,910704.0000,915102.0000,910754.0000,913339.0000,910604.0000,909472.0000,906246.0000,904242.0000,934700.0000,913429.0000,912257.0000,914171.0000,911476.0000,911966.0000,907718.0000,909342.0000,912368.0000,907989.0000,905384.0000,905645.0000,907859.0000,908951.0000,912438.0000,908881.0000,911836.0000,905695.0000,910654.0000,908510.0000,908951.0000,905134.0000,900705.0000,909432.0000,911847.0000,911205.0000,912869.0000,910744.0000,910655.0000,909732.0000,909893.0000,910584.0000" -generating large instruction graphs for N devices - 4,contracting tree topology,100,1,104734200,1023029.0000,1013365.5100,1030718.4800,43892.9694,36850.2892,49945.7520,"benchmark,group:instruction-graph","1054767.0000,1050109.0000,1058404.0000,1042384.0000,1041923.0000,1043976.0000,1043736.0000,1047664.0000,1047764.0000,1045450.0000,1043085.0000,1042274.0000,1044628.0000,1043817.0000,1043155.0000,1043296.0000,1043286.0000,1043325.0000,1043596.0000,1043035.0000,1040821.0000,1044658.0000,1046782.0000,1043726.0000,1046331.0000,1041111.0000,1046572.0000,1044638.0000,1047875.0000,1053895.0000,1045741.0000,1041812.0000,1042654.0000,1044909.0000,1046692.0000,1044628.0000,1042374.0000,1044138.0000,1043205.0000,1046652.0000,1046592.0000,1069936.0000,1043987.0000,1042804.0000,1043255.0000,1043937.0000,1042284.0000,1043826.0000,1045950.0000,988221.0000,950189.0000,952243.0000,934219.0000,933417.0000,932386.0000,933888.0000,932005.0000,932555.0000,934168.0000,936422.0000,932505.0000,931384.0000,930842.0000,923599.0000,928739.0000,931443.0000,932605.0000,931473.0000,934590.0000,999813.0000,1043446.0000,1043146.0000,1044658.0000,1043246.0000,1047754.0000,1044037.0000,1049187.0000,1043165.0000,1048535.0000,1046502.0000,1044177.0000,1042925.0000,1041582.0000,1043997.0000,1040811.0000,1041161.0000,1043286.0000,1039138.0000,1041452.0000,1041883.0000,1043757.0000,1050008.0000,1045470.0000,1046251.0000,1047864.0000,1045609.0000,1043415.0000,1044758.0000,1046592.0000,1046923.0000" -generating large instruction graphs for N devices - 4,wave_sim topology,100,1,581079000,5775553.2400,5734850.7500,5801147.5400,162111.9114,112945.3925,217299.2127,"benchmark,group:instruction-graph","5828525.0000,5832052.0000,6075273.0000,5864113.0000,5838754.0000,5794040.0000,5889641.0000,5817364.0000,5807525.0000,5809038.0000,5836060.0000,5803137.0000,5802747.0000,5786124.0000,5801644.0000,5793649.0000,5792997.0000,5800061.0000,5795994.0000,5807034.0000,5803679.0000,5834176.0000,5793298.0000,5798609.0000,5803067.0000,5829738.0000,5810591.0000,5801625.0000,5800863.0000,5796675.0000,5804750.0000,5808337.0000,5815060.0000,5801224.0000,5787678.0000,5783259.0000,5717334.0000,5184224.0000,5168044.0000,5148667.0000,5542393.0000,5807846.0000,5807525.0000,5801544.0000,5805071.0000,5813156.0000,5823746.0000,5825619.0000,5820770.0000,5827694.0000,5817034.0000,5858492.0000,5814889.0000,5817053.0000,5823776.0000,5859103.0000,5851679.0000,5839056.0000,5827032.0000,5825670.0000,5827193.0000,5815962.0000,5826241.0000,5812936.0000,5821392.0000,5801784.0000,5811944.0000,5807025.0000,5827824.0000,5814318.0000,5803267.0000,5797266.0000,5807145.0000,5832713.0000,5807625.0000,5818086.0000,5817765.0000,5825099.0000,5800162.0000,5463874.0000,5184875.0000,5192039.0000,5172531.0000,5789482.0000,5935498.0000,5855356.0000,5843624.0000,5820721.0000,5829908.0000,5820129.0000,5848222.0000,5822785.0000,5816092.0000,5806944.0000,5822214.0000,5883119.0000,5827673.0000,5823776.0000,5815611.0000,5829286.0000" -generating large instruction graphs for N devices - 4,jacobi topology,100,1,128699400,1131915.6000,1131087.4200,1132877.8700,4548.8243,3870.4215,5389.7072,"benchmark,group:instruction-graph","1131653.0000,1130841.0000,1142804.0000,1144517.0000,1128918.0000,1129700.0000,1129018.0000,1127355.0000,1129920.0000,1129318.0000,1131532.0000,1144106.0000,1130341.0000,1136452.0000,1128467.0000,1131032.0000,1129690.0000,1129950.0000,1140249.0000,1131563.0000,1131212.0000,1126393.0000,1130250.0000,1132044.0000,1128036.0000,1133075.0000,1135651.0000,1125311.0000,1130110.0000,1131081.0000,1128938.0000,1130080.0000,1132865.0000,1133236.0000,1134048.0000,1129389.0000,1127986.0000,1132294.0000,1130100.0000,1139267.0000,1130441.0000,1139328.0000,1131202.0000,1145129.0000,1129840.0000,1125070.0000,1131533.0000,1129549.0000,1127665.0000,1135340.0000,1128237.0000,1130130.0000,1134388.0000,1137985.0000,1130430.0000,1129138.0000,1136542.0000,1127675.0000,1130631.0000,1130251.0000,1137474.0000,1129599.0000,1127946.0000,1123888.0000,1139768.0000,1131353.0000,1126673.0000,1134568.0000,1125922.0000,1130711.0000,1126754.0000,1136562.0000,1129179.0000,1128517.0000,1131683.0000,1129599.0000,1127324.0000,1123758.0000,1128036.0000,1139768.0000,1128968.0000,1132093.0000,1132775.0000,1127775.0000,1133065.0000,1134218.0000,1132295.0000,1138255.0000,1134007.0000,1131403.0000,1130280.0000,1132554.0000,1127425.0000,1131121.0000,1139618.0000,1136662.0000,1144317.0000,1134007.0000,1131703.0000,1130641.0000" -generating large instruction graphs for N devices - 16,soup topology,100,1,448819900,4504016.9800,4451082.3200,4549951.8100,251237.4416,224398.3095,269500.4661,"benchmark,group:instruction-graph","4654490.0000,4656534.0000,4668336.0000,4662325.0000,4645323.0000,4662926.0000,4792011.0000,4671472.0000,4656814.0000,4680229.0000,4670801.0000,4660692.0000,4663537.0000,4686290.0000,4583465.0000,4110529.0000,4105359.0000,4111912.0000,4101652.0000,4099218.0000,4114727.0000,4115499.0000,4114667.0000,4113875.0000,4113525.0000,4122061.0000,4121169.0000,4115289.0000,4117953.0000,4132791.0000,4106191.0000,4111491.0000,4112413.0000,4102514.0000,4107944.0000,4125898.0000,4102544.0000,4105740.0000,4125708.0000,4097795.0000,4124355.0000,4106742.0000,4113906.0000,4104147.0000,4545644.0000,4681711.0000,4655051.0000,4670660.0000,4666973.0000,4665181.0000,4665681.0000,4662365.0000,4665010.0000,4685418.0000,4649270.0000,4676030.0000,4666553.0000,4652586.0000,4660191.0000,4660692.0000,4663658.0000,4649841.0000,4657716.0000,4662706.0000,4664189.0000,4664569.0000,4661483.0000,4663266.0000,4684988.0000,4663677.0000,4664970.0000,4663537.0000,4668677.0000,4662825.0000,4690379.0000,4663587.0000,4658197.0000,4655773.0000,4670500.0000,4657595.0000,4677593.0000,4660432.0000,4660812.0000,4671703.0000,4657776.0000,4661053.0000,4657776.0000,4663958.0000,4647336.0000,4665551.0000,4661924.0000,4665961.0000,4669469.0000,4670470.0000,4655992.0000,4700447.0000,4664228.0000,4656874.0000,4670400.0000,4667935.0000" -generating large instruction graphs for N devices - 16,chain topology,100,1,69563900,696060.6000,695131.1000,697182.3900,5180.0504,4131.0984,7682.0676,"benchmark,group:instruction-graph","700586.0000,699534.0000,712719.0000,698762.0000,689565.0000,700796.0000,700536.0000,690637.0000,699584.0000,697109.0000,691890.0000,699474.0000,698031.0000,699875.0000,688323.0000,697680.0000,702539.0000,690116.0000,697560.0000,699274.0000,686259.0000,697039.0000,698983.0000,698953.0000,689495.0000,698893.0000,696408.0000,689474.0000,696047.0000,696969.0000,687121.0000,698191.0000,696067.0000,689736.0000,696688.0000,697850.0000,697079.0000,690888.0000,697710.0000,699183.0000,688112.0000,695907.0000,698973.0000,690026.0000,699684.0000,697980.0000,699023.0000,689555.0000,697931.0000,698482.0000,690858.0000,695717.0000,697610.0000,688984.0000,695296.0000,697750.0000,688904.0000,696749.0000,698602.0000,699323.0000,691168.0000,698151.0000,699374.0000,689725.0000,697840.0000,698091.0000,691298.0000,697470.0000,698422.0000,694605.0000,692260.0000,698552.0000,697380.0000,692251.0000,699063.0000,696258.0000,688363.0000,698883.0000,699033.0000,691469.0000,723680.0000,697269.0000,699614.0000,688232.0000,696708.0000,697150.0000,689635.0000,698242.0000,695166.0000,690697.0000,697800.0000,697901.0000,699254.0000,692370.0000,698862.0000,698932.0000,690667.0000,698853.0000,697921.0000,688362.0000" -generating large instruction graphs for N devices - 16,expanding tree topology,100,1,82770900,919990.1600,919035.0700,922124.7900,6896.9691,3731.1570,13420.6844,"benchmark,group:instruction-graph","921004.0000,919752.0000,941022.0000,924530.0000,913118.0000,917887.0000,920943.0000,973533.0000,919761.0000,917797.0000,921194.0000,923117.0000,918499.0000,919461.0000,920643.0000,943727.0000,919681.0000,918889.0000,914241.0000,919541.0000,918719.0000,921284.0000,921034.0000,919391.0000,919080.0000,917517.0000,918579.0000,919771.0000,918990.0000,916385.0000,912968.0000,917006.0000,919751.0000,917838.0000,918149.0000,918158.0000,918038.0000,920743.0000,919060.0000,918989.0000,918759.0000,916786.0000,913390.0000,917297.0000,917467.0000,916635.0000,921164.0000,920493.0000,918799.0000,918018.0000,919691.0000,921725.0000,921715.0000,914281.0000,915624.0000,914030.0000,926935.0000,920052.0000,920483.0000,921785.0000,917978.0000,917938.0000,919942.0000,920282.0000,916686.0000,919762.0000,915493.0000,911977.0000,918469.0000,923268.0000,917016.0000,918739.0000,919371.0000,919691.0000,921885.0000,922266.0000,918258.0000,920283.0000,922236.0000,919822.0000,908971.0000,918990.0000,919612.0000,916735.0000,919611.0000,916796.0000,922426.0000,922205.0000,919340.0000,918059.0000,919441.0000,917357.0000,911155.0000,922687.0000,919271.0000,920653.0000,922467.0000,923308.0000,921585.0000,922066.0000" -generating large instruction graphs for N devices - 16,contracting tree topology,100,1,105659400,1054227.6800,1053722.4100,1055096.9600,3311.8854,2193.6087,6043.6391,"benchmark,group:instruction-graph","1050069.0000,1049667.0000,1061710.0000,1057693.0000,1051542.0000,1052914.0000,1052483.0000,1054637.0000,1052503.0000,1052273.0000,1054236.0000,1054095.0000,1057212.0000,1055729.0000,1054116.0000,1056120.0000,1055018.0000,1061440.0000,1056651.0000,1055067.0000,1054417.0000,1055709.0000,1056471.0000,1052543.0000,1055459.0000,1053194.0000,1056590.0000,1054216.0000,1055308.0000,1054167.0000,1053745.0000,1053225.0000,1055899.0000,1052594.0000,1053605.0000,1054116.0000,1060448.0000,1054557.0000,1054387.0000,1053585.0000,1051261.0000,1053485.0000,1050650.0000,1055268.0000,1050740.0000,1053866.0000,1053274.0000,1054627.0000,1049146.0000,1056250.0000,1055979.0000,1054877.0000,1055399.0000,1052954.0000,1057092.0000,1052332.0000,1053785.0000,1052894.0000,1049678.0000,1052263.0000,1054056.0000,1052823.0000,1052252.0000,1053074.0000,1053715.0000,1055879.0000,1055869.0000,1053806.0000,1054577.0000,1051501.0000,1051681.0000,1052432.0000,1048695.0000,1059135.0000,1054738.0000,1054136.0000,1055438.0000,1053394.0000,1053234.0000,1054146.0000,1053575.0000,1052853.0000,1051712.0000,1052643.0000,1052252.0000,1056010.0000,1054146.0000,1077661.0000,1053375.0000,1050940.0000,1054056.0000,1060188.0000,1054336.0000,1052913.0000,1053975.0000,1052362.0000,1052863.0000,1052162.0000,1052162.0000,1052773.0000" -generating large instruction graphs for N devices - 16,wave_sim topology,100,1,590516400,5908444.0600,5904628.3100,5917253.1800,27897.8208,15461.4688,56656.4238,"benchmark,group:instruction-graph","5925499.0000,5950527.0000,6134284.0000,5955215.0000,5888379.0000,5895793.0000,5895793.0000,5886154.0000,5877088.0000,5887267.0000,5912734.0000,5892747.0000,5872889.0000,5893599.0000,5887186.0000,5881776.0000,5893478.0000,5898879.0000,5901394.0000,5918335.0000,5923846.0000,5914048.0000,5920510.0000,5893779.0000,5897546.0000,5904610.0000,5900051.0000,5916361.0000,5895231.0000,5912153.0000,5942281.0000,5893319.0000,5889350.0000,5908457.0000,5899250.0000,5899529.0000,5885112.0000,5890343.0000,5897786.0000,5892386.0000,5892276.0000,5900292.0000,5909158.0000,5912294.0000,5920390.0000,5896574.0000,5910681.0000,5913757.0000,5906103.0000,5892857.0000,5893368.0000,5908838.0000,5953272.0000,5900912.0000,5892226.0000,5907845.0000,5893568.0000,5890623.0000,5902386.0000,5892867.0000,5878660.0000,5912554.0000,5894661.0000,5907525.0000,5908327.0000,5910611.0000,5925108.0000,5917785.0000,5920570.0000,5900652.0000,5908246.0000,5915591.0000,5925519.0000,5925189.0000,5911072.0000,5923956.0000,5924467.0000,5908677.0000,5940056.0000,5919207.0000,5915089.0000,5903036.0000,5900191.0000,5901504.0000,5898398.0000,5905761.0000,5906914.0000,5915280.0000,5918566.0000,5941039.0000,5925960.0000,5899590.0000,5893799.0000,5882899.0000,5891625.0000,5932322.0000,5897045.0000,5891645.0000,5913497.0000,5916562.0000" -generating large instruction graphs for N devices - 16,jacobi topology,100,1,116747500,1168327.8900,1167162.4400,1170823.7700,8311.7964,4732.2876,16356.4262,"benchmark,group:instruction-graph","1168794.0000,1167200.0000,1177911.0000,1164606.0000,1165677.0000,1168262.0000,1171970.0000,1163543.0000,1168754.0000,1183010.0000,1168854.0000,1171739.0000,1167732.0000,1169645.0000,1168733.0000,1166399.0000,1164766.0000,1177039.0000,1168342.0000,1166660.0000,1169294.0000,1166179.0000,1165447.0000,1176398.0000,1168313.0000,1165166.0000,1162451.0000,1171769.0000,1166559.0000,1174514.0000,1165156.0000,1167440.0000,1164695.0000,1165688.0000,1172000.0000,1173191.0000,1163022.0000,1163203.0000,1166880.0000,1165257.0000,1161990.0000,1176718.0000,1165247.0000,1161289.0000,1167672.0000,1166579.0000,1163864.0000,1177480.0000,1167421.0000,1166830.0000,1163834.0000,1166870.0000,1170296.0000,1175085.0000,1170046.0000,1165898.0000,1164215.0000,1162962.0000,1162331.0000,1172861.0000,1160317.0000,1171117.0000,1165057.0000,1167521.0000,1164746.0000,1172821.0000,1164756.0000,1161760.0000,1170797.0000,1163403.0000,1162421.0000,1233246.0000,1166619.0000,1163773.0000,1161750.0000,1168974.0000,1158534.0000,1171358.0000,1167210.0000,1162962.0000,1167231.0000,1165968.0000,1167922.0000,1175947.0000,1168663.0000,1167071.0000,1164435.0000,1167942.0000,1163523.0000,1174394.0000,1164565.0000,1162130.0000,1160598.0000,1165907.0000,1166980.0000,1194071.0000,1172190.0000,1166259.0000,1161339.0000,1164766.0000" -generating large instruction graphs for N devices without d2d copy support - 1,soup topology,100,1,463532500,4635242.5300,4633207.9800,4637953.2300,11847.0113,9371.3188,17382.7939,"benchmark,group:instruction-graph","4646675.0000,4650402.0000,4628891.0000,4625946.0000,4628100.0000,4627178.0000,4637838.0000,4647306.0000,4628551.0000,4624704.0000,4646856.0000,4640904.0000,4659880.0000,4631947.0000,4613603.0000,4639451.0000,4635564.0000,4625635.0000,4638831.0000,4628330.0000,4632548.0000,4633891.0000,4641957.0000,4629673.0000,4625705.0000,4624262.0000,4637488.0000,4631447.0000,4640994.0000,4639712.0000,4616498.0000,4623251.0000,4622429.0000,4633210.0000,4661644.0000,4637668.0000,4670421.0000,4637297.0000,4635324.0000,4611980.0000,4633721.0000,4633931.0000,4635153.0000,4638169.0000,4630625.0000,4627408.0000,4632157.0000,4637057.0000,4643148.0000,4645584.0000,4625054.0000,4635995.0000,4637668.0000,4629933.0000,4634532.0000,4623832.0000,4657696.0000,4646265.0000,4627128.0000,4635634.0000,4642518.0000,4632298.0000,4638239.0000,4641877.0000,4633490.0000,4626507.0000,4617069.0000,4639201.0000,4638510.0000,4625665.0000,4630475.0000,4631557.0000,4629362.0000,4632599.0000,4627699.0000,4619785.0000,4698383.0000,4656805.0000,4627268.0000,4641555.0000,4629693.0000,4625394.0000,4623351.0000,4638109.0000,4646365.0000,4637638.0000,4625295.0000,4635744.0000,4633210.0000,4633851.0000,4640223.0000,4643990.0000,4631917.0000,4634623.0000,4621858.0000,4632368.0000,4625526.0000,4633791.0000,4639411.0000,4656353.0000" -generating large instruction graphs for N devices without d2d copy support - 1,chain topology,100,1,68700700,687842.1000,686832.3700,689852.5900,6984.1725,4249.9380,13657.5576,"benchmark,group:instruction-graph","691489.0000,680328.0000,704553.0000,691800.0000,741333.0000,682753.0000,691118.0000,691128.0000,680769.0000,693562.0000,694724.0000,689114.0000,684686.0000,693152.0000,687842.0000,682512.0000,692010.0000,691178.0000,680999.0000,690116.0000,688524.0000,681039.0000,691438.0000,690787.0000,681079.0000,687030.0000,688422.0000,687551.0000,681310.0000,689304.0000,689004.0000,681760.0000,689154.0000,687080.0000,679807.0000,690507.0000,689285.0000,679576.0000,688253.0000,690286.0000,681540.0000,689135.0000,690727.0000,682843.0000,688783.0000,691348.0000,688393.0000,683504.0000,688243.0000,690537.0000,679616.0000,689916.0000,689826.0000,680508.0000,688984.0000,688954.0000,680027.0000,693753.0000,690658.0000,679375.0000,687110.0000,689796.0000,688343.0000,682121.0000,688874.0000,687972.0000,680177.0000,691198.0000,690888.0000,683503.0000,687150.0000,692731.0000,684375.0000,691649.0000,687311.0000,683393.0000,691148.0000,688643.0000,686229.0000,679536.0000,687030.0000,689465.0000,681540.0000,689515.0000,690397.0000,682602.0000,687441.0000,688994.0000,682091.0000,689514.0000,689144.0000,680227.0000,687882.0000,688513.0000,689375.0000,682421.0000,691278.0000,688854.0000,682031.0000,690717.0000" -generating large instruction graphs for N devices without d2d copy support - 1,expanding tree topology,100,1,90884200,820276.8600,819131.3700,822024.4500,7093.1672,5000.1353,12323.8220,"benchmark,group:instruction-graph","819401.0000,828839.0000,867513.0000,836052.0000,819902.0000,810935.0000,825984.0000,821545.0000,826143.0000,821094.0000,822487.0000,812097.0000,822798.0000,824130.0000,821605.0000,821745.0000,810745.0000,818049.0000,818700.0000,818890.0000,823569.0000,820193.0000,816055.0000,826314.0000,835121.0000,824431.0000,822437.0000,816256.0000,808290.0000,820734.0000,824361.0000,827506.0000,829480.0000,812137.0000,821535.0000,825773.0000,823660.0000,826304.0000,819782.0000,814011.0000,820834.0000,823900.0000,825603.0000,821025.0000,810203.0000,820122.0000,820343.0000,819060.0000,820924.0000,819651.0000,811657.0000,820553.0000,821896.0000,818159.0000,819160.0000,808771.0000,818870.0000,821395.0000,820594.0000,817908.0000,813470.0000,807789.0000,824981.0000,819421.0000,814522.0000,818049.0000,805936.0000,817838.0000,818840.0000,819412.0000,824511.0000,818479.0000,812799.0000,820704.0000,817928.0000,821825.0000,823278.0000,809623.0000,819662.0000,819030.0000,820052.0000,823850.0000,823329.0000,813109.0000,821996.0000,820363.0000,823308.0000,820923.0000,811145.0000,816646.0000,818279.0000,822356.0000,820122.0000,818550.0000,813350.0000,817948.0000,821555.0000,821806.0000,820573.0000,823098.0000" -generating large instruction graphs for N devices without d2d copy support - 1,contracting tree topology,100,1,96226700,1043695.5700,1042972.9300,1044929.2000,4684.4164,3049.4008,7232.3079,"benchmark,group:instruction-graph","1041912.0000,1041963.0000,1057853.0000,1041752.0000,1042483.0000,1051300.0000,1046241.0000,1047874.0000,1048105.0000,1042123.0000,1046161.0000,1043105.0000,1048395.0000,1045509.0000,1039709.0000,1039809.0000,1041112.0000,1044838.0000,1041642.0000,1043616.0000,1045800.0000,1042214.0000,1040420.0000,1042754.0000,1047353.0000,1042294.0000,1041111.0000,1041833.0000,1044729.0000,1042173.0000,1041152.0000,1069976.0000,1041673.0000,1042033.0000,1045029.0000,1042534.0000,1042504.0000,1039939.0000,1041202.0000,1042634.0000,1041792.0000,1040020.0000,1039458.0000,1041122.0000,1041242.0000,1041762.0000,1040199.0000,1047914.0000,1038166.0000,1039999.0000,1042243.0000,1043606.0000,1041502.0000,1040430.0000,1039829.0000,1042795.0000,1042845.0000,1043646.0000,1038988.0000,1039208.0000,1044257.0000,1045791.0000,1045790.0000,1046912.0000,1042854.0000,1068162.0000,1044017.0000,1040269.0000,1041142.0000,1038416.0000,1047784.0000,1043405.0000,1042003.0000,1042784.0000,1041311.0000,1042333.0000,1042844.0000,1041923.0000,1046291.0000,1041141.0000,1042614.0000,1041141.0000,1043596.0000,1045209.0000,1042093.0000,1043806.0000,1045179.0000,1044157.0000,1041612.0000,1048345.0000,1046832.0000,1046251.0000,1043386.0000,1048155.0000,1045009.0000,1045139.0000,1043897.0000,1042695.0000,1040059.0000,1039328.0000" -generating large instruction graphs for N devices without d2d copy support - 1,wave_sim topology,100,1,514907700,5793394.9700,5789231.8000,5803926.9200,31714.6542,15795.9436,66152.7473,"benchmark,group:instruction-graph","5799450.0000,5786165.0000,6059914.0000,5866658.0000,5799160.0000,5806303.0000,5783610.0000,5784001.0000,5822424.0000,5821933.0000,5790373.0000,5788670.0000,5776647.0000,5786125.0000,5771948.0000,5787568.0000,5799471.0000,5808076.0000,5801995.0000,5788610.0000,5846830.0000,5790433.0000,5776757.0000,5785744.0000,5790223.0000,5777288.0000,5819789.0000,5789642.0000,5800532.0000,5825861.0000,5794811.0000,5781226.0000,5766929.0000,5798458.0000,5778040.0000,5795412.0000,5796624.0000,5788068.0000,5780164.0000,5783259.0000,5778620.0000,5777829.0000,5829607.0000,5820821.0000,5793810.0000,5795563.0000,5789802.0000,5804439.0000,5789290.0000,5801343.0000,5783670.0000,5780164.0000,5783690.0000,5793389.0000,5782909.0000,5782749.0000,5772829.0000,5792868.0000,5776918.0000,5787608.0000,5806283.0000,5765766.0000,5774422.0000,5789431.0000,5785564.0000,5774823.0000,5825450.0000,5789010.0000,5781085.0000,5789391.0000,5772800.0000,5772519.0000,5769494.0000,5790884.0000,5773701.0000,5784461.0000,5786887.0000,5819197.0000,5784341.0000,5771067.0000,5777078.0000,5784411.0000,5776246.0000,5778360.0000,5768291.0000,5789310.0000,5807916.0000,5792978.0000,5776597.0000,5779142.0000,5798047.0000,5796324.0000,5788269.0000,5767540.0000,5793589.0000,5813106.0000,5781927.0000,5789412.0000,5771938.0000,5789331.0000" -generating large instruction graphs for N devices without d2d copy support - 1,jacobi topology,100,1,128127200,1282761.4000,1281099.8900,1287500.2400,13165.0557,5671.9672,28489.4920,"benchmark,group:instruction-graph","1277329.0000,1279904.0000,1284943.0000,1290224.0000,1279213.0000,1284863.0000,1281036.0000,1290774.0000,1281637.0000,1279703.0000,1285023.0000,1280364.0000,1274934.0000,1283351.0000,1290855.0000,1280104.0000,1280094.0000,1285625.0000,1277940.0000,1277569.0000,1275365.0000,1286446.0000,1280244.0000,1279524.0000,1281397.0000,1289742.0000,1280855.0000,1281126.0000,1290374.0000,1275385.0000,1279473.0000,1279473.0000,1288851.0000,1283280.0000,1280144.0000,1285945.0000,1277600.0000,1284122.0000,1279323.0000,1293089.0000,1279203.0000,1279664.0000,1282889.0000,1275986.0000,1279133.0000,1282439.0000,1398208.0000,1279393.0000,1276778.0000,1283561.0000,1278822.0000,1280275.0000,1276377.0000,1282840.0000,1276257.0000,1276378.0000,1286216.0000,1280234.0000,1302146.0000,1276878.0000,1288850.0000,1280224.0000,1281317.0000,1284283.0000,1275656.0000,1274964.0000,1271137.0000,1282088.0000,1279954.0000,1274614.0000,1294902.0000,1281146.0000,1279443.0000,1276438.0000,1290614.0000,1279113.0000,1275836.0000,1279684.0000,1278552.0000,1276117.0000,1276537.0000,1285003.0000,1274745.0000,1273632.0000,1276177.0000,1315431.0000,1277128.0000,1276507.0000,1290595.0000,1279283.0000,1278160.0000,1277068.0000,1288290.0000,1278161.0000,1278301.0000,1289092.0000,1282268.0000,1282288.0000,1276588.0000,1285034.0000" -generating large instruction graphs for N devices without d2d copy support - 4,soup topology,100,1,464852900,4560209.7300,4516638.9600,4593155.0400,192832.4623,154760.4559,227380.3728,"benchmark,group:instruction-graph","4638309.0000,4628010.0000,4656614.0000,4636626.0000,4638860.0000,4647466.0000,4650733.0000,4640764.0000,4641064.0000,4634722.0000,4652877.0000,4646285.0000,4631426.0000,4642567.0000,4646004.0000,4635444.0000,4643399.0000,4648318.0000,4632068.0000,4634993.0000,4640684.0000,4668737.0000,4643269.0000,4647547.0000,4715846.0000,4649240.0000,4629934.0000,4647166.0000,4648569.0000,4644842.0000,4637788.0000,4636316.0000,4377395.0000,4099007.0000,4098907.0000,4091112.0000,4080031.0000,4100199.0000,4094208.0000,4108315.0000,4091103.0000,4106712.0000,4101612.0000,4103897.0000,4115178.0000,4096282.0000,4629933.0000,4650422.0000,4643469.0000,4641686.0000,4645413.0000,4637578.0000,4639281.0000,4696680.0000,4629763.0000,4644612.0000,4641746.0000,4642667.0000,4631817.0000,4634552.0000,4643710.0000,4644952.0000,4633641.0000,4634522.0000,4649090.0000,4656404.0000,4639161.0000,4642387.0000,4633441.0000,4642357.0000,4631837.0000,4626337.0000,4635414.0000,4666433.0000,4650473.0000,4650031.0000,4631156.0000,4645924.0000,4649842.0000,4637578.0000,4641014.0000,4636235.0000,4647677.0000,4649120.0000,4636967.0000,4641805.0000,4636986.0000,4661533.0000,4654340.0000,4648278.0000,4645162.0000,4631426.0000,4637447.0000,4633180.0000,4644061.0000,4231999.0000,4094729.0000,4607962.0000,4634292.0000,4652006.0000" -generating large instruction graphs for N devices without d2d copy support - 4,chain topology,100,1,68910300,689794.8100,688844.6400,690957.5700,5343.8560,4348.5754,7283.0671,"benchmark,group:instruction-graph","684496.0000,693613.0000,701537.0000,693021.0000,682993.0000,691960.0000,690747.0000,683905.0000,691799.0000,693142.0000,684776.0000,692621.0000,692551.0000,684656.0000,689185.0000,694334.0000,690577.0000,684897.0000,691548.0000,692310.0000,685988.0000,691588.0000,691999.0000,682692.0000,690637.0000,692360.0000,683303.0000,692901.0000,691800.0000,714793.0000,684896.0000,689315.0000,690968.0000,684145.0000,693543.0000,703421.0000,682061.0000,689856.0000,690236.0000,683774.0000,690787.0000,693613.0000,688764.0000,686008.0000,687632.0000,692681.0000,682532.0000,692731.0000,690277.0000,683133.0000,690296.0000,691418.0000,682372.0000,686740.0000,691028.0000,683624.0000,690056.0000,690296.0000,688533.0000,685517.0000,689656.0000,690597.0000,680798.0000,692430.0000,691499.0000,684305.0000,693372.0000,693282.0000,683213.0000,692421.0000,691308.0000,684184.0000,692981.0000,690637.0000,692000.0000,683734.0000,692341.0000,694224.0000,682973.0000,692851.0000,708261.0000,684105.0000,694204.0000,693282.0000,681961.0000,691589.0000,687672.0000,693983.0000,684125.0000,690557.0000,692401.0000,682983.0000,690447.0000,693893.0000,684345.0000,691608.0000,691528.0000,684315.0000,693102.0000,693332.0000" -generating large instruction graphs for N devices without d2d copy support - 4,expanding tree topology,100,1,91291700,912759.8300,911897.9500,914250.4200,5649.5796,3512.9872,9646.0729,"benchmark,group:instruction-graph","909462.0000,906276.0000,923528.0000,914792.0000,917667.0000,950480.0000,912578.0000,911506.0000,909692.0000,912418.0000,907168.0000,909902.0000,915012.0000,916946.0000,911786.0000,912488.0000,913299.0000,905294.0000,909612.0000,911675.0000,915453.0000,914081.0000,914672.0000,911185.0000,911646.0000,912648.0000,909762.0000,913389.0000,909772.0000,904723.0000,913309.0000,909221.0000,915192.0000,914161.0000,913690.0000,913861.0000,910664.0000,909532.0000,914943.0000,913600.0000,903991.0000,918459.0000,910624.0000,913610.0000,912337.0000,911726.0000,912467.0000,910524.0000,911586.0000,909451.0000,912146.0000,905424.0000,916044.0000,911295.0000,913480.0000,915673.0000,915293.0000,914211.0000,914882.0000,916485.0000,914782.0000,913499.0000,909511.0000,903851.0000,915784.0000,916606.0000,912267.0000,938006.0000,912548.0000,912117.0000,911205.0000,912607.0000,914170.0000,909562.0000,912217.0000,907639.0000,913339.0000,913430.0000,911636.0000,914351.0000,911926.0000,912969.0000,913219.0000,914031.0000,911115.0000,909562.0000,906477.0000,909311.0000,915793.0000,912577.0000,914301.0000,915623.0000,911215.0000,912618.0000,910363.0000,913750.0000,912377.0000,913540.0000,901377.0000,907919.0000" -generating large instruction graphs for N devices without d2d copy support - 4,contracting tree topology,100,1,98182600,1045568.4900,1044930.7700,1046562.9300,4000.6977,2824.2637,6320.8444,"benchmark,group:instruction-graph","1048635.0000,1047653.0000,1061610.0000,1042464.0000,1044918.0000,1050098.0000,1044208.0000,1045740.0000,1044398.0000,1044528.0000,1046762.0000,1044278.0000,1042754.0000,1042964.0000,1040810.0000,1042183.0000,1041983.0000,1039969.0000,1040821.0000,1043967.0000,1044968.0000,1045099.0000,1046421.0000,1045720.0000,1048635.0000,1044688.0000,1044157.0000,1050269.0000,1043907.0000,1042674.0000,1043255.0000,1050159.0000,1045099.0000,1043686.0000,1043816.0000,1044829.0000,1044828.0000,1042784.0000,1046301.0000,1046591.0000,1041993.0000,1044868.0000,1045018.0000,1046622.0000,1044378.0000,1048085.0000,1047594.0000,1048756.0000,1048235.0000,1052793.0000,1047173.0000,1045600.0000,1047343.0000,1052583.0000,1045950.0000,1044458.0000,1069686.0000,1044959.0000,1046912.0000,1042995.0000,1042964.0000,1040840.0000,1044648.0000,1045049.0000,1044698.0000,1042104.0000,1044548.0000,1044908.0000,1044558.0000,1044287.0000,1056351.0000,1045840.0000,1044858.0000,1045780.0000,1047984.0000,1042354.0000,1042063.0000,1041682.0000,1040981.0000,1043886.0000,1043836.0000,1044388.0000,1044247.0000,1046371.0000,1044538.0000,1042153.0000,1048795.0000,1046581.0000,1044357.0000,1044879.0000,1044638.0000,1043596.0000,1049988.0000,1049718.0000,1045039.0000,1043566.0000,1045159.0000,1042194.0000,1041362.0000,1046431.0000" -generating large instruction graphs for N devices without d2d copy support - 4,wave_sim topology,100,1,581538300,5495682.1400,5431891.4400,5559683.4600,327826.3236,322407.0952,342986.4060,"benchmark,group:instruction-graph","5831240.0000,5820239.0000,6054323.0000,5866047.0000,5791385.0000,5807626.0000,5835178.0000,5826191.0000,5807636.0000,5803818.0000,5806394.0000,5803618.0000,5817885.0000,5811082.0000,5799570.0000,5792337.0000,5824919.0000,5816542.0000,5806383.0000,5806984.0000,5797125.0000,5803567.0000,5814047.0000,5815911.0000,5838895.0000,5186057.0000,5148667.0000,5171770.0000,5166781.0000,5168073.0000,5152944.0000,5159498.0000,5150750.0000,5166129.0000,5164005.0000,5150771.0000,5170288.0000,5156151.0000,5178764.0000,5162262.0000,5157764.0000,5153696.0000,5190947.0000,5163805.0000,5161991.0000,5173654.0000,5157594.0000,5158034.0000,5161241.0000,5173303.0000,5169396.0000,5174625.0000,5158836.0000,5149979.0000,5179766.0000,5164476.0000,5199533.0000,5191538.0000,5181940.0000,5188913.0000,5159137.0000,5184945.0000,5162974.0000,5156812.0000,5168144.0000,5168535.0000,5153035.0000,5156792.0000,5159307.0000,5144709.0000,5148417.0000,5168444.0000,5160670.0000,5161831.0000,5363664.0000,5834036.0000,5812875.0000,5793750.0000,5804400.0000,5810361.0000,5832923.0000,5799380.0000,5813066.0000,5798799.0000,5798158.0000,5871827.0000,5830650.0000,5829577.0000,5826311.0000,5816191.0000,5814809.0000,5815501.0000,5810611.0000,5814870.0000,5813076.0000,5801664.0000,5819608.0000,5848243.0000,5836801.0000,5840428.0000" -generating large instruction graphs for N devices without d2d copy support - 4,jacobi topology,100,1,128428100,1292647.7700,1291692.5400,1294054.2600,5829.7145,4348.0842,9560.3823,"benchmark,group:instruction-graph","1285134.0000,1297668.0000,1311715.0000,1295173.0000,1292548.0000,1286837.0000,1297668.0000,1290644.0000,1289392.0000,1296525.0000,1292978.0000,1287529.0000,1295624.0000,1290905.0000,1299722.0000,1291756.0000,1296806.0000,1287287.0000,1287458.0000,1296425.0000,1286997.0000,1291005.0000,1290985.0000,1296395.0000,1290113.0000,1288109.0000,1296506.0000,1288711.0000,1288660.0000,1286797.0000,1296756.0000,1287538.0000,1290684.0000,1297427.0000,1287257.0000,1286075.0000,1298550.0000,1290544.0000,1286917.0000,1287257.0000,1301525.0000,1288059.0000,1290824.0000,1297949.0000,1288660.0000,1287468.0000,1290184.0000,1297968.0000,1291997.0000,1295093.0000,1301996.0000,1292738.0000,1290844.0000,1291275.0000,1298810.0000,1291266.0000,1289612.0000,1295855.0000,1289442.0000,1288821.0000,1293961.0000,1288260.0000,1285024.0000,1290023.0000,1294913.0000,1288620.0000,1292958.0000,1328035.0000,1291947.0000,1294221.0000,1292157.0000,1298609.0000,1292979.0000,1291546.0000,1302768.0000,1291626.0000,1289943.0000,1299602.0000,1293530.0000,1284673.0000,1289212.0000,1297467.0000,1289362.0000,1288931.0000,1299070.0000,1289492.0000,1289902.0000,1287919.0000,1295133.0000,1289151.0000,1291075.0000,1296706.0000,1289392.0000,1288961.0000,1295163.0000,1293380.0000,1291726.0000,1287017.0000,1296756.0000,1290104.0000" -generating large instruction graphs for N devices without d2d copy support - 16,soup topology,100,1,466446300,4661950.6300,4660108.0900,4664437.3700,10820.8399,8395.1062,15351.3441,"benchmark,group:instruction-graph","4655672.0000,4661043.0000,4668776.0000,4668576.0000,4695437.0000,4664298.0000,4659219.0000,4668737.0000,4659990.0000,4656875.0000,4654530.0000,4644652.0000,4664770.0000,4650332.0000,4655622.0000,4662445.0000,4658337.0000,4648779.0000,4671792.0000,4670720.0000,4651434.0000,4657045.0000,4651925.0000,4649802.0000,4658407.0000,4674458.0000,4681983.0000,4667655.0000,4664479.0000,4656133.0000,4658448.0000,4649100.0000,4665882.0000,4661373.0000,4643670.0000,4655031.0000,4664289.0000,4657255.0000,4659039.0000,4662155.0000,4672704.0000,4651805.0000,4670691.0000,4663827.0000,4655301.0000,4657857.0000,4662335.0000,4688615.0000,4660361.0000,4654430.0000,4661824.0000,4652466.0000,4660571.0000,4661092.0000,4657646.0000,4655882.0000,4665921.0000,4655142.0000,4650332.0000,4659570.0000,4660952.0000,4653829.0000,4665942.0000,4663497.0000,4661704.0000,4659290.0000,4658858.0000,4670971.0000,4648268.0000,4681902.0000,4659079.0000,4654210.0000,4652326.0000,4666803.0000,4656083.0000,4656313.0000,4650783.0000,4659579.0000,4660852.0000,4668236.0000,4669839.0000,4664139.0000,4652366.0000,4663918.0000,4659019.0000,4651865.0000,4676722.0000,4669238.0000,4663927.0000,4661092.0000,4698203.0000,4650072.0000,4668166.0000,4717288.0000,4655722.0000,4665060.0000,4663688.0000,4661133.0000,4664199.0000,4661393.0000" -generating large instruction graphs for N devices without d2d copy support - 16,chain topology,100,1,69349700,647981.3400,639628.7500,656664.8500,43570.7610,42003.9685,44867.2011,"benchmark,group:instruction-graph","605065.0000,615976.0000,710926.0000,688613.0000,698082.0000,697420.0000,697370.0000,690807.0000,696318.0000,695256.0000,688563.0000,699274.0000,698782.0000,691809.0000,701578.0000,701568.0000,698903.0000,694444.0000,697660.0000,701949.0000,689144.0000,703562.0000,701848.0000,690577.0000,698852.0000,699053.0000,691509.0000,698281.0000,703161.0000,698802.0000,688503.0000,697680.0000,697280.0000,689545.0000,698261.0000,700756.0000,688042.0000,699223.0000,700867.0000,700756.0000,691418.0000,698242.0000,698592.0000,691359.0000,698262.0000,695115.0000,605846.0000,613401.0000,612239.0000,603472.0000,612509.0000,603933.0000,615004.0000,610986.0000,602621.0000,610936.0000,601338.0000,612860.0000,612158.0000,603162.0000,609914.0000,601358.0000,611507.0000,612749.0000,602570.0000,613180.0000,601538.0000,609784.0000,612029.0000,603321.0000,618009.0000,610746.0000,604454.0000,612529.0000,605105.0000,611067.0000,614452.0000,603812.0000,627397.0000,603582.0000,615224.0000,614814.0000,605966.0000,616817.0000,604945.0000,615565.0000,613360.0000,603081.0000,610696.0000,612108.0000,602621.0000,614362.0000,602420.0000,612679.0000,612208.0000,603642.0000,617889.0000,604484.0000,612089.0000,614543.0000" -generating large instruction graphs for N devices without d2d copy support - 16,expanding tree topology,100,1,82852200,829690.9000,828815.9900,830594.7700,4528.7313,3832.4350,5972.3062,"benchmark,group:instruction-graph","831504.0000,823358.0000,839439.0000,830331.0000,833768.0000,830001.0000,829319.0000,824160.0000,828288.0000,833398.0000,830172.0000,829991.0000,829821.0000,820954.0000,831043.0000,827777.0000,827887.0000,831344.0000,835452.0000,824641.0000,829971.0000,830122.0000,829851.0000,834250.0000,827296.0000,823469.0000,831064.0000,831905.0000,833768.0000,829581.0000,826765.0000,822988.0000,829580.0000,834329.0000,830973.0000,828308.0000,824461.0000,821605.0000,831554.0000,831023.0000,830882.0000,826885.0000,821475.0000,828609.0000,832216.0000,832306.0000,849408.0000,836353.0000,818749.0000,829810.0000,834620.0000,831073.0000,833188.0000,832165.0000,826455.0000,833598.0000,831895.0000,835101.0000,831273.0000,831213.0000,821275.0000,829080.0000,828528.0000,830612.0000,832456.0000,830903.0000,820554.0000,833247.0000,830843.0000,833477.0000,833317.0000,830573.0000,822507.0000,827406.0000,832556.0000,831444.0000,832937.0000,828649.0000,820193.0000,830863.0000,828749.0000,829180.0000,830743.0000,823208.0000,824551.0000,830812.0000,834329.0000,830072.0000,828729.0000,824581.0000,820563.0000,826454.0000,828729.0000,832116.0000,830572.0000,826484.0000,835772.0000,833087.0000,833087.0000,833067.0000" -generating large instruction graphs for N devices without d2d copy support - 16,contracting tree topology,100,1,105707000,942293.3600,941279.6900,943847.5600,6284.7292,4406.3109,9311.0600,"benchmark,group:instruction-graph","946172.0000,940270.0000,971689.0000,947574.0000,943226.0000,944518.0000,945390.0000,942193.0000,941242.0000,976238.0000,943476.0000,933097.0000,938477.0000,940781.0000,941062.0000,942755.0000,939499.0000,939579.0000,941223.0000,945840.0000,940100.0000,938647.0000,939629.0000,938137.0000,940220.0000,940721.0000,959196.0000,945369.0000,934729.0000,942063.0000,956311.0000,945440.0000,946762.0000,940581.0000,939860.0000,946001.0000,943567.0000,942104.0000,938427.0000,940972.0000,939459.0000,940981.0000,941202.0000,942244.0000,942394.0000,938526.0000,932195.0000,941753.0000,943717.0000,939098.0000,942595.0000,941713.0000,958205.0000,939929.0000,940049.0000,941362.0000,946332.0000,943567.0000,943246.0000,946041.0000,942555.0000,939900.0000,935621.0000,932436.0000,940982.0000,945580.0000,942114.0000,942124.0000,943066.0000,943737.0000,941262.0000,938688.0000,940160.0000,946031.0000,939399.0000,937205.0000,939398.0000,939899.0000,937465.0000,936393.0000,935582.0000,943266.0000,947103.0000,946653.0000,941492.0000,944758.0000,945430.0000,941893.0000,941873.0000,940671.0000,940951.0000,938707.0000,939719.0000,941382.0000,938447.0000,939619.0000,936283.0000,930672.0000,940140.0000,942935.0000" -generating large instruction graphs for N devices without d2d copy support - 16,wave_sim topology,100,1,523333600,5793248.5500,5736626.5000,5838456.2400,258698.7244,214221.9252,297114.1437,"benchmark,group:instruction-graph","5908727.0000,5916782.0000,6137180.0000,6035607.0000,5918666.0000,5914187.0000,5894841.0000,5913075.0000,5926421.0000,5894952.0000,5897285.0000,5926551.0000,5926811.0000,5920851.0000,5920810.0000,5918185.0000,5936720.0000,5912114.0000,5908938.0000,5916161.0000,5916001.0000,5913867.0000,5904228.0000,5896995.0000,5895482.0000,5914499.0000,5918946.0000,5899940.0000,5897767.0000,5901183.0000,5895823.0000,5897386.0000,5891395.0000,5927102.0000,5917664.0000,5908217.0000,5915951.0000,5896624.0000,5905612.0000,5899279.0000,5893819.0000,5913266.0000,5894821.0000,5913967.0000,5921692.0000,5936019.0000,5769914.0000,5239238.0000,5257033.0000,5242694.0000,5272391.0000,5238487.0000,5240902.0000,5242965.0000,5243816.0000,5257102.0000,5257423.0000,5252393.0000,5233527.0000,5247694.0000,5258795.0000,5247304.0000,5240671.0000,5232636.0000,5253836.0000,5668642.0000,5914187.0000,5920339.0000,5949755.0000,5923846.0000,5929978.0000,5913737.0000,5895803.0000,5921431.0000,5905310.0000,5907105.0000,5905351.0000,5909619.0000,5895552.0000,5925530.0000,5939776.0000,5910611.0000,5912434.0000,5906553.0000,5925639.0000,5933264.0000,5907605.0000,5900982.0000,5905952.0000,5898789.0000,5920089.0000,5924618.0000,5920048.0000,5932102.0000,5917434.0000,5929457.0000,5921311.0000,5926461.0000,5921321.0000,5922994.0000" -generating large instruction graphs for N devices without d2d copy support - 16,jacobi topology,100,1,133546200,1335780.3000,1334665.0600,1337333.4300,6650.1975,4800.6286,9750.5888,"benchmark,group:instruction-graph","1335039.0000,1334768.0000,1342312.0000,1340389.0000,1341421.0000,1337503.0000,1329658.0000,1334948.0000,1330450.0000,1328526.0000,1341972.0000,1328206.0000,1335399.0000,1370185.0000,1337494.0000,1335659.0000,1342142.0000,1336481.0000,1329989.0000,1342563.0000,1336331.0000,1338596.0000,1338264.0000,1332964.0000,1334638.0000,1342152.0000,1329899.0000,1329749.0000,1338545.0000,1332754.0000,1330440.0000,1337834.0000,1330410.0000,1334147.0000,1338044.0000,1341220.0000,1334818.0000,1341791.0000,1330550.0000,1335920.0000,1340950.0000,1327885.0000,1326142.0000,1340699.0000,1327504.0000,1330760.0000,1335329.0000,1330400.0000,1331883.0000,1340429.0000,1334938.0000,1335229.0000,1341661.0000,1329789.0000,1330340.0000,1341881.0000,1331932.0000,1331552.0000,1341000.0000,1327925.0000,1328836.0000,1340989.0000,1332674.0000,1329969.0000,1342502.0000,1330149.0000,1333987.0000,1339968.0000,1329869.0000,1330069.0000,1341010.0000,1332453.0000,1337443.0000,1343845.0000,1328707.0000,1329518.0000,1337203.0000,1337353.0000,1334467.0000,1336752.0000,1331793.0000,1331131.0000,1337603.0000,1330570.0000,1330800.0000,1338525.0000,1330139.0000,1333155.0000,1366889.0000,1334318.0000,1334337.0000,1344536.0000,1335108.0000,1337824.0000,1337744.0000,1332844.0000,1329588.0000,1344857.0000,1333786.0000,1342322.0000" -building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: single-threaded immediate graph generation,soup topology,100,1,91787100,1084876.3300,1083463.7700,1086520.6800,7723.5731,6716.3915,8992.2665,"benchmark,group:scheduler","1077340.0000,1077731.0000,1084855.0000,1079043.0000,1089804.0000,1104541.0000,1100774.0000,1097268.0000,1086648.0000,1077781.0000,1081618.0000,1093330.0000,1094612.0000,1076568.0000,1080526.0000,1077961.0000,1075987.0000,1080897.0000,1079074.0000,1098109.0000,1106185.0000,1078342.0000,1081678.0000,1079273.0000,1098701.0000,1099282.0000,1083602.0000,1078903.0000,1080556.0000,1080647.0000,1081077.0000,1080746.0000,1084764.0000,1076147.0000,1077129.0000,1080356.0000,1081989.0000,1079244.0000,1083882.0000,1085745.0000,1081848.0000,1088632.0000,1088581.0000,1076739.0000,1083522.0000,1079534.0000,1080375.0000,1078231.0000,1085075.0000,1087479.0000,1079243.0000,1087209.0000,1087720.0000,1092399.0000,1099031.0000,1089774.0000,1078783.0000,1081137.0000,1088621.0000,1087779.0000,1084373.0000,1082360.0000,1091376.0000,1080426.0000,1076699.0000,1078162.0000,1088341.0000,1083241.0000,1078443.0000,1080906.0000,1082529.0000,1079293.0000,1086478.0000,1079434.0000,1090786.0000,1092358.0000,1096968.0000,1090054.0000,1081698.0000,1083903.0000,1073423.0000,1074484.0000,1075246.0000,1077360.0000,1078803.0000,1075586.0000,1086497.0000,1090174.0000,1090064.0000,1091527.0000,1078993.0000,1106976.0000,1092438.0000,1101727.0000,1094542.0000,1079925.0000,1079333.0000,1080245.0000,1099332.0000,1078703.0000" -building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: single-threaded immediate graph generation,chain topology,100,1,7883400,78800.5200,78377.9500,80094.7700,3414.4293,1359.0560,7455.4861,"benchmark,group:scheduler","77676.0000,77976.0000,84028.0000,78326.0000,78417.0000,77976.0000,78216.0000,78376.0000,77706.0000,77885.0000,78257.0000,78336.0000,77845.0000,83487.0000,78847.0000,78517.0000,77836.0000,77996.0000,78206.0000,77946.0000,77946.0000,77665.0000,78287.0000,77986.0000,77936.0000,77855.0000,83807.0000,78497.0000,78267.0000,77835.0000,77946.0000,78036.0000,77846.0000,77725.0000,78116.0000,78006.0000,77485.0000,77785.0000,78056.0000,83827.0000,78087.0000,77985.0000,78386.0000,78177.0000,78036.0000,77895.0000,77746.0000,78326.0000,78176.0000,78106.0000,78016.0000,78176.0000,109296.0000,78176.0000,78236.0000,78336.0000,77756.0000,77715.0000,78016.0000,78096.0000,78006.0000,77716.0000,78076.0000,78066.0000,83316.0000,78186.0000,78487.0000,78156.0000,78025.0000,78015.0000,77885.0000,77936.0000,78006.0000,77635.0000,77986.0000,77956.0000,77696.0000,83376.0000,78216.0000,78377.0000,77866.0000,77835.0000,78026.0000,78337.0000,77625.0000,77656.0000,78046.0000,77725.0000,79639.0000,84579.0000,80751.0000,78617.0000,78347.0000,78016.0000,78226.0000,78046.0000,77876.0000,78186.0000,78076.0000,77956.0000" -building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: single-threaded immediate graph generation,expanding tree topology,100,1,14799400,147656.8300,147238.3300,148208.8300,2450.5886,1977.5554,2947.8835,"benchmark,group:scheduler","146566.0000,146226.0000,155393.0000,146456.0000,147367.0000,146857.0000,146796.0000,146486.0000,153409.0000,147788.0000,146196.0000,146766.0000,147017.0000,147087.0000,148530.0000,155102.0000,147568.0000,147407.0000,146876.0000,147027.0000,147628.0000,147568.0000,154932.0000,146285.0000,148088.0000,147418.0000,146406.0000,146305.0000,146867.0000,153519.0000,146716.0000,146717.0000,146606.0000,146415.0000,146365.0000,152708.0000,147327.0000,145815.0000,146165.0000,146887.0000,146305.0000,146366.0000,152497.0000,146316.0000,146526.0000,146926.0000,146316.0000,146075.0000,145133.0000,152377.0000,145975.0000,145103.0000,146676.0000,146876.0000,146426.0000,145965.0000,152517.0000,146306.0000,146465.0000,146906.0000,147658.0000,147167.0000,152197.0000,148810.0000,146286.0000,146556.0000,146095.0000,146375.0000,146656.0000,152667.0000,146676.0000,146586.0000,147006.0000,145685.0000,145884.0000,145473.0000,152838.0000,147207.0000,146335.0000,146726.0000,147758.0000,146325.0000,146025.0000,152307.0000,146857.0000,146215.0000,147307.0000,146305.0000,146295.0000,146966.0000,153049.0000,146485.0000,146586.0000,146485.0000,146245.0000,147357.0000,153038.0000,147287.0000,146255.0000,145944.0000" -building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: single-threaded immediate graph generation,contracting tree topology,100,1,15822600,157980.3700,157539.4900,158542.1000,2536.8230,2072.1504,2981.5608,"benchmark,group:scheduler","157307.0000,157015.0000,163187.0000,157988.0000,157787.0000,158038.0000,157717.0000,164751.0000,157937.0000,156515.0000,156876.0000,156424.0000,156555.0000,156796.0000,164169.0000,156896.0000,157256.0000,156364.0000,156564.0000,156023.0000,164630.0000,157807.0000,157246.0000,156906.0000,157196.0000,155443.0000,162987.0000,157487.0000,156685.0000,156314.0000,157025.0000,157056.0000,157978.0000,164610.0000,156555.0000,156805.0000,156655.0000,157376.0000,156986.0000,163828.0000,156935.0000,157216.0000,156654.0000,156394.0000,156615.0000,163538.0000,156464.0000,156836.0000,156765.0000,156755.0000,155763.0000,155453.0000,162837.0000,157065.0000,156675.0000,156625.0000,156054.0000,156905.0000,162897.0000,156455.0000,157777.0000,157617.0000,156695.0000,157246.0000,164199.0000,156515.0000,157627.0000,156765.0000,156264.0000,156194.0000,156555.0000,162987.0000,156395.0000,156444.0000,157105.0000,156174.0000,157065.0000,162766.0000,157487.0000,157657.0000,156775.0000,157337.0000,156785.0000,162657.0000,156845.0000,157036.0000,157867.0000,156465.0000,157136.0000,156725.0000,163858.0000,156505.0000,157186.0000,156475.0000,156174.0000,157186.0000,164170.0000,158128.0000,156775.0000,157777.0000" -building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: single-threaded immediate graph generation,wave_sim topology,100,1,103390900,871409.2000,870149.3500,873886.7400,8665.4925,5374.5368,16663.6504,"benchmark,group:scheduler","872952.0000,873423.0000,881749.0000,867833.0000,862513.0000,865699.0000,865639.0000,868685.0000,865649.0000,877652.0000,866590.0000,867602.0000,861631.0000,868454.0000,868113.0000,868995.0000,867683.0000,869205.0000,880608.0000,870177.0000,871590.0000,873924.0000,873013.0000,868244.0000,937004.0000,867523.0000,869055.0000,859577.0000,871209.0000,871239.0000,869156.0000,866851.0000,870849.0000,869616.0000,869596.0000,862333.0000,871439.0000,873173.0000,867141.0000,873724.0000,874786.0000,865729.0000,873865.0000,869175.0000,872361.0000,866080.0000,877541.0000,865558.0000,864417.0000,867292.0000,860088.0000,876069.0000,866711.0000,867322.0000,875347.0000,876158.0000,874256.0000,873704.0000,866761.0000,866080.0000,868153.0000,868274.0000,867192.0000,871741.0000,870808.0000,868173.0000,861762.0000,870137.0000,870077.0000,873934.0000,874386.0000,873644.0000,872882.0000,888041.0000,868013.0000,868494.0000,867432.0000,866741.0000,867122.0000,867091.0000,867302.0000,858997.0000,867853.0000,870338.0000,867262.0000,869406.0000,879084.0000,881459.0000,875628.0000,863084.0000,883252.0000,877051.0000,879956.0000,877391.0000,877442.0000,881408.0000,878312.0000,869797.0000,887400.0000,877993.0000" -building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: single-threaded immediate graph generation,jacobi topology,100,1,23515400,262294.7200,261731.3800,262963.1600,3126.2815,2753.7574,3558.1486,"benchmark,group:scheduler","260913.0000,266704.0000,271683.0000,259300.0000,260402.0000,260181.0000,265802.0000,259550.0000,259200.0000,259119.0000,266343.0000,259801.0000,258868.0000,266102.0000,260432.0000,260612.0000,259750.0000,266332.0000,259820.0000,259540.0000,260302.0000,266333.0000,260161.0000,258338.0000,259550.0000,269048.0000,261354.0000,260021.0000,260512.0000,268086.0000,260692.0000,261103.0000,266043.0000,261964.0000,260722.0000,260562.0000,267104.0000,261023.0000,260372.0000,261434.0000,268156.0000,261434.0000,260221.0000,260542.0000,269068.0000,261023.0000,260071.0000,261002.0000,267906.0000,260522.0000,259731.0000,261253.0000,268517.0000,261444.0000,260402.0000,267244.0000,261263.0000,261223.0000,261093.0000,267155.0000,260842.0000,260803.0000,260993.0000,266593.0000,260642.0000,261353.0000,260131.0000,266363.0000,259460.0000,260232.0000,260101.0000,266583.0000,260863.0000,260792.0000,266853.0000,260942.0000,259811.0000,260592.0000,267164.0000,260111.0000,260171.0000,260352.0000,266623.0000,260342.0000,260632.0000,260201.0000,266484.0000,259860.0000,260943.0000,261213.0000,266954.0000,260231.0000,260512.0000,267154.0000,261764.0000,260852.0000,260953.0000,266954.0000,260843.0000,260762.0000" -building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > immediate submission to a scheduler thread,soup topology,100,1,205441300,2040549.3000,2036649.3600,2045185.8700,21626.5075,18186.2008,27345.4364,"benchmark,group:scheduler","2029975.0000,2121730.0000,2041307.0000,2063158.0000,2058670.0000,2119625.0000,2061015.0000,2061525.0000,2061416.0000,2090881.0000,2063830.0000,2027942.0000,2050294.0000,2069641.0000,2019726.0000,2034314.0000,2044724.0000,2027200.0000,2034303.0000,2031227.0000,2028993.0000,2008585.0000,2008495.0000,2037349.0000,2021360.0000,2028382.0000,2036397.0000,2025006.0000,2037369.0000,2036337.0000,2047569.0000,2013325.0000,2050775.0000,2036909.0000,2034514.0000,2020838.0000,2043040.0000,2012653.0000,2018093.0000,2015488.0000,2037891.0000,2016901.0000,2019776.0000,2036528.0000,2006902.0000,2029985.0000,2022231.0000,2052558.0000,2033603.0000,2019836.0000,2033793.0000,2038852.0000,2017322.0000,2008434.0000,2059020.0000,2007624.0000,2023233.0000,2067587.0000,2045515.0000,2029555.0000,2030406.0000,2041597.0000,2044934.0000,2055393.0000,2072086.0000,2009857.0000,2027981.0000,2047839.0000,2047008.0000,2040967.0000,2030226.0000,2032781.0000,2006932.0000,2055895.0000,2027691.0000,2047810.0000,2028693.0000,2034655.0000,2032540.0000,2061595.0000,2032050.0000,2061736.0000,2032470.0000,2061265.0000,2031820.0000,2062377.0000,2060724.0000,2033021.0000,2031359.0000,2068799.0000,2053771.0000,2067767.0000,2026399.0000,2032571.0000,2034685.0000,2089648.0000,2059271.0000,2063469.0000,2029986.0000,2063730.0000" -building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > immediate submission to a scheduler thread,chain topology,100,1,21895300,231302.9300,228998.4600,234468.6800,13613.7877,10132.3065,19193.8237,"benchmark,group:scheduler","213262.0000,212832.0000,294526.0000,230435.0000,262276.0000,230655.0000,232108.0000,232930.0000,231577.0000,232348.0000,231958.0000,232068.0000,232789.0000,231777.0000,232008.0000,232108.0000,233440.0000,232438.0000,230565.0000,232478.0000,232389.0000,232819.0000,231868.0000,232058.0000,231978.0000,233120.0000,231236.0000,232810.0000,231857.0000,235134.0000,229263.0000,231727.0000,232819.0000,231396.0000,233561.0000,231156.0000,232820.0000,231958.0000,231757.0000,232629.0000,231878.0000,232749.0000,231216.0000,232950.0000,231717.0000,232298.0000,232248.0000,233110.0000,231347.0000,231697.0000,232529.0000,232198.0000,233130.0000,232108.0000,231426.0000,231978.0000,232258.0000,232468.0000,232619.0000,231908.0000,232058.0000,232749.0000,231477.0000,231948.0000,295328.0000,227539.0000,232269.0000,232539.0000,262355.0000,230976.0000,232368.0000,231758.0000,232278.0000,232128.0000,231387.0000,232849.0000,207992.0000,218071.0000,217551.0000,218332.0000,240915.0000,242608.0000,241566.0000,217530.0000,217951.0000,221128.0000,208924.0000,213352.0000,212671.0000,212831.0000,212220.0000,213101.0000,213442.0000,212862.0000,212410.0000,212801.0000,213583.0000,265892.0000,239602.0000,258187.0000" -building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > immediate submission to a scheduler thread,expanding tree topology,100,1,40464500,393942.0900,387184.5900,399916.2700,32312.6693,27984.9137,36557.1248,"benchmark,group:scheduler","366823.0000,415746.0000,426656.0000,403893.0000,406198.0000,409154.0000,403803.0000,406688.0000,435223.0000,406568.0000,407000.0000,405427.0000,408382.0000,404485.0000,412179.0000,400988.0000,405517.0000,407190.0000,406849.0000,436025.0000,405507.0000,405947.0000,406639.0000,406930.0000,405586.0000,406789.0000,406228.0000,406989.0000,405987.0000,406298.0000,406399.0000,405897.0000,408242.0000,434432.0000,406709.0000,405647.0000,434652.0000,407240.0000,406549.0000,406248.0000,435483.0000,406068.0000,406499.0000,406689.0000,406468.0000,405606.0000,407110.0000,406429.0000,406508.0000,406248.0000,405897.0000,409374.0000,403363.0000,406799.0000,406759.0000,405848.0000,426125.0000,398814.0000,401619.0000,396770.0000,398844.0000,445984.0000,435012.0000,406989.0000,405878.0000,406138.0000,436445.0000,404956.0000,406669.0000,436165.0000,410586.0000,401800.0000,405977.0000,463206.0000,376862.0000,407230.0000,333921.0000,341225.0000,333641.0000,330675.0000,330945.0000,361583.0000,331496.0000,328350.0000,339892.0000,328070.0000,331556.0000,340783.0000,330845.0000,333089.0000,338330.0000,332468.0000,330915.0000,359700.0000,330535.0000,339642.0000,349260.0000,388875.0000,370360.0000,395127.0000" -building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > immediate submission to a scheduler thread,contracting tree topology,100,1,45630800,456037.3400,451901.1400,460572.4100,22199.9745,20061.2843,24401.5044,"benchmark,group:scheduler","436014.0000,435002.0000,464288.0000,464999.0000,434752.0000,464789.0000,434712.0000,493613.0000,435133.0000,435253.0000,464669.0000,435604.0000,464789.0000,434963.0000,493614.0000,464578.0000,463988.0000,494275.0000,464007.0000,435293.0000,493623.0000,435363.0000,435523.0000,464308.0000,435774.0000,493804.0000,434592.0000,465971.0000,434662.0000,464028.0000,435123.0000,494024.0000,435062.0000,435614.0000,464388.0000,436054.0000,494185.0000,434201.0000,494125.0000,435053.0000,464117.0000,435643.0000,464168.0000,435494.0000,435243.0000,495698.0000,433490.0000,465720.0000,434681.0000,463977.0000,464328.0000,494045.0000,435343.0000,463767.0000,436506.0000,434632.0000,464378.0000,435564.0000,494986.0000,434201.0000,464197.0000,436234.0000,464278.0000,463546.0000,493713.0000,435463.0000,467815.0000,461102.0000,494165.0000,463937.0000,435564.0000,493804.0000,463958.0000,464328.0000,436165.0000,463687.0000,435664.0000,494014.0000,434442.0000,439802.0000,431275.0000,435965.0000,464328.0000,434962.0000,494425.0000,435082.0000,464097.0000,436035.0000,463787.0000,435514.0000,435423.0000,499976.0000,457646.0000,466101.0000,434682.0000,464007.0000,435744.0000,493774.0000,435373.0000,463867.0000" -building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > immediate submission to a scheduler thread,wave_sim topology,100,1,285540800,2852123.3800,2847200.0300,2856928.0000,24802.7889,22915.3009,26889.8178,"benchmark,group:scheduler","2872433.0000,2817728.0000,2896337.0000,2873544.0000,2843498.0000,2876099.0000,2873144.0000,2875388.0000,2843337.0000,2874616.0000,2851572.0000,2823970.0000,2843778.0000,2874637.0000,2873785.0000,2875469.0000,2844169.0000,2816767.0000,2873925.0000,2892941.0000,2846733.0000,2870499.0000,2873565.0000,2871841.0000,2821166.0000,2869857.0000,2843829.0000,2844730.0000,2873965.0000,2815284.0000,2874827.0000,2844229.0000,2875758.0000,2872783.0000,2876660.0000,2844089.0000,2822117.0000,2839160.0000,2879776.0000,2839661.0000,2875137.0000,2845311.0000,2816546.0000,2815024.0000,2821656.0000,2810946.0000,2875829.0000,2858917.0000,2897801.0000,2872202.0000,2817709.0000,2815003.0000,2875619.0000,2844119.0000,2876851.0000,2872232.0000,2875588.0000,2871981.0000,2877102.0000,2838969.0000,2848377.0000,2871460.0000,2873584.0000,2816086.0000,2816346.0000,2816206.0000,2875398.0000,2844329.0000,2822377.0000,2868325.0000,2873965.0000,2845000.0000,2816947.0000,2876009.0000,2843868.0000,2876149.0000,2843147.0000,2816246.0000,2816246.0000,2817618.0000,2815384.0000,2817238.0000,2815114.0000,2850461.0000,2840412.0000,2817949.0000,2843097.0000,2875618.0000,2873384.0000,2816055.0000,2816105.0000,2875889.0000,2843939.0000,2881039.0000,2838839.0000,2848106.0000,2874016.0000,2881880.0000,2861853.0000,2876069.0000" -building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > immediate submission to a scheduler thread,jacobi topology,100,1,79275400,787452.4900,785738.3000,789891.6700,10299.5859,7900.8003,12910.1129,"benchmark,group:scheduler","812027.0000,783703.0000,826825.0000,784575.0000,782031.0000,812247.0000,783774.0000,783493.0000,784465.0000,783854.0000,784245.0000,784455.0000,782902.0000,784104.0000,783433.0000,783043.0000,784485.0000,784184.0000,784605.0000,812688.0000,782962.0000,783273.0000,786128.0000,817307.0000,779054.0000,810965.0000,785036.0000,783583.0000,783413.0000,784054.0000,789144.0000,778344.0000,784705.0000,783093.0000,783863.0000,784074.0000,783954.0000,784305.0000,784154.0000,782211.0000,784545.0000,784174.0000,783033.0000,813490.0000,788172.0000,779215.0000,783763.0000,786538.0000,782771.0000,782281.0000,785126.0000,783332.0000,783953.0000,782531.0000,784064.0000,784205.0000,784415.0000,782691.0000,784155.0000,784876.0000,784595.0000,782641.0000,783723.0000,783523.0000,785537.0000,812068.0000,783513.0000,812678.0000,783913.0000,783483.0000,783713.0000,785577.0000,784745.0000,780538.0000,820693.0000,777702.0000,811836.0000,784094.0000,784014.0000,784225.0000,785517.0000,781228.0000,784525.0000,784274.0000,784445.0000,782922.0000,783693.0000,783413.0000,784765.0000,783543.0000,783092.0000,784114.0000,784845.0000,783594.0000,783743.0000,783323.0000,784095.0000,783503.0000,813730.0000,783984.0000" -building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: throttled single-threaded graph generation at 10 us per task,soup topology,100,1,208593900,1907336.5300,1903399.2400,1916211.6200,28563.4588,11962.5583,49228.4942,"benchmark,group:scheduler","1899278.0000,1926680.0000,2096081.0000,2083608.0000,1995159.0000,1909728.0000,1903947.0000,1884139.0000,1904898.0000,1896413.0000,1906221.0000,1903656.0000,1903216.0000,1901863.0000,1880422.0000,1896242.0000,1904919.0000,1910550.0000,1911972.0000,1897875.0000,1910329.0000,1903115.0000,1897003.0000,1897575.0000,1894930.0000,1899919.0000,1913285.0000,1911381.0000,1910429.0000,1911311.0000,1921690.0000,1894899.0000,1896723.0000,1897795.0000,1901922.0000,1900269.0000,1901652.0000,1904538.0000,1896232.0000,1895662.0000,1904237.0000,1911912.0000,1910499.0000,1890271.0000,1898226.0000,1900780.0000,1910510.0000,1904778.0000,1925047.0000,1905340.0000,1907193.0000,1904678.0000,1903726.0000,1904418.0000,1901442.0000,1907394.0000,1904427.0000,1900580.0000,1903947.0000,1901232.0000,1898366.0000,1905480.0000,1915008.0000,1899528.0000,1902363.0000,1904598.0000,1898666.0000,1896443.0000,1906812.0000,1902504.0000,1903776.0000,1895902.0000,1898266.0000,1907644.0000,1906512.0000,1898706.0000,1894899.0000,1898767.0000,1899558.0000,1895671.0000,1901953.0000,1902273.0000,1910880.0000,1895701.0000,1893997.0000,1907774.0000,1895090.0000,1897555.0000,1903676.0000,1906772.0000,1902414.0000,1891544.0000,1904367.0000,1909988.0000,1900730.0000,1890501.0000,1902785.0000,1907593.0000,1905088.0000,1895340.0000" -building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: throttled single-threaded graph generation at 10 us per task,chain topology,100,1,36443900,358219.4900,357986.0700,358560.7700,1417.0343,1050.3979,1816.9913,"benchmark,group:scheduler","357777.0000,358257.0000,362836.0000,358137.0000,357796.0000,357446.0000,357756.0000,357456.0000,357275.0000,357726.0000,357256.0000,357215.0000,357706.0000,357005.0000,360742.0000,357225.0000,357135.0000,359910.0000,357466.0000,357135.0000,357816.0000,357456.0000,357155.0000,357756.0000,357265.0000,356854.0000,357686.0000,357245.0000,362445.0000,357345.0000,357045.0000,358537.0000,357415.0000,357366.0000,357776.0000,357325.0000,357366.0000,357606.0000,357425.0000,357245.0000,359208.0000,357746.0000,362845.0000,357796.0000,357736.0000,358237.0000,357967.0000,357566.0000,358066.0000,357736.0000,357555.0000,358337.0000,357846.0000,357606.0000,358568.0000,357696.0000,358287.0000,358017.0000,357756.0000,358678.0000,357816.0000,357486.0000,359179.0000,357846.0000,357797.0000,363186.0000,358017.0000,357826.0000,358578.0000,357896.0000,362845.0000,357887.0000,357916.0000,358007.0000,358087.0000,357616.0000,358217.0000,357756.0000,357686.0000,357877.0000,357816.0000,359119.0000,357896.0000,357696.0000,359890.0000,357666.0000,357585.0000,358207.0000,357916.0000,357676.0000,358187.0000,357796.0000,357767.0000,363146.0000,357967.0000,362866.0000,357936.0000,357556.0000,359239.0000,357866.0000" -building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: throttled single-threaded graph generation at 10 us per task,expanding tree topology,100,1,43086700,431282.3800,430478.3900,434098.0800,6830.7911,2135.9696,15562.2252,"benchmark,group:scheduler","433389.0000,428730.0000,437447.0000,436315.0000,429873.0000,436866.0000,428751.0000,429993.0000,430715.0000,429592.0000,430645.0000,428931.0000,432618.0000,429863.0000,429202.0000,428911.0000,428130.0000,433089.0000,429552.0000,434021.0000,428841.0000,429943.0000,429182.0000,428390.0000,432798.0000,429112.0000,434792.0000,428260.0000,430244.0000,429792.0000,429231.0000,431176.0000,429402.0000,435704.0000,429672.0000,431276.0000,429001.0000,435283.0000,430864.0000,429212.0000,429863.0000,428590.0000,429472.0000,427959.0000,431266.0000,429752.0000,429833.0000,434391.0000,429171.0000,430975.0000,428861.0000,430685.0000,429542.0000,429182.0000,433389.0000,429542.0000,431145.0000,428470.0000,431816.0000,428521.0000,429893.0000,433670.0000,429031.0000,432147.0000,430725.0000,430905.0000,430274.0000,429261.0000,431065.0000,428350.0000,432247.0000,428911.0000,431907.0000,428681.0000,428921.0000,431586.0000,429583.0000,495517.0000,428550.0000,436245.0000,429472.0000,434712.0000,428420.0000,428420.0000,434332.0000,428861.0000,432678.0000,428510.0000,432077.0000,429271.0000,429252.0000,432698.0000,428840.0000,433099.0000,429802.0000,429852.0000,428991.0000,428129.0000,433600.0000,428520.0000" -building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: throttled single-threaded graph generation at 10 us per task,contracting tree topology,100,1,46117500,462732.0100,462252.0800,463265.7200,2586.7484,2322.8044,2912.4041,"benchmark,group:scheduler","466462.0000,462264.0000,469678.0000,466442.0000,462034.0000,465290.0000,461814.0000,464378.0000,461242.0000,459719.0000,466572.0000,460681.0000,465841.0000,461573.0000,462805.0000,460541.0000,460762.0000,460301.0000,465470.0000,461302.0000,465780.0000,461863.0000,465631.0000,461974.0000,459709.0000,466482.0000,458938.0000,464548.0000,461373.0000,465510.0000,462544.0000,463136.0000,462074.0000,461303.0000,460771.0000,465641.0000,462385.0000,466161.0000,464398.0000,461222.0000,464609.0000,459970.0000,462775.0000,460371.0000,461052.0000,460702.0000,462585.0000,460901.0000,465401.0000,460240.0000,461102.0000,466603.0000,459619.0000,467394.0000,461253.0000,462915.0000,460281.0000,461112.0000,459649.0000,468405.0000,460711.0000,464238.0000,461753.0000,460050.0000,468346.0000,460040.0000,464920.0000,460491.0000,461613.0000,461192.0000,460040.0000,461333.0000,465641.0000,459789.0000,466232.0000,461503.0000,460862.0000,467354.0000,460881.0000,466462.0000,460190.0000,461653.0000,459358.0000,463918.0000,461903.0000,464408.0000,459509.0000,467695.0000,460020.0000,465741.0000,459679.0000,460812.0000,467284.0000,462194.0000,463106.0000,459679.0000,462806.0000,460701.0000,463687.0000,461854.0000" -building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: throttled single-threaded graph generation at 10 us per task,wave_sim topology,100,1,292998400,2972718.5900,2957490.9600,2988870.3600,80733.2968,76225.6331,83390.9319,"benchmark,group:scheduler","2902740.0000,2905385.0000,3077340.0000,3070548.0000,3074615.0000,3073172.0000,3073102.0000,3066681.0000,3066130.0000,3067442.0000,3070057.0000,3073724.0000,3066200.0000,3068224.0000,3074204.0000,3074966.0000,3075587.0000,3069737.0000,3064817.0000,3071249.0000,3074104.0000,3066460.0000,3069115.0000,3071700.0000,3067623.0000,3060699.0000,3068835.0000,3072802.0000,3066400.0000,3069446.0000,3078072.0000,3072432.0000,3073313.0000,3095956.0000,3064827.0000,3068504.0000,3103841.0000,3071009.0000,3072732.0000,3071260.0000,3077140.0000,3033227.0000,2906617.0000,2903721.0000,2913590.0000,2912368.0000,2903882.0000,2913129.0000,2902059.0000,2901127.0000,2906467.0000,2900576.0000,2903611.0000,2912137.0000,2912088.0000,2903662.0000,2914702.0000,2899955.0000,2905235.0000,2900555.0000,2901517.0000,2899935.0000,2903872.0000,2901478.0000,2903982.0000,2899874.0000,2908560.0000,2916766.0000,2901217.0000,2903932.0000,2910644.0000,2913350.0000,2908290.0000,2905646.0000,2910133.0000,2913850.0000,2918549.0000,2914512.0000,2910184.0000,2901778.0000,2906297.0000,2910214.0000,2919522.0000,2904303.0000,2900395.0000,2904202.0000,2908912.0000,2916135.0000,2902620.0000,2912608.0000,2911917.0000,2903050.0000,2900766.0000,2903782.0000,2910074.0000,2911797.0000,2914592.0000,2901037.0000,2901858.0000,2908811.0000" -building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: throttled single-threaded graph generation at 10 us per task,jacobi topology,100,1,77062800,770278.4300,769552.4100,771396.2800,4534.2138,2970.4469,6975.1340,"benchmark,group:scheduler","766812.0000,772793.0000,793382.0000,769426.0000,772362.0000,771381.0000,765759.0000,766050.0000,770910.0000,772181.0000,765960.0000,770589.0000,766471.0000,771991.0000,764858.0000,766802.0000,769807.0000,775147.0000,772162.0000,767643.0000,771671.0000,767142.0000,771059.0000,766340.0000,771460.0000,771901.0000,766360.0000,765889.0000,773054.0000,773183.0000,771871.0000,766470.0000,766922.0000,773915.0000,772773.0000,772342.0000,767102.0000,773995.0000,771731.0000,767754.0000,770498.0000,767984.0000,773153.0000,773173.0000,772763.0000,767653.0000,773815.0000,773825.0000,774666.0000,768014.0000,772342.0000,766912.0000,769346.0000,771451.0000,766240.0000,766271.0000,770618.0000,772031.0000,765609.0000,766010.0000,771130.0000,771530.0000,765839.0000,766441.0000,771000.0000,772131.0000,766581.0000,764688.0000,770969.0000,773475.0000,771750.0000,766771.0000,766852.0000,772101.0000,771721.0000,766180.0000,771730.0000,768335.0000,770839.0000,772382.0000,765579.0000,772282.0000,766932.0000,772041.0000,766050.0000,772211.0000,772994.0000,766691.0000,766581.0000,795616.0000,766812.0000,772462.0000,774266.0000,765409.0000,772642.0000,766611.0000,770629.0000,766221.0000,772412.0000,773163.0000" -building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > throttled submission to a scheduler thread at 10 us per task,soup topology,100,1,279173300,2790737.1700,2786169.2300,2795549.6100,23894.4577,21273.7249,27236.5105,"benchmark,group:scheduler","2786921.0000,2788293.0000,2787261.0000,2787090.0000,2785478.0000,2753487.0000,2748097.0000,2815384.0000,2787221.0000,2821065.0000,2782502.0000,2759398.0000,2785598.0000,2787772.0000,2757905.0000,2759348.0000,2756944.0000,2763045.0000,2781781.0000,2822818.0000,2781600.0000,2788022.0000,2757404.0000,2851843.0000,2780458.0000,2817819.0000,2756813.0000,2816306.0000,2786620.0000,2759709.0000,2757394.0000,2822608.0000,2781029.0000,2792190.0000,2782232.0000,2816867.0000,2758437.0000,2816716.0000,2785808.0000,2760200.0000,2756332.0000,2816577.0000,2826285.0000,2790187.0000,2798612.0000,2823219.0000,2780368.0000,2792681.0000,2810345.0000,2787762.0000,2757304.0000,2787662.0000,2786760.0000,2846724.0000,2786449.0000,2793532.0000,2781259.0000,2817328.0000,2785628.0000,2758577.0000,2760170.0000,2785137.0000,2792401.0000,2782081.0000,2793162.0000,2752525.0000,2788504.0000,2761853.0000,2781770.0000,2818971.0000,2784726.0000,2792832.0000,2782141.0000,2792772.0000,2795967.0000,2816717.0000,2786760.0000,2821366.0000,2811888.0000,2793232.0000,2781771.0000,2816747.0000,2756703.0000,2822528.0000,2780679.0000,2818069.0000,2757014.0000,2817328.0000,2786670.0000,2816276.0000,2787451.0000,2850150.0000,2781921.0000,2810996.0000,2838428.0000,2784686.0000,2780138.0000,2822548.0000,2780588.0000,2816977.0000" -building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > throttled submission to a scheduler thread at 10 us per task,chain topology,100,1,40306900,406665.9400,406255.7900,407840.3800,3263.7806,1368.7856,7064.2552,"benchmark,group:scheduler","402130.0000,405927.0000,404084.0000,404945.0000,406759.0000,406198.0000,406388.0000,406288.0000,406188.0000,406900.0000,406188.0000,406268.0000,406488.0000,410356.0000,402391.0000,406298.0000,406559.0000,406389.0000,406779.0000,406057.0000,406508.0000,406629.0000,406298.0000,406288.0000,406489.0000,406168.0000,406599.0000,406418.0000,406389.0000,406338.0000,406689.0000,406278.0000,406328.0000,406409.0000,406328.0000,406489.0000,406578.0000,406208.0000,406508.0000,406328.0000,406368.0000,406749.0000,406308.0000,406268.0000,406970.0000,410867.0000,401419.0000,406378.0000,406569.0000,406478.0000,406269.0000,406228.0000,406548.0000,406459.0000,406398.0000,406178.0000,406830.0000,406448.0000,406429.0000,406047.0000,406258.0000,406779.0000,406158.0000,406819.0000,406258.0000,406318.0000,406419.0000,406298.0000,406709.0000,406378.0000,406479.0000,406348.0000,411829.0000,401208.0000,406208.0000,406769.0000,406007.0000,410907.0000,402120.0000,405987.0000,406629.0000,406378.0000,435514.0000,406358.0000,406609.0000,406429.0000,406208.0000,406438.0000,406609.0000,406028.0000,406709.0000,406358.0000,406629.0000,406098.0000,406558.0000,406378.0000,406428.0000,406529.0000,406168.0000,411228.0000" -building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > throttled submission to a scheduler thread at 10 us per task,expanding tree topology,100,1,64759400,648830.8000,645818.8900,652567.3700,16996.6014,14450.9858,20137.6469,"benchmark,group:scheduler","668635.0000,638348.0000,683323.0000,663977.0000,691759.0000,652295.0000,657003.0000,636976.0000,639009.0000,639089.0000,664938.0000,638348.0000,641213.0000,635432.0000,639200.0000,639330.0000,638909.0000,639210.0000,637135.0000,683182.0000,697119.0000,637837.0000,638809.0000,667924.0000,638619.0000,638809.0000,667283.0000,668084.0000,638238.0000,667774.0000,639420.0000,638228.0000,640271.0000,636826.0000,638638.0000,639691.0000,637586.0000,668004.0000,667653.0000,638409.0000,668485.0000,666762.0000,639109.0000,638549.0000,638368.0000,638999.0000,667704.0000,638438.0000,639420.0000,641605.0000,636153.0000,637897.0000,638097.0000,639781.0000,668776.0000,631836.0000,639189.0000,697490.0000,637666.0000,668284.0000,638679.0000,667764.0000,637927.0000,640152.0000,637276.0000,638418.0000,638618.0000,638468.0000,639440.0000,637847.0000,638559.0000,667874.0000,636735.0000,653056.0000,669286.0000,637336.0000,697049.0000,639280.0000,637947.0000,638318.0000,698332.0000,636835.0000,639060.0000,668906.0000,637286.0000,639330.0000,641233.0000,636334.0000,668174.0000,637426.0000,638858.0000,638768.0000,667984.0000,639079.0000,667133.0000,638148.0000,639370.0000,639750.0000,637366.0000,638538.0000" -building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > throttled submission to a scheduler thread at 10 us per task,contracting tree topology,100,1,70258900,702441.6700,699970.9500,705485.1900,13943.4574,11528.2058,17569.8803,"benchmark,group:scheduler","694956.0000,697330.0000,688804.0000,695496.0000,697400.0000,700165.0000,685357.0000,719742.0000,691569.0000,690978.0000,719502.0000,692350.0000,717108.0000,719091.0000,691869.0000,718220.0000,691889.0000,701989.0000,696779.0000,725994.0000,696198.0000,696538.0000,727207.0000,695226.0000,696698.0000,727377.0000,724562.0000,696268.0000,696919.0000,696909.0000,697069.0000,696288.0000,698552.0000,665510.0000,698211.0000,697610.0000,694725.0000,697660.0000,697030.0000,695957.0000,697129.0000,695676.0000,697370.0000,697530.0000,700455.0000,691569.0000,718961.0000,718811.0000,716346.0000,691318.0000,716657.0000,718199.0000,695496.0000,687741.0000,699995.0000,697591.0000,694955.0000,697119.0000,726045.0000,726204.0000,696158.0000,696538.0000,728209.0000,694674.0000,696377.0000,697249.0000,696559.0000,697400.0000,696578.0000,695757.0000,697600.0000,697971.0000,694584.0000,696869.0000,697220.0000,755270.0000,695847.0000,697149.0000,726566.0000,724521.0000,697119.0000,725954.0000,730863.0000,692721.0000,695447.0000,697039.0000,697430.0000,696148.0000,696438.0000,696428.0000,696789.0000,752885.0000,697941.0000,695116.0000,697119.0000,698993.0000,696337.0000,694364.0000,696979.0000,698692.0000" -building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > throttled submission to a scheduler thread at 10 us per task,wave_sim topology,100,1,291886000,2921061.3000,2916472.5700,2925986.8600,24110.1195,21725.9892,26521.4066,"benchmark,group:scheduler","2903101.0000,2961361.0000,2903591.0000,2902148.0000,2905444.0000,2901828.0000,2904984.0000,2964748.0000,2898421.0000,2908300.0000,2932136.0000,2962092.0000,2931725.0000,2936945.0000,2932276.0000,2962062.0000,2962303.0000,2873104.0000,2962593.0000,2902329.0000,2904313.0000,2960689.0000,2902920.0000,2938337.0000,2897840.0000,2962594.0000,2960329.0000,2903110.0000,2903170.0000,2902871.0000,2904924.0000,2903682.0000,2960920.0000,2903070.0000,2906547.0000,2900455.0000,2903472.0000,2902960.0000,2886960.0000,2932647.0000,2903301.0000,2900275.0000,2949459.0000,2963104.0000,2901697.0000,2961791.0000,2958556.0000,2903451.0000,2903421.0000,2903511.0000,2903522.0000,2931895.0000,2903702.0000,2961842.0000,2931705.0000,2903631.0000,2961370.0000,2934971.0000,2932045.0000,2908511.0000,2934891.0000,2896819.0000,2902640.0000,2903211.0000,2903110.0000,2932626.0000,2903061.0000,2904132.0000,2962313.0000,2930833.0000,2921675.0000,2946963.0000,2905966.0000,2916525.0000,2903741.0000,2903562.0000,2903261.0000,2903261.0000,2903090.0000,2887280.0000,2946243.0000,2925463.0000,2912819.0000,2908340.0000,2927376.0000,2903762.0000,2932306.0000,2961792.0000,2902620.0000,2903000.0000,2932887.0000,2962433.0000,2902379.0000,2932797.0000,2962613.0000,2901487.0000,2905816.0000,2902079.0000,2902880.0000,2933017.0000" -building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > throttled submission to a scheduler thread at 10 us per task,jacobi topology,100,1,83100900,828354.1200,824913.0000,832417.7100,18993.1015,16516.7544,23544.9409,"benchmark,group:scheduler","816867.0000,837535.0000,822046.0000,811556.0000,813320.0000,812468.0000,841854.0000,812628.0000,813059.0000,842004.0000,870818.0000,842084.0000,842785.0000,811597.0000,843617.0000,811506.0000,871750.0000,841233.0000,813490.0000,811757.0000,842875.0000,842034.0000,812207.0000,812759.0000,872882.0000,840170.0000,842726.0000,812167.0000,812408.0000,812989.0000,814843.0000,840221.0000,841443.0000,814181.0000,811877.0000,841974.0000,844689.0000,839550.0000,842304.0000,812288.0000,813079.0000,812488.0000,814652.0000,811205.0000,842305.0000,812769.0000,841423.0000,814482.0000,841162.0000,812769.0000,841934.0000,841934.0000,841693.0000,814441.0000,840441.0000,812408.0000,901026.0000,812549.0000,812167.0000,842756.0000,846943.0000,836674.0000,812979.0000,812468.0000,812919.0000,813140.0000,871339.0000,841934.0000,841654.0000,812458.0000,812738.0000,813530.0000,841763.0000,842335.0000,812238.0000,812387.0000,813610.0000,870147.0000,870899.0000,813330.0000,812829.0000,813570.0000,813630.0000,814873.0000,838016.0000,842245.0000,813129.0000,812979.0000,812498.0000,813129.0000,814181.0000,841273.0000,812438.0000,812468.0000,843156.0000,840922.0000,842876.0000,841092.0000,812909.0000,813470.0000" -building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: single-threaded immediate graph generation,soup topology,100,1,123018500,1424753.6900,1407845.1800,1437075.9500,73110.1572,56686.9218,88610.0446,"benchmark,group:scheduler","1438976.0000,1457420.0000,1231442.0000,1235710.0000,1233947.0000,1228908.0000,1309750.0000,1226092.0000,1219740.0000,1220281.0000,1218127.0000,1231673.0000,1287438.0000,1246611.0000,1221373.0000,1433425.0000,1441279.0000,1445718.0000,1458613.0000,1468331.0000,1449115.0000,1489171.0000,1473010.0000,1450577.0000,1467619.0000,1464554.0000,1470765.0000,1465505.0000,1474893.0000,1442182.0000,1449545.0000,1440608.0000,1464564.0000,1464624.0000,1470675.0000,1449545.0000,1442733.0000,1453633.0000,1453143.0000,1458703.0000,1460216.0000,1443945.0000,1445017.0000,1444155.0000,1443193.0000,1442452.0000,1461629.0000,1441530.0000,1451179.0000,1437393.0000,1452220.0000,1440619.0000,1455737.0000,1459464.0000,1467790.0000,1449436.0000,1446339.0000,1448033.0000,1438114.0000,1462400.0000,1457080.0000,1458372.0000,1440227.0000,1453663.0000,1439737.0000,1436230.0000,1458412.0000,1461388.0000,1450698.0000,1450778.0000,1445568.0000,1435980.0000,1443484.0000,1452582.0000,1443835.0000,1445417.0000,1444095.0000,1449024.0000,1445177.0000,1469103.0000,1468251.0000,1473651.0000,1468131.0000,1441500.0000,1448794.0000,1446580.0000,1452782.0000,1451349.0000,1453142.0000,1447512.0000,1480865.0000,1446640.0000,1445148.0000,1440819.0000,1457280.0000,1461558.0000,1437352.0000,1449075.0000,1437292.0000,1445919.0000" -building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: single-threaded immediate graph generation,chain topology,100,1,33345900,321516.6700,316801.7800,325531.7900,22163.4414,19181.8974,24624.5180,"benchmark,group:scheduler","331697.0000,329543.0000,348869.0000,330635.0000,331076.0000,337348.0000,331436.0000,330775.0000,354881.0000,325084.0000,280780.0000,280089.0000,287493.0000,279999.0000,280089.0000,287423.0000,280440.0000,279237.0000,279808.0000,285329.0000,279668.0000,279528.0000,286832.0000,280089.0000,279839.0000,279147.0000,287123.0000,281121.0000,280099.0000,287823.0000,280359.0000,280600.0000,280470.0000,314645.0000,331145.0000,329492.0000,337989.0000,331727.0000,330605.0000,337197.0000,331727.0000,331106.0000,339261.0000,330765.0000,331156.0000,338410.0000,330404.0000,330955.0000,337858.0000,332167.0000,331066.0000,338269.0000,331857.0000,330865.0000,339692.0000,330555.0000,330695.0000,338299.0000,331386.0000,330956.0000,338459.0000,330735.0000,331025.0000,338370.0000,331216.0000,330504.0000,336766.0000,331797.0000,330815.0000,337759.0000,330094.0000,330454.0000,336837.0000,330204.0000,329362.0000,338058.0000,331646.0000,330154.0000,338791.0000,331216.0000,331406.0000,335875.0000,331015.0000,330484.0000,340423.0000,331757.0000,330995.0000,338039.0000,330595.0000,330645.0000,339211.0000,331446.0000,330935.0000,337568.0000,331326.0000,330725.0000,338129.0000,330644.0000,332008.0000,339201.0000" -building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: single-threaded immediate graph generation,expanding tree topology,100,1,33463000,343896.0400,343163.7600,344759.5300,4038.7636,3557.1235,5282.9888,"benchmark,group:scheduler","341766.0000,347377.0000,361092.0000,342487.0000,343469.0000,345684.0000,339902.0000,339392.0000,349891.0000,339802.0000,339372.0000,348108.0000,342096.0000,339561.0000,348930.0000,341024.0000,341806.0000,347536.0000,340052.0000,339572.0000,349892.0000,340213.0000,339802.0000,347136.0000,341636.0000,340233.0000,349160.0000,341966.0000,341014.0000,346305.0000,340183.0000,347026.0000,342667.0000,342156.0000,347938.0000,339512.0000,340243.0000,346364.0000,340663.0000,339952.0000,348619.0000,339922.0000,340754.0000,347517.0000,341735.0000,340393.0000,346635.0000,341345.0000,340503.0000,350172.0000,341405.0000,341466.0000,348949.0000,340053.0000,341185.0000,349400.0000,341996.0000,340984.0000,349580.0000,341365.0000,340513.0000,349100.0000,340524.0000,349430.0000,342968.0000,341475.0000,349320.0000,341716.0000,341526.0000,348619.0000,340313.0000,340333.0000,350172.0000,341646.0000,340383.0000,348668.0000,342577.0000,341285.0000,350663.0000,341546.0000,342317.0000,349210.0000,341605.0000,342086.0000,349210.0000,341175.0000,342006.0000,348789.0000,339702.0000,341986.0000,349521.0000,343579.0000,342537.0000,349591.0000,342888.0000,348308.0000,342408.0000,342056.0000,347787.0000,343108.0000" -building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: single-threaded immediate graph generation,contracting tree topology,100,1,35395200,356150.5600,355404.5200,356980.0500,4016.3752,3621.5448,4869.4019,"benchmark,group:scheduler","353879.0000,360992.0000,370671.0000,356033.0000,351204.0000,359820.0000,351625.0000,352877.0000,363287.0000,351865.0000,352406.0000,359299.0000,352717.0000,353919.0000,359920.0000,352796.0000,353458.0000,360351.0000,352085.0000,360721.0000,354039.0000,353408.0000,362445.0000,353278.0000,353268.0000,359800.0000,354159.0000,351956.0000,360140.0000,351895.0000,352155.0000,360240.0000,351113.0000,358969.0000,350462.0000,350242.0000,359379.0000,352857.0000,351124.0000,359690.0000,352456.0000,351595.0000,358948.0000,352896.0000,352155.0000,361904.0000,350983.0000,359329.0000,352907.0000,353187.0000,359209.0000,353809.0000,351695.0000,359459.0000,353468.0000,354139.0000,360391.0000,352426.0000,352797.0000,360822.0000,354991.0000,357205.0000,362185.0000,354750.0000,364368.0000,355492.0000,353247.0000,360211.0000,355101.0000,354089.0000,361273.0000,353548.0000,355522.0000,362285.0000,354931.0000,355883.0000,360712.0000,354971.0000,361283.0000,355713.0000,355061.0000,360932.0000,354851.0000,352536.0000,360962.0000,354280.0000,351975.0000,360672.0000,352616.0000,355131.0000,360571.0000,353838.0000,361763.0000,355061.0000,354660.0000,361744.0000,353829.0000,355061.0000,360892.0000,355742.0000" -building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: single-threaded immediate graph generation,wave_sim topology,100,1,231234000,2290576.0100,2271854.8500,2299477.0600,63050.4712,36325.4110,98886.2563,"benchmark,group:scheduler","2311128.0000,2298255.0000,2337137.0000,2309375.0000,2302732.0000,2300238.0000,2307581.0000,2299556.0000,2294407.0000,2307242.0000,2299326.0000,2296631.0000,2301150.0000,2308844.0000,2308023.0000,2298936.0000,2305157.0000,2296782.0000,2306509.0000,2306419.0000,2297383.0000,2300318.0000,2300739.0000,2312341.0000,2292002.0000,2300328.0000,2297202.0000,2302312.0000,2298234.0000,2302643.0000,2298084.0000,2297623.0000,2299757.0000,2303223.0000,2293805.0000,2297402.0000,2312862.0000,2298204.0000,2288897.0000,2301891.0000,2296120.0000,2299166.0000,2302913.0000,2338270.0000,2301761.0000,2302222.0000,2308564.0000,2306520.0000,2295609.0000,2311670.0000,2301089.0000,2306028.0000,2305778.0000,2301410.0000,2299407.0000,2302843.0000,2302211.0000,2297012.0000,2296501.0000,2306811.0000,2301630.0000,2304126.0000,2308163.0000,2296270.0000,2305378.0000,2301621.0000,2303784.0000,2298975.0000,2294176.0000,2301750.0000,2301249.0000,2299195.0000,2310076.0000,2298615.0000,2300388.0000,2302882.0000,2300508.0000,2295569.0000,2301561.0000,2310798.0000,2301590.0000,2300678.0000,2336317.0000,2295839.0000,2304636.0000,2312190.0000,2306910.0000,2333331.0000,2300819.0000,2309475.0000,2291421.0000,2300869.0000,2137981.0000,1946227.0000,1947299.0000,1950234.0000,2279909.0000,2294257.0000,2296010.0000,2302312.0000" -building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: single-threaded immediate graph generation,jacobi topology,100,1,55556600,555931.3500,555125.5700,557010.6900,4714.3513,3684.3990,7671.3174,"benchmark,group:scheduler","559819.0000,553657.0000,565490.0000,559709.0000,554008.0000,559418.0000,551252.0000,558636.0000,552335.0000,561833.0000,559799.0000,550271.0000,560931.0000,553206.0000,560310.0000,553838.0000,560180.0000,553057.0000,559268.0000,559579.0000,552004.0000,558377.0000,553226.0000,559990.0000,553397.0000,561382.0000,553778.0000,559328.0000,556513.0000,551183.0000,556734.0000,549309.0000,555491.0000,549690.0000,556142.0000,549791.0000,555761.0000,556874.0000,551433.0000,558056.0000,552195.0000,583955.0000,550882.0000,559719.0000,551484.0000,558126.0000,556423.0000,550521.0000,558016.0000,551674.0000,558707.0000,549971.0000,558226.0000,551573.0000,558256.0000,556072.0000,547516.0000,557775.0000,550772.0000,557706.0000,550271.0000,557775.0000,553888.0000,558767.0000,560109.0000,553006.0000,559799.0000,553777.0000,555571.0000,549860.0000,558326.0000,550130.0000,558417.0000,558937.0000,552385.0000,558146.0000,551403.0000,557465.0000,549790.0000,559950.0000,553417.0000,558807.0000,560611.0000,552485.0000,559148.0000,552355.0000,557325.0000,552375.0000,558577.0000,552084.0000,558376.0000,558336.0000,553076.0000,558928.0000,553206.0000,560611.0000,551934.0000,557925.0000,552075.0000,559088.0000" -building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > immediate submission to a scheduler thread,soup topology,100,1,287417500,2870966.0700,2855678.4500,2879427.6100,56505.2258,35031.0005,86493.0357,"benchmark,group:scheduler","2901487.0000,2875649.0000,2947836.0000,2930031.0000,2873354.0000,2875097.0000,2933908.0000,2873504.0000,2933749.0000,2901197.0000,2875418.0000,2902980.0000,2873524.0000,2874837.0000,2874356.0000,2879867.0000,2880187.0000,2914322.0000,2868365.0000,2876851.0000,2901437.0000,2874285.0000,2849368.0000,2870790.0000,2905715.0000,2845492.0000,2869156.0000,2852415.0000,2854628.0000,2855230.0000,2869367.0000,2870449.0000,2856953.0000,2890877.0000,2888593.0000,2933869.0000,2856863.0000,2613852.0000,2564018.0000,2562084.0000,2875598.0000,2934791.0000,2903190.0000,2875378.0000,2901036.0000,2904202.0000,2844480.0000,2845161.0000,2874185.0000,2891278.0000,2872853.0000,2924591.0000,2871570.0000,2875799.0000,2873164.0000,2874697.0000,2845542.0000,2876680.0000,2873164.0000,2873805.0000,2873695.0000,2874016.0000,2845431.0000,2874366.0000,2845361.0000,2876511.0000,2901147.0000,2875668.0000,2872653.0000,2874927.0000,2845040.0000,2880558.0000,2897750.0000,2875668.0000,2902510.0000,2876169.0000,2900485.0000,2874827.0000,2844931.0000,2874035.0000,2874957.0000,2875658.0000,2873555.0000,2874576.0000,2844218.0000,2874726.0000,2845061.0000,2880478.0000,2839279.0000,2876620.0000,2902670.0000,2933067.0000,2871992.0000,2875088.0000,2873945.0000,2875889.0000,2844890.0000,2933268.0000,2901518.0000,2876280.0000" -building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > immediate submission to a scheduler thread,chain topology,100,1,100559600,990277.9300,981980.6700,996188.2100,35402.8625,26427.0318,45644.9443,"benchmark,group:scheduler","986518.0000,987770.0000,1056320.0000,984354.0000,1016074.0000,986468.0000,1016645.0000,986428.0000,1045820.0000,1015673.0000,987661.0000,986137.0000,1016555.0000,986678.0000,1016906.0000,986718.0000,1016595.0000,986368.0000,1016765.0000,986568.0000,988171.0000,983883.0000,985216.0000,1010684.0000,985275.0000,983843.0000,1012297.0000,984394.0000,1003821.0000,986938.0000,1016554.0000,986248.0000,1016695.0000,1015613.0000,987660.0000,987029.0000,1016455.0000,986638.0000,1016535.0000,986709.0000,1016444.0000,986709.0000,1016905.0000,986398.0000,1016615.0000,986348.0000,987630.0000,986738.0000,1016815.0000,986678.0000,1016725.0000,986398.0000,1016705.0000,986187.0000,1016615.0000,986628.0000,1016765.0000,986959.0000,1016244.0000,986889.0000,1016595.0000,986337.0000,987088.0000,1003961.0000,878192.0000,884114.0000,871841.0000,888722.0000,856492.0000,871901.0000,873343.0000,966230.0000,985105.0000,1006967.0000,1001336.0000,987470.0000,986808.0000,986819.0000,987019.0000,987439.0000,986838.0000,987450.0000,987470.0000,1016154.0000,986538.0000,1016354.0000,986809.0000,1016424.0000,986928.0000,1016505.0000,986969.0000,1016064.0000,987119.0000,1016064.0000,1013379.0000,987450.0000,986878.0000,1016304.0000,986698.0000,1016545.0000" -building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > immediate submission to a scheduler thread,expanding tree topology,100,1,96903200,1033097.9700,1028526.9100,1038186.2300,24618.2312,21694.5069,28620.2873,"benchmark,group:scheduler","1045630.0000,1015863.0000,1071509.0000,1013819.0000,1011114.0000,1016485.0000,1015863.0000,1015973.0000,1016174.0000,1045549.0000,1075637.0000,1008169.0000,1019811.0000,1002449.0000,1022907.0000,1021143.0000,1032836.0000,999803.0000,1015814.0000,1017677.0000,1024029.0000,1019911.0000,1007207.0000,1019020.0000,1010573.0000,1019760.0000,1008429.0000,1002398.0000,1029439.0000,1017416.0000,1036433.0000,1004852.0000,1012507.0000,1004021.0000,1007207.0000,1021063.0000,1009441.0000,1007558.0000,1033617.0000,1019190.0000,1045019.0000,1044979.0000,1074374.0000,1015794.0000,1045339.0000,1016245.0000,1016174.0000,1022847.0000,1009291.0000,1047944.0000,988272.0000,1015813.0000,1040691.0000,1026974.0000,1065267.0000,1044047.0000,1104842.0000,1073142.0000,1044498.0000,1076158.0000,1073132.0000,1073884.0000,1016174.0000,1046862.0000,1014191.0000,1044898.0000,1045009.0000,1016956.0000,1015723.0000,1045791.0000,1015703.0000,1044929.0000,1015773.0000,1016655.0000,1049197.0000,1070658.0000,1014841.0000,1075076.0000,1073854.0000,1045750.0000,1104592.0000,1014020.0000,1046882.0000,1043586.0000,1074554.0000,1044929.0000,1016445.0000,1045179.0000,1075847.0000,1042695.0000,1076568.0000,1014131.0000,1045600.0000,1032996.0000,1019871.0000,1022396.0000,1075607.0000,1019200.0000,1048906.0000,1014731.0000" -building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > immediate submission to a scheduler thread,contracting tree topology,100,1,99508300,966187.2600,963720.5300,969007.4900,13389.4304,11884.7573,14803.6099,"benchmark,group:scheduler","960779.0000,965117.0000,997829.0000,959477.0000,985476.0000,958475.0000,957553.0000,957403.0000,987469.0000,957292.0000,987720.0000,957492.0000,988241.0000,957022.0000,988051.0000,957443.0000,987560.0000,957252.0000,988131.0000,957473.0000,987269.0000,957573.0000,958725.0000,956952.0000,987740.0000,958395.0000,957423.0000,987690.0000,957573.0000,958315.0000,957763.0000,957804.0000,962893.0000,953175.0000,958435.0000,959556.0000,956551.0000,958445.0000,957312.0000,958886.0000,957723.0000,987691.0000,957583.0000,987670.0000,957493.0000,988001.0000,957292.0000,987170.0000,957352.0000,987610.0000,957834.0000,983011.0000,957333.0000,987420.0000,958174.0000,957633.0000,957934.0000,958275.0000,957783.0000,959707.0000,956151.0000,958064.0000,958495.0000,957954.0000,960458.0000,955560.0000,959056.0000,956871.0000,987240.0000,958605.0000,986999.0000,957723.0000,987670.0000,957182.0000,987981.0000,957402.0000,987670.0000,957803.0000,958615.0000,957233.0000,987460.0000,957883.0000,987650.0000,957482.0000,957583.0000,959286.0000,956882.0000,963314.0000,969576.0000,965839.0000,938848.0000,961039.0000,959506.0000,975487.0000,962493.0000,967612.0000,958335.0000,991287.0000,962161.0000,951852.0000" -building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > immediate submission to a scheduler thread,wave_sim topology,100,1,643407400,6436605.7800,6431678.7200,6443585.3300,29722.2123,23149.0103,48098.8768,"benchmark,group:scheduler","6475342.0000,6415698.0000,6614365.0000,6472306.0000,6418894.0000,6445124.0000,6471935.0000,6476203.0000,6465803.0000,6409636.0000,6416279.0000,6415338.0000,6444963.0000,6416209.0000,6416650.0000,6416400.0000,6422050.0000,6441878.0000,6415728.0000,6417451.0000,6414206.0000,6475972.0000,6415298.0000,6447729.0000,6403866.0000,6418534.0000,6415708.0000,6416791.0000,6415998.0000,6440274.0000,6432069.0000,6417692.0000,6446557.0000,6477756.0000,6411771.0000,6475962.0000,6414756.0000,6476393.0000,6473016.0000,6476754.0000,6408654.0000,6405969.0000,6433272.0000,6417382.0000,6416429.0000,6417332.0000,6415498.0000,6418463.0000,6414966.0000,6418142.0000,6414916.0000,6476683.0000,6407413.0000,6428272.0000,6443672.0000,6421228.0000,6437519.0000,6416520.0000,6444603.0000,6418032.0000,6444643.0000,6417812.0000,6425847.0000,6468729.0000,6412312.0000,6417562.0000,6444573.0000,6421670.0000,6468067.0000,6469620.0000,6474740.0000,6473969.0000,6458359.0000,6415718.0000,6416580.0000,6417371.0000,6474108.0000,6476253.0000,6444312.0000,6474781.0000,6445344.0000,6434845.0000,6448561.0000,6444332.0000,6475482.0000,6444463.0000,6476193.0000,6415267.0000,6417442.0000,6417261.0000,6419656.0000,6411931.0000,6418324.0000,6414426.0000,6418453.0000,6415107.0000,6422371.0000,6412492.0000,6415498.0000,6445785.0000" -building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > immediate submission to a scheduler thread,jacobi topology,100,1,162640900,1604612.5900,1601934.6500,1608129.7300,15640.8671,12661.4814,19508.1799,"benchmark,group:scheduler","1598247.0000,1595452.0000,1601143.0000,1610080.0000,1626762.0000,1591194.0000,1596183.0000,1601995.0000,1602485.0000,1658030.0000,1594400.0000,1597726.0000,1599099.0000,1593949.0000,1655877.0000,1595212.0000,1626881.0000,1625709.0000,1596484.0000,1596474.0000,1597416.0000,1596464.0000,1627273.0000,1595141.0000,1626331.0000,1596604.0000,1598548.0000,1596044.0000,1596093.0000,1596584.0000,1597206.0000,1596684.0000,1656689.0000,1594660.0000,1626351.0000,1599149.0000,1593729.0000,1598518.0000,1595332.0000,1626461.0000,1599109.0000,1595312.0000,1596474.0000,1596103.0000,1597336.0000,1598488.0000,1594981.0000,1598638.0000,1594670.0000,1626231.0000,1598948.0000,1594000.0000,1598658.0000,1594901.0000,1597466.0000,1599169.0000,1594451.0000,1598568.0000,1595181.0000,1626351.0000,1598348.0000,1594109.0000,1599049.0000,1594771.0000,1597917.0000,1597837.0000,1594700.0000,1597746.0000,1595562.0000,1627102.0000,1598718.0000,1594089.0000,1656497.0000,1595222.0000,1626471.0000,1611092.0000,1611472.0000,1596715.0000,1623846.0000,1620940.0000,1638253.0000,1595241.0000,1624757.0000,1598208.0000,1594861.0000,1598397.0000,1595091.0000,1597376.0000,1600682.0000,1590673.0000,1625719.0000,1597015.0000,1596303.0000,1598277.0000,1595632.0000,1625999.0000,1596373.0000,1597366.0000,1598558.0000,1594581.0000" -building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: throttled single-threaded graph generation at 10 us per task,soup topology,100,1,245098600,2263422.4200,2248557.7400,2282691.8300,85628.5956,70477.0544,99184.1117,"benchmark,group:scheduler","2230356.0000,2227460.0000,2458809.0000,2448358.0000,2473025.0000,2452136.0000,2443329.0000,2448960.0000,2450823.0000,2430114.0000,2442006.0000,2440063.0000,2434352.0000,2452647.0000,2442067.0000,2471372.0000,2452707.0000,2466834.0000,2439351.0000,2335875.0000,2220888.0000,2216930.0000,2218683.0000,2221328.0000,2247678.0000,2200088.0000,2229243.0000,2218173.0000,2228822.0000,2228232.0000,2231217.0000,2217602.0000,2222460.0000,2223823.0000,2219685.0000,2218052.0000,2221809.0000,2224875.0000,2243069.0000,2225547.0000,2231057.0000,2250714.0000,2214946.0000,2214997.0000,2218162.0000,2236818.0000,2238571.0000,2206821.0000,2237199.0000,2218373.0000,2218623.0000,2230756.0000,2221649.0000,2223914.0000,2217811.0000,2236887.0000,2212662.0000,2218573.0000,2220346.0000,2231517.0000,2219515.0000,2213604.0000,2212652.0000,2200148.0000,2230936.0000,2227220.0000,2230285.0000,2225467.0000,2222230.0000,2226608.0000,2228832.0000,2222210.0000,2229244.0000,2237880.0000,2216379.0000,2226488.0000,2215537.0000,2224564.0000,2222200.0000,2220818.0000,2222370.0000,2221329.0000,2217601.0000,2220527.0000,2222691.0000,2231047.0000,2240946.0000,2234924.0000,2216700.0000,2227590.0000,2212762.0000,2233181.0000,2228402.0000,2221118.0000,2224014.0000,2221839.0000,2222421.0000,2206049.0000,2228091.0000,2216579.0000" -building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: throttled single-threaded graph generation at 10 us per task,chain topology,100,1,57786800,629403.6600,628698.4900,630529.5000,4446.2296,3164.1401,7979.7560,"benchmark,group:scheduler","632437.0000,626175.0000,633749.0000,632847.0000,627377.0000,628028.0000,627377.0000,625424.0000,632968.0000,632507.0000,626045.0000,628168.0000,626315.0000,631815.0000,631384.0000,626385.0000,626766.0000,632928.0000,626996.0000,633098.0000,632417.0000,627537.0000,632768.0000,625173.0000,629140.0000,627427.0000,625333.0000,634321.0000,633549.0000,628990.0000,635052.0000,626255.0000,633058.0000,634660.0000,628359.0000,630864.0000,634450.0000,626065.0000,634250.0000,626104.0000,625954.0000,632798.0000,626726.0000,632817.0000,627016.0000,626345.0000,631955.0000,631455.0000,627036.0000,628109.0000,626405.0000,628750.0000,659889.0000,626325.0000,628248.0000,633219.0000,626896.0000,630954.0000,625945.0000,627107.0000,634540.0000,626114.0000,631725.0000,627898.0000,626927.0000,632777.0000,625604.0000,631946.0000,626225.0000,625193.0000,626475.0000,634010.0000,625394.0000,632296.0000,634050.0000,625965.0000,632717.0000,624903.0000,628109.0000,627417.0000,625183.0000,635773.0000,630593.0000,625934.0000,626947.0000,624943.0000,626255.0000,632607.0000,625213.0000,632637.0000,625974.0000,626175.0000,626676.0000,626205.0000,631525.0000,632718.0000,625333.0000,627388.0000,626355.0000,627137.0000" -building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: throttled single-threaded graph generation at 10 us per task,expanding tree topology,100,1,61779600,650223.2900,649570.3300,650922.2600,3444.5844,3147.4844,4131.1161,"benchmark,group:scheduler","651703.0000,646955.0000,662012.0000,655831.0000,655100.0000,648006.0000,654318.0000,652645.0000,649569.0000,653858.0000,646824.0000,647696.0000,653687.0000,646083.0000,655460.0000,652726.0000,646884.0000,647205.0000,647365.0000,646964.0000,653937.0000,652545.0000,646474.0000,647205.0000,650922.0000,648006.0000,651964.0000,652785.0000,648357.0000,647936.0000,645872.0000,651163.0000,653507.0000,646684.0000,652585.0000,653096.0000,645952.0000,651012.0000,648507.0000,645742.0000,652836.0000,653066.0000,645471.0000,652405.0000,648908.0000,647496.0000,654098.0000,652725.0000,650030.0000,655060.0000,647736.0000,654909.0000,654137.0000,646964.0000,649870.0000,651783.0000,646082.0000,653808.0000,654418.0000,646995.0000,653517.0000,652735.0000,648608.0000,650040.0000,656092.0000,647134.0000,652444.0000,648498.0000,646012.0000,646514.0000,645852.0000,653126.0000,655280.0000,645541.0000,652716.0000,653005.0000,646984.0000,650321.0000,648768.0000,647014.0000,656192.0000,653567.0000,646624.0000,653417.0000,653456.0000,646484.0000,648307.0000,648056.0000,645721.0000,647936.0000,646223.0000,649830.0000,652845.0000,645903.0000,646333.0000,652154.0000,646434.0000,651362.0000,651703.0000,645642.0000" -building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: throttled single-threaded graph generation at 10 us per task,contracting tree topology,100,1,64725100,609662.7100,608957.4100,610541.8700,3981.2684,3287.3835,6016.8932,"benchmark,group:scheduler","607910.0000,612990.0000,612749.0000,612449.0000,614333.0000,606598.0000,605856.0000,612559.0000,605956.0000,614102.0000,607880.0000,610415.0000,610546.0000,606137.0000,615154.0000,607860.0000,612870.0000,611116.0000,606307.0000,607680.0000,603873.0000,608261.0000,607079.0000,605946.0000,607489.0000,607880.0000,610525.0000,613210.0000,604124.0000,615514.0000,607279.0000,605666.0000,606998.0000,605415.0000,610946.0000,610426.0000,605556.0000,612058.0000,606858.0000,613982.0000,609113.0000,605796.0000,610075.0000,605786.0000,607490.0000,608411.0000,607640.0000,630864.0000,606177.0000,615044.0000,608482.0000,606558.0000,610004.0000,611808.0000,607590.0000,608191.0000,605385.0000,613521.0000,611627.0000,605636.0000,606418.0000,606698.0000,612409.0000,614272.0000,604304.0000,612198.0000,606077.0000,612169.0000,614002.0000,604905.0000,606517.0000,612049.0000,606297.0000,613942.0000,607229.0000,611137.0000,611276.0000,605946.0000,613862.0000,606658.0000,615845.0000,614883.0000,604324.0000,615024.0000,606297.0000,610635.0000,611376.0000,609012.0000,614944.0000,613491.0000,606788.0000,615224.0000,607209.0000,615174.0000,612419.0000,607710.0000,608271.0000,606858.0000,611457.0000,605215.0000" -building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: throttled single-threaded graph generation at 10 us per task,wave_sim topology,100,1,400739300,4356201.1500,4340941.6700,4362702.2500,47869.3419,17212.8863,87374.1804,"benchmark,group:scheduler","4359320.0000,4366254.0000,4396331.0000,4363498.0000,4356015.0000,4377254.0000,4361324.0000,4352307.0000,4358879.0000,4461384.0000,4370682.0000,4086804.0000,3999820.0000,4275161.0000,4358269.0000,4365983.0000,4356065.0000,4366975.0000,4359631.0000,4378277.0000,4343120.0000,4364360.0000,4356605.0000,4339042.0000,4368759.0000,4357978.0000,4363509.0000,4359982.0000,4360433.0000,4364921.0000,4358910.0000,4362968.0000,4361104.0000,4359872.0000,4360162.0000,4366194.0000,4361425.0000,4363048.0000,4356775.0000,4360973.0000,4368898.0000,4358900.0000,4380090.0000,4362316.0000,4359351.0000,4363278.0000,4363088.0000,4358329.0000,4376012.0000,4351216.0000,4361705.0000,4376623.0000,4347017.0000,4356084.0000,4365692.0000,4361134.0000,4360893.0000,4361515.0000,4361525.0000,4377135.0000,4366694.0000,4361474.0000,4363589.0000,4360343.0000,4360653.0000,4405509.0000,4362236.0000,4354421.0000,4367386.0000,4364090.0000,4360443.0000,4360533.0000,4365503.0000,4361204.0000,4357938.0000,4361926.0000,4362817.0000,4363158.0000,4352869.0000,4350003.0000,4355313.0000,4364430.0000,4359601.0000,4359441.0000,4361855.0000,4343070.0000,4360583.0000,4390559.0000,4356405.0000,4357256.0000,4364670.0000,4364199.0000,4363698.0000,4358479.0000,4357467.0000,4365532.0000,4360613.0000,4359310.0000,4365603.0000,4358068.0000" -building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: throttled single-threaded graph generation at 10 us per task,jacobi topology,100,1,106333400,1055678.5800,1049745.6400,1059549.4500,24162.8976,17040.1084,31652.9876,"benchmark,group:scheduler","1063333.0000,1063904.0000,1073363.0000,1064626.0000,1064355.0000,1061791.0000,1061891.0000,1087088.0000,1057803.0000,1060688.0000,1060418.0000,1063955.0000,1060689.0000,1062361.0000,1062011.0000,1068955.0000,1065357.0000,1061039.0000,1062192.0000,1061540.0000,1065067.0000,1060207.0000,1063173.0000,1059717.0000,1061860.0000,1060939.0000,1065728.0000,1058003.0000,1061841.0000,1060648.0000,1061130.0000,1068914.0000,1063183.0000,1063735.0000,1062171.0000,1062131.0000,1062011.0000,1060778.0000,1062192.0000,1061790.0000,1062031.0000,1062352.0000,1060709.0000,1065958.0000,1060589.0000,1060919.0000,1061149.0000,1068564.0000,1063413.0000,1062772.0000,1062091.0000,1061701.0000,1055398.0000,976279.0000,973373.0000,969596.0000,973283.0000,969696.0000,975948.0000,970267.0000,990085.0000,1062422.0000,1061730.0000,1061220.0000,1062221.0000,1061379.0000,1061701.0000,1060809.0000,1061520.0000,1062612.0000,1061089.0000,1061240.0000,1060308.0000,1061981.0000,1067872.0000,1064145.0000,1063795.0000,1063954.0000,1063103.0000,1061219.0000,1060378.0000,1062302.0000,1061790.0000,1060969.0000,1060638.0000,1062733.0000,1066579.0000,1058074.0000,1061751.0000,1063744.0000,1066510.0000,1067311.0000,1062381.0000,1062782.0000,1061270.0000,1058795.0000,1063383.0000,1060698.0000,1063454.0000,1059246.0000" -building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > throttled submission to a scheduler thread at 10 us per task,soup topology,100,1,322426800,3220770.3900,3214933.1500,3225372.6800,26257.9819,19884.4973,37130.9707,"benchmark,group:scheduler","3224229.0000,3252233.0000,3203049.0000,3281528.0000,3199913.0000,3095275.0000,3101306.0000,3204001.0000,3218689.0000,3224119.0000,3192579.0000,3253494.0000,3242865.0000,3248024.0000,3226694.0000,3222416.0000,3216936.0000,3252112.0000,3220702.0000,3253875.0000,3191598.0000,3283281.0000,3191637.0000,3225060.0000,3221104.0000,3224810.0000,3220392.0000,3253235.0000,3192689.0000,3224450.0000,3220412.0000,3224229.0000,3222145.0000,3253064.0000,3222175.0000,3223238.0000,3199773.0000,3223918.0000,3228117.0000,3220091.0000,3218508.0000,3231483.0000,3192599.0000,3227685.0000,3246692.0000,3224340.0000,3192218.0000,3220942.0000,3243205.0000,3243856.0000,3231594.0000,3224169.0000,3192208.0000,3253384.0000,3221434.0000,3224229.0000,3193691.0000,3192850.0000,3223428.0000,3192629.0000,3224500.0000,3221855.0000,3221544.0000,3224490.0000,3192799.0000,3222265.0000,3252243.0000,3224229.0000,3197288.0000,3223729.0000,3250178.0000,3223999.0000,3193180.0000,3223377.0000,3221254.0000,3224680.0000,3222466.0000,3222686.0000,3221343.0000,3224960.0000,3220913.0000,3223678.0000,3222135.0000,3193892.0000,3221825.0000,3222726.0000,3224701.0000,3192960.0000,3252282.0000,3250138.0000,3223417.0000,3223608.0000,3193210.0000,3222055.0000,3254797.0000,3249276.0000,3223979.0000,3192439.0000,3227846.0000,3217496.0000" -building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > throttled submission to a scheduler thread at 10 us per task,chain topology,100,1,102203200,993343.0100,991073.5300,996246.8300,12990.8180,10915.2774,15656.8671,"benchmark,group:scheduler","1016745.0000,986748.0000,1041031.0000,1015052.0000,988031.0000,985636.0000,987680.0000,986598.0000,986908.0000,1016465.0000,986628.0000,986999.0000,1016585.0000,986829.0000,986738.0000,987830.0000,986609.0000,987319.0000,1016405.0000,987179.0000,986909.0000,1016444.0000,986969.0000,986839.0000,1016324.0000,987330.0000,986588.0000,987590.0000,987199.0000,986528.0000,1016254.0000,987059.0000,987169.0000,1016424.0000,986999.0000,987079.0000,987310.0000,987079.0000,986948.0000,987069.0000,990456.0000,985816.0000,987279.0000,989393.0000,983553.0000,986457.0000,986828.0000,986769.0000,987880.0000,986658.0000,987160.0000,987059.0000,986838.0000,987119.0000,987330.0000,987319.0000,987089.0000,987209.0000,986738.0000,987119.0000,987590.0000,986959.0000,986969.0000,987219.0000,986628.0000,982550.0000,984244.0000,984524.0000,985205.0000,986959.0000,987380.0000,988041.0000,986768.0000,986628.0000,1016335.0000,986768.0000,987450.0000,986678.0000,1016575.0000,986718.0000,1016816.0000,986628.0000,1016274.0000,986699.0000,1016605.0000,986317.0000,1016385.0000,987109.0000,1016565.0000,986818.0000,1016154.0000,987018.0000,988080.0000,986378.0000,1031233.0000,983903.0000,1007317.0000,986588.0000,1016114.0000,986918.0000" -building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > throttled submission to a scheduler thread at 10 us per task,expanding tree topology,100,1,103526000,1030478.1200,1027085.9600,1034403.1900,18602.3213,16242.8804,21517.1181,"benchmark,group:scheduler","1016324.0000,1015884.0000,1036132.0000,1044137.0000,1045109.0000,1075587.0000,1043596.0000,1074735.0000,1044548.0000,1046111.0000,1073794.0000,1015533.0000,1016224.0000,1016234.0000,1016645.0000,1015914.0000,1044608.0000,1016144.0000,1016365.0000,1016425.0000,1016234.0000,1016054.0000,1015874.0000,1047483.0000,1016525.0000,1042003.0000,1045700.0000,1016495.0000,1044939.0000,1045289.0000,1016415.0000,1045019.0000,1074344.0000,1015834.0000,1045810.0000,1044328.0000,1045640.0000,1044788.0000,1016685.0000,1015473.0000,1045941.0000,1045800.0000,1010343.0000,1037435.0000,1021524.0000,1042344.0000,1016224.0000,1016495.0000,1015763.0000,1016144.0000,1015873.0000,1016165.0000,1016254.0000,1044879.0000,1016314.0000,1047033.0000,1044818.0000,1015684.0000,1014651.0000,1016615.0000,1073923.0000,1016444.0000,1045239.0000,1073873.0000,1015824.0000,1046451.0000,1039489.0000,1081698.0000,1044848.0000,1045920.0000,1015683.0000,1017136.0000,1014802.0000,1016805.0000,1015542.0000,1016184.0000,1044798.0000,1016585.0000,1015904.0000,1016505.0000,1015763.0000,1016094.0000,1016535.0000,1015914.0000,1016404.0000,1015833.0000,1016585.0000,1015723.0000,1015834.0000,1016224.0000,1016214.0000,1019921.0000,1018238.0000,1038506.0000,1016725.0000,1045099.0000,1045359.0000,1017347.0000,1044187.0000,1074374.0000" -building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > throttled submission to a scheduler thread at 10 us per task,contracting tree topology,100,1,102231200,1020823.7600,1018792.2400,1023569.2100,12052.0497,9838.9536,15663.9905,"benchmark,group:scheduler","1015172.0000,1016194.0000,1038035.0000,1014200.0000,1004221.0000,1037514.0000,1011846.0000,1011075.0000,1011034.0000,1011496.0000,1035290.0000,1011395.0000,1010634.0000,1049367.0000,1043146.0000,1014140.0000,1016064.0000,1046221.0000,1015743.0000,1015843.0000,1017076.0000,1015803.0000,1015462.0000,1016365.0000,1016545.0000,1015603.0000,1045430.0000,1015763.0000,1015673.0000,1016926.0000,1044508.0000,1016815.0000,1015924.0000,1045510.0000,1044538.0000,1016675.0000,1015743.0000,1045791.0000,1016364.0000,1014892.0000,1016224.0000,1017076.0000,1015984.0000,1015793.0000,1015983.0000,1016435.0000,1015894.0000,1015803.0000,1016635.0000,1015794.0000,1016414.0000,1016033.0000,1016324.0000,1016024.0000,1016344.0000,1016063.0000,1015943.0000,1015954.0000,1016284.0000,1016374.0000,1047353.0000,1013550.0000,1016134.0000,1016675.0000,1015723.0000,1016144.0000,1016245.0000,1016214.0000,1016064.0000,1015763.0000,1045619.0000,1015843.0000,1015663.0000,1074445.0000,1045470.0000,1016224.0000,1015834.0000,1015803.0000,1016735.0000,1034007.0000,1012968.0000,1016354.0000,1015603.0000,1045440.0000,1015984.0000,1045480.0000,1015733.0000,1017146.0000,1014932.0000,1016525.0000,1015953.0000,1015693.0000,1016555.0000,1015984.0000,1016494.0000,1015653.0000,1016144.0000,1016234.0000,1016215.0000,1016364.0000" -building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > throttled submission to a scheduler thread at 10 us per task,wave_sim topology,100,1,647758300,6326608.1500,6264668.8800,6376726.5100,283372.4970,240767.5539,318915.3664,"benchmark,group:scheduler","5776356.0000,5812044.0000,6724534.0000,6484989.0000,6486572.0000,6503605.0000,6470202.0000,6421229.0000,6519435.0000,6443721.0000,6448852.0000,6465212.0000,6435967.0000,6480160.0000,6472476.0000,6452027.0000,6509055.0000,6474570.0000,6461625.0000,6472576.0000,6474580.0000,6468729.0000,6475943.0000,6483917.0000,6524594.0000,6473528.0000,6445796.0000,6474269.0000,6475632.0000,6477536.0000,6443280.0000,6564921.0000,6471303.0000,6474400.0000,6508044.0000,6470061.0000,6474309.0000,6479970.0000,6503504.0000,6498074.0000,6476684.0000,6511750.0000,6462797.0000,6474740.0000,6445144.0000,6475652.0000,6445144.0000,6446968.0000,6472606.0000,6476022.0000,6444032.0000,6446917.0000,6473127.0000,6450955.0000,6469951.0000,6444683.0000,6477175.0000,6473328.0000,6475211.0000,6445174.0000,6475752.0000,6443791.0000,6476574.0000,6473087.0000,6476343.0000,6443782.0000,6416720.0000,6481644.0000,6439703.0000,6475521.0000,6444363.0000,6475682.0000,6444152.0000,6476132.0000,6474108.0000,6475121.0000,6444583.0000,6473307.0000,6437019.0000,6441067.0000,6386513.0000,5768872.0000,5784332.0000,5807576.0000,5755587.0000,5771187.0000,5780023.0000,5776196.0000,5834536.0000,5776587.0000,5834356.0000,5754275.0000,5777609.0000,5749826.0000,5778200.0000,5776076.0000,5779322.0000,5793669.0000,5778100.0000,5743865.0000" -building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > throttled submission to a scheduler thread at 10 us per task,jacobi topology,100,1,162698100,1626273.2200,1623796.4100,1628761.7600,12626.9096,10171.2341,15408.9783,"benchmark,group:scheduler","1626430.0000,1625580.0000,1633314.0000,1653782.0000,1596184.0000,1656387.0000,1625188.0000,1625189.0000,1628053.0000,1594730.0000,1625890.0000,1625850.0000,1626150.0000,1625890.0000,1655887.0000,1626120.0000,1625619.0000,1626631.0000,1653101.0000,1656648.0000,1625079.0000,1624898.0000,1625459.0000,1597035.0000,1631911.0000,1591424.0000,1625609.0000,1626831.0000,1595652.0000,1627503.0000,1624547.0000,1626481.0000,1626952.0000,1595001.0000,1626451.0000,1625048.0000,1629767.0000,1622173.0000,1599069.0000,1625048.0000,1624337.0000,1631751.0000,1619928.0000,1625670.0000,1627112.0000,1625128.0000,1628505.0000,1624988.0000,1624026.0000,1626070.0000,1625629.0000,1626000.0000,1627252.0000,1624156.0000,1628385.0000,1624998.0000,1624196.0000,1626571.0000,1624887.0000,1626701.0000,1626821.0000,1625559.0000,1599640.0000,1623926.0000,1624407.0000,1654825.0000,1626160.0000,1655085.0000,1626521.0000,1624217.0000,1655385.0000,1627332.0000,1623946.0000,1658822.0000,1621872.0000,1628414.0000,1625429.0000,1623946.0000,1626311.0000,1626962.0000,1624517.0000,1628274.0000,1625028.0000,1624056.0000,1626120.0000,1625549.0000,1626742.0000,1626771.0000,1624958.0000,1618276.0000,1620249.0000,1618957.0000,1645978.0000,1630077.0000,1626281.0000,1626912.0000,1624657.0000,1628004.0000,1625850.0000,1623635.0000" -normalizing randomized box sets - 2d,"small, native",100,45,2542500,573.2829,571.0542,578.3996,16.4219,9.5643,26.0006,"benchmark,group:grid","568.8222,567.9111,599.7556,578.3778,574.1556,573.4667,574.8222,666.3333,571.4667,570.1333,570.1556,567.9333,570.8000,571.0444,571.0444,571.4889,570.8222,569.9111,571.7111,567.7111,568.1333,571.7111,569.4889,571.0444,570.1333,569.4667,570.3778,570.3778,567.0222,570.3778,571.7111,571.2667,570.8000,570.5778,571.2667,570.3778,572.1556,565.4667,571.4889,571.2667,571.0444,569.9111,571.2667,571.2667,569.9333,665.0000,570.5778,566.3556,570.3778,569.9111,569.4889,571.2667,570.1556,569.4667,571.0444,569.4889,567.9111,570.6000,570.6000,569.7111,570.1333,567.9333,568.6000,569.6889,565.0444,568.8000,571.0444,569.7111,570.1556,571.2444,571.7111,571.7111,570.1556,565.2444,569.2667,571.2667,569.6889,571.4889,570.6000,570.6000,570.1556,569.6889,566.3778,570.5778,662.3111,569.7111,571.0444,569.2444,570.1556,570.1556,571.0444,569.0222,565.9333,570.3556,569.2444,570.1556,571.0444,569.9111,569.9333,570.3778" -normalizing randomized box sets - 2d,"small, embedded in 3d",100,38,2504200,661.3889,659.2032,666.8618,15.8460,2.7044,28.8767,"benchmark,group:grid","659.0789,659.1053,675.4211,661.4737,662.0000,667.0000,661.2105,657.7632,662.0000,659.1053,658.0263,658.8421,658.8158,659.1053,658.0263,654.3421,659.8684,658.5789,657.2368,661.2105,658.8421,660.3947,655.4211,660.9211,658.3158,663.0526,659.8684,659.6316,658.3158,763.7632,657.7632,656.7368,659.0789,659.8947,660.9474,660.1316,659.1053,658.5526,657.0000,659.0789,659.6316,659.8947,658.8158,659.8947,658.2895,656.2105,658.2895,660.9474,658.0526,657.7632,660.4211,657.5000,656.4737,653.5526,658.5526,660.1579,659.3684,658.0263,660.6842,658.0263,652.5000,661.1842,660.4211,659.3421,659.6053,660.6842,659.8684,655.9211,659.8684,777.4737,658.8158,659.3684,659.8684,660.4211,660.4211,658.0263,653.0263,658.3158,659.6316,661.4474,659.3684,658.5526,658.8158,654.8684,659.1053,660.4211,658.2895,659.3684,659.8684,657.7895,658.8158,657.7632,659.1053,661.7105,659.6316,660.6842,658.8158,658.5789,656.1842,659.3684" -normalizing randomized box sets - 2d,"medium, native",100,5,3022000,6061.7000,6037.8400,6112.5880,169.4514,96.9941,267.5864,"benchmark,group:grid","6025.0000,6025.0000,6466.0000,6077.0000,6061.2000,6071.2000,6956.8000,6037.0000,6031.0000,6033.0000,6047.0000,6051.0000,6043.2000,6039.0000,6025.0000,6007.0000,6011.0000,6021.2000,6017.0000,6041.0000,6031.0000,6039.2000,6041.0000,6015.0000,6015.0000,6023.0000,6071.0000,6029.0000,6001.0000,6055.2000,6025.0000,6013.0000,5991.0000,6013.0000,6051.2000,5982.8000,6015.0000,6051.0000,6029.0000,6987.0000,6043.0000,6029.0000,6027.2000,6011.0000,6017.0000,6001.0000,6017.0000,6029.0000,6025.0000,6005.0000,6027.2000,6017.0000,6013.0000,6027.0000,6043.0000,6053.0000,6015.0000,6039.0000,6043.2000,6031.0000,6009.0000,6031.0000,6047.2000,6029.0000,6003.0000,6011.0000,5997.0000,6017.0000,6015.0000,5993.0000,6059.2000,6009.0000,7016.8000,6031.0000,6019.0000,6031.0000,6063.2000,6021.0000,6031.0000,6045.2000,6043.0000,6023.0000,6005.0000,6067.2000,6021.0000,6021.0000,6017.0000,6023.2000,6051.0000,6033.0000,6031.2000,6041.0000,6019.0000,6041.0000,6009.0000,6013.0000,6045.0000,6023.0000,6055.2000,6033.0000" -normalizing randomized box sets - 2d,"medium, embedded in 3d",100,4,2711600,6003.7150,5981.3375,6059.2275,165.6351,46.1735,294.3613,"benchmark,group:grid","5960.7500,5943.2500,6401.5000,5991.0000,6018.5000,5990.7500,5968.2500,5948.5000,5948.2500,5973.2500,5963.2500,5965.7500,6003.2500,5996.0000,6001.0000,6010.7500,6031.0000,5981.0000,5988.2500,5978.2500,5983.5000,5998.2500,5998.2500,5973.2500,5988.2500,5963.2500,5978.5000,5990.7500,5998.5000,5988.2500,5978.5000,5970.7500,5991.0000,5975.7500,7120.5000,5988.5000,5998.2500,6001.0000,5950.7500,5973.2500,5991.0000,5988.2500,5956.0000,5980.7500,5981.0000,5973.2500,5973.2500,5973.5000,5993.2500,5948.2500,5988.5000,5973.2500,5991.0000,5990.7500,5983.5000,5968.2500,5981.0000,5975.7500,5970.7500,5941.0000,6003.2500,5953.2500,5976.0000,5955.7500,5955.7500,5961.0000,5973.2500,5968.2500,5981.0000,5963.2500,5948.2500,6006.0000,5995.7500,5953.2500,5958.2500,5948.2500,7115.5000,5950.7500,5946.0000,5965.7500,5973.2500,5971.0000,5985.7500,5958.2500,5983.2500,5970.7500,6001.0000,5963.2500,5966.0000,5975.7500,5960.7500,5971.0000,5975.7500,5993.5000,5970.7500,5980.7500,5958.5000,5963.2500,6001.0000,5975.7500" -normalizing randomized box sets - 2d,"large, native",100,1,19597800,198463.8000,198037.6700,199531.1800,3237.3336,1649.4690,6732.2678,"benchmark,group:grid","196982.0000,196951.0000,199386.0000,202221.0000,197743.0000,197322.0000,197762.0000,197482.0000,200538.0000,197282.0000,197232.0000,197903.0000,197603.0000,200949.0000,197072.0000,197252.0000,197171.0000,197472.0000,201320.0000,197753.0000,196921.0000,197252.0000,197643.0000,201950.0000,197722.0000,197032.0000,197963.0000,197202.0000,201420.0000,197062.0000,197392.0000,196871.0000,196902.0000,196941.0000,200779.0000,197502.0000,197092.0000,197122.0000,197211.0000,201439.0000,197742.0000,197623.0000,197442.0000,197001.0000,201009.0000,197422.0000,197803.0000,197231.0000,197383.0000,201500.0000,196841.0000,196951.0000,197643.0000,197232.0000,201280.0000,198093.0000,197122.0000,197623.0000,197793.0000,225666.0000,197963.0000,196831.0000,197342.0000,197413.0000,201880.0000,197362.0000,197262.0000,197081.0000,197643.0000,201200.0000,197332.0000,197402.0000,197212.0000,197001.0000,200649.0000,197442.0000,197002.0000,197823.0000,197422.0000,201300.0000,197192.0000,196891.0000,196571.0000,197572.0000,202182.0000,198203.0000,197132.0000,197192.0000,197533.0000,202321.0000,197974.0000,197362.0000,197462.0000,196821.0000,202933.0000,197833.0000,197533.0000,197001.0000,197142.0000,203754.0000" -normalizing randomized box sets - 2d,"large, embedded in 3d",100,1,21379100,215613.4600,213792.0800,223046.9000,16369.3081,2408.2450,38330.5847,"benchmark,group:grid","374588.0000,213042.0000,221107.0000,213102.0000,212912.0000,212621.0000,212892.0000,216849.0000,212311.0000,212831.0000,212681.0000,217541.0000,212731.0000,212661.0000,212501.0000,212711.0000,216329.0000,213222.0000,212671.0000,211980.0000,212671.0000,217240.0000,212571.0000,212641.0000,212080.0000,216950.0000,212651.0000,213132.0000,212481.0000,212861.0000,217671.0000,212060.0000,212541.0000,212411.0000,212220.0000,217350.0000,212792.0000,213112.0000,213122.0000,216839.0000,212861.0000,212792.0000,212220.0000,213263.0000,216418.0000,212952.0000,213062.0000,213011.0000,212832.0000,217801.0000,213392.0000,212261.0000,212030.0000,243019.0000,212911.0000,212551.0000,212611.0000,213253.0000,216979.0000,213663.0000,213543.0000,213232.0000,212551.0000,216599.0000,213272.0000,212221.0000,212621.0000,216709.0000,212901.0000,212541.0000,213403.0000,212410.0000,216728.0000,213122.0000,212641.0000,212941.0000,212601.0000,216569.0000,213453.0000,212581.0000,212350.0000,217050.0000,212511.0000,212491.0000,212761.0000,212631.0000,216749.0000,213212.0000,212672.0000,212951.0000,212100.0000,216618.0000,212952.0000,212751.0000,213022.0000,223091.0000,212361.0000,212320.0000,213293.0000,212260.0000" -normalizing randomized box sets - 3d,small - native,100,11,2746700,2241.6982,2221.8045,2323.8809,178.2804,34.9725,412.2288,"benchmark,group:grid","2226.7273,2215.8182,2421.7273,2232.1818,2219.5455,2222.1818,2213.0909,2220.4545,2212.1818,2211.2727,2208.5455,2215.0000,2214.9091,2217.6364,2211.2727,2224.0000,2217.6364,2215.0000,2216.7273,2217.6364,2216.8182,2213.0909,2211.2727,2211.2727,2217.7273,2223.0909,2220.3636,2219.4545,2221.2727,2219.5455,2225.8182,2220.4545,2220.3636,2218.5455,2222.2727,2213.0909,2218.5455,2221.3636,2221.2727,2212.1818,3948.2727,2219.4545,2220.4545,2224.0000,2220.4545,2221.2727,2216.7273,2214.0909,2221.2727,2207.6364,2211.2727,2220.4545,2209.4545,2214.0000,2216.7273,2225.9091,2215.8182,2219.5455,2222.1818,2215.8182,2215.9091,2224.9091,2220.4545,2222.1818,2214.9091,2214.0909,2216.7273,2218.5455,2219.5455,2220.3636,2222.1818,2221.3636,2220.3636,2218.6364,2223.0909,2221.2727,2220.3636,2218.5455,2221.3636,2219.4545,2662.1818,2209.4545,2211.2727,2218.5455,2210.4545,2219.4545,2212.1818,2215.8182,2218.5455,2215.8182,2218.5455,2223.0909,2212.1818,2217.7273,2217.6364,2214.9091,2214.0000,2215.8182,2221.2727,2220.4545" -normalizing randomized box sets - 3d,medium - native,100,3,2514600,9251.6133,9211.3933,9333.1733,278.9330,160.6422,436.3783,"benchmark,group:grid","9226.6667,9210.3333,10108.3333,9280.3333,9200.0000,9193.3333,9243.3333,9253.3333,9233.6667,9186.6667,10790.0000,9236.6667,9200.3333,9206.6667,9267.0000,9163.3333,9133.3333,9220.3333,9170.0000,9233.6667,9220.0000,9146.6667,9170.3333,9183.3333,9196.6667,9147.0000,9193.3333,9216.6667,9223.3333,9150.0000,9180.0000,9200.0000,9226.6667,9223.3333,9196.6667,9160.0000,9106.6667,9226.6667,9207.0000,9193.3333,9180.0000,9233.6667,9143.3333,9160.0000,9210.3333,9196.6667,10773.3333,9253.3333,9183.6667,9176.6667,9220.0000,9233.3333,9203.6667,9150.0000,9133.3333,9210.0000,9190.3333,9226.6667,9190.3333,9216.6667,9150.0000,9220.3333,9216.6667,9200.3333,9200.0000,9203.6667,9166.6667,9196.6667,9197.0000,9270.0000,9143.6667,9223.3333,9227.0000,9200.0000,9180.0000,9153.6667,9213.3333,9227.0000,9206.6667,9220.3333,9236.6667,9163.6667,10646.0000,9293.6667,9160.0000,9136.6667,9180.0000,9186.6667,9193.6667,9173.3333,9163.3333,9133.3333,9176.6667,9163.6667,9180.0000,9250.3333,9166.6667,9240.3333,9120.0000,9170.0000" -normalizing randomized box sets - 3d,large - native,100,1,223254700,2158456.1700,2145105.8200,2172667.2900,70241.5881,66872.9362,77235.9818,"benchmark,group:grid","2243119.0000,2241577.0000,2291802.0000,2227049.0000,2230125.0000,2228051.0000,2231347.0000,2235445.0000,2233552.0000,2232910.0000,2232209.0000,2238190.0000,2231267.0000,2234313.0000,2227891.0000,2334333.0000,2233862.0000,2252247.0000,2223603.0000,2234974.0000,2236036.0000,2239964.0000,2233251.0000,2234664.0000,2221038.0000,2230976.0000,2227891.0000,2227951.0000,2228392.0000,2231478.0000,2253920.0000,2229975.0000,2091352.0000,2095610.0000,2094989.0000,2094708.0000,2093596.0000,2093786.0000,2093075.0000,2093736.0000,2097073.0000,2091593.0000,2092183.0000,2101240.0000,2185531.0000,2096111.0000,2096372.0000,2100379.0000,2094318.0000,2087214.0000,2087134.0000,2090080.0000,2090029.0000,2095540.0000,2096522.0000,2094919.0000,2093346.0000,2093296.0000,2100459.0000,2101782.0000,2097974.0000,2096531.0000,2101582.0000,2100309.0000,2116780.0000,2101511.0000,2103865.0000,2099568.0000,2099487.0000,2096342.0000,2102523.0000,2095580.0000,2098686.0000,2105048.0000,2109978.0000,2102984.0000,2100870.0000,2103886.0000,2101671.0000,2100590.0000,2097453.0000,2103495.0000,2096121.0000,2098405.0000,2101411.0000,2104497.0000,2101021.0000,2103044.0000,2101271.0000,2132159.0000,2239022.0000,2244402.0000,2244762.0000,2239323.0000,2240224.0000,2240325.0000,2240144.0000,2237869.0000,2238360.0000,2237169.0000" -normalizing a fully mergeable tiling of boxes - 1,"small, native",100,823,2469000,30.5845,30.4655,30.8328,0.8448,0.4100,1.4207,"benchmark,group:grid","30.0182,30.5176,32.7570,30.8943,30.9684,29.8469,30.8712,30.3463,30.5541,30.9064,30.3597,30.9793,30.2369,31.0656,30.9307,30.2382,30.9064,30.0790,30.5662,31.0158,31.0413,30.7242,30.3706,30.4569,31.3208,30.8214,30.8943,30.2382,31.5881,30.8457,30.9927,30.4313,30.3961,30.7120,36.0194,30.3232,30.2977,29.8846,31.1130,30.3597,30.6027,30.2855,30.4569,30.3706,30.6634,29.9696,30.0790,30.5419,30.2126,30.3463,30.0547,30.0304,30.0182,30.1883,30.7363,30.3220,30.3463,30.1519,30.0656,30.2248,30.1154,30.2005,30.2977,30.2746,30.7242,30.2248,30.5541,30.4070,30.1652,30.1397,30.4435,30.6027,30.6027,30.8578,35.5577,30.0547,30.1154,30.0790,30.5905,30.2369,30.6148,30.3584,30.3961,30.2855,30.1883,30.2491,30.3584,30.4447,30.6391,30.1397,30.5419,30.3949,30.6877,30.2005,30.5176,30.1883,30.6999,30.2625,30.2369,30.2491" -normalizing a fully mergeable tiling of boxes - 1,"small, embedded in 3d",100,556,2446400,45.1847,45.0569,45.5013,0.9394,0.2042,1.6862,"benchmark,group:grid","44.9011,45.0647,46.2896,45.4604,45.3165,45.2626,44.9928,45.1529,45.2266,45.0288,44.9550,44.7752,44.9568,45.3705,44.9191,45.0468,45.0629,45.1888,44.9928,44.7752,45.1007,44.9910,45.1007,45.0090,45.0989,45.0647,44.9371,45.1367,45.1367,45.6763,51.6583,44.9748,45.1547,45.4065,44.9191,44.8112,45.0108,44.9550,45.0108,45.0270,45.0090,44.9568,45.1888,45.1547,45.1906,45.3525,45.1169,44.9388,44.9550,44.7392,44.9371,44.9730,44.9371,44.9191,45.0468,45.1547,45.2626,44.7212,45.0090,44.9928,44.9011,44.9748,44.9910,44.8849,44.8112,45.2086,44.9910,45.1367,45.0468,51.5683,45.1187,45.2806,45.2968,45.0629,45.1367,45.0450,44.9748,44.9550,44.9568,44.9191,44.9209,44.9550,45.0468,45.0270,44.9568,44.8831,44.9928,44.8831,45.0468,45.0809,45.1709,45.1187,45.0450,44.9209,44.7752,45.0288,45.0090,44.9388,44.9550,44.9748" -normalizing a fully mergeable tiling of boxes - 1,"medium, native",100,84,2494800,297.8810,296.7288,300.2913,8.1373,3.4829,13.8559,"benchmark,group:grid","295.7738,296.1310,303.2857,298.8810,300.7857,293.7500,291.9643,289.6905,286.4643,291.9524,292.6786,290.5238,290.8929,290.1667,292.2024,292.6667,292.2024,289.5714,289.8095,291.0119,288.7381,287.6667,351.0000,301.1429,299.8333,296.2500,297.9286,299.5833,299.2381,297.6905,297.7976,299.2381,301.3810,300.6667,299.4762,299.2381,298.5119,296.7381,299.1071,297.4524,297.5595,297.6905,296.2500,296.0119,294.3452,297.0952,296.2500,295.7738,296.1310,295.8929,295.7738,294.2262,295.5357,296.7262,296.8571,297.6786,295.7738,295.5476,295.4167,296.4881,295.8929,295.4167,348.1310,298.0476,299.3452,299.2381,298.0476,297.3214,299.7143,299.9524,300.3095,300.7857,301.6190,300.5476,300.5476,298.8690,299.9405,300.0714,299.5952,299.3571,299.5952,301.5000,299.7143,299.3452,299.9524,299.3571,299.8333,301.5000,301.6190,297.3333,295.7738,297.4405,296.6190,296.3690,296.3690,296.6190,296.7262,295.7738,295.8929,295.9048" -normalizing a fully mergeable tiling of boxes - 1,"medium, embedded in 3d",100,52,2532400,418.9831,417.0106,423.8402,14.6656,4.7444,27.2349,"benchmark,group:grid","420.5769,420.5577,422.4808,415.7500,415.5577,415.7500,414.5769,414.3846,415.5577,415.5577,415.7500,415.7500,415.7500,415.7500,415.5577,415.5577,415.5577,415.7500,415.7500,415.5577,415.7500,415.5577,415.5577,415.7500,415.7500,415.7500,415.7500,415.3654,415.5577,415.7500,415.7500,530.5769,457.3654,414.7885,414.9808,415.1731,414.9808,414.9808,414.9808,414.9808,414.9808,414.9808,414.9808,414.9808,414.9808,414.9808,415.1731,414.9808,415.1731,414.9808,415.1731,414.7885,414.9808,415.1731,414.9808,415.1731,414.9808,415.1731,414.9808,415.1731,414.9808,414.9808,414.9808,414.9808,414.9808,414.9808,414.9808,414.5962,415.1731,414.9808,415.1731,414.9808,415.1731,414.9808,414.9808,414.9808,414.9808,499.5577,420.5769,420.5577,420.5769,420.3654,420.3654,420.5769,420.5577,420.5769,420.3654,420.3846,420.5577,420.5769,420.5577,420.1923,420.3654,420.3654,420.5769,420.5577,420.5769,420.5577,420.5769,420.1731" -normalizing a fully mergeable tiling of boxes - 1,"large, native",100,4,2689200,7837.9975,7759.3800,8167.8100,702.6357,128.9860,1642.7326,"benchmark,group:grid","7761.7500,14654.7500,7839.5000,7699.0000,7679.2500,8643.2500,7716.7500,7709.2500,7684.0000,7706.5000,7751.5000,7661.7500,7709.0000,7724.2500,7699.0000,7726.7500,7766.7500,7766.7500,7764.2500,7744.2500,7764.2500,7761.7500,7759.2500,7774.2500,7766.7500,7746.7500,7751.5000,7769.2500,7721.5000,7729.2500,7764.2500,7719.0000,7699.2500,7739.2500,7781.7500,7776.7500,7741.7500,8633.2500,7749.2500,7749.2500,7756.7500,7731.7500,7734.0000,7774.2500,7761.5000,7789.5000,7766.7500,7704.0000,7721.7500,7714.0000,7719.2500,7741.7500,7774.2500,7734.2500,7729.0000,7741.7500,7719.2500,7741.7500,7721.5000,7719.2500,7726.7500,7746.5000,7746.7500,7721.7500,7714.0000,7731.5000,7741.7500,7744.2500,7744.2500,8650.7500,7759.2500,7759.2500,7726.7500,7741.7500,7766.7500,7766.7500,7726.5000,7701.7500,7731.7500,7746.5000,7726.5000,7764.2500,7746.7500,7726.7500,7719.0000,7741.7500,7759.2500,7736.7500,7714.0000,7754.2500,7751.7500,7764.2500,7734.2500,7776.7500,7821.7500,7771.7500,7754.2500,7739.2500,7731.7500,7766.7500" -normalizing a fully mergeable tiling of boxes - 1,"large, embedded in 3d",100,3,3544800,11053.0267,11013.6467,11130.2600,267.4999,142.6634,401.6536,"benchmark,group:grid","11000.3333,10986.6667,11417.6667,11000.3333,12409.3333,11003.3333,10997.0000,10983.3333,11013.6667,10987.0000,10996.6667,10997.0000,11027.0000,11013.3333,11006.6667,11007.0000,10993.3333,11020.0000,11003.6667,11007.0000,11000.0000,11010.3333,11003.6667,11000.0000,10970.3333,10990.0000,11013.6667,11010.3333,10993.3333,10997.0000,11023.6667,10996.6667,10987.0000,10990.3333,12419.3333,11000.3333,10987.0000,10996.6667,11010.3333,11013.6667,11010.0000,11007.0000,11013.6667,10993.3333,10967.0000,10983.3333,11010.3333,11010.3333,11006.6667,11006.6667,10983.6667,11027.0000,11000.0000,10990.3333,10986.6667,11007.0000,10993.6667,11000.0000,11003.6667,10987.0000,11010.0000,11013.6667,11007.0000,11023.3333,12272.3333,10987.0000,10997.0000,10980.0000,10997.0000,10980.0000,10963.6667,10990.0000,10977.0000,10966.6667,10987.0000,10976.6667,10990.3333,10993.6667,10963.3333,11010.3333,10990.0000,10993.6667,10976.6667,10980.0000,10993.6667,10973.3333,10987.0000,10956.6667,11003.6667,10986.6667,10967.0000,10986.6667,10977.0000,10993.6667,12272.3333,10993.3333,10983.6667,10986.6667,10977.0000,10966.6667" -normalizing a fully mergeable tiling of boxes - 2,"small, native",100,233,2493100,107.3970,107.0477,108.1948,2.6138,1.3558,4.2396,"benchmark,group:grid","106.9742,106.9785,110.2017,106.2876,107.0215,107.0172,107.0601,107.0215,107.0601,107.0172,106.3734,106.8026,106.9742,106.9356,107.0601,122.8412,107.1073,107.1459,107.0644,106.5451,106.9313,107.0601,107.0172,107.1030,106.9785,106.8884,106.4163,107.0172,107.1888,107.1459,106.9356,106.9313,106.9313,106.4592,107.1888,107.0172,106.9785,106.9313,107.1030,107.1502,106.2446,107.2318,106.9785,106.8026,107.0601,107.0644,106.9313,106.4163,107.0215,107.0172,106.9742,106.9356,107.0172,107.0172,106.2446,120.0515,106.9313,106.9313,107.0215,107.0172,107.1459,106.9785,106.2446,106.8884,107.0644,107.0172,107.0172,107.0644,107.0601,106.3734,107.0215,107.1030,107.0601,106.9785,106.9742,106.9313,106.4635,106.5880,107.0601,107.1073,106.9742,107.0172,107.0215,106.9742,106.2446,106.9313,107.0215,106.9742,107.0215,106.9313,106.9313,106.3734,107.0215,107.0172,107.0172,123.1459,107.1030,106.9356,106.9313,106.2017" -normalizing a fully mergeable tiling of boxes - 2,"small, embedded in 3d",100,249,2490000,121.2983,120.9684,122.0724,2.5071,1.4079,4.0268,"benchmark,group:grid","120.8635,120.7430,124.3614,121.2249,120.6225,120.8233,120.8233,120.8233,120.8233,121.1044,120.9036,120.7831,120.6225,134.5060,120.7831,121.4659,120.8233,120.7871,120.8635,120.7028,120.7831,120.8233,120.8233,120.7831,120.8635,120.8273,120.8233,120.9438,120.9438,120.7430,120.6627,120.8635,120.9076,120.8233,121.0241,120.7831,120.9036,120.7831,120.8675,120.7430,120.7831,121.4257,120.8635,120.7430,121.0643,120.8635,135.7912,120.6627,120.8635,120.7028,120.7831,120.7028,120.8635,120.7430,120.8233,120.7430,120.7430,120.6627,120.5422,120.9036,120.9478,120.7430,120.7028,120.9438,121.2249,120.7831,120.8675,120.6627,120.7831,120.9438,120.7028,120.8233,120.8233,120.9036,120.7430,120.6627,120.8233,120.8233,120.9438,135.8313,120.6627,120.6627,120.8233,120.7028,120.9036,120.7430,120.9839,120.9839,120.8233,120.5823,120.8233,120.5823,120.8233,120.7831,120.8233,120.7430,120.9036,120.8233,120.8233,120.7028" -normalizing a fully mergeable tiling of boxes - 2,"medium, native",100,29,2575200,889.7628,886.5603,898.5700,24.7157,5.8806,51.1584,"benchmark,group:grid","877.4828,880.5517,906.4828,885.4138,879.8621,884.0345,884.3793,885.3793,883.6897,889.5517,892.3103,884.3793,885.4138,877.7931,883.6897,886.1034,879.1724,880.5862,880.5517,880.5862,882.2759,874.6897,882.3103,882.3103,880.8966,882.3103,881.2414,890.9310,886.4483,886.1034,875.7241,888.1724,883.0000,884.0345,1008.7241,893.6897,889.5172,895.0690,891.9655,891.6207,887.8276,887.4828,882.6207,894.3793,882.6207,895.4483,886.7931,890.2414,888.8621,895.4138,883.0000,889.5517,882.9655,884.0345,881.2414,889.1724,888.1379,888.5172,884.3793,887.4828,888.1724,879.1724,882.3103,888.5172,885.4138,890.2414,890.2414,884.3793,881.2414,884.0345,884.3793,889.5517,886.7586,1096.8621,894.7241,894.0345,892.3448,889.5517,887.7931,889.8621,891.6207,892.6552,880.5517,896.1379,889.8966,895.4138,890.2414,896.7931,891.6207,895.0690,889.8966,884.3793,885.0345,885.3793,880.9310,882.9655,881.9310,883.0000,876.7586,877.7931" -normalizing a fully mergeable tiling of boxes - 2,"medium, embedded in 3d",100,25,2585000,1031.1984,1028.5744,1037.5892,19.1892,4.6396,34.3284,"benchmark,group:grid","1031.4800,1033.4800,1056.3200,1033.0800,1027.8800,1031.0800,1031.0800,1030.2800,1033.4800,1031.4800,1032.2800,1035.4800,1036.6800,1026.2400,1030.6800,1036.6800,1033.0800,1031.8400,1031.4400,1031.0400,1032.6400,1034.2800,1031.8800,1025.4400,1030.2800,1162.9600,1022.6400,1027.0800,1025.0800,1029.8400,1026.6400,1025.8800,1021.8800,1028.2400,1025.0800,1028.2800,1028.2800,1026.6400,1027.4400,1025.8800,1025.0800,1021.0400,1026.6800,1021.8400,1027.4400,1024.6800,1035.0800,1031.0800,1025.8800,1030.6800,1018.2400,1023.4800,1025.4400,1028.6400,1028.2800,1027.0800,1025.8800,1030.2800,1031.0800,1020.6400,1023.0800,1027.4400,1025.0400,1028.6800,1160.5200,1029.4800,1027.8800,1029.4800,1021.8400,1025.8800,1029.0800,1029.0800,1028.6800,1027.8400,1028.2400,1029.4800,1027.0800,1025.0800,1027.8800,1027.8400,1028.6800,1031.0800,1030.6800,1030.6800,1029.8800,1026.2800,1020.2400,1024.6800,1026.2800,1024.2400,1029.4800,1026.6800,1031.8800,1029.8800,1028.2800,1023.8400,1027.4800,1028.2800,1030.2800,1031.4800" -normalizing a fully mergeable tiling of boxes - 2,"large, native",100,1,3705500,37108.3800,36983.8300,37335.4800,840.1985,501.5903,1231.1910,"benchmark,group:grid","37199.0000,36847.0000,39242.0000,37109.0000,37238.0000,41377.0000,36928.0000,37199.0000,36617.0000,37139.0000,36587.0000,37078.0000,36818.0000,37059.0000,37098.0000,37209.0000,37068.0000,37028.0000,36918.0000,36558.0000,36838.0000,36597.0000,36808.0000,36728.0000,36908.0000,37028.0000,36808.0000,36868.0000,36628.0000,36988.0000,36898.0000,37018.0000,41096.0000,36778.0000,36948.0000,36928.0000,36989.0000,36667.0000,36968.0000,37169.0000,36818.0000,36888.0000,36938.0000,37339.0000,36848.0000,36888.0000,36848.0000,37198.0000,36928.0000,37148.0000,36858.0000,37138.0000,36737.0000,36788.0000,37109.0000,36747.0000,36608.0000,36928.0000,36908.0000,40936.0000,36808.0000,37088.0000,36978.0000,36908.0000,37029.0000,36687.0000,37029.0000,36827.0000,37128.0000,37138.0000,37038.0000,36938.0000,36888.0000,36828.0000,37018.0000,36988.0000,36838.0000,37069.0000,36767.0000,36787.0000,36778.0000,36748.0000,36858.0000,36968.0000,36818.0000,36768.0000,40485.0000,36807.0000,36918.0000,36888.0000,37218.0000,36978.0000,37039.0000,36918.0000,36637.0000,37049.0000,36928.0000,36928.0000,37038.0000,36718.0000" -normalizing a fully mergeable tiling of boxes - 2,"large, embedded in 3d",100,1,4080900,40960.1600,40820.4700,41224.6900,948.5439,569.2864,1450.4180,"benchmark,group:grid","40835.0000,40726.0000,43079.0000,41707.0000,41286.0000,41076.0000,40915.0000,40795.0000,41156.0000,40655.0000,40806.0000,40705.0000,40645.0000,40916.0000,40845.0000,40675.0000,40284.0000,40805.0000,44463.0000,40665.0000,40896.0000,40565.0000,40665.0000,40635.0000,40595.0000,40765.0000,40935.0000,41026.0000,40705.0000,40846.0000,40845.0000,40515.0000,40605.0000,40615.0000,40776.0000,40885.0000,40555.0000,40866.0000,40665.0000,40615.0000,40705.0000,40985.0000,44513.0000,40845.0000,40796.0000,40825.0000,40525.0000,40715.0000,40404.0000,40565.0000,40645.0000,40545.0000,40846.0000,40765.0000,40826.0000,40615.0000,40835.0000,40736.0000,40965.0000,40696.0000,40895.0000,40645.0000,40525.0000,40635.0000,40565.0000,40605.0000,40384.0000,45885.0000,40525.0000,40876.0000,40645.0000,40936.0000,40605.0000,40685.0000,40745.0000,40445.0000,40735.0000,40836.0000,40986.0000,40525.0000,40745.0000,40906.0000,40665.0000,40815.0000,40886.0000,40685.0000,40936.0000,40956.0000,40565.0000,40745.0000,40725.0000,46326.0000,40856.0000,41036.0000,40755.0000,40835.0000,40765.0000,40785.0000,40675.0000,40705.0000" -normalizing a fully mergeable tiling of boxes - 3,"small, native",100,120,2496000,247.6567,246.9990,249.1650,4.9856,2.8308,8.0126,"benchmark,group:grid","247.5333,246.6167,251.6250,247.1250,246.3667,247.6167,277.2583,246.3750,245.7000,246.1167,246.9500,247.2833,247.4583,246.5333,246.5333,246.5333,246.5333,246.0333,246.0333,246.1167,245.4500,246.7000,246.6167,246.4500,248.1250,247.0333,246.2000,246.5333,246.2917,246.1167,246.8667,246.2833,246.2000,246.7000,246.5417,246.3667,245.8667,246.7000,246.5333,274.4250,246.3667,245.9500,247.0333,247.2000,247.0333,246.5333,246.2833,246.8667,246.3667,246.5333,246.7833,247.2833,246.8750,246.2833,246.8667,246.5333,246.9500,245.9500,246.6167,245.9500,246.7000,246.1167,246.5333,246.9583,245.8667,247.7000,247.2000,247.2917,246.5333,246.8667,247.3750,247.6167,246.1167,275.4250,247.7833,247.3750,247.3667,247.1167,246.8750,247.6167,247.1167,246.8750,246.3667,246.4500,247.0333,246.7917,246.8667,246.9500,247.0333,246.4583,246.6167,247.2000,246.9500,247.2083,246.7000,246.7833,247.2083,247.2000,247.6167,247.2083" -normalizing a fully mergeable tiling of boxes - 3,"medium, native",100,20,2606000,1311.4825,1306.2705,1323.0285,37.8833,21.6665,60.2527,"benchmark,group:grid","1303.8500,1304.9000,1387.0500,1307.3500,1515.3000,1311.4000,1304.8500,1301.9000,1306.8500,1304.4000,1303.3500,1303.3500,1304.9000,1305.3500,1304.4000,1306.3500,1305.4000,1307.4000,1305.8500,1310.4000,1305.3500,1305.3500,1304.9000,1305.3500,1305.4000,1306.8500,1305.3500,1305.9000,1305.8500,1306.4000,1306.3500,1304.3500,1307.4000,1305.3500,1306.9000,1309.4000,1306.8500,1305.4000,1305.3500,1303.8500,1307.4000,1305.3500,1527.8000,1306.9000,1302.8500,1301.9000,1302.3500,1302.4000,1301.8500,1302.9000,1301.8500,1303.4000,1302.3500,1301.9000,1302.8500,1303.9000,1301.3500,1302.9000,1302.8500,1305.9000,1302.3500,1304.4000,1302.8500,1303.4000,1301.8500,1303.4000,1301.3500,1300.9000,1302.3500,1300.3500,1299.9000,1301.8500,1302.4000,1301.3500,1302.4000,1303.8500,1304.4000,1302.8500,1302.9000,1302.8500,1520.8000,1305.3500,1305.8500,1301.4000,1302.8500,1307.4000,1301.3500,1301.9000,1304.3500,1300.9000,1302.3500,1301.8500,1304.3500,1305.9000,1300.3500,1306.9000,1304.3500,1304.4000,1301.3500,1302.9000" -normalizing a fully mergeable tiling of boxes - 3,"large, native",100,1,4807400,48532.4200,48213.4600,48917.5300,1786.1304,1511.3142,2157.2303,"benchmark,group:grid","46636.0000,50404.0000,53790.0000,50855.0000,51896.0000,51025.0000,49692.0000,50384.0000,51786.0000,50885.0000,49542.0000,49091.0000,49702.0000,49512.0000,48851.0000,48270.0000,47858.0000,48159.0000,47929.0000,47819.0000,48209.0000,52027.0000,51365.0000,49292.0000,48690.0000,48019.0000,47368.0000,47308.0000,46817.0000,47698.0000,51135.0000,49481.0000,48540.0000,48399.0000,47749.0000,47288.0000,50433.0000,48871.0000,48350.0000,48239.0000,48139.0000,47899.0000,54411.0000,49051.0000,47909.0000,47668.0000,47127.0000,46957.0000,46707.0000,46696.0000,46266.0000,46596.0000,46265.0000,46557.0000,46346.0000,46275.0000,46136.0000,50905.0000,49612.0000,48911.0000,48379.0000,47809.0000,47608.0000,53109.0000,47619.0000,47127.0000,46917.0000,48901.0000,48400.0000,47849.0000,47588.0000,47298.0000,47337.0000,47067.0000,47197.0000,46897.0000,46817.0000,49753.0000,50093.0000,49692.0000,49121.0000,48691.0000,48069.0000,54060.0000,50504.0000,49061.0000,47879.0000,48951.0000,49021.0000,47969.0000,47669.0000,47027.0000,47258.0000,47027.0000,47047.0000,47198.0000,46827.0000,46897.0000,46846.0000,46866.0000" -performing set operations between randomized regions - 2d,"union, small, native",100,29,2540400,879.0321,875.3372,887.5000,27.4262,15.0753,44.5828,"benchmark,group:grid","874.0000,874.3448,915.4483,1051.5862,877.7931,870.8621,882.2759,881.2759,879.5172,876.0690,877.1379,877.1034,878.1379,867.7586,875.3793,873.6552,872.6207,874.3448,873.3103,875.0345,875.0345,869.1724,871.5862,878.5172,878.8276,875.7241,874.3793,876.7586,877.1034,867.1034,873.6552,873.6552,872.6207,873.6552,875.3793,871.5862,872.2759,865.3448,872.2759,874.6897,875.0345,872.9655,1020.8276,878.5172,876.7586,875.0345,868.1379,877.7931,875.4138,876.0690,876.7586,873.3103,873.3103,873.0000,869.1379,875.0690,872.2759,874.0000,876.4138,874.0000,871.2414,871.2414,867.4483,875.7241,873.3103,873.6552,873.6552,873.6552,872.6207,874.0000,868.8276,871.2414,870.8966,874.3448,876.4138,873.6897,873.3103,873.6552,867.7931,874.0000,875.7241,873.6552,1022.5517,875.3793,873.6552,872.6207,876.4138,866.4138,872.9655,875.7241,872.2759,872.9655,874.6897,875.0345,875.0345,870.5517,873.6552,874.0000,873.6552,874.6897" -performing set operations between randomized regions - 2d,"union, small, embedded in 3d",100,25,2527500,1018.8200,1015.2992,1027.2644,26.0738,9.2586,45.7795,"benchmark,group:grid","1012.6400,1009.0000,1087.2000,1039.4800,1024.2800,1039.8800,1023.4800,1019.0400,1024.2800,1019.8400,1017.0800,1011.4400,1017.8400,1017.8400,1015.0800,1016.6400,1017.0400,1016.6400,1012.2400,1009.4400,1011.4400,1014.2400,1016.2400,1013.4400,1011.8400,1015.4400,1012.6400,1004.6000,1016.2800,1017.8400,1013.0400,1015.8400,1011.8400,1015.8800,1011.0400,1010.6400,1014.2400,1013.4400,1014.2400,1195.8000,1016.6400,1011.4400,1016.6400,1010.6000,1005.8000,1016.6800,1016.2400,1013.0400,1014.2400,1015.4400,1013.4800,1013.0400,1006.2000,1015.4800,1015.8400,1012.6400,1015.4400,1013.8400,1015.0800,1015.4400,1005.0400,1011.0400,1015.8400,1015.0400,1013.0400,1014.2400,1013.8800,1009.8400,1004.2000,1015.4400,1013.8400,1015.4400,1013.8400,1012.6400,1011.0400,1008.6400,1007.8400,1017.0400,1184.9600,1018.6400,1014.2400,1015.0400,1015.4400,1017.0400,1011.0400,1006.6400,1018.6400,1011.8400,1015.0400,1019.4800,1014.2400,1015.0400,1012.6400,1008.2400,1014.6400,1014.6400,1017.4400,1016.2400,1012.2400,1017.0400" -performing set operations between randomized regions - 2d,"intersection, small, native",100,113,2497300,221.6517,220.7476,223.3649,6.1260,3.5594,9.3394,"benchmark,group:grid","218.6283,222.2566,241.9469,219.6018,220.5841,220.6637,226.1681,224.3894,222.3540,221.0177,220.9381,218.5310,219.1593,221.6372,222.2655,220.9292,219.7788,220.7522,255.3363,216.4956,220.8496,217.9115,221.8230,222.0000,219.5133,221.4602,222.0000,219.0708,221.0177,222.1681,221.9115,219.9558,221.2920,221.9027,221.2035,222.0796,221.0265,219.1593,219.5133,219.1593,218.1858,219.9558,220.3097,222.0885,223.5044,222.8850,222.8850,222.1770,216.8496,221.6460,219.7788,220.7522,221.1150,219.6903,221.0177,221.1150,219.7788,220.8407,251.6991,216.7611,220.2212,219.6018,221.3805,215.2566,221.0265,221.0177,221.2035,220.8407,219.9558,221.4690,219.3363,221.1947,220.9381,219.9558,221.8230,221.3717,219.4248,217.1239,219.1593,219.7788,220.3982,219.6991,218.6283,219.0708,218.6283,221.1947,221.1947,221.9027,222.5310,221.8230,219.5133,218.9823,219.4248,220.1327,218.9823,220.0442,221.2920,220.3097,251.5221,216.3274" -performing set operations between randomized regions - 2d,"intersection, small, embedded in 3d",100,102,2509200,240.9002,239.9654,243.2552,6.5992,0.3612,12.0693,"benchmark,group:grid","239.8431,240.2451,242.2059,238.5686,239.1667,239.5490,239.8529,240.1373,240.2451,239.9412,240.0490,239.3529,239.9412,240.3333,239.8529,240.0392,240.0490,239.9412,240.0490,240.2353,240.0490,240.1373,239.9510,240.0392,240.0490,240.2353,239.8529,239.3529,240.0392,240.0392,240.0490,240.1373,240.0490,240.0392,239.9510,240.3333,239.8529,288.7549,239.8431,239.2549,239.8529,239.5490,239.9510,239.9412,240.0490,240.1373,239.8529,239.9412,239.8529,239.7451,240.2451,240.0392,239.9510,239.9412,239.9510,240.0392,240.1471,240.0392,239.7549,240.1373,239.8529,239.9412,240.2451,239.7451,240.1471,239.7451,239.7549,240.1373,239.9510,240.0392,239.7549,239.8431,240.1471,239.7451,240.2451,239.2549,239.8431,285.2353,239.5490,239.6569,240.0392,239.4510,239.8529,239.8431,240.1471,240.0392,240.3431,239.9412,240.0392,240.0392,239.8431,240.3333,240.0392,240.0490,240.1373,239.9510,240.2353,239.8529,240.0392,240.2451" -performing set operations between randomized regions - 2d,"difference, small, native",100,25,2527500,1013.2940,1009.2740,1021.4896,28.0664,16.3034,43.8537,"benchmark,group:grid","1008.2400,1006.6400,1081.9600,1044.7200,1022.6800,1021.8400,1018.6800,1015.8400,1013.8400,1170.9600,1007.8000,1002.2400,1013.4400,1007.4400,1010.2400,1012.6400,1010.6400,1009.0400,1010.6400,1001.0400,1009.4400,1009.4000,1009.4000,1007.8000,1009.4400,1008.2400,998.2400,1005.8000,1007.4400,1009.4400,1008.6400,1004.2400,1005.4000,1007.4000,999.4400,1009.0400,1006.2400,1007.4000,1005.0400,1003.0400,1009.8400,1005.4000,1002.2000,1005.0400,1001.8000,1007.4000,1007.8400,1007.4400,1160.9200,1007.0400,997.8000,1005.8400,1009.4400,1009.0400,1007.8400,1007.4400,1006.2400,1009.0400,1000.2000,1008.2400,1005.8400,1005.4000,1010.6000,1006.2000,1007.4400,999.0400,1005.8000,1007.8400,1007.8400,1009.8400,1007.8400,1006.6400,1003.4000,997.4400,1007.0400,1009.4400,1008.6000,1007.0000,1009.4400,1008.2400,1004.6400,999.8000,1007.0400,1005.8400,1009.0400,1007.4400,1007.8400,1005.0000,1159.7200,1001.4400,1013.8400,1009.8400,1009.4400,1008.2400,1012.2400,1009.4400,1007.0400,1001.4000,1010.6400,1011.4400" -performing set operations between randomized regions - 2d,"difference, small, embedded in 3d",100,21,2513700,1203.4000,1198.8367,1213.4238,32.8856,19.3527,51.8984,"benchmark,group:grid","1199.2857,1192.6190,1268.0000,1210.7619,1212.2381,1203.1429,1198.3810,1200.2381,1201.1905,1206.0476,1202.1429,1196.9048,1203.1429,1377.2857,1202.6667,1200.2857,1199.8095,1197.4286,1195.9524,1187.9048,1197.9048,1197.3810,1202.1905,1196.4762,1199.3333,1199.8095,1196.4762,1195.0000,1199.3333,1198.3810,1196.4762,1199.7619,1205.5238,1198.3333,1194.5714,1195.5238,1197.4286,1195.0000,1201.2381,1200.7619,1203.1429,1197.4286,1192.1429,1198.8571,1193.6190,1196.4762,1203.1429,1199.7619,1198.8095,1198.3810,1187.4286,1192.6190,1387.2857,1200.2381,1198.8571,1198.3810,1200.2857,1194.0952,1187.3810,1197.4286,1195.0000,1195.0476,1196.9524,1197.4286,1199.2857,1196.9048,1191.7143,1194.0476,1198.3810,1195.5238,1194.0952,1190.2381,1196.4762,1187.3810,1194.0952,1194.5238,1194.5238,1193.1429,1194.5238,1189.3333,1195.0476,1194.5238,1196.4762,1197.9048,1195.4762,1193.6190,1195.5238,1196.4286,1194.5238,1198.8571,1193.6190,1198.3333,1388.2857,1194.0476,1203.5714,1192.6190,1196.0000,1186.4286,1192.6667,1199.3333" -performing set operations between randomized regions - 2d,"union, medium, native",100,2,2660600,13340.6900,13291.2900,13450.2500,362.5207,193.1718,581.9419,"benchmark,group:grid","13394.5000,13389.5000,15118.0000,13459.5000,13409.5000,13354.0000,13339.0000,13254.0000,13324.0000,13274.5000,13319.0000,13309.5000,13264.0000,13339.5000,13419.5000,13369.5000,13269.0000,13319.5000,13234.0000,13314.0000,13194.0000,13164.0000,13339.0000,13204.0000,13133.5000,13334.5000,13274.0000,13364.5000,13314.5000,13274.0000,13219.0000,13359.0000,13214.0000,13179.0000,15468.0000,13239.5000,13389.0000,13254.5000,13184.0000,13304.0000,13229.5000,13269.0000,13304.5000,13279.0000,13299.5000,13289.0000,13264.0000,13264.0000,13274.0000,13289.5000,13149.0000,13244.0000,13274.0000,13279.0000,13264.0000,13144.0000,13329.5000,13194.0000,13264.0000,13254.0000,13229.0000,13244.0000,13174.0000,13274.5000,13309.0000,13189.5000,13189.0000,13269.0000,13184.0000,13204.0000,13239.5000,15503.5000,13299.0000,13224.0000,13274.5000,13289.0000,13234.0000,13269.0000,13259.0000,13304.5000,13374.5000,13334.0000,13314.5000,13309.0000,13294.0000,13214.0000,13254.5000,13209.0000,13304.0000,13259.5000,13324.0000,13244.5000,13339.0000,13309.5000,13314.0000,13399.5000,13209.5000,13334.0000,13254.5000,13274.0000" -performing set operations between randomized regions - 2d,"union, medium, embedded in 3d",100,2,2955600,14858.8500,14786.4950,15010.7350,508.1982,300.0406,844.7823,"benchmark,group:grid","14712.0000,14677.0000,16851.0000,15127.5000,14797.5000,18293.5000,14782.0000,14772.0000,14922.5000,14737.0000,14742.0000,14777.0000,14802.0000,14687.0000,14717.0000,14727.0000,14667.0000,14696.5000,14822.0000,14742.0000,14707.0000,14802.0000,14752.0000,14802.0000,14767.0000,14802.0000,14792.5000,14807.0000,14782.0000,14697.0000,14812.0000,14762.0000,14752.0000,14657.0000,14647.0000,14711.5000,14742.0000,14852.5000,14827.0000,17016.5000,14802.0000,14782.0000,14727.0000,14767.0000,14662.0000,14792.0000,14727.0000,14717.0000,14752.0000,14762.0000,14837.0000,14727.0000,14772.0000,14717.0000,14807.5000,14827.0000,14807.0000,14862.5000,14757.0000,14797.0000,14777.0000,14742.0000,14682.0000,14757.0000,14807.0000,14782.0000,14792.0000,14817.5000,14797.0000,14767.0000,14782.0000,14677.0000,16866.0000,14802.0000,14757.0000,14672.0000,14732.0000,14787.0000,14752.0000,14762.0000,14742.0000,14672.0000,14837.0000,14742.0000,14762.0000,14767.0000,14777.0000,14752.0000,14727.0000,14716.5000,14767.0000,14681.5000,14707.0000,14727.0000,14712.0000,14852.0000,14752.0000,14656.5000,14607.0000,14676.5000" -performing set operations between randomized regions - 2d,"intersection, medium, native",100,11,2578400,2353.2636,2344.8991,2372.4282,62.8931,33.6705,101.2484,"benchmark,group:grid","2324.1818,2729.5455,2378.0000,2334.2727,2336.0909,2335.0909,2336.0909,2333.3636,2346.0909,2339.7273,2349.7273,2351.5455,2347.9091,2352.4545,2337.0000,2339.7273,2336.0909,2344.2727,2353.3636,2345.1818,2343.3636,2353.3636,2346.0909,2341.5455,2719.5455,2347.9091,2335.1818,2324.1818,2342.3636,2343.2727,2342.4545,2337.0000,2338.8182,2336.0909,2344.2727,2332.4545,2321.4545,2340.6364,2338.8182,2339.7273,2346.0909,2342.4545,2344.2727,2340.6364,2336.0909,2316.0000,2336.0909,2337.9091,2331.4545,2334.2727,2345.1818,2343.3636,2345.1818,2342.4545,2318.8182,2334.1818,2342.4545,2342.4545,2337.0000,2343.3636,2342.4545,2337.0000,2671.2727,2347.0000,2333.2727,2340.5455,2347.0000,2351.5455,2350.6364,2348.8182,2346.0909,2353.3636,2347.0000,2329.7273,2349.7273,2347.9091,2346.0909,2342.4545,2346.0909,2345.1818,2351.5455,2346.0909,2334.2727,2347.0000,2355.1818,2347.0000,2348.8182,2350.6364,2349.7273,2348.8182,2350.6364,2327.8182,2343.2727,2345.1818,2338.8182,2347.9091,2349.7273,2346.0000,2349.7273,2347.0000" -performing set operations between randomized regions - 2d,"intersection, medium, embedded in 3d",100,12,2582400,2076.6825,2069.7942,2094.0092,50.3918,10.1801,90.6512,"benchmark,group:grid","2063.7500,2062.0833,2118.0000,2084.6667,2076.2500,2074.5833,2082.1667,2077.0833,2077.0833,2076.2500,2084.5833,2073.0000,2076.2500,2077.0833,2076.3333,2080.4167,2077.9167,2073.0000,2077.0833,2075.4167,2076.3333,2077.9167,2074.5833,2427.8333,2073.7500,2071.2500,2073.7500,2072.1667,2077.9167,2081.2500,2076.3333,2082.9167,2077.0833,2079.5833,2067.0833,2068.7500,2083.0000,2067.9167,2077.9167,2075.4167,2074.5833,2073.7500,2073.7500,2075.5000,2074.5833,2072.9167,2072.0833,2075.5000,2077.0833,2076.2500,2077.1667,2070.4167,2077.0833,2082.1667,2082.0833,2073.7500,2060.4167,2063.7500,2071.3333,2063.7500,2067.9167,2071.2500,2076.2500,2416.9167,2052.9167,2057.9167,2052.0833,2057.0833,2057.0833,2057.0833,2059.5000,2054.5000,2058.7500,2053.7500,2057.9167,2061.2500,2057.9167,2052.9167,2055.4167,2057.0000,2057.9167,2061.2500,2059.5833,2062.0833,2056.2500,2052.9167,2066.2500,2067.0833,2062.0833,2061.2500,2063.7500,2062.9167,2061.2500,2067.9167,2062.9167,2060.4167,2066.2500,2059.5833,2064.5833,2062.9167" -performing set operations between randomized regions - 2d,"difference, medium, native",100,4,3003600,8248.1300,8164.1275,8595.9250,744.8436,149.8884,1734.7117,"benchmark,group:grid","8175.0000,8130.0000,9129.5000,8295.2500,8207.5000,8167.5000,8175.0000,8205.0000,8152.5000,8160.0000,8205.2500,8210.0000,8200.0000,8137.5000,15443.7500,8140.0000,8180.0000,8137.5000,8135.0000,8180.0000,8160.0000,8112.5000,8144.7500,8132.5000,8167.5000,8115.0000,8135.0000,8162.5000,8230.0000,8115.0000,8170.0000,8109.7500,8162.2500,8097.2500,8135.0000,8150.0000,8175.0000,8094.7500,8172.5000,8172.5000,8162.5000,8125.0000,8132.5000,8180.0000,9269.5000,8112.5000,8107.5000,8154.7500,8104.7500,8137.5000,8157.5000,8147.5000,8145.0000,8180.0000,8145.0000,8190.0000,8117.2500,8140.0000,8112.5000,8167.5000,8150.0000,8172.5000,8104.7500,8195.2500,8092.2500,8087.5000,8177.5000,8157.5000,8059.7500,8150.0000,8039.7500,8094.7500,8135.0000,8167.5000,9096.7500,8147.5000,8127.5000,8132.5000,8107.2500,8122.5000,8130.0000,8112.2500,8122.5000,8097.5000,8132.2500,8122.5000,8137.5000,8157.5000,8097.2500,8125.0000,8117.5000,8177.5000,8132.5000,8117.2500,8107.5000,8132.5000,8119.7500,8145.0000,8140.0000,8202.5000" -performing set operations between randomized regions - 2d,"difference, medium, embedded in 3d",100,4,3195600,8801.6100,8767.3375,8878.7300,254.6318,135.5915,415.7850,"benchmark,group:grid","8758.5000,8743.5000,9041.7500,8776.0000,8781.2500,8758.7500,8721.0000,8843.7500,8793.7500,8763.5000,8786.2500,8796.2500,8803.7500,8761.0000,8703.5000,8773.7500,8781.2500,8801.0000,8748.5000,8751.0000,8741.2500,8763.5000,8771.2500,8766.0000,8758.5000,8736.0000,8783.7500,8706.0000,8791.2500,8713.5000,10058.5000,8713.5000,8818.7500,8756.0000,8786.2500,8768.5000,8791.0000,8736.2500,8781.0000,8721.2500,8778.5000,8746.2500,8726.0000,8748.5000,8741.2500,8778.5000,8736.2500,8713.5000,8706.0000,8748.5000,8773.5000,8758.7500,8736.0000,8708.5000,8783.7500,8706.0000,8761.0000,8728.5000,10394.2500,8768.5000,8736.2500,8741.0000,8773.7500,8786.0000,8748.7500,8696.0000,8766.0000,8716.2500,8788.5000,8733.7500,8673.5000,8733.5000,8763.5000,8768.5000,8743.5000,8771.0000,8731.0000,8768.7500,8721.0000,8778.7500,8733.5000,8711.0000,8836.2500,8771.0000,8776.2500,8753.5000,8781.2500,10218.7500,8703.5000,8736.0000,8721.0000,8773.7500,8738.5000,8738.7500,8753.5000,8741.0000,8781.2500,8753.7500,8768.5000,8738.7500" -performing set operations between randomized regions - 2d,"union, large, native",100,1,15885600,159047.9400,158742.1300,159440.9500,1763.0769,1443.1690,2099.1260,"benchmark,group:grid","158158.0000,158729.0000,162316.0000,158949.0000,158489.0000,158368.0000,158459.0000,158949.0000,162857.0000,157697.0000,157947.0000,158278.0000,158648.0000,157978.0000,163338.0000,158228.0000,158288.0000,158248.0000,159110.0000,157947.0000,161995.0000,158639.0000,158399.0000,158769.0000,157927.0000,164520.0000,164600.0000,158519.0000,157817.0000,157747.0000,158409.0000,158278.0000,158168.0000,162205.0000,158308.0000,158769.0000,158358.0000,157927.0000,157707.0000,162717.0000,158278.0000,158038.0000,158669.0000,158298.0000,158308.0000,162737.0000,158318.0000,158298.0000,158499.0000,158428.0000,158348.0000,158569.0000,163047.0000,158188.0000,158238.0000,158108.0000,157807.0000,158379.0000,162496.0000,158238.0000,158538.0000,157987.0000,158228.0000,158318.0000,162497.0000,158087.0000,158549.0000,158869.0000,157717.0000,157948.0000,162215.0000,158127.0000,158078.0000,158539.0000,158047.0000,157937.0000,157857.0000,162436.0000,158449.0000,158228.0000,158068.0000,158147.0000,158107.0000,162176.0000,158719.0000,158178.0000,158298.0000,158939.0000,158068.0000,163057.0000,158609.0000,157627.0000,157907.0000,158980.0000,157877.0000,158148.0000,162907.0000,158198.0000,158098.0000,157987.0000" -performing set operations between randomized regions - 2d,"union, large, embedded in 3d",100,1,16288200,172306.0600,171981.4700,172708.8600,1839.7498,1538.6283,2122.3869,"benchmark,group:grid","171704.0000,176011.0000,176793.0000,177364.0000,172295.0000,171403.0000,171403.0000,170822.0000,171363.0000,176392.0000,170942.0000,171403.0000,170832.0000,170792.0000,175851.0000,171223.0000,171463.0000,170672.0000,171082.0000,171443.0000,175691.0000,171343.0000,171183.0000,171152.0000,171223.0000,171373.0000,175621.0000,172495.0000,171173.0000,171633.0000,171473.0000,171333.0000,175982.0000,171082.0000,171163.0000,171222.0000,171423.0000,172144.0000,176322.0000,171704.0000,171022.0000,171313.0000,171503.0000,176803.0000,172465.0000,171723.0000,170802.0000,171112.0000,171564.0000,176603.0000,171092.0000,171343.0000,171303.0000,171252.0000,172024.0000,175721.0000,171473.0000,171613.0000,171754.0000,170892.0000,171283.0000,175621.0000,171523.0000,171323.0000,171553.0000,171193.0000,171443.0000,175691.0000,171323.0000,172014.0000,171583.0000,171583.0000,175350.0000,171684.0000,171563.0000,171383.0000,171103.0000,171903.0000,175260.0000,171673.0000,171303.0000,171664.0000,171783.0000,171343.0000,175601.0000,171043.0000,171773.0000,171754.0000,171253.0000,172104.0000,175771.0000,171614.0000,171012.0000,171293.0000,171974.0000,171814.0000,175781.0000,171523.0000,171373.0000,171413.0000" -performing set operations between randomized regions - 2d,"intersection, large, native",100,2,4060800,20352.6050,20275.8150,20501.8850,531.2011,301.4867,800.5486,"benchmark,group:grid","20162.0000,20237.0000,21379.5000,20383.0000,20302.5000,20317.5000,20212.5000,20267.5000,20242.0000,20247.5000,20237.5000,20307.5000,20262.5000,20302.5000,20162.5000,20232.0000,20388.0000,20207.0000,20177.0000,20237.5000,20237.5000,20247.5000,20097.0000,20212.5000,22722.0000,20247.5000,20137.0000,20202.5000,20247.5000,20227.0000,20252.5000,20232.5000,20272.5000,20247.5000,20277.5000,20227.5000,20187.0000,20242.5000,20177.5000,20172.0000,20212.5000,20222.5000,20292.5000,20252.5000,20322.5000,20287.5000,20172.0000,20257.5000,20207.5000,22687.0000,20257.5000,20267.5000,20237.5000,20237.0000,20182.5000,20212.5000,20202.0000,20222.5000,20237.5000,20202.5000,20127.0000,20217.5000,20232.5000,20172.0000,20157.5000,20182.0000,20202.5000,20197.5000,20192.0000,20272.5000,20222.5000,20292.5000,20182.5000,22762.0000,20292.5000,20242.5000,20202.5000,20232.0000,20202.5000,20267.5000,20237.5000,20307.5000,20182.0000,20222.5000,20242.5000,20207.5000,20237.5000,20282.0000,20287.0000,20207.0000,20252.5000,20257.5000,20317.5000,20162.5000,20192.0000,20227.5000,20227.5000,20257.5000,23303.0000,20493.0000" -performing set operations between randomized regions - 2d,"intersection, large, embedded in 3d",100,2,4002000,18967.6450,18793.8250,19579.2400,1481.9976,411.2824,3372.2269,"benchmark,group:grid","18624.0000,18704.5000,20132.0000,18919.5000,18820.0000,18874.5000,22081.0000,18950.0000,18800.0000,18759.5000,18744.5000,18739.5000,18794.5000,18820.0000,18619.5000,18644.0000,18674.5000,18739.5000,18734.5000,18775.0000,18754.5000,18724.5000,18739.5000,18699.5000,18714.5000,18664.5000,18649.5000,18684.5000,18679.5000,18859.5000,18634.5000,18639.5000,20808.5000,18774.5000,18865.0000,18734.5000,18714.5000,18729.5000,18739.5000,18754.5000,18654.5000,18659.5000,18714.5000,18809.5000,18629.5000,18654.5000,18699.5000,18804.5000,18820.0000,18789.5000,18754.5000,18634.5000,18714.5000,18699.5000,18649.5000,18839.5000,18599.5000,18774.5000,18699.5000,32871.5000,18744.5000,18779.5000,18810.0000,18799.5000,18729.5000,18754.5000,18719.5000,18795.0000,18699.5000,18619.0000,18770.0000,18719.5000,18799.5000,18724.5000,18704.5000,18739.5000,18815.0000,18749.5000,18764.5000,18694.5000,18784.5000,18709.5000,18885.0000,18719.5000,18724.5000,21435.0000,18714.5000,18724.5000,18609.0000,18704.5000,18644.5000,18684.5000,18674.5000,18614.5000,18699.5000,18709.5000,18694.5000,18694.5000,18729.5000,18689.5000" -performing set operations between randomized regions - 2d,"difference, large, native",100,1,62917900,647238.2900,646572.1500,648271.8900,4162.7832,2990.9098,7294.3637,"benchmark,group:grid","648627.0000,642686.0000,650591.0000,648928.0000,645702.0000,646894.0000,646954.0000,643317.0000,648387.0000,653987.0000,643738.0000,650842.0000,649299.0000,643638.0000,647025.0000,648287.0000,642756.0000,649058.0000,642035.0000,650000.0000,648527.0000,644670.0000,646644.0000,645952.0000,643448.0000,648337.0000,646023.0000,644389.0000,650161.0000,646062.0000,642306.0000,648217.0000,643678.0000,648106.0000,651042.0000,641303.0000,649359.0000,647926.0000,644520.0000,647556.0000,647996.0000,646103.0000,648767.0000,648928.0000,642475.0000,651843.0000,652034.0000,645472.0000,648507.0000,642125.0000,646514.0000,653707.0000,641834.0000,650240.0000,647405.0000,644510.0000,647786.0000,647205.0000,646233.0000,649138.0000,645371.0000,645061.0000,652555.0000,646994.0000,645902.0000,648418.0000,650080.0000,642616.0000,646654.0000,642285.0000,652274.0000,650661.0000,641975.0000,647606.0000,649359.0000,643257.0000,674968.0000,646964.0000,641885.0000,649499.0000,652044.0000,642486.0000,649509.0000,649980.0000,642256.0000,646864.0000,642666.0000,646914.0000,646783.0000,646944.0000,647666.0000,654017.0000,646464.0000,649579.0000,648608.0000,641133.0000,647255.0000,646043.0000,644800.0000,647635.0000" -performing set operations between randomized regions - 2d,"difference, large, embedded in 3d",100,1,71409300,715077.2300,714030.4800,717841.0700,8083.9803,3414.0234,17059.0630,"benchmark,group:grid","715183.0000,714883.0000,717859.0000,718039.0000,712178.0000,712569.0000,714422.0000,712128.0000,712589.0000,712528.0000,713541.0000,711817.0000,713931.0000,714623.0000,722978.0000,710676.0000,713240.0000,715594.0000,710615.0000,715484.0000,713861.0000,717137.0000,713320.0000,714102.0000,716365.0000,710154.0000,714843.0000,713771.0000,783783.0000,709523.0000,717528.0000,714492.0000,715765.0000,713881.0000,713721.0000,716456.0000,712328.0000,715735.0000,717227.0000,714322.0000,708851.0000,717909.0000,715414.0000,707429.0000,714092.0000,714883.0000,720093.0000,708791.0000,714562.0000,716406.0000,710324.0000,721185.0000,715374.0000,713710.0000,709743.0000,715755.0000,713610.0000,714873.0000,719501.0000,717518.0000,714602.0000,709052.0000,720794.0000,717838.0000,706918.0000,714172.0000,716145.0000,713340.0000,707619.0000,719021.0000,714492.0000,710064.0000,713200.0000,712749.0000,715805.0000,709994.0000,714372.0000,712238.0000,711096.0000,716216.0000,711877.0000,742165.0000,708842.0000,716826.0000,718549.0000,709873.0000,713220.0000,712779.0000,718129.0000,711506.0000,715885.0000,714022.0000,709473.0000,716095.0000,715494.0000,719532.0000,711427.0000,715484.0000,713440.0000,710164.0000" -performing set operations between randomized regions - 3d,"union, small, native",100,7,2706200,3886.8614,3873.1643,3917.0629,100.2127,56.2313,161.8974,"benchmark,group:grid","3854.2857,3878.4286,4402.2857,3921.4286,3922.8571,3901.4286,3924.2857,3912.8571,3891.4286,3894.2857,3872.7143,3878.5714,3861.2857,3898.5714,3869.8571,3888.5714,3918.5714,3890.0000,3855.5714,3878.5714,3872.7143,3901.4286,3911.4286,3900.0000,3858.4286,3860.0000,3862.7143,3884.2857,3885.5714,3868.5714,3864.1429,4442.4286,3872.8571,3881.2857,3884.1429,3867.1429,3847.0000,3862.7143,3874.2857,3878.4286,3871.4286,3871.2857,3854.1429,3872.8571,3858.4286,3875.7143,3865.5714,3877.1429,3859.8571,3882.8571,3841.2857,3865.5714,3852.7143,3874.2857,3864.1429,3855.7143,3871.2857,3854.1429,3865.7143,3859.8571,3874.2857,3857.0000,3874.1429,3861.4286,3865.5714,3849.8571,3854.2857,3854.1429,4491.1429,3854.1429,3848.4286,3870.0000,3848.4286,3892.7143,3858.4286,3879.8571,3845.7143,3877.0000,3838.4286,3861.4286,3841.2857,3867.0000,3849.8571,3854.1429,3838.4286,3868.4286,3871.2857,3845.5714,3865.5714,3859.8571,3857.1429,3864.1429,3875.7143,3854.1429,3879.8571,3841.2857,3862.7143,3851.2857,3848.4286,3844.1429" -performing set operations between randomized regions - 3d,"intersection, small, native",100,162,2494800,154.2169,153.7648,155.2951,3.3149,1.0013,5.9014,"benchmark,group:grid","154.0432,155.2778,157.5123,152.5617,153.2407,153.4259,153.5494,153.3642,153.3025,153.4259,153.4259,153.8025,154.3519,153.7407,152.8086,153.4259,155.5926,154.9691,152.5617,153.1173,153.5556,153.1173,153.1173,153.3642,153.1173,152.1296,154.1111,155.0309,154.7901,154.1667,153.0556,154.2284,151.9444,153.2407,153.1790,153.6728,153.7407,177.7901,156.0247,154.5432,152.1914,154.3519,154.6667,155.0988,154.7840,154.9136,154.9136,152.0679,154.4136,154.4815,154.7840,154.5432,153.8580,153.3025,155.1605,152.2531,155.0370,153.6728,153.2407,153.5494,154.2963,153.2407,152.0679,153.4877,153.2407,153.1173,153.3025,153.2407,153.2407,152.0679,153.0556,153.7963,154.0494,153.6728,153.4259,153.4259,152.0062,174.8889,154.7284,154.3519,154.2963,154.8457,155.7778,154.2346,153.0556,155.0988,153.6111,153.1173,153.4877,154.8519,155.0370,151.8765,153.4321,153.1790,153.0556,153.3025,153.3642,153.9259,152.6852,154.0432" -performing set operations between randomized regions - 3d,"difference, small, native",100,19,2591600,1375.4795,1370.2916,1386.4763,37.0990,21.4038,59.1427,"benchmark,group:grid","1376.7368,1370.3684,1448.9474,1382.5263,1389.3684,1374.6316,1377.2632,1368.2632,1377.7895,1367.2105,1368.2632,1374.0526,1383.5789,1365.1053,1374.6316,1374.6316,1364.0526,1358.7895,1358.7895,1360.8947,1370.9474,1373.5263,1370.4211,1594.4737,1364.0526,1366.2105,1364.0526,1365.1053,1358.7895,1362.5263,1364.5789,1368.7895,1370.9474,1374.5789,1365.6842,1361.4211,1369.3158,1367.7895,1370.3684,1370.9474,1361.9474,1372.4737,1374.6316,1371.4211,1371.4737,1374.0526,1365.6316,1361.9474,1369.8421,1365.1579,1370.8947,1372.0000,1375.6316,1376.7368,1360.8947,1369.3684,1367.7368,1363.5263,1358.2632,1378.3158,1376.2105,1563.8947,1354.5789,1353.0000,1362.4737,1359.8421,1373.5789,1369.3158,1357.7368,1367.7895,1367.2105,1364.5789,1366.7368,1374.5789,1365.6316,1367.7895,1363.5263,1372.0000,1356.1053,1367.2105,1370.3684,1364.1053,1359.8421,1366.1579,1367.2105,1358.2632,1367.7895,1368.2632,1365.6316,1370.3684,1369.8421,1371.4737,1369.3158,1366.7368,1368.7895,1380.4211,1373.5789,1365.6316,1372.4737,1575.5263" -performing set operations between randomized regions - 3d,"union, medium, native",100,2,4354800,21887.5700,21809.7150,22019.1750,507.0333,320.4675,699.5546,"benchmark,group:grid","21905.5000,21825.5000,23729.0000,22046.0000,23854.5000,21905.5000,21760.0000,21845.0000,21805.5000,21790.5000,21685.0000,21775.5000,21725.0000,21795.5000,21710.0000,21755.0000,21825.5000,21850.5000,21690.0000,21820.5000,21835.5000,21775.5000,21875.5000,21830.0000,21830.0000,21810.5000,21810.5000,24064.5000,21725.5000,21750.0000,21765.5000,21785.5000,21730.0000,21810.5000,21645.0000,21650.0000,21740.5000,21735.0000,21710.5000,21670.0000,21595.0000,21855.5000,21755.5000,21690.0000,21575.0000,21855.5000,21615.0000,21825.5000,21640.0000,21835.5000,23964.5000,21765.0000,21875.5000,21740.5000,21700.0000,21780.5000,21770.5000,21685.0000,21720.0000,21805.5000,21835.5000,21810.5000,21780.0000,21820.0000,21956.0000,21770.0000,21775.5000,21725.0000,21800.5000,21655.0000,21730.5000,21670.0000,21760.5000,23749.0000,21700.0000,21785.5000,21790.5000,21620.0000,21650.0000,21710.0000,21765.5000,21670.0000,21710.5000,21720.0000,21780.5000,21780.0000,21770.0000,21745.5000,21725.0000,21735.5000,21760.0000,21640.0000,21790.5000,21800.5000,21695.0000,23849.5000,21875.5000,21730.0000,21765.5000,21655.0000" -performing set operations between randomized regions - 3d,"intersection, medium, native",100,10,2561000,2611.1150,2601.6580,2634.2770,72.3230,32.8546,127.8653,"benchmark,group:grid","2609.8000,2604.7000,2630.7000,2598.7000,2603.7000,2596.8000,2597.7000,2604.7000,2605.8000,2604.7000,2601.8000,2599.7000,2583.7000,2601.8000,2598.7000,2596.7000,2971.4000,2598.7000,2596.8000,2598.7000,2602.7000,2597.8000,2603.7000,2579.7000,2596.8000,2599.7000,2599.7000,2598.8000,2601.7000,2602.8000,2596.7000,2597.7000,2598.8000,2578.7000,2597.7000,2599.7000,2598.8000,2601.7000,2597.8000,2596.7000,2598.7000,2598.8000,2591.7000,2585.7000,2598.7000,2597.8000,2597.7000,2602.7000,2608.7000,2598.7000,2599.8000,2602.7000,2579.7000,2594.8000,3138.7000,2600.8000,2597.7000,2598.7000,2598.8000,2601.7000,2600.8000,2600.7000,2597.7000,2603.8000,2579.7000,2596.7000,2599.8000,2601.7000,2600.7000,2599.8000,2602.7000,2599.8000,2599.7000,2577.7000,2599.7000,2597.8000,2600.7000,2600.8000,2601.7000,2598.7000,2601.8000,2598.7000,2601.8000,2579.7000,2599.7000,2599.7000,2598.8000,2600.7000,2594.7000,2601.7000,2597.7000,2596.8000,2919.3000,2598.7000,2583.7000,2608.7000,2605.8000,2596.7000,2605.7000,2614.8000" -performing set operations between randomized regions - 3d,"difference, medium, native",100,3,3373200,11302.6000,11259.6700,11383.3433,291.3844,167.3530,438.8478,"benchmark,group:grid","11160.3333,11357.6667,12777.0000,11474.3333,11321.0000,11284.0000,11381.0000,11401.0000,11337.6667,11250.6667,11274.0000,11320.6667,11257.3333,11270.6667,11240.6667,11220.6667,11170.3333,11150.6667,11267.3333,11284.0000,11187.3333,11140.3333,11264.3333,12696.6667,11167.3333,11147.0000,11137.0000,11300.6667,11280.6667,11297.3333,11153.6667,11280.6667,11240.6667,11354.3333,11177.3333,11217.3333,11157.0000,11264.0000,11417.6667,11281.0000,11200.3333,11240.6667,11254.3333,11167.0000,11240.6667,11260.6667,11281.0000,11224.0000,11264.0000,11290.6667,11270.6667,11237.3333,12837.0000,11180.6667,11270.6667,11200.6667,11150.6667,11220.3333,11190.3333,11387.6667,11214.0000,11190.6667,11100.3333,11113.6667,11210.6667,11297.3333,11213.6667,11317.6667,11204.0000,11244.0000,11190.3333,11240.6667,11240.6667,11150.3333,11130.3333,11203.6667,11254.0000,11324.3333,11157.0000,11267.3333,11230.6667,11297.3333,12413.0000,11217.3333,11334.0000,11277.3333,11240.6667,11297.6667,11260.6667,11274.0000,11244.0000,11247.3333,11210.6667,11240.6667,11194.0000,11384.3333,11177.0000,11204.0000,11217.3333,11300.6667" -performing set operations between randomized regions - 3d,"union, large, native",100,1,218921300,2190028.0400,2188927.4200,2192889.2800,8374.6067,3928.3556,17332.2382,"benchmark,group:grid","2184979.0000,2187324.0000,2189197.0000,2188176.0000,2189398.0000,2192864.0000,2189248.0000,2188095.0000,2186934.0000,2191091.0000,2192634.0000,2189097.0000,2188336.0000,2186192.0000,2187715.0000,2186402.0000,2197263.0000,2187945.0000,2180290.0000,2189638.0000,2193155.0000,2188556.0000,2189619.0000,2187213.0000,2190450.0000,2196831.0000,2189888.0000,2189027.0000,2192022.0000,2211550.0000,2187414.0000,2189769.0000,2190480.0000,2186833.0000,2189779.0000,2190630.0000,2188105.0000,2188827.0000,2190350.0000,2187825.0000,2182505.0000,2187153.0000,2191152.0000,2189498.0000,2188606.0000,2184789.0000,2187615.0000,2189728.0000,2186413.0000,2187273.0000,2187504.0000,2187154.0000,2187263.0000,2259781.0000,2191161.0000,2187444.0000,2182485.0000,2189849.0000,2193395.0000,2189258.0000,2186693.0000,2186642.0000,2188687.0000,2190781.0000,2187384.0000,2187544.0000,2185420.0000,2186883.0000,2190640.0000,2186713.0000,2187133.0000,2186733.0000,2190751.0000,2188355.0000,2219064.0000,2190390.0000,2188816.0000,2189257.0000,2188636.0000,2191541.0000,2186732.0000,2186873.0000,2191211.0000,2190860.0000,2192964.0000,2188416.0000,2188947.0000,2188516.0000,2186483.0000,2195429.0000,2187795.0000,2187595.0000,2186742.0000,2190590.0000,2187223.0000,2194818.0000,2190019.0000,2185971.0000,2188045.0000,2188345.0000" -performing set operations between randomized regions - 3d,"intersection, large, native",100,2,3189200,16018.4650,15944.2550,16157.1200,502.9183,286.8120,772.0658,"benchmark,group:grid","15648.5000,15734.0000,16114.5000,17948.0000,15784.0000,16049.5000,15633.5000,15794.0000,15729.0000,16059.5000,15789.0000,15979.5000,15874.0000,15729.0000,16014.0000,15904.5000,15723.5000,15894.0000,15658.5000,16014.5000,15929.5000,16074.5000,15884.0000,15819.0000,15934.5000,16029.0000,15844.0000,16089.5000,16174.5000,16049.5000,16129.5000,15829.5000,15994.0000,16064.5000,18158.5000,15909.5000,15844.0000,15734.0000,15658.5000,15909.0000,15864.0000,15894.0000,16159.5000,15788.5000,15974.5000,15954.5000,15964.0000,16200.0000,15799.0000,16084.5000,15844.0000,15899.0000,15959.0000,15964.5000,15804.0000,15984.0000,15718.5000,15834.0000,15934.5000,15884.0000,16175.0000,16084.5000,15854.0000,16039.5000,15974.0000,18939.5000,15899.5000,16059.5000,16049.5000,15889.0000,15794.0000,15809.0000,16054.5000,16265.0000,16079.5000,15924.0000,15864.5000,15864.0000,16009.5000,16014.0000,15904.0000,15874.0000,15879.0000,15934.0000,15769.0000,15694.0000,15934.0000,16094.5000,15919.5000,15839.0000,15974.0000,16039.0000,15724.0000,15854.0000,15899.5000,16034.5000,15964.0000,18424.0000,16049.5000,15759.0000" -performing set operations between randomized regions - 3d,"difference, large, native",100,1,643043000,6249128.5400,6220620.9900,6292761.7800,176627.1581,133135.0384,293845.6080,"benchmark,group:grid","6180091.0000,6204477.0000,6647657.0000,7342224.0000,6459291.0000,6434624.0000,6400509.0000,6461295.0000,6457818.0000,6473248.0000,6450574.0000,6437981.0000,6425336.0000,6451587.0000,6437089.0000,6426238.0000,6473428.0000,6432580.0000,6459441.0000,6427761.0000,6402072.0000,6412752.0000,6466404.0000,6460724.0000,6407853.0000,6506761.0000,6438923.0000,6416580.0000,6436628.0000,6622791.0000,6264381.0000,6159653.0000,6124387.0000,6175954.0000,6126209.0000,6183197.0000,6155334.0000,6163710.0000,6250105.0000,6237330.0000,6142210.0000,6151347.0000,6176054.0000,6169051.0000,6176786.0000,6185592.0000,6173439.0000,6173630.0000,6154623.0000,6124126.0000,6150866.0000,6173429.0000,6138012.0000,6124787.0000,6153932.0000,6126681.0000,6158350.0000,6176194.0000,6165043.0000,6158842.0000,6178549.0000,6112674.0000,6154784.0000,6129666.0000,6129516.0000,6155475.0000,6148462.0000,6124306.0000,6165685.0000,6128865.0000,6143592.0000,6151348.0000,6124506.0000,6156387.0000,6157078.0000,6138022.0000,6132021.0000,6136099.0000,6125919.0000,6130237.0000,6133824.0000,6142401.0000,6137811.0000,6159031.0000,6170494.0000,6162579.0000,6118214.0000,6141709.0000,6146729.0000,6121120.0000,6164993.0000,6149122.0000,6148712.0000,6184259.0000,6170183.0000,6148622.0000,6155605.0000,6173319.0000,6167228.0000,6145717.0000" -"normalizing a fully mergeable, complex tiling of boxes - 2d","small, native",100,13,2561000,2191.5369,2181.7154,2210.7238,66.3205,36.5091,99.6854,"benchmark,group:grid","2178.6154,2175.5385,2509.2308,2200.9231,2201.0000,2213.2308,2215.6154,2194.7692,2191.6923,2184.0000,2228.6923,2194.7692,2197.9231,2171.6154,2176.3077,2183.2308,2170.1538,2171.6154,2177.8462,2180.1538,2175.4615,2170.0769,2174.0000,2171.6154,2531.6154,2186.3077,2177.0769,2177.7692,2184.7692,2182.4615,2190.9231,2172.4615,2170.1538,2170.8462,2187.0769,2178.6154,2173.2308,2173.1538,2170.1538,2182.4615,2173.9231,2163.9231,2172.4615,2170.8462,2171.6923,2171.6154,2174.7692,2165.5385,2169.3077,2166.3077,2170.8462,2171.6923,2161.6154,2172.4615,2178.6154,2173.9231,2181.6923,2181.6923,2170.9231,2177.0769,2537.6923,2185.5385,2178.6154,2186.3077,2187.8462,2182.4615,2175.5385,2177.0000,2180.9231,2167.0769,2171.6154,2170.9231,2179.3846,2180.9231,2183.2308,2172.3846,2181.6923,2173.2308,2177.0000,2174.6923,2180.1538,2170.9231,2180.0769,2167.7692,2174.7692,2172.3846,2167.0769,2176.3077,2173.1538,2164.7692,2173.9231,2177.8462,2163.2308,2175.4615,2176.3077,2466.0769,2180.9231,2177.0769,2177.0000,2176.3077" -"normalizing a fully mergeable, complex tiling of boxes - 2d","small, embedded in 3d",100,12,2715600,2259.2183,2248.8492,2280.0433,72.0104,39.2278,113.4036,"benchmark,group:grid","2235.7500,2246.5833,2360.1667,2258.2500,2256.5833,2249.9167,2255.0000,2251.5833,2272.5000,2250.7500,2255.7500,2245.8333,2238.2500,2247.4167,2616.4167,2252.5000,2244.9167,2252.4167,2246.5833,2254.0833,2247.4167,2249.9167,2245.7500,2238.2500,2247.4167,2244.0833,2244.9167,2244.9167,2243.2500,2247.5000,2241.5833,2250.7500,2244.9167,2250.7500,2244.0833,2242.4167,2240.7500,2240.7500,2242.4167,2244.9167,2237.4167,2238.2500,2239.0833,2246.5833,2244.0833,2254.1667,2240.7500,2248.2500,2245.7500,2250.7500,2242.4167,2691.5833,2474.5000,2240.7500,2245.0000,2241.5833,2238.2500,2241.5833,2248.2500,2248.2500,2238.2500,2241.5833,2238.2500,2239.9167,2242.4167,2239.0000,2244.0833,2241.5833,2239.0833,2237.4167,2239.9167,2236.5833,2236.5833,2239.9167,2241.5833,2235.7500,2236.5833,2245.7500,2234.9167,2237.4167,2242.4167,2240.7500,2237.4167,2239.0833,2238.2500,2239.0833,2244.9167,2239.9167,2608.1667,2237.4167,2245.7500,2242.4167,2244.9167,2240.7500,2243.2500,2243.3333,2243.2500,2236.5833,2241.5833,2240.7500" -"normalizing a fully mergeable, complex tiling of boxes - 2d","large, native",100,1,153387800,1535508.1000,1534149.9500,1537987.4600,9165.2360,5676.2408,14407.6012,"benchmark,group:grid","1532433.0000,1536560.0000,1539456.0000,1533746.0000,1536039.0000,1535338.0000,1535318.0000,1533885.0000,1532994.0000,1533996.0000,1528635.0000,1530780.0000,1527854.0000,1534877.0000,1532583.0000,1535859.0000,1532854.0000,1559734.0000,1534156.0000,1533635.0000,1533986.0000,1527052.0000,1534297.0000,1532723.0000,1535649.0000,1529707.0000,1533044.0000,1530729.0000,1537592.0000,1535148.0000,1535108.0000,1529016.0000,1589671.0000,1538995.0000,1532924.0000,1535819.0000,1530739.0000,1536530.0000,1529597.0000,1538825.0000,1531361.0000,1532092.0000,1530148.0000,1532543.0000,1530519.0000,1533836.0000,1531360.0000,1537943.0000,1536139.0000,1529788.0000,1532753.0000,1532804.0000,1537422.0000,1529928.0000,1534226.0000,1531872.0000,1535759.0000,1528755.0000,1537122.0000,1532733.0000,1533906.0000,1531751.0000,1538354.0000,1531000.0000,1531270.0000,1537532.0000,1530309.0000,1535538.0000,1531040.0000,1534737.0000,1531020.0000,1532823.0000,1532503.0000,1583549.0000,1531742.0000,1537743.0000,1539395.0000,1529977.0000,1534546.0000,1529678.0000,1542682.0000,1534526.0000,1563621.0000,1531722.0000,1539005.0000,1529807.0000,1535608.0000,1529747.0000,1558442.0000,1538524.0000,1532553.0000,1541670.0000,1530929.0000,1536621.0000,1531982.0000,1534987.0000,1531211.0000,1534586.0000,1533664.0000,1533524.0000" -"normalizing a fully mergeable, complex tiling of boxes - 2d","large, embedded in 3d",100,1,173403300,1734548.8500,1733441.0100,1738063.6000,9055.1557,2954.7506,19871.5630,"benchmark,group:grid","1728675.0000,1734526.0000,1815820.0000,1732823.0000,1733854.0000,1734546.0000,1729406.0000,1734997.0000,1733473.0000,1733112.0000,1730027.0000,1734686.0000,1734004.0000,1734756.0000,1728715.0000,1733904.0000,1733274.0000,1735477.0000,1730638.0000,1733523.0000,1733945.0000,1730528.0000,1734175.0000,1734626.0000,1734566.0000,1731490.0000,1733674.0000,1735037.0000,1737662.0000,1727252.0000,1733684.0000,1737481.0000,1737251.0000,1729677.0000,1734455.0000,1734736.0000,1730368.0000,1731260.0000,1737321.0000,1734345.0000,1731190.0000,1733002.0000,1737972.0000,1738113.0000,1729396.0000,1734084.0000,1731930.0000,1736089.0000,1729286.0000,1736569.0000,1734425.0000,1737251.0000,1732622.0000,1761276.0000,1738062.0000,1728574.0000,1735307.0000,1734085.0000,1735367.0000,1727873.0000,1733334.0000,1732832.0000,1736129.0000,1726841.0000,1736079.0000,1734375.0000,1735738.0000,1728835.0000,1734847.0000,1733524.0000,1728694.0000,1736640.0000,1737491.0000,1736830.0000,1731590.0000,1735487.0000,1733735.0000,1734375.0000,1730117.0000,1733724.0000,1734585.0000,1732602.0000,1728845.0000,1734415.0000,1731801.0000,1728675.0000,1733674.0000,1734846.0000,1735818.0000,1730237.0000,1739635.0000,1733473.0000,1733404.0000,1732291.0000,1734716.0000,1733984.0000,1735848.0000,1728364.0000,1735287.0000,1734926.0000" -benchmark independent task pattern with 100 tasks,task generation,100,1,782657600,7944019.6000,7839948.9800,8047361.8700,529470.5319,468964.8148,693432.7290,"benchmark,group:system,indep-tasks","8375614.0000,8233493.0000,8522270.0000,8227502.0000,8308687.0000,8230608.0000,8277828.0000,8247711.0000,8331189.0000,8147801.0000,8268780.0000,8198999.0000,8279180.0000,8247741.0000,8271576.0000,8170304.0000,8330268.0000,8176766.0000,8289590.0000,8170404.0000,8300971.0000,8225098.0000,8254373.0000,8175734.0000,7553174.0000,7716303.0000,8325098.0000,8221621.0000,8320649.0000,8232221.0000,8298928.0000,8253912.0000,8297034.0000,8253662.0000,8350255.0000,8248593.0000,8292595.0000,8254774.0000,8288899.0000,8219808.0000,8399588.0000,7519049.0000,7698420.0000,8177999.0000,8376304.0000,8229466.0000,8335998.0000,8203527.0000,8368770.0000,7449157.0000,7212749.0000,7171671.0000,7323259.0000,7180498.0000,7287060.0000,7191579.0000,7278944.0000,7190687.0000,7252745.0000,7185247.0000,7281058.0000,7185246.0000,7246693.0000,7140322.0000,7277251.0000,7207809.0000,7232786.0000,7170218.0000,7226385.0000,7171060.0000,7217869.0000,7176601.0000,7257764.0000,7184505.0000,7192691.0000,7161913.0000,7231485.0000,7171691.0000,7247525.0000,7965095.0000,8361757.0000,8136711.0000,8262168.0000,8227452.0000,10161277.0000,8214838.0000,8279050.0000,8148212.0000,8285001.0000,8233614.0000,8302384.0000,8185162.0000,8337982.0000,8238303.0000,8368790.0000,8176225.0000,8293157.0000,8251728.0000,8313746.0000,8255706.0000" -benchmark independent task pattern with 500 tasks,task generation,100,1,4953262800,48999576.8300,48619116.0000,49264437.7600,1600448.7323,1177621.6743,2066138.6266,"benchmark,group:system,indep-tasks","50482622.0000,49560294.0000,49284011.0000,49337152.0000,49326310.0000,48083705.0000,50406808.0000,50540131.0000,50441234.0000,49563570.0000,50462955.0000,50507980.0000,50153478.0000,49385483.0000,49332301.0000,48397731.0000,48286078.0000,49529706.0000,49316212.0000,48245081.0000,49522252.0000,49371747.0000,49292175.0000,47100421.0000,50961860.0000,48497789.0000,49344775.0000,49411251.0000,49253532.0000,49247321.0000,49368911.0000,49515208.0000,49357039.0000,49398827.0000,49353863.0000,48424631.0000,49322924.0000,49538542.0000,49235238.0000,49349785.0000,49319428.0000,49325689.0000,49344244.0000,49381766.0000,49322252.0000,49305521.0000,48334581.0000,49391353.0000,49315871.0000,49317103.0000,49620608.0000,49354203.0000,49255076.0000,49226170.0000,49385402.0000,48304043.0000,49314218.0000,49396192.0000,49337211.0000,49201383.0000,48447474.0000,49313677.0000,49385953.0000,49290553.0000,50941162.0000,49313055.0000,49419517.0000,49411932.0000,49311903.0000,49433854.0000,49296975.0000,49284711.0000,49349755.0000,49353822.0000,49288088.0000,49207826.0000,43807500.0000,43429223.0000,44100947.0000,43829932.0000,43788855.0000,43464410.0000,43345404.0000,47793856.0000,49695570.0000,49595640.0000,49693707.0000,49102205.0000,50582521.0000,50569297.0000,50573324.0000,50484255.0000,50257075.0000,50585506.0000,49925416.0000,49438342.0000,48604252.0000,48275819.0000,48409543.0000,50291580.0000" -benchmark independent task pattern with 2500 tasks,task generation,100,1,25160046000,244913635.0700,242490588.5400,247196414.6900,12062541.8184,11129939.9883,13047544.0325,"benchmark,group:system,indep-tasks","224831090.0000,234320356.0000,251972522.0000,255327352.0000,252046814.0000,255292727.0000,254487480.0000,258124984.0000,259382147.0000,255770392.0000,235519037.0000,238729442.0000,257134828.0000,260209065.0000,254876227.0000,230581479.0000,249205829.0000,236103254.0000,221988451.0000,244880622.0000,255588126.0000,255555384.0000,254725020.0000,254881527.0000,257056098.0000,256079768.0000,232417168.0000,230679846.0000,251358439.0000,257689700.0000,252794472.0000,258831373.0000,261584001.0000,258598001.0000,238160825.0000,232862613.0000,253806179.0000,254681709.0000,253458760.0000,253623863.0000,256091681.0000,254386518.0000,232904913.0000,232247317.0000,251383247.0000,257558992.0000,252607878.0000,258572363.0000,255932770.0000,253963698.0000,238739392.0000,232340123.0000,250816132.0000,254268125.0000,253885469.0000,256498552.0000,259722553.0000,255463330.0000,239019273.0000,233371888.0000,245534672.0000,225283598.0000,245976158.0000,255076087.0000,256465580.0000,229762307.0000,223856834.0000,224274585.0000,246068784.0000,228432276.0000,226676619.0000,248314911.0000,255531079.0000,232985446.0000,222848051.0000,223984616.0000,233570706.0000,244174333.0000,225903653.0000,252582299.0000,237795833.0000,234354180.0000,251387756.0000,229448312.0000,226399714.0000,251516840.0000,256940069.0000,240789958.0000,257331281.0000,259159456.0000,236738350.0000,225685540.0000,227047321.0000,244721189.0000,231097057.0000,240396523.0000,254982449.0000,228604513.0000,245283837.0000,229389551.0000" -benchmark stencil: 1D 50 iters oversub 1,iterations,100,1,301445200,2996084.2600,2987874.3000,3004209.9400,41757.5192,34648.8558,50512.4125,"benchmark,group:system,stencil","2876360.0000,2878795.0000,3076869.0000,2998972.0000,3001818.0000,3000615.0000,3096317.0000,3022768.0000,3097829.0000,3002238.0000,3046372.0000,3024651.0000,3050830.0000,3023037.0000,3001216.0000,3021896.0000,3049088.0000,2994303.0000,2894795.0000,2892491.0000,2996969.0000,3096888.0000,3048756.0000,3070447.0000,3001428.0000,3049438.0000,2994934.0000,2999113.0000,3021816.0000,2994664.0000,3043517.0000,2998131.0000,3001928.0000,3023118.0000,2993192.0000,3000385.0000,2987821.0000,2982872.0000,2983694.0000,2961121.0000,2977912.0000,2966331.0000,2984114.0000,2981449.0000,2985877.0000,2961782.0000,2983744.0000,3004964.0000,2986148.0000,3027907.0000,2984926.0000,2980117.0000,2987751.0000,2983884.0000,2985577.0000,2982221.0000,2986669.0000,2960399.0000,2968664.0000,2982532.0000,2986729.0000,3006547.0000,2969136.0000,2964036.0000,2982902.0000,2985116.0000,3009843.0000,2984374.0000,2985066.0000,2959637.0000,2985066.0000,2985857.0000,2962634.0000,2968474.0000,3001467.0000,2979505.0000,3020273.0000,2972683.0000,3003441.0000,2996497.0000,3003842.0000,2996398.0000,3101036.0000,2997028.0000,3002509.0000,2980838.0000,2998161.0000,3048817.0000,2972833.0000,3072441.0000,3002459.0000,3024691.0000,3021355.0000,2998021.0000,3002499.0000,2997830.0000,2900866.0000,2981239.0000,2892571.0000,2939249.0000" -benchmark stencil: 1D 500 iters oversub 1,iterations,100,1,2931298700,28859443.6800,28522234.5700,29149491.9400,1589231.1933,1402545.1181,1777439.2545,"benchmark,group:system,stencil","30125768.0000,30152699.0000,30517280.0000,29552071.0000,29610011.0000,29596656.0000,29601314.0000,29590634.0000,29617605.0000,29576016.0000,29663021.0000,30301642.0000,30270873.0000,30075944.0000,30036549.0000,30011071.0000,30011572.0000,29940868.0000,29764363.0000,30102124.0000,29049368.0000,28314705.0000,27934775.0000,27842270.0000,27998256.0000,26781920.0000,25516411.0000,25856306.0000,25765073.0000,28197904.0000,30198946.0000,30094599.0000,30034435.0000,29265217.0000,27890391.0000,28960800.0000,30124286.0000,28675850.0000,29703888.0000,30221299.0000,30300159.0000,30301081.0000,30380651.0000,26415486.0000,25702705.0000,25611131.0000,25468631.0000,26155834.0000,25721059.0000,25721510.0000,27051582.0000,26032830.0000,25894889.0000,25813295.0000,25451569.0000,28618351.0000,30306911.0000,30267607.0000,30300890.0000,30344503.0000,30175172.0000,30055174.0000,30169010.0000,30075102.0000,30104468.0000,30167057.0000,30079060.0000,30113906.0000,27971455.0000,27929215.0000,28048951.0000,27643894.0000,27299321.0000,25728344.0000,27563662.0000,27845095.0000,27829505.0000,27886183.0000,27952539.0000,27720469.0000,27696013.0000,28185851.0000,29445138.0000,30028875.0000,30050856.0000,29912895.0000,29899790.0000,30143742.0000,29915680.0000,28967012.0000,30058370.0000,30063651.0000,30053161.0000,30036559.0000,30101292.0000,30119987.0000,30106892.0000,30148651.0000,30164161.0000,30082756.0000" -benchmark stencil: 1D 50 iters oversub 3,iterations,100,1,659114600,6213345.9100,6144994.0300,6285512.2200,358919.1142,338753.5957,371844.7458,"benchmark,group:system,stencil","5937542.0000,5941119.0000,6580801.0000,6724424.0000,6637689.0000,6661253.0000,6576393.0000,6596330.0000,6683896.0000,6612821.0000,6654080.0000,6691110.0000,6634914.0000,6635495.0000,6693726.0000,6642488.0000,6669560.0000,6638441.0000,6646656.0000,6699937.0000,6605287.0000,6648820.0000,6630696.0000,6726948.0000,6612391.0000,6705077.0000,6619605.0000,6649311.0000,6616569.0000,6281093.0000,5936230.0000,5910561.0000,5918767.0000,5924046.0000,5956969.0000,5942221.0000,5909690.0000,5934105.0000,5866266.0000,5869383.0000,5928254.0000,5892267.0000,5858772.0000,5924827.0000,5929767.0000,5936079.0000,5933013.0000,5901304.0000,5904610.0000,5871827.0000,5928716.0000,5888259.0000,5878881.0000,5895692.0000,5892877.0000,5901083.0000,5931511.0000,5891775.0000,5875995.0000,5854164.0000,5898528.0000,5904268.0000,5884752.0000,5913697.0000,5909589.0000,5881316.0000,5947441.0000,5913366.0000,5884271.0000,5881175.0000,5917694.0000,5911703.0000,5904158.0000,5909579.0000,5944575.0000,5931100.0000,5909779.0000,5948664.0000,5904760.0000,6028895.0000,6697462.0000,6674740.0000,6684868.0000,6596911.0000,6627790.0000,6636928.0000,6661293.0000,6611821.0000,6654931.0000,6716598.0000,6728260.0000,6709615.0000,6395090.0000,5953312.0000,5989080.0000,5973711.0000,5920530.0000,5990763.0000,5976155.0000,5963040.0000" -benchmark stencil: 1D 500 iters oversub 3,iterations,100,1,6753418800,65233984.2300,64544269.3500,65844892.5500,3327009.2048,2948422.6353,3676299.2179,"benchmark,group:system,stencil","66735337.0000,65609574.0000,67435875.0000,67364670.0000,66810640.0000,67951232.0000,65801458.0000,65889214.0000,67358799.0000,68126013.0000,68842622.0000,67195059.0000,67284428.0000,70140562.0000,68256270.0000,66652641.0000,66705401.0000,68138468.0000,68152714.0000,66675403.0000,65130436.0000,60537350.0000,67881069.0000,67252468.0000,67348681.0000,68803076.0000,68610482.0000,66753281.0000,66760726.0000,67358328.0000,68265709.0000,66762649.0000,66768881.0000,68162913.0000,68321284.0000,65592361.0000,66716532.0000,68181499.0000,66280917.0000,58651175.0000,58787693.0000,59958473.0000,60071367.0000,63621255.0000,66834045.0000,68131253.0000,67632419.0000,65887691.0000,66781765.0000,68171169.0000,64183802.0000,58684318.0000,58939281.0000,64430229.0000,68227045.0000,64474021.0000,67378888.0000,68450148.0000,68291187.0000,64717713.0000,66944674.0000,68351812.0000,68611854.0000,67363237.0000,67049322.0000,68341992.0000,67257457.0000,65583374.0000,66391205.0000,68835508.0000,67928600.0000,61633337.0000,59335642.0000,62001295.0000,63399184.0000,59312368.0000,59350741.0000,60648280.0000,60654382.0000,59252104.0000,58774900.0000,67387353.0000,67155263.0000,66965214.0000,62893796.0000,60625798.0000,60613314.0000,64421732.0000,64697516.0000,68218378.0000,66134478.0000,58948769.0000,58711319.0000,59896516.0000,59974172.0000,59531233.0000,60109950.0000,65527609.0000,67246908.0000,66397878.0000" -benchmark stencil: 2D 30 iters oversub 1,iterations,100,1,442360600,4553313.5100,4512009.0700,4601186.2100,226610.7443,200113.7240,246189.5873,"benchmark,group:system,stencil","4907660.0000,4901108.0000,4952335.0000,4880990.0000,4907980.0000,4940081.0000,4913552.0000,4942957.0000,4917308.0000,4917739.0000,4974947.0000,4893102.0000,4897541.0000,4940472.0000,4936304.0000,4946022.0000,4909002.0000,4385580.0000,4430797.0000,4424163.0000,4398856.0000,4379700.0000,4399937.0000,4449301.0000,4401691.0000,4465993.0000,4418924.0000,4431828.0000,4441507.0000,4390890.0000,4396521.0000,4383306.0000,4404386.0000,4422771.0000,4411730.0000,4417952.0000,4394657.0000,4417932.0000,4433511.0000,4433281.0000,4418483.0000,4403825.0000,4458098.0000,4412332.0000,4458448.0000,4393185.0000,4418733.0000,4415617.0000,4376193.0000,4404066.0000,4423542.0000,4434863.0000,4415036.0000,4417200.0000,4419514.0000,4378057.0000,4454461.0000,4415287.0000,4417100.0000,4398575.0000,4417731.0000,4409476.0000,4421138.0000,4401571.0000,4418803.0000,4415597.0000,4417601.0000,4415658.0000,4433211.0000,4432199.0000,4386492.0000,4427049.0000,4404777.0000,4417070.0000,4396140.0000,4429394.0000,4412882.0000,4414244.0000,4420868.0000,4410287.0000,4420106.0000,4417991.0000,4455032.0000,4415216.0000,4416649.0000,4394988.0000,4377085.0000,4399296.0000,4429073.0000,4478236.0000,4939300.0000,4926707.0000,4951773.0000,4920444.0000,4917549.0000,4902560.0000,4941634.0000,4921576.0000,4938118.0000,4918901.0000" -benchmark stencil: 2D 300 iters oversub 1,iterations,100,1,4341133100,46651456.9000,46135611.2700,47146378.8900,2573334.1365,2430133.4380,2711039.7404,"benchmark,group:system,stencil","49099190.0000,49492216.0000,47455304.0000,49461557.0000,49026953.0000,48674215.0000,49016414.0000,49447721.0000,49075025.0000,49465154.0000,50520123.0000,49534205.0000,48962551.0000,49533444.0000,49120781.0000,49462830.0000,49078882.0000,47699007.0000,43545754.0000,43564410.0000,42999088.0000,43373188.0000,43142801.0000,43528592.0000,43260263.0000,44009414.0000,43576473.0000,43636536.0000,43172096.0000,48022740.0000,48673524.0000,47014699.0000,48657543.0000,48729860.0000,48547063.0000,49126622.0000,48502209.0000,49032383.0000,48784583.0000,49062371.0000,44663373.0000,43900316.0000,43297725.0000,48108463.0000,48621565.0000,49130740.0000,48514182.0000,48217048.0000,46609361.0000,48995684.0000,48737414.0000,48985094.0000,50236997.0000,49087108.0000,48523890.0000,48993510.0000,47250566.0000,43284559.0000,43089410.0000,43590049.0000,43126590.0000,43538751.0000,43271935.0000,43549791.0000,43193056.0000,43595478.0000,43198346.0000,43933830.0000,43724954.0000,44085658.0000,43331869.0000,45299769.0000,48646162.0000,49145628.0000,48637897.0000,49045659.0000,48075650.0000,45252709.0000,43163169.0000,43493645.0000,43054723.0000,43722078.0000,43611248.0000,46348276.0000,48755018.0000,49049987.0000,47784128.0000,47043995.0000,46498782.0000,49537441.0000,48980265.0000,49422874.0000,43440465.0000,43898092.0000,43549842.0000,43967725.0000,44763823.0000,47002186.0000,49050668.0000,48428690.0000" -benchmark stencil: 2D 30 iters oversub 3,iterations,100,1,1387148000,14669929.4600,14527058.3500,14815412.8000,734528.0553,682017.4053,910239.1271,"benchmark,group:system,stencil","13861982.0000,13874435.0000,15791338.0000,15295198.0000,15283686.0000,15296811.0000,15297963.0000,15284778.0000,15330305.0000,15304246.0000,14306545.0000,15285380.0000,15255664.0000,15263057.0000,15343991.0000,15323312.0000,15256105.0000,15155514.0000,15246686.0000,15316689.0000,15255563.0000,15247528.0000,14132565.0000,13943987.0000,13861762.0000,13859237.0000,13903571.0000,13797620.0000,13897139.0000,13937435.0000,13877811.0000,13926224.0000,13877201.0000,13898231.0000,13933007.0000,13980958.0000,13915694.0000,13757564.0000,13927667.0000,13894734.0000,13907138.0000,13875568.0000,13861962.0000,13908009.0000,13893141.0000,13715945.0000,13909201.0000,13897008.0000,13909633.0000,14369023.0000,15226759.0000,15342509.0000,15282254.0000,15264841.0000,14419199.0000,15268528.0000,15264000.0000,15253630.0000,15262857.0000,15322550.0000,15328932.0000,15274058.0000,15293676.0000,15358248.0000,15342568.0000,14599150.0000,15347247.0000,15338180.0000,15286802.0000,15318051.0000,15329493.0000,15244241.0000,15349441.0000,15276403.0000,15196060.0000,15329192.0000,15297994.0000,17241498.0000,15200850.0000,15331307.0000,15294758.0000,15309526.0000,15319364.0000,15310578.0000,15282043.0000,14609659.0000,13899984.0000,13770118.0000,13843006.0000,13840532.0000,13885256.0000,13879005.0000,13877632.0000,13943537.0000,13893151.0000,13803822.0000,13902779.0000,13895576.0000,13873163.0000,13923128.0000" -benchmark stencil: 2D 300 iters oversub 3,iterations,100,1,14201785900,151685470.1000,150466974.1100,152836303.1600,6010935.7744,5542455.1264,6464214.5545,"benchmark,group:system,stencil","154800536.0000,159378123.0000,152249621.0000,149502053.0000,149877464.0000,155733334.0000,156425395.0000,154308504.0000,142187379.0000,143644030.0000,142209381.0000,151714106.0000,152506968.0000,145088487.0000,143026639.0000,148290898.0000,155672889.0000,155188592.0000,157366750.0000,144472510.0000,154162207.0000,155959042.0000,159235032.0000,144841660.0000,142053817.0000,143295530.0000,155598128.0000,142637673.0000,141590478.0000,157146954.0000,154456283.0000,157981846.0000,156802321.0000,154751353.0000,156925073.0000,157300755.0000,159698419.0000,157236894.0000,157384835.0000,150935771.0000,142964101.0000,144105545.0000,157518237.0000,154198034.0000,157412527.0000,157224641.0000,156709354.0000,152373266.0000,144021365.0000,150399654.0000,155428306.0000,146170068.0000,156591701.0000,158383046.0000,158740173.0000,157797146.0000,147020820.0000,142375877.0000,153273532.0000,154308103.0000,158322572.0000,157722084.0000,148906695.0000,141879476.0000,142014361.0000,141959057.0000,142333797.0000,143012864.0000,153123868.0000,157271600.0000,145673838.0000,142002398.0000,146847712.0000,154759489.0000,156656794.0000,159452474.0000,157511615.0000,157051964.0000,157594482.0000,145262268.0000,142732282.0000,146821683.0000,157069477.0000,157560267.0000,157996584.0000,153441069.0000,155720160.0000,149335528.0000,143772955.0000,156886470.0000,157778661.0000,157164316.0000,147105671.0000,142964713.0000,149159995.0000,154793914.0000,143732458.0000,151222765.0000,157249739.0000,156025669.0000" -benchmark rsim: 64 tris 50 iters,iterations,100,1,965532300,10349534.8000,10259044.0400,10427648.2700,429353.7582,378155.5383,469540.2767,"benchmark,group:system,rsim","10601533.0000,10580843.0000,10592976.0000,10596382.0000,10566506.0000,10602825.0000,10627241.0000,10604468.0000,10575503.0000,10628002.0000,10570403.0000,10648531.0000,10610729.0000,10646748.0000,10621801.0000,10641147.0000,10609387.0000,10612803.0000,10603797.0000,10569802.0000,10639164.0000,10650184.0000,10602444.0000,10631228.0000,10618264.0000,10564583.0000,10620187.0000,10722863.0000,10637290.0000,10607483.0000,10590913.0000,10592254.0000,10625878.0000,10648381.0000,10629335.0000,10573559.0000,9944727.0000,9601517.0000,9618739.0000,9639759.0000,9580677.0000,9692610.0000,9645099.0000,9685536.0000,9637254.0000,9642044.0000,9639299.0000,9593742.0000,9580016.0000,9621795.0000,9593291.0000,9573413.0000,9591107.0000,9622095.0000,9580266.0000,9578844.0000,9558716.0000,9584014.0000,9591818.0000,9602369.0000,9744177.0000,10536209.0000,10658810.0000,10626239.0000,10652228.0000,10596994.0000,10558521.0000,10604077.0000,10600861.0000,10554042.0000,10605619.0000,10590831.0000,10659331.0000,10598195.0000,10566435.0000,10622152.0000,10583738.0000,10604948.0000,10612163.0000,10621410.0000,10669691.0000,10596663.0000,9875386.0000,10629506.0000,10551427.0000,10590421.0000,10558891.0000,10570453.0000,10131270.0000,10170174.0000,10661787.0000,10653511.0000,10607854.0000,10599529.0000,10663960.0000,10636148.0000,10653280.0000,10566426.0000,10660564.0000,10645375.0000" -benchmark rsim: 1024 tris 50 iters,iterations,100,1,1057302300,9938805.0800,9861324.6300,10029721.5600,426477.0824,376065.5826,466253.8608,"benchmark,group:system,rsim","9647985.0000,9703811.0000,10862267.0000,10617663.0000,10605900.0000,10604679.0000,10656125.0000,10626569.0000,9877119.0000,9709040.0000,9637444.0000,9661490.0000,9575257.0000,9636212.0000,9663364.0000,9728337.0000,9641482.0000,9677671.0000,9695434.0000,9684173.0000,9663545.0000,9661190.0000,9630481.0000,9627786.0000,9641232.0000,9673002.0000,9738046.0000,9698500.0000,9686137.0000,9676278.0000,9679735.0000,9631754.0000,9658414.0000,9688561.0000,9643977.0000,9679615.0000,9704702.0000,9648847.0000,9641933.0000,9731793.0000,9658806.0000,9672842.0000,10360846.0000,10679109.0000,10622562.0000,10688948.0000,10710569.0000,10606151.0000,10660324.0000,10321642.0000,10067931.0000,10631158.0000,10678839.0000,10607704.0000,10598576.0000,10672246.0000,10660894.0000,10615779.0000,10704227.0000,10711450.0000,10686764.0000,10624236.0000,10663920.0000,10501632.0000,9779874.0000,9703921.0000,9677912.0000,9640030.0000,9664045.0000,9666049.0000,9694122.0000,9618920.0000,9653566.0000,9707768.0000,9655078.0000,9674495.0000,9705073.0000,9694844.0000,9621755.0000,9712998.0000,9762442.0000,9704482.0000,9621014.0000,9683062.0000,9719520.0000,9642415.0000,9730922.0000,9632736.0000,9611446.0000,9711736.0000,9761991.0000,9634729.0000,9701786.0000,9730531.0000,9667883.0000,9704712.0000,9681709.0000,9622437.0000,9685636.0000,9674164.0000" -benchmark rsim: 64 tris 500 iters,iterations,100,1,11039275800,105507466.0200,104624960.4200,106416412.9800,4568874.5095,4354000.8292,4798511.0701,"benchmark,group:system,rsim","111113483.0000,102615786.0000,110904626.0000,109749457.0000,100537366.0000,100786188.0000,100709012.0000,101175586.0000,100964305.0000,100807007.0000,109039070.0000,109552563.0000,100745080.0000,100831343.0000,104974857.0000,109664947.0000,109398772.0000,111050613.0000,110407053.0000,110297145.0000,107302099.0000,100871480.0000,100708400.0000,100692010.0000,100496980.0000,100714642.0000,100772492.0000,100560921.0000,102574778.0000,110070295.0000,107816212.0000,100698081.0000,100563747.0000,100849407.0000,100659608.0000,106964759.0000,110994998.0000,108797402.0000,110478499.0000,102596108.0000,100678734.0000,100657043.0000,100497791.0000,100762613.0000,101938132.0000,103919096.0000,101547360.0000,111032910.0000,111047738.0000,111096761.0000,102063759.0000,100815103.0000,103180777.0000,111042127.0000,107865687.0000,111309454.0000,110631039.0000,111005608.0000,112887174.0000,106030227.0000,100809012.0000,100630383.0000,100520334.0000,104037270.0000,111070171.0000,111274167.0000,110955674.0000,111132779.0000,109930410.0000,102223272.0000,100801107.0000,100710554.0000,100547856.0000,109338067.0000,109997658.0000,100950169.0000,101021884.0000,106160154.0000,110375954.0000,103393811.0000,100671952.0000,100689024.0000,103817042.0000,101355417.0000,100787501.0000,101803907.0000,110851877.0000,110505320.0000,100801627.0000,100797659.0000,104246026.0000,111041907.0000,108495040.0000,111209925.0000,109961589.0000,111079609.0000,113044463.0000,111007902.0000,111043209.0000,111138610.0000" -benchmark rsim: 1024 tris 500 iters,iterations,100,1,11378918600,107632024.0100,106732108.7300,108494023.4300,4495631.8101,4211316.9004,4750719.2056,"benchmark,group:system,rsim","101395363.0000,101407717.0000,113118203.0000,106949881.0000,103143416.0000,112042744.0000,110967576.0000,101550828.0000,109818769.0000,110534325.0000,111839549.0000,112098089.0000,111856120.0000,110824715.0000,101561227.0000,101637993.0000,101649484.0000,109967379.0000,112069153.0000,109513810.0000,101618997.0000,102909683.0000,111929880.0000,110420710.0000,111710965.0000,111436375.0000,111846352.0000,113747495.0000,110774830.0000,101694670.0000,101777767.0000,101660466.0000,101833022.0000,111128511.0000,112232133.0000,112054566.0000,111956069.0000,108814094.0000,101683729.0000,101709939.0000,101496113.0000,103701133.0000,109940860.0000,111701858.0000,111320505.0000,112081448.0000,112750686.0000,101477538.0000,101821881.0000,101624257.0000,101596564.0000,101638905.0000,101664523.0000,101306464.0000,105699310.0000,112094693.0000,106381033.0000,111064981.0000,112108819.0000,112224449.0000,110924544.0000,111231216.0000,110256709.0000,101495903.0000,103321424.0000,110231181.0000,111941361.0000,103558913.0000,101743964.0000,101376357.0000,101667819.0000,101531731.0000,102035727.0000,109113252.0000,112067991.0000,105124371.0000,106436227.0000,111996426.0000,107739417.0000,105939385.0000,110601392.0000,111462824.0000,112113598.0000,113703963.0000,112015833.0000,111840130.0000,111152938.0000,111405015.0000,105740679.0000,101533405.0000,101603557.0000,104575842.0000,111869064.0000,109121046.0000,110332332.0000,112363582.0000,111672873.0000,110861285.0000,111107381.0000,107809130.0000" +benchmark intrusive graph dependency handling with N nodes - 1,creating nodes,100,7416,2224800,3.4060,3.3868,3.4645,0.1551,0.0531,0.3320,"benchmark,group:graph-nodes","3.3813,3.3812,3.3827,3.3800,3.3812,3.3813,3.3800,3.3799,3.8920,3.3800,3.3812,3.3813,3.3799,3.3799,3.3813,3.3799,3.3813,3.3813,3.3799,3.3800,3.3812,3.3800,3.3800,3.3812,3.3800,3.3800,3.3812,3.3813,3.3799,3.3813,3.3813,3.3799,3.3813,3.3812,3.3799,3.3800,3.3812,3.3800,3.3800,3.3812,3.3800,3.3799,3.3813,3.3813,3.3799,3.3813,3.3813,3.3799,3.9014,3.3800,3.3799,3.3813,3.3800,3.3799,3.3813,3.3799,3.3799,3.3813,3.3812,3.3800,3.3813,3.3812,3.3800,3.3812,3.3813,3.3800,3.3799,3.3813,3.3800,3.3799,3.3813,3.3799,3.3800,3.3813,3.3799,3.3800,3.3812,3.3812,3.3800,3.3812,3.3813,3.3800,3.3799,3.3813,3.3799,3.3799,3.3813,3.3799,4.7674,3.5028,3.3812,3.3813,3.3800,3.3799,3.3813,3.3800,3.3799,3.3813,3.3799,3.3800" +benchmark intrusive graph dependency handling with N nodes - 1,creating and adding dependencies,100,1208,2416000,22.2097,22.1529,22.3475,0.4175,0.1074,0.7425,"benchmark,group:graph-nodes","22.0108,22.2177,22.1929,22.0604,22.2591,22.0182,21.9776,22.0182,22.0108,22.2012,22.2508,22.3336,22.3584,22.3502,22.3667,22.2343,22.0679,22.0430,22.2508,22.2260,22.2425,22.0356,22.2094,22.2591,22.0844,22.1507,22.2508,22.1598,22.1018,22.2508,22.2094,22.0348,21.9934,22.2343,22.2508,22.2177,22.1929,22.2508,24.9131,22.0273,22.0099,22.1184,22.1763,22.0770,22.2003,22.0430,22.2343,21.9776,22.2425,22.0348,22.0190,22.1763,22.2425,22.1258,22.1101,22.2508,22.2508,22.2508,22.0108,22.0182,22.2177,22.2508,22.0348,22.2094,22.2508,22.2425,22.1267,22.0099,22.0190,22.0099,22.0182,22.0190,22.0265,21.9776,22.0182,25.1540,22.2508,22.0513,22.1846,22.2508,22.2508,22.2508,22.2508,22.2508,22.2508,22.2425,22.2508,22.2508,22.2177,22.2508,22.0430,22.2086,22.2425,22.0099,22.0099,22.1175,22.1763,22.0025,22.0596,22.2260" +benchmark intrusive graph dependency handling with N nodes - 1,adding and removing dependencies,100,1622,2433000,15.5249,15.4836,15.6285,0.2911,0.0114,0.5326,"benchmark,group:graph-nodes","15.4846,15.4846,15.5092,15.4846,15.4840,15.4908,15.4908,15.4531,15.4840,15.4846,15.4908,15.4901,15.4901,15.4908,15.4846,15.4531,15.4908,15.4846,15.4901,15.4840,15.4908,15.4908,15.4593,15.4723,15.4908,15.4846,15.4840,15.4908,15.4908,15.4840,15.4531,15.4908,15.4908,17.4852,15.4908,15.4846,15.4908,15.4840,15.4599,15.4846,15.4901,15.4901,15.4846,15.4908,15.4840,15.4846,15.4599,15.4840,15.4901,15.4846,15.4908,15.4840,15.4846,15.4599,15.4901,15.4901,15.4846,15.4846,15.4901,15.4846,15.4908,15.4531,15.4840,15.4908,15.4908,15.4901,15.4846,15.4908,15.4531,15.4840,15.4908,15.4846,15.4840,17.6344,15.4840,15.4840,15.4908,15.4599,15.4840,15.4846,15.4908,15.4840,15.4901,15.4908,15.4538,15.4901,15.4908,15.4908,15.4840,15.4840,15.4908,15.4846,15.4593,15.4846,15.4908,15.4846,15.4840,15.4908,15.4846,15.4593" +benchmark intrusive graph dependency handling with N nodes - 1,checking for dependencies,100,14748,1474800,1.7071,1.7018,1.7205,0.0392,0.0104,0.0716,"benchmark,group:graph-nodes","1.6948,1.6949,1.7071,1.7050,1.7050,1.7050,1.6908,1.7057,1.7057,1.7050,1.7050,1.7050,1.7050,1.7050,1.6908,1.7050,1.7050,1.7050,1.7050,1.7050,1.7057,1.6908,1.7050,1.7050,1.7050,1.7057,1.7050,1.7050,1.7050,1.6901,1.7057,1.7050,1.7050,1.7050,1.7050,1.7057,1.6908,1.7050,1.7050,1.7050,2.0026,1.7050,1.7050,1.7050,1.7050,1.6908,1.7050,1.7050,1.7050,1.7050,1.7057,1.7050,1.6901,1.7043,1.7057,1.7057,1.7050,1.7050,1.7050,1.7050,1.6901,1.7050,1.7057,1.7057,1.7050,1.7050,1.7050,1.6956,1.6982,1.7050,1.7050,1.7050,1.7050,1.7050,1.7050,1.7152,1.7784,1.6948,1.6956,1.9380,1.6962,1.6948,1.6949,1.6948,1.6806,1.6949,1.6948,1.6949,1.6948,1.6949,1.6948,1.6806,1.6949,1.6948,1.6949,1.6948,1.6956,1.6955,1.6799,1.6949" +benchmark intrusive graph dependency handling with N nodes - 10,creating nodes,100,644,2511600,39.1214,39.0169,39.3837,0.7418,0.0520,1.3571,"benchmark,group:graph-nodes","38.8758,39.0311,39.1087,39.0295,39.0295,39.0311,39.0311,39.0295,38.8898,39.0466,39.0311,39.0450,39.0311,39.0311,39.0466,38.8898,39.0155,39.0466,39.0621,39.0450,39.0311,39.0466,39.0311,38.8742,39.0466,39.0466,39.0295,39.0295,39.0466,39.0311,38.9363,38.9845,39.0466,39.0311,39.0450,39.0311,39.0311,39.0466,38.8742,39.0311,44.0559,39.0155,39.0295,39.0295,39.0311,39.0311,38.8898,39.0311,39.0466,39.0466,39.0295,39.0466,39.0311,39.0311,38.8898,39.0155,39.0311,39.0311,39.0450,39.0466,39.0466,38.9208,38.9674,39.0311,39.0466,39.0450,39.0295,39.0155,39.0311,38.8898,39.0466,39.0466,39.0466,39.0450,39.0295,39.0466,39.0311,38.8742,39.0466,39.0466,44.5373,39.0311,39.0311,39.0311,39.0295,38.8913,39.0311,39.0295,39.0450,39.0311,39.0311,39.0311,39.0140,38.8913,39.0311,39.0295,39.0311,39.0311,39.0311,39.0295" +benchmark intrusive graph dependency handling with N nodes - 10,creating and adding dependencies,100,111,2530800,230.2523,229.4304,232.2195,6.4143,3.3647,10.3799,"benchmark,group:graph-nodes","229.6937,228.7928,233.2162,230.9640,228.9730,229.7027,229.0631,229.0631,267.4324,229.4234,229.2432,229.4324,229.0631,228.7928,229.1622,229.5135,228.9730,229.0721,229.1532,229.4234,229.7928,228.4324,229.0631,229.4324,229.0631,228.9730,228.9820,228.7928,229.5135,229.2523,229.5135,229.3333,228.7928,229.6937,228.7027,229.4324,228.7928,229.1532,228.2613,228.9730,229.2432,228.6126,229.1622,228.7928,229.2432,228.9820,228.5225,262.5495,228.9730,228.9730,228.9730,228.7928,228.8919,228.9730,228.3423,228.6126,228.8018,228.9730,228.9730,229.4234,229.6036,228.6126,228.8829,228.4414,229.2432,229.6937,228.7117,228.8829,229.1532,229.1622,228.9730,228.3423,229.2432,229.8829,228.7928,229.5135,228.5225,228.8829,228.8829,228.8829,228.3423,228.7928,228.8829,229.0631,229.2523,228.7027,269.4144,229.3333,229.9730,228.9730,229.3333,229.4324,229.0631,229.8829,229.1532,229.5135,228.8919,228.5225,229.3333,229.1532" +benchmark intrusive graph dependency handling with N nodes - 10,adding and removing dependencies,100,124,2529600,203.3991,202.7955,204.8305,4.7383,2.6709,7.6717,"benchmark,group:graph-nodes","203.7581,202.7903,203.5968,202.3065,202.2258,202.0565,201.6613,201.9758,202.6290,202.7903,202.4677,229.1290,203.0242,203.5161,202.5484,202.1452,202.7823,202.7823,202.6290,203.1129,202.7097,202.4597,201.9032,202.6290,202.7016,202.5484,202.4677,202.5484,202.7016,202.7903,201.9032,202.4597,203.6774,203.2742,202.6290,202.6290,202.7016,201.8952,202.4677,202.5403,202.5484,202.5484,202.6290,202.7016,202.6290,201.9032,202.4597,202.7097,202.7097,202.5484,202.4597,232.2823,202.5484,201.8952,202.7097,202.7903,202.6290,202.6210,202.5484,202.5484,202.6290,202.1371,202.6290,202.7097,202.5403,202.4677,202.5484,202.5484,202.1371,202.6290,202.7097,202.6210,202.5484,202.4677,202.5484,202.5403,202.2258,202.5484,203.5968,203.1855,202.6210,202.6290,202.7097,202.7016,202.2177,202.6290,202.5484,202.5403,202.6290,202.7903,202.4677,229.2097,201.6532,202.1452,201.9758,202.0645,202.3871,203.0242,203.4355,201.5806" +benchmark intrusive graph dependency handling with N nodes - 10,checking for dependencies,100,1118,2459600,23.4438,23.1230,24.8048,2.8420,0.4311,6.6636,"benchmark,group:graph-nodes","23.0653,23.0653,23.1547,23.0653,23.0742,23.0653,23.0653,23.0653,23.0742,51.1234,23.0832,23.0653,23.0742,23.0742,23.0742,23.0742,23.0742,23.0742,23.0742,23.0653,23.0742,23.1914,23.0742,23.0653,23.0742,23.0653,23.0742,23.0653,23.0742,23.0742,23.0742,23.0742,23.0742,23.0742,23.0742,23.0742,23.1905,23.0742,23.0653,23.0742,23.0653,23.0742,23.0653,23.0742,23.0742,23.0742,27.4025,23.2084,23.0653,23.0742,23.0742,23.0653,23.0653,23.0742,23.0742,23.0832,23.0742,23.0742,23.0742,23.0733,23.0733,23.0733,23.1905,23.0742,23.0742,23.0653,23.0742,23.0742,23.0742,23.0742,23.0832,23.0742,23.0742,23.0742,23.0742,23.0653,23.1995,23.0742,23.0742,23.0653,23.0742,23.0742,23.0742,23.0653,27.0447,23.1279,23.0653,23.0653,23.1905,23.0653,23.0742,23.0653,23.0653,23.0653,23.0742,23.0742,23.0653,23.0653,23.0653,23.0653" +benchmark intrusive graph dependency handling with N nodes - 100,creating nodes,100,64,2528000,353.9389,351.8392,359.0197,15.8516,6.6225,27.3237,"benchmark,group:graph-nodes","350.9531,350.7812,444.2500,350.9375,350.9531,350.9531,350.9375,350.7969,350.9531,350.7812,350.7969,350.7969,350.7812,350.7969,350.7969,350.9375,350.7969,350.7969,350.9375,350.7969,350.7969,350.9375,350.7969,350.7969,350.9375,350.7969,350.7969,350.7812,350.7969,350.7812,350.7812,350.9531,350.7812,350.7812,350.9531,350.7812,350.7969,350.9531,350.7812,350.7969,350.7969,350.7812,350.7969,350.9531,350.7812,350.7969,415.7656,351.2500,351.4219,351.2656,351.4062,351.2656,351.4219,351.2656,351.4062,351.2656,351.2656,351.4062,351.2500,351.4219,351.2656,351.4062,351.2656,351.4219,351.2656,351.4062,351.2656,351.4219,351.2500,351.4219,351.2656,351.4219,351.2500,351.4219,351.2656,351.4062,351.2500,351.4219,351.2656,351.4062,351.2656,351.2656,351.2656,351.2500,351.4219,351.2656,351.4062,351.2656,351.4219,351.2656,351.4062,464.2969,367.0625,350.9531,350.9531,350.7812,350.9531,350.7969,350.7812,350.9531" +benchmark intrusive graph dependency handling with N nodes - 100,creating and adding dependencies,100,7,2846900,4239.4857,4224.9143,4272.7757,109.2182,60.3480,178.3032,"benchmark,group:graph-nodes","4229.2857,4219.1429,4297.8571,4233.4286,4229.2857,4227.7143,4237.7143,4213.4286,4216.2857,4232.0000,4234.8571,4227.7143,4223.4286,4260.7143,4933.2857,4216.2857,4250.7143,4243.4286,4230.7143,4213.4286,4219.1429,4206.2857,4233.4286,4237.7143,4219.1429,4220.5714,4226.2857,4214.8571,4229.1429,4263.5714,4240.5714,4212.0000,4220.5714,4220.5714,4227.7143,4206.2857,4220.5714,4224.8571,4227.7143,4216.2857,4230.5714,4210.5714,4226.2857,4247.8571,4236.2857,4230.5714,4219.1429,4807.2857,4229.2857,4223.4286,4226.2857,4237.7143,4236.4286,4214.8571,4212.0000,4191.8571,4199.1429,4217.7143,4213.4286,4200.5714,4214.8571,4214.8571,4204.8571,4212.0000,4216.2857,4239.2857,4203.4286,4214.8571,4213.4286,4207.7143,4194.7143,4200.5714,4210.5714,4210.5714,4223.4286,4220.5714,4216.2857,4209.0000,4216.2857,4207.5714,4220.5714,4813.1429,4226.2857,4219.1429,4206.2857,4199.1429,4183.2857,4200.5714,4194.8571,4224.8571,4210.5714,4214.8571,4223.4286,4214.8571,4200.5714,4210.5714,4193.4286,4222.0000,4216.2857,4233.4286" +benchmark intrusive graph dependency handling with N nodes - 100,adding and removing dependencies,100,6,2752200,4677.7033,4665.7733,4707.4283,87.2493,20.5261,156.3313,"benchmark,group:graph-nodes","4660.1667,4646.8333,4675.1667,4650.1667,4655.1667,4651.8333,4663.5000,4656.8333,4656.8333,4648.5000,4648.5000,4661.8333,4653.5000,4651.8333,4635.1667,4708.5000,4665.1667,4648.5000,4655.1667,4650.0000,4656.8333,4661.8333,4665.1667,4655.1667,4643.5000,4665.1667,4668.5000,4650.1667,4660.1667,4650.1667,4655.1667,4648.5000,4646.8333,5281.3333,4698.5000,4658.5000,4663.5000,4673.6667,4708.5000,4661.8333,4665.3333,4661.8333,4670.1667,4717.0000,4715.1667,4663.6667,4718.5000,4680.3333,4641.8333,4726.8333,4723.6667,4675.3333,4716.8333,4666.8333,4668.5000,4663.5000,4670.1667,4671.8333,4713.6667,4678.5000,4665.3333,4661.8333,4661.8333,4698.5000,4687.0000,4656.8333,4695.1667,4700.3333,4671.8333,5263.0000,4660.1667,4651.8333,4658.5000,4643.5000,4666.8333,4660.1667,4648.5000,4661.8333,4655.1667,4668.5000,4656.8333,4648.5000,4658.5000,4638.5000,4661.8333,4656.8333,4636.8333,4658.5000,4651.8333,4666.8333,4651.8333,4653.3333,4648.3333,4665.1667,4661.8333,4658.5000,4655.1667,4655.1667,4661.8333,4661.8333" +benchmark intrusive graph dependency handling with N nodes - 100,checking for dependencies,100,17,2629900,1545.7918,1539.9065,1560.4459,45.6528,23.9323,76.1419,"benchmark,group:graph-nodes","1538.1176,1536.3529,1543.9412,1537.5294,1775.0000,1532.8235,1537.4706,1536.3529,1535.7647,1536.8824,1539.2941,1538.7059,1534.5294,1538.7059,1538.0588,1537.4706,1538.1176,1538.6471,1536.2941,1538.1176,1537.4706,1538.1176,1538.7059,1536.8824,1536.9412,1538.1176,1538.0588,1536.9412,1536.9412,1538.0588,1535.1765,1535.1176,1538.7059,1536.9412,1538.0588,1535.7647,1537.5294,1537.4706,1537.5294,1536.8824,1536.9412,1539.2941,1777.9412,1536.9412,1536.2941,1536.3529,1536.3529,1538.0588,1537.5294,1537.5294,1536.2941,1537.5294,1538.6471,1539.2353,1536.3529,1535.7059,1536.3529,1535.7647,1536.2941,1538.1176,1540.4706,1539.2353,1538.1176,1538.1176,1538.6471,1539.2941,1539.2941,1538.0588,1538.7059,1538.7059,1539.2353,1540.4706,1538.7059,1538.6471,1536.2941,1535.1765,1537.4706,1535.7647,1535.1176,1539.2941,1852.8235,1575.2353,1540.4706,1537.4706,1536.9412,1536.2941,1536.9412,1536.3529,1535.7059,1535.1765,1536.8824,1538.6471,1535.7647,1536.2941,1538.1176,1536.9412,1539.2353,1536.9412,1537.5294,1537.4706" +benchmark task handling,generating and deleting tasks,100,1,556562900,6075775.4100,6070399.4400,6090136.2300,41571.3374,19777.2368,88611.3186,"benchmark,group:task-graph","6059103.0000,6079241.0000,6066467.0000,6075313.0000,6071315.0000,6065856.0000,6045707.0000,6056007.0000,6050757.0000,6045817.0000,6009088.0000,6048313.0000,6070183.0000,6030669.0000,6068280.0000,6071546.0000,6068882.0000,6030939.0000,6435025.0000,6076095.0000,6050697.0000,6045797.0000,6100521.0000,6087697.0000,6062329.0000,6070214.0000,6077708.0000,6080052.0000,6074702.0000,6064723.0000,6063210.0000,6054785.0000,6076365.0000,6052791.0000,6032132.0000,6037171.0000,6074812.0000,6070034.0000,6075924.0000,6073260.0000,6050306.0000,6085853.0000,6054524.0000,6058502.0000,6069772.0000,6066787.0000,6076926.0000,6079522.0000,6077647.0000,6069313.0000,6053492.0000,6059653.0000,6076215.0000,6024528.0000,6080312.0000,6059132.0000,6066307.0000,6074822.0000,6077087.0000,6071596.0000,6083549.0000,6080674.0000,6097686.0000,6103997.0000,6076335.0000,6092295.0000,6093388.0000,6099569.0000,6118776.0000,6090162.0000,6095682.0000,6096874.0000,6092596.0000,6097596.0000,6098617.0000,6100380.0000,6109858.0000,6103317.0000,6098237.0000,6098006.0000,6092957.0000,6108116.0000,6091023.0000,6072077.0000,6116161.0000,6072308.0000,6077968.0000,6046820.0000,6073269.0000,6042551.0000,6050195.0000,6083539.0000,6041710.0000,6086835.0000,6081265.0000,6082908.0000,6070213.0000,6052961.0000,6063761.0000,6061487.0000" +generating large task graphs,soup topology,100,1,37330500,373185.6900,372530.6400,374184.4400,4054.4158,2985.1409,7057.4174,"benchmark,group:task-graph","373215.0000,367916.0000,378606.0000,371061.0000,377323.0000,370600.0000,374218.0000,370700.0000,373285.0000,376251.0000,372614.0000,368597.0000,375670.0000,374047.0000,374889.0000,369579.0000,370210.0000,374207.0000,374538.0000,373546.0000,376211.0000,371191.0000,376942.0000,373196.0000,371552.0000,378406.0000,369538.0000,370681.0000,377894.0000,367965.0000,377273.0000,369818.0000,370370.0000,376011.0000,372293.0000,369167.0000,376703.0000,371793.0000,377814.0000,369248.0000,369328.0000,379828.0000,368868.0000,370270.0000,375850.0000,369048.0000,374558.0000,372695.0000,369518.0000,378666.0000,372234.0000,369619.0000,376331.0000,371643.0000,378145.0000,372494.0000,370661.0000,373335.0000,399645.0000,370591.0000,375880.0000,369037.0000,376402.0000,372945.0000,370440.0000,375210.0000,369198.0000,370480.0000,376442.0000,369759.0000,373135.0000,376352.0000,373426.0000,374608.0000,368176.0000,372224.0000,376942.0000,371602.0000,370851.0000,373276.0000,371362.0000,375991.0000,370190.0000,370320.0000,376431.0000,372074.0000,371552.0000,378545.0000,371793.0000,375840.0000,369769.0000,370069.0000,374749.0000,370931.0000,372274.0000,375109.0000,371592.0000,377573.0000,369138.0000,368417.0000" +generating large task graphs,chain topology,100,1,3793800,37946.2800,37815.3900,38186.3100,882.6429,531.7642,1294.9303,"benchmark,group:task-graph","37719.0000,38020.0000,40465.0000,38251.0000,38050.0000,37750.0000,37850.0000,38070.0000,37720.0000,37549.0000,37519.0000,37910.0000,37680.0000,37659.0000,37650.0000,37729.0000,37640.0000,42328.0000,37690.0000,37890.0000,37860.0000,37850.0000,37609.0000,37950.0000,37609.0000,37759.0000,37630.0000,37940.0000,37759.0000,37749.0000,37690.0000,37739.0000,37710.0000,37910.0000,37730.0000,37699.0000,37640.0000,37920.0000,37629.0000,37650.0000,37860.0000,37739.0000,37640.0000,42158.0000,37800.0000,37820.0000,37879.0000,37869.0000,37659.0000,37910.0000,37619.0000,37659.0000,37589.0000,37720.0000,37439.0000,37589.0000,37729.0000,37680.0000,37579.0000,37870.0000,37640.0000,37709.0000,37680.0000,37870.0000,37749.0000,37720.0000,37750.0000,37840.0000,37619.0000,37830.0000,41647.0000,37720.0000,37709.0000,37660.0000,37609.0000,37680.0000,37780.0000,37759.0000,37580.0000,37930.0000,37589.0000,37619.0000,37869.0000,37839.0000,37620.0000,37870.0000,37689.0000,37680.0000,37629.0000,37850.0000,37539.0000,37799.0000,37900.0000,37620.0000,37599.0000,37950.0000,41878.0000,37840.0000,37910.0000,37880.0000" +generating large task graphs,expanding tree topology,100,1,5786800,58251.0600,58007.1800,58657.0100,1575.3665,1078.8826,2261.3174,"benchmark,group:task-graph","58178.0000,57588.0000,62567.0000,64130.0000,58348.0000,58069.0000,58218.0000,57748.0000,58248.0000,57998.0000,57888.0000,57778.0000,57908.0000,57928.0000,57657.0000,57447.0000,58119.0000,57887.0000,57757.0000,57748.0000,66654.0000,58339.0000,58118.0000,57607.0000,58438.0000,58008.0000,57667.0000,57778.0000,58208.0000,57687.0000,58028.0000,57647.0000,58108.0000,57798.0000,57758.0000,57677.0000,58078.0000,64010.0000,57988.0000,57707.0000,58139.0000,57767.0000,57778.0000,57748.0000,57777.0000,57838.0000,58038.0000,57557.0000,58038.0000,57807.0000,57537.0000,57447.0000,58049.0000,57607.0000,62927.0000,57868.0000,58199.0000,57958.0000,57697.0000,57527.0000,57698.0000,57968.0000,57817.0000,57577.0000,58018.0000,57627.0000,57618.0000,57557.0000,57878.0000,59190.0000,57197.0000,62466.0000,58138.0000,57607.0000,57206.0000,57518.0000,57697.0000,57467.0000,57497.0000,57187.0000,57797.0000,57467.0000,57296.0000,57227.0000,57697.0000,59470.0000,57888.0000,57738.0000,58238.0000,63198.0000,57938.0000,57738.0000,58038.0000,57728.0000,58188.0000,57607.0000,58249.0000,57797.0000,57457.0000,57607.0000" +generating large task graphs,contracting tree topology,100,1,6052500,60643.1000,60444.2500,60963.4700,1266.3349,861.5748,1719.9571,"benchmark,group:task-graph","60292.0000,60663.0000,64961.0000,60774.0000,64911.0000,60893.0000,60562.0000,60583.0000,60273.0000,60162.0000,60162.0000,60202.0000,59942.0000,60463.0000,60192.0000,60232.0000,60223.0000,60132.0000,60352.0000,60052.0000,59962.0000,64761.0000,60262.0000,60483.0000,60353.0000,60282.0000,60102.0000,60002.0000,60142.0000,60583.0000,60282.0000,60393.0000,60162.0000,60303.0000,59931.0000,60112.0000,60102.0000,65341.0000,60422.0000,60523.0000,60463.0000,60332.0000,60383.0000,60142.0000,60072.0000,60342.0000,60163.0000,60372.0000,60042.0000,60172.0000,60102.0000,59982.0000,60162.0000,60433.0000,65182.0000,60583.0000,60172.0000,60202.0000,60162.0000,60583.0000,60222.0000,60163.0000,60182.0000,60543.0000,60182.0000,60222.0000,60112.0000,60212.0000,60282.0000,60372.0000,64650.0000,60723.0000,60243.0000,60703.0000,60393.0000,60112.0000,60011.0000,60312.0000,60132.0000,60493.0000,60503.0000,60513.0000,59891.0000,60343.0000,59972.0000,60823.0000,60393.0000,66363.0000,60623.0000,60242.0000,60493.0000,60392.0000,60203.0000,60482.0000,60152.0000,60713.0000,60362.0000,60493.0000,60072.0000,60443.0000" +generating large task graphs,wave_sim topology,100,1,45153300,452144.1200,451374.5700,454163.8100,5948.7360,2971.7305,12633.4349,"benchmark,group:task-graph","448267.0000,454529.0000,457555.0000,450091.0000,455611.0000,449791.0000,457435.0000,449700.0000,455642.0000,450181.0000,454580.0000,448238.0000,448699.0000,454559.0000,448569.0000,454509.0000,449309.0000,455972.0000,448268.0000,455161.0000,449520.0000,455461.0000,449259.0000,447937.0000,455210.0000,448899.0000,455130.0000,449229.0000,455181.0000,449420.0000,454520.0000,448037.0000,453748.0000,450061.0000,448678.0000,454801.0000,449279.0000,454499.0000,448989.0000,454178.0000,449570.0000,454119.0000,449420.0000,449179.0000,455301.0000,448398.0000,455441.0000,448699.0000,453898.0000,448579.0000,456884.0000,450121.0000,503192.0000,449090.0000,448448.0000,454239.0000,448048.0000,453848.0000,449200.0000,454840.0000,448418.0000,453668.0000,448679.0000,454640.0000,449310.0000,449149.0000,454630.0000,448298.0000,454239.0000,448629.0000,454560.0000,448879.0000,454519.0000,448609.0000,453978.0000,449219.0000,448038.0000,454489.0000,447847.0000,454810.0000,449049.0000,455221.0000,449230.0000,453638.0000,448608.0000,448739.0000,453778.0000,448929.0000,455291.0000,448638.0000,454630.0000,448839.0000,455301.0000,449110.0000,455241.0000,449460.0000,449700.0000,453607.0000,448648.0000,454931.0000" +generating large task graphs,jacobi topology,100,1,9901000,118080.4600,117760.4500,118524.2800,1915.2173,1505.5573,2444.2518,"benchmark,group:task-graph","116890.0000,122921.0000,126248.0000,117641.0000,117531.0000,117290.0000,117200.0000,117170.0000,123202.0000,117901.0000,117390.0000,117511.0000,117190.0000,117832.0000,116980.0000,117501.0000,122520.0000,118122.0000,117351.0000,118663.0000,117120.0000,116539.0000,116339.0000,116859.0000,116469.0000,122320.0000,116950.0000,119214.0000,117471.0000,117361.0000,117000.0000,117751.0000,117200.0000,122661.0000,117661.0000,117872.0000,117380.0000,117731.0000,117220.0000,117341.0000,117931.0000,117611.0000,122780.0000,117681.0000,117781.0000,117912.0000,117551.0000,117571.0000,117531.0000,117611.0000,122390.0000,117992.0000,117370.0000,117681.0000,117340.0000,117441.0000,117451.0000,117881.0000,117271.0000,122881.0000,117641.0000,117471.0000,117240.0000,117481.0000,117100.0000,117661.0000,117110.0000,122390.0000,117921.0000,117210.0000,117150.0000,116900.0000,116970.0000,117320.0000,117251.0000,117410.0000,122441.0000,117450.0000,117141.0000,117120.0000,117360.0000,117271.0000,117340.0000,117340.0000,121929.0000,117371.0000,117020.0000,117140.0000,117270.0000,117350.0000,117130.0000,117090.0000,117089.0000,122129.0000,117060.0000,116760.0000,116889.0000,116929.0000,116750.0000,117280.0000" +generating large command graphs for N nodes - 1,soup topology,100,1,105695400,1055448.5400,1054852.6100,1056372.0100,3713.0022,2644.8585,6203.3376,"benchmark,group:command-graph","1057042.0000,1052974.0000,1068854.0000,1057041.0000,1055999.0000,1057523.0000,1054246.0000,1053115.0000,1055128.0000,1052523.0000,1060208.0000,1055438.0000,1059837.0000,1056861.0000,1053295.0000,1053024.0000,1052814.0000,1053715.0000,1057683.0000,1054978.0000,1051701.0000,1053324.0000,1047664.0000,1053094.0000,1054206.0000,1054427.0000,1051030.0000,1052083.0000,1058003.0000,1055459.0000,1056902.0000,1054506.0000,1054246.0000,1054116.0000,1052123.0000,1056049.0000,1055518.0000,1052332.0000,1053986.0000,1054798.0000,1054577.0000,1054907.0000,1054697.0000,1055098.0000,1058424.0000,1055438.0000,1053154.0000,1061590.0000,1054647.0000,1050930.0000,1053866.0000,1055759.0000,1052452.0000,1051110.0000,1055178.0000,1057563.0000,1055910.0000,1058855.0000,1058404.0000,1057072.0000,1053054.0000,1060127.0000,1055930.0000,1057502.0000,1051201.0000,1060629.0000,1051761.0000,1056991.0000,1055078.0000,1053345.0000,1053435.0000,1053936.0000,1054206.0000,1059597.0000,1053214.0000,1055810.0000,1056360.0000,1051151.0000,1053685.0000,1055850.0000,1057562.0000,1055648.0000,1052012.0000,1058915.0000,1058374.0000,1057372.0000,1059035.0000,1053174.0000,1053154.0000,1056331.0000,1054977.0000,1057622.0000,1057482.0000,1057112.0000,1051661.0000,1078793.0000,1051611.0000,1056771.0000,1053335.0000,1053555.0000" +generating large command graphs for N nodes - 1,chain topology,100,1,7781100,78085.5300,77820.2400,78487.4400,1643.3791,1182.6070,2111.7459,"benchmark,group:command-graph","77555.0000,77635.0000,82715.0000,84097.0000,77956.0000,77756.0000,77655.0000,77545.0000,77525.0000,77334.0000,77375.0000,77525.0000,77555.0000,77505.0000,77685.0000,83727.0000,77956.0000,77244.0000,77545.0000,77505.0000,77715.0000,77725.0000,77715.0000,77425.0000,77735.0000,77515.0000,77384.0000,77424.0000,83466.0000,77655.0000,77425.0000,77365.0000,77315.0000,77224.0000,77535.0000,77294.0000,77646.0000,77495.0000,77425.0000,77244.0000,77525.0000,83106.0000,77715.0000,77845.0000,77816.0000,77625.0000,77966.0000,77706.0000,77565.0000,77495.0000,77535.0000,77405.0000,77385.0000,77575.0000,82815.0000,77525.0000,77666.0000,77234.0000,77415.0000,77696.0000,77545.0000,77154.0000,77595.0000,77464.0000,77444.0000,77605.0000,77725.0000,83236.0000,77716.0000,77525.0000,77665.0000,77275.0000,77465.0000,77375.0000,77685.0000,77445.0000,77415.0000,77194.0000,77414.0000,83016.0000,77906.0000,77605.0000,77475.0000,77635.0000,77725.0000,77816.0000,77615.0000,77285.0000,77675.0000,77766.0000,77605.0000,77966.0000,83176.0000,77906.0000,77765.0000,78126.0000,77775.0000,77435.0000,77916.0000,77685.0000" +generating large command graphs for N nodes - 1,expanding tree topology,100,1,12766700,127894.6600,127442.6900,128551.4300,2737.5715,2097.1492,3591.4434,"benchmark,group:command-graph","127099.0000,126188.0000,139613.0000,128682.0000,127630.0000,128281.0000,127850.0000,127950.0000,127530.0000,133662.0000,127289.0000,126418.0000,127600.0000,126538.0000,126648.0000,125857.0000,127209.0000,137599.0000,126638.0000,126588.0000,127309.0000,126107.0000,126438.0000,126558.0000,132469.0000,128512.0000,126989.0000,126758.0000,126798.0000,126919.0000,127339.0000,126658.0000,133571.0000,126758.0000,126378.0000,127349.0000,126968.0000,127269.0000,126568.0000,125837.0000,133501.0000,127279.0000,126578.0000,126928.0000,126248.0000,126107.0000,126969.0000,126528.0000,133952.0000,127670.0000,126538.0000,127099.0000,127440.0000,126969.0000,127279.0000,127300.0000,134222.0000,127841.0000,127089.0000,126788.0000,127540.0000,126839.0000,126327.0000,126357.0000,133441.0000,127590.0000,126258.0000,127289.0000,127520.0000,127109.0000,126919.0000,133090.0000,128050.0000,126428.0000,126999.0000,127159.0000,127270.0000,126177.0000,126238.0000,137719.0000,127329.0000,126438.0000,126298.0000,126888.0000,126898.0000,126147.0000,126267.0000,133100.0000,126748.0000,126678.0000,127199.0000,125626.0000,126317.0000,126568.0000,126367.0000,132970.0000,126769.0000,126618.0000,126979.0000,126197.0000" +generating large command graphs for N nodes - 1,contracting tree topology,100,1,13715600,156020.2300,155607.0000,156562.7500,2408.5830,1957.8373,2856.3143,"benchmark,group:command-graph","154211.0000,154942.0000,163888.0000,155983.0000,155613.0000,154781.0000,161334.0000,155814.0000,154962.0000,154872.0000,154661.0000,154842.0000,161053.0000,155352.0000,154651.0000,154891.0000,155303.0000,154872.0000,154871.0000,161454.0000,153980.0000,154681.0000,154962.0000,155463.0000,154982.0000,161464.0000,155603.0000,155292.0000,155182.0000,155022.0000,154931.0000,155362.0000,162276.0000,155092.0000,155012.0000,154872.0000,155182.0000,154380.0000,161094.0000,156765.0000,155383.0000,154511.0000,154341.0000,155152.0000,161074.0000,154932.0000,154871.0000,154541.0000,155152.0000,154481.0000,154411.0000,161384.0000,154822.0000,154531.0000,154982.0000,154752.0000,154471.0000,160342.0000,154441.0000,154511.0000,155252.0000,154892.0000,155062.0000,155453.0000,160793.0000,154732.0000,154681.0000,155022.0000,154912.0000,155022.0000,161535.0000,155483.0000,155332.0000,155513.0000,155333.0000,156184.0000,160743.0000,155172.0000,155041.0000,155723.0000,155323.0000,155232.0000,154762.0000,161745.0000,154811.0000,154511.0000,153829.0000,155203.0000,155833.0000,161254.0000,154692.0000,155432.0000,154090.0000,154882.0000,154701.0000,155283.0000,161003.0000,154782.0000,154601.0000,155142.0000" +generating large command graphs for N nodes - 1,wave_sim topology,100,1,103745900,1043151.2700,1041738.3500,1047667.6800,11625.9322,4265.5446,25616.2775,"benchmark,group:command-graph","1039732.0000,1036696.0000,1074918.0000,1043429.0000,1043148.0000,1046334.0000,1043659.0000,1042437.0000,1044350.0000,1042367.0000,1042286.0000,1043529.0000,1039772.0000,1036275.0000,1038308.0000,1043979.0000,1042206.0000,1042687.0000,1039871.0000,1044731.0000,1044180.0000,1041475.0000,1041865.0000,1041905.0000,1050272.0000,1041675.0000,1038830.0000,1041505.0000,1040303.0000,1041855.0000,1041074.0000,1038790.0000,1038269.0000,1036576.0000,1042987.0000,1042788.0000,1047907.0000,1044671.0000,1043809.0000,1042016.0000,1039171.0000,1042927.0000,1147976.0000,1041976.0000,1043910.0000,1047436.0000,1044551.0000,1042837.0000,1043359.0000,1043539.0000,1041204.0000,1040082.0000,1039101.0000,1036926.0000,1038008.0000,1042277.0000,1043609.0000,1042015.0000,1039240.0000,1039341.0000,1039231.0000,1038539.0000,1039401.0000,1043729.0000,1041846.0000,1042947.0000,1043518.0000,1047146.0000,1047797.0000,1049119.0000,1043920.0000,1044260.0000,1042597.0000,1041024.0000,1042737.0000,1042877.0000,1038599.0000,1037447.0000,1036565.0000,1040072.0000,1038539.0000,1037688.0000,1038860.0000,1040192.0000,1039461.0000,1037137.0000,1036996.0000,1041365.0000,1039561.0000,1037467.0000,1038469.0000,1039541.0000,1039321.0000,1039731.0000,1046254.0000,1040974.0000,1042527.0000,1040142.0000,1064017.0000,1040563.0000" +generating large command graphs for N nodes - 1,jacobi topology,100,1,26362700,264580.5100,263883.7500,265482.0600,4019.6287,3337.4067,5356.0196,"benchmark,group:command-graph","261775.0000,270792.0000,277725.0000,264019.0000,263358.0000,263989.0000,270692.0000,263638.0000,263569.0000,263688.0000,270110.0000,263007.0000,262616.0000,262386.0000,269940.0000,262166.0000,262687.0000,260753.0000,269079.0000,261825.0000,261624.0000,270311.0000,262486.0000,262116.0000,261264.0000,268948.0000,262596.0000,261966.0000,261935.0000,269289.0000,262226.0000,262326.0000,262296.0000,269870.0000,263077.0000,261614.0000,268107.0000,262497.0000,262296.0000,261635.0000,282764.0000,262356.0000,261785.0000,261635.0000,270601.0000,263528.0000,262436.0000,262426.0000,269860.0000,262216.0000,262055.0000,263047.0000,268478.0000,261484.0000,262216.0000,269801.0000,262426.0000,262045.0000,261785.0000,269239.0000,262256.0000,261905.0000,263188.0000,270011.0000,263999.0000,263508.0000,262185.0000,268468.0000,262827.0000,262066.0000,268858.0000,263058.0000,262216.0000,262586.0000,268879.0000,261815.0000,261274.0000,261815.0000,270020.0000,262386.0000,261604.0000,262136.0000,270782.0000,261805.0000,261956.0000,261584.0000,268177.0000,262937.0000,262767.0000,270231.0000,262186.0000,262126.0000,262456.0000,270331.0000,262336.0000,261845.0000,262326.0000,274279.0000,262456.0000,261935.0000" +generating large command graphs for N nodes - 4,soup topology,100,1,123173800,1429866.3400,1428744.6800,1431444.2700,6738.2138,4973.1414,10170.0049,"benchmark,group:command-graph","1436464.0000,1428530.0000,1430123.0000,1428429.0000,1418491.0000,1431014.0000,1427377.0000,1425284.0000,1423299.0000,1420184.0000,1434351.0000,1421476.0000,1432427.0000,1420745.0000,1431885.0000,1425263.0000,1427868.0000,1426245.0000,1427337.0000,1431505.0000,1422578.0000,1436555.0000,1428690.0000,1423360.0000,1435943.0000,1429731.0000,1432187.0000,1425974.0000,1433679.0000,1425413.0000,1436975.0000,1428930.0000,1423960.0000,1427497.0000,1425814.0000,1431404.0000,1438828.0000,1422397.0000,1429371.0000,1429741.0000,1439781.0000,1426956.0000,1432758.0000,1428068.0000,1425914.0000,1438639.0000,1429922.0000,1433188.0000,1429220.0000,1435353.0000,1430293.0000,1428479.0000,1436324.0000,1426385.0000,1467764.0000,1430103.0000,1435913.0000,1423599.0000,1426455.0000,1432938.0000,1431816.0000,1436254.0000,1431565.0000,1430863.0000,1421816.0000,1427468.0000,1435142.0000,1420274.0000,1427327.0000,1426215.0000,1429481.0000,1424151.0000,1434260.0000,1434631.0000,1425844.0000,1436274.0000,1428008.0000,1429832.0000,1429742.0000,1427427.0000,1430372.0000,1425624.0000,1432457.0000,1422508.0000,1441073.0000,1422027.0000,1456833.0000,1428609.0000,1418490.0000,1430944.0000,1426706.0000,1431956.0000,1425073.0000,1432227.0000,1430934.0000,1424211.0000,1434080.0000,1426085.0000,1433098.0000,1429561.0000" +generating large command graphs for N nodes - 4,chain topology,100,1,31876200,326160.2900,322977.6500,328405.8700,13529.6471,10192.0788,16948.0397,"benchmark,group:command-graph","335385.0000,329013.0000,300899.0000,282905.0000,284498.0000,291591.0000,284077.0000,283707.0000,284177.0000,291021.0000,285079.0000,285660.0000,311409.0000,329423.0000,330726.0000,336126.0000,328651.0000,329072.0000,335475.0000,329113.0000,328532.0000,335264.0000,328130.0000,327489.0000,335665.0000,329263.0000,327700.0000,336006.0000,328041.0000,327600.0000,333651.0000,329544.0000,327520.0000,334814.0000,329263.0000,328000.0000,335885.0000,327550.0000,327811.0000,334803.0000,326819.0000,328431.0000,333671.0000,328031.0000,327770.0000,334714.0000,327459.0000,327619.0000,335084.0000,328902.0000,327921.0000,335014.0000,328602.0000,328351.0000,336237.0000,327750.0000,328652.0000,334543.0000,328903.0000,329263.0000,335144.0000,329925.0000,328081.0000,336527.0000,330024.0000,328091.0000,335615.0000,328793.0000,327560.0000,333972.0000,329423.0000,329333.0000,328291.0000,333721.0000,328842.0000,328441.0000,334863.0000,327881.0000,328281.0000,335375.0000,329684.0000,328782.0000,334143.0000,328541.0000,329182.0000,335625.0000,328501.0000,327539.0000,335285.0000,328492.0000,328301.0000,335795.0000,328912.0000,329023.0000,335976.0000,328552.0000,328852.0000,336256.0000,327670.0000,328461.0000" +generating large command graphs for N nodes - 4,expanding tree topology,100,1,34410500,345455.3400,344712.9200,346559.8900,4566.2988,3459.0322,7646.1795,"benchmark,group:command-graph","342508.0000,341576.0000,352036.0000,352487.0000,343570.0000,341196.0000,348890.0000,344502.0000,343110.0000,349481.0000,342649.0000,342368.0000,349752.0000,342358.0000,341687.0000,350252.0000,343209.0000,342458.0000,349051.0000,341647.0000,348419.0000,344773.0000,341246.0000,349671.0000,344191.0000,343430.0000,349642.0000,344121.0000,342659.0000,348780.0000,341066.0000,341696.0000,349240.0000,342087.0000,343099.0000,350283.0000,341326.0000,341345.0000,347788.0000,342388.0000,341376.0000,348159.0000,341637.0000,342358.0000,349291.0000,341486.0000,342358.0000,349953.0000,340644.0000,346987.0000,343370.0000,343731.0000,351285.0000,342879.0000,341977.0000,350283.0000,342799.0000,342107.0000,350423.0000,343389.0000,343680.0000,351626.0000,342588.0000,341667.0000,349171.0000,342839.0000,344582.0000,352377.0000,344131.0000,343721.0000,350383.0000,343651.0000,343500.0000,349050.0000,342718.0000,341416.0000,348881.0000,343219.0000,348890.0000,343270.0000,342808.0000,352196.0000,343009.0000,343661.0000,349712.0000,343229.0000,342638.0000,351285.0000,342889.0000,342348.0000,350493.0000,343359.0000,341777.0000,374169.0000,343490.0000,342899.0000,348820.0000,344803.0000,342438.0000,349622.0000" +generating large command graphs for N nodes - 4,contracting tree topology,100,1,35421800,354289.4100,353626.3700,355007.1000,3510.0471,3230.5435,3795.0428,"benchmark,group:command-graph","351105.0000,357326.0000,361374.0000,354481.0000,352497.0000,359230.0000,352457.0000,352557.0000,358628.0000,351665.0000,348620.0000,358128.0000,351024.0000,350784.0000,358850.0000,351866.0000,351956.0000,358468.0000,351426.0000,357647.0000,352687.0000,351906.0000,358138.0000,352277.0000,351976.0000,358138.0000,352167.0000,351926.0000,359771.0000,350864.0000,352758.0000,360051.0000,352326.0000,350504.0000,358298.0000,351265.0000,359941.0000,351825.0000,350163.0000,358348.0000,352697.0000,351405.0000,360683.0000,353790.0000,352297.0000,359831.0000,352347.0000,350914.0000,360282.0000,351315.0000,358148.0000,353439.0000,351716.0000,360031.0000,352257.0000,352257.0000,358949.0000,353299.0000,353389.0000,359029.0000,353438.0000,352938.0000,359330.0000,353529.0000,352758.0000,357617.0000,352948.0000,358458.0000,352307.0000,351015.0000,357035.0000,351134.0000,350934.0000,356855.0000,352026.0000,351816.0000,359941.0000,352076.0000,350674.0000,359270.0000,350463.0000,356465.0000,352046.0000,351526.0000,358288.0000,351636.0000,350914.0000,358739.0000,351595.0000,351115.0000,358459.0000,350042.0000,348830.0000,358739.0000,350693.0000,351365.0000,358829.0000,350543.0000,357387.0000,351675.0000" +generating large command graphs for N nodes - 4,wave_sim topology,100,1,232819500,2383734.8900,2382175.9500,2385722.2600,8902.1357,7161.7716,11134.9244,"benchmark,group:command-graph","2378362.0000,2385877.0000,2414601.0000,2378723.0000,2412587.0000,2387249.0000,2386417.0000,2393110.0000,2379815.0000,2393591.0000,2398179.0000,2385486.0000,2387039.0000,2374946.0000,2381618.0000,2373984.0000,2379795.0000,2388602.0000,2376899.0000,2371600.0000,2372090.0000,2376469.0000,2384704.0000,2378553.0000,2381688.0000,2384824.0000,2387399.0000,2384894.0000,2401897.0000,2387389.0000,2390686.0000,2382781.0000,2380987.0000,2385035.0000,2391587.0000,2395975.0000,2387419.0000,2388501.0000,2391106.0000,2382600.0000,2383041.0000,2379625.0000,2385065.0000,2387389.0000,2382350.0000,2384183.0000,2412217.0000,2374224.0000,2380166.0000,2374124.0000,2373022.0000,2389372.0000,2377911.0000,2367431.0000,2381818.0000,2375938.0000,2391056.0000,2381709.0000,2378512.0000,2383832.0000,2374926.0000,2379785.0000,2379504.0000,2370748.0000,2380547.0000,2410934.0000,2381939.0000,2388982.0000,2378763.0000,2393802.0000,2376378.0000,2378953.0000,2385426.0000,2380135.0000,2390475.0000,2377941.0000,2377340.0000,2384033.0000,2376950.0000,2380997.0000,2378633.0000,2380687.0000,2377230.0000,2376438.0000,2376278.0000,2385075.0000,2378011.0000,2381759.0000,2411044.0000,2374494.0000,2381858.0000,2377290.0000,2384614.0000,2382921.0000,2376608.0000,2385024.0000,2380035.0000,2386648.0000,2382871.0000,2379364.0000" +generating large command graphs for N nodes - 4,jacobi topology,100,1,47993500,559399.4900,552400.4200,575092.6600,50539.1129,26577.3367,102654.0952,"benchmark,group:command-graph","570491.0000,561895.0000,483916.0000,476362.0000,482724.0000,477464.0000,483836.0000,476943.0000,482103.0000,476482.0000,482664.0000,475700.0000,481522.0000,476422.0000,531587.0000,563297.0000,570280.0000,568227.0000,564930.0000,569089.0000,562736.0000,570781.0000,564028.0000,568127.0000,562285.0000,568728.0000,569689.0000,561994.0000,569559.0000,562205.0000,570381.0000,562105.0000,568587.0000,569138.0000,561433.0000,567885.0000,560732.0000,569659.0000,561154.0000,566864.0000,567735.0000,561323.0000,567646.0000,559881.0000,566954.0000,561283.0000,567855.0000,559650.0000,566383.0000,567856.0000,562866.0000,566523.0000,560282.0000,569058.0000,559560.0000,565922.0000,567665.0000,560963.0000,565301.0000,561143.0000,568927.0000,561443.0000,566813.0000,567334.0000,562376.0000,566804.0000,562386.0000,567144.0000,561574.0000,569129.0000,561604.0000,568176.0000,974728.0000,569599.0000,561253.0000,570571.0000,560031.0000,569298.0000,560532.0000,568016.0000,570461.0000,562606.0000,571353.0000,563106.0000,568587.0000,561694.0000,569890.0000,567816.0000,563758.0000,569860.0000,562045.0000,594577.0000,562335.0000,569379.0000,560763.0000,571463.0000,572063.0000,563327.0000,571723.0000,565552.0000" +generating large command graphs for N nodes - 16,soup topology,100,1,192399200,1921828.0100,1920535.5900,1923802.7700,8007.3531,5839.7485,12917.4017,"benchmark,group:command-graph","1927346.0000,1925493.0000,1930462.0000,1919180.0000,1911716.0000,1915163.0000,1922327.0000,1923308.0000,1916465.0000,1918960.0000,1920994.0000,1913580.0000,1918650.0000,1920984.0000,1916305.0000,1913410.0000,1914993.0000,1919651.0000,1912287.0000,1912138.0000,1919782.0000,1918168.0000,1924230.0000,1923609.0000,1929380.0000,1922407.0000,1921645.0000,1914481.0000,1913039.0000,1918158.0000,1918770.0000,1915554.0000,1917778.0000,1918659.0000,1924571.0000,1923980.0000,1925383.0000,1914301.0000,1922687.0000,1915864.0000,1920613.0000,1915223.0000,1921285.0000,1923719.0000,1936193.0000,1924300.0000,1921815.0000,1949428.0000,1918268.0000,1916595.0000,1917207.0000,1916796.0000,1928678.0000,1921184.0000,1918409.0000,1921105.0000,1922517.0000,1928939.0000,1930032.0000,1930592.0000,1926675.0000,1924140.0000,1924391.0000,1922657.0000,1920744.0000,1910444.0000,1925032.0000,1911837.0000,1924391.0000,1916636.0000,1917227.0000,1925092.0000,1928999.0000,1915905.0000,1933177.0000,1925222.0000,1923439.0000,1970729.0000,1924581.0000,1912397.0000,1916836.0000,1914502.0000,1921355.0000,1916385.0000,1916115.0000,1920684.0000,1926695.0000,1921785.0000,1931193.0000,1917367.0000,1928087.0000,1918269.0000,1924401.0000,1917147.0000,1917948.0000,1918279.0000,1923359.0000,1919722.0000,1928157.0000,1942044.0000" +generating large command graphs for N nodes - 16,chain topology,100,1,109566700,1098087.0000,1097455.6800,1099067.1900,3942.6588,2890.4825,6349.4942,"benchmark,group:command-graph","1097050.0000,1096469.0000,1106589.0000,1097701.0000,1100848.0000,1096890.0000,1105576.0000,1098362.0000,1096709.0000,1096259.0000,1096239.0000,1101208.0000,1100417.0000,1098884.0000,1097491.0000,1098503.0000,1104024.0000,1096890.0000,1098924.0000,1095868.0000,1096219.0000,1095948.0000,1096660.0000,1098232.0000,1098673.0000,1093854.0000,1105717.0000,1097792.0000,1096950.0000,1097972.0000,1095658.0000,1098273.0000,1097581.0000,1096169.0000,1094796.0000,1096279.0000,1102370.0000,1098663.0000,1097070.0000,1097161.0000,1098733.0000,1098022.0000,1101008.0000,1097140.0000,1095898.0000,1097742.0000,1096750.0000,1106488.0000,1098353.0000,1096449.0000,1096059.0000,1097140.0000,1094044.0000,1097391.0000,1093975.0000,1122188.0000,1097311.0000,1104514.0000,1096670.0000,1095748.0000,1099314.0000,1101699.0000,1095708.0000,1098663.0000,1097842.0000,1095978.0000,1097000.0000,1104133.0000,1095527.0000,1097681.0000,1093112.0000,1098823.0000,1095017.0000,1095046.0000,1095949.0000,1095527.0000,1093844.0000,1110265.0000,1095708.0000,1096028.0000,1095417.0000,1095888.0000,1099475.0000,1098002.0000,1097090.0000,1094164.0000,1097030.0000,1105025.0000,1096770.0000,1095568.0000,1096068.0000,1094205.0000,1094225.0000,1095327.0000,1097602.0000,1096449.0000,1097641.0000,1095116.0000,1101559.0000,1098654.0000" +generating large command graphs for N nodes - 16,expanding tree topology,100,1,68731300,572915.7200,572015.7500,573896.9300,4813.7172,4285.2145,5681.7234,"benchmark,group:command-graph","574739.0000,570731.0000,582303.0000,567435.0000,575209.0000,566663.0000,573427.0000,567164.0000,572805.0000,573967.0000,566593.0000,578767.0000,566032.0000,573547.0000,567205.0000,574659.0000,574859.0000,567505.0000,572866.0000,566894.0000,576101.0000,567996.0000,573877.0000,575571.0000,567074.0000,581261.0000,568106.0000,576803.0000,568407.0000,576052.0000,573597.0000,565120.0000,575580.0000,568457.0000,575581.0000,567746.0000,573376.0000,573998.0000,567816.0000,582333.0000,568638.0000,572825.0000,566153.0000,573366.0000,573697.0000,567155.0000,576643.0000,568948.0000,577284.0000,569428.0000,577364.0000,577564.0000,570491.0000,585910.0000,570040.0000,576493.0000,569689.0000,575931.0000,576652.0000,570020.0000,576252.0000,568708.0000,575109.0000,567655.0000,574669.0000,588285.0000,567465.0000,581221.0000,568577.0000,577254.0000,568657.0000,576903.0000,576903.0000,569268.0000,575471.0000,569519.0000,577143.0000,575080.0000,570942.0000,578185.0000,570050.0000,581451.0000,568256.0000,576963.0000,575861.0000,567896.0000,575681.0000,568968.0000,577644.0000,569389.0000,574168.0000,573547.0000,566604.0000,575159.0000,570009.0000,580730.0000,565441.0000,575671.0000,574689.0000,567616.0000" +generating large command graphs for N nodes - 16,contracting tree topology,100,1,66951400,702925.5700,689983.0900,715874.6200,66137.2249,61972.9703,79549.0011,"benchmark,group:command-graph","759891.0000,757135.0000,639542.0000,623301.0000,632518.0000,631486.0000,626668.0000,634773.0000,921777.0000,632218.0000,624964.0000,628771.0000,622549.0000,644482.0000,629392.0000,622910.0000,629152.0000,632799.0000,624263.0000,636345.0000,625505.0000,632318.0000,633601.0000,624674.0000,630915.0000,631717.0000,623080.0000,631116.0000,630003.0000,624413.0000,629663.0000,627248.0000,638319.0000,629062.0000,624183.0000,630645.0000,631637.0000,623372.0000,632488.0000,623001.0000,634332.0000,633040.0000,627108.0000,632349.0000,632168.0000,622610.0000,698193.0000,756905.0000,750542.0000,758228.0000,756794.0000,758458.0000,750022.0000,755702.0000,757185.0000,755422.0000,748488.0000,755232.0000,758688.0000,754700.0000,749560.0000,756865.0000,759810.0000,759680.0000,756895.0000,751224.0000,755793.0000,757866.0000,759600.0000,750813.0000,757425.0000,757496.0000,760742.0000,750914.0000,759519.0000,758909.0000,756925.0000,750743.0000,758868.0000,757967.0000,758658.0000,749411.0000,758157.0000,760221.0000,760291.0000,751244.0000,756644.0000,761013.0000,760091.0000,750933.0000,758268.0000,759209.0000,759640.0000,750693.0000,757045.0000,759259.0000,756895.0000,753177.0000,758637.0000,757395.0000" +generating large command graphs for N nodes - 16,wave_sim topology,100,1,507456100,4534497.9700,4468458.7800,4610455.4800,361465.1407,322051.7042,389665.7931,"benchmark,group:command-graph","5107452.0000,5109245.0000,4287495.0000,4292796.0000,4295090.0000,4276384.0000,4287124.0000,4278508.0000,4295341.0000,4293897.0000,4300770.0000,4281464.0000,4297314.0000,4285502.0000,4311571.0000,4303396.0000,4306942.0000,4302895.0000,4295711.0000,4297044.0000,4287666.0000,4297475.0000,4292394.0000,4287986.0000,4295812.0000,4303385.0000,4295831.0000,4301061.0000,4297334.0000,4307663.0000,4295861.0000,4302394.0000,4297084.0000,4298937.0000,4293557.0000,4287967.0000,4296492.0000,4294739.0000,4313204.0000,4292405.0000,4301012.0000,4306822.0000,4308776.0000,4305610.0000,4319146.0000,4317472.0000,4310309.0000,4322663.0000,4306581.0000,4303206.0000,4327511.0000,4381244.0000,4308776.0000,4315258.0000,4309377.0000,4302534.0000,4313485.0000,4320949.0000,4308756.0000,4302434.0000,4312473.0000,4316531.0000,4321089.0000,4323935.0000,4313104.0000,4313405.0000,4333102.0000,4561866.0000,4320237.0000,4311101.0000,4311080.0000,4306933.0000,4325347.0000,4422843.0000,5092263.0000,5108453.0000,5119846.0000,5126017.0000,5119475.0000,5121959.0000,5113393.0000,5113694.0000,5116018.0000,5110348.0000,5111118.0000,5118172.0000,5103654.0000,5117682.0000,5113723.0000,5107832.0000,5107512.0000,5109265.0000,5122440.0000,5103083.0000,5116458.0000,5112280.0000,5106510.0000,5113353.0000,5110147.0000,5104947.0000" +generating large command graphs for N nodes - 16,jacobi topology,100,1,130805300,1243954.0800,1221993.0300,1263526.5500,105816.8822,95928.4870,114748.8780,"benchmark,group:command-graph","1079397.0000,1080749.0000,1315435.0000,1307820.0000,1317749.0000,1308271.0000,1306357.0000,1310946.0000,1342636.0000,1315024.0000,1314062.0000,1319131.0000,1313611.0000,1313782.0000,1318961.0000,1318140.0000,1309113.0000,1316497.0000,1307530.0000,1310776.0000,1316727.0000,1308402.0000,1309634.0000,1315154.0000,1304384.0000,1307219.0000,1310906.0000,1311988.0000,1306217.0000,1306127.0000,1311186.0000,1304103.0000,1303993.0000,1314312.0000,1304805.0000,1306237.0000,1317449.0000,1310435.0000,1305906.0000,1307189.0000,1315354.0000,1309544.0000,1310074.0000,1315525.0000,1310755.0000,1309253.0000,1313020.0000,1309904.0000,1308412.0000,1317228.0000,1312028.0000,1310475.0000,1317559.0000,1311768.0000,1304273.0000,1303311.0000,1310526.0000,1309193.0000,1314242.0000,1317279.0000,1309343.0000,1306277.0000,1313030.0000,1311988.0000,1306799.0000,1315404.0000,1309113.0000,1310916.0000,1316807.0000,1309393.0000,1475068.0000,1082192.0000,1086029.0000,1091660.0000,1085548.0000,1086079.0000,1095738.0000,1086580.0000,1087792.0000,1089386.0000,1086811.0000,1088524.0000,1089276.0000,1086981.0000,1100497.0000,1087512.0000,1088665.0000,1102300.0000,1085759.0000,1088304.0000,1090367.0000,1094405.0000,1091620.0000,1089095.0000,1087893.0000,1094536.0000,1079897.0000,1081560.0000,1088644.0000,1079537.0000" +generating large instruction graphs for N devices - 1,soup topology,100,1,456570100,4568307.9200,4564376.3400,4582673.4800,34328.7011,8821.7740,79322.3271,"benchmark,group:instruction-graph","4557719.0000,4551226.0000,4565032.0000,4570182.0000,4564281.0000,4558399.0000,4558079.0000,4568008.0000,4566044.0000,4560594.0000,4578077.0000,4551336.0000,4594097.0000,4553611.0000,4570162.0000,4546186.0000,4576153.0000,4567888.0000,4566615.0000,4554512.0000,4557768.0000,4566876.0000,4558921.0000,4559391.0000,4570031.0000,4560334.0000,4561746.0000,4547649.0000,4562828.0000,4561816.0000,4573147.0000,4566615.0000,4548060.0000,4580802.0000,4563238.0000,4569201.0000,4569991.0000,4571644.0000,4563108.0000,4565784.0000,4563970.0000,4548852.0000,4553801.0000,4546848.0000,4567036.0000,4557929.0000,4571665.0000,4563830.0000,4551557.0000,4556125.0000,4552889.0000,4562277.0000,4567156.0000,4560624.0000,4569451.0000,4607252.0000,4575061.0000,4556807.0000,4571334.0000,4567667.0000,4573659.0000,4553891.0000,4556326.0000,4569301.0000,4565112.0000,4560855.0000,4566585.0000,4568549.0000,4556697.0000,4569531.0000,4570633.0000,4557397.0000,4572166.0000,4573538.0000,4580762.0000,4555234.0000,4570182.0000,4589819.0000,4896571.0000,4569351.0000,4570292.0000,4565092.0000,4570873.0000,4564902.0000,4568990.0000,4565393.0000,4570272.0000,4562898.0000,4571564.0000,4571985.0000,4555244.0000,4564822.0000,4567948.0000,4560624.0000,4561125.0000,4571685.0000,4568068.0000,4561085.0000,4558149.0000,4574340.0000" +generating large instruction graphs for N devices - 1,chain topology,100,1,68158000,681185.8700,680350.3400,681958.6500,4121.8386,3752.3984,4507.8202,"benchmark,group:instruction-graph","674588.0000,683786.0000,689056.0000,676763.0000,684597.0000,683636.0000,675240.0000,683565.0000,685069.0000,676051.0000,684467.0000,683134.0000,674739.0000,681812.0000,681651.0000,676512.0000,681481.0000,682985.0000,673917.0000,684758.0000,685088.0000,675641.0000,683726.0000,685258.0000,682263.0000,676352.0000,687162.0000,687423.0000,674889.0000,683075.0000,683235.0000,676632.0000,683986.0000,684417.0000,676682.0000,684778.0000,683756.0000,674669.0000,684277.0000,684197.0000,674959.0000,680981.0000,684056.0000,674358.0000,684257.0000,683335.0000,676101.0000,679808.0000,685229.0000,684066.0000,675560.0000,682323.0000,685038.0000,677453.0000,683495.0000,682924.0000,675661.0000,680159.0000,683646.0000,673917.0000,682764.0000,687223.0000,673175.0000,682774.0000,682563.0000,674478.0000,684828.0000,684537.0000,674869.0000,682844.0000,685489.0000,685479.0000,676963.0000,686701.0000,684928.0000,675410.0000,685118.0000,682313.0000,677904.0000,683866.0000,683174.0000,673396.0000,683886.0000,682614.0000,675961.0000,684577.0000,684457.0000,676762.0000,684668.0000,684578.0000,675640.0000,682554.0000,683746.0000,682824.0000,677704.0000,683785.0000,682202.0000,675951.0000,682002.0000,681241.0000" +generating large instruction graphs for N devices - 1,expanding tree topology,100,1,89090900,891632.6800,887553.2700,893560.3000,13605.4101,6609.8100,22974.3248,"benchmark,group:instruction-graph","808403.0000,805928.0000,907130.0000,897682.0000,895237.0000,894716.0000,897401.0000,894846.0000,898313.0000,895768.0000,891620.0000,888865.0000,894906.0000,893453.0000,894385.0000,896770.0000,895628.0000,895277.0000,896349.0000,890498.0000,888755.0000,895658.0000,894586.0000,893614.0000,893304.0000,892342.0000,895728.0000,894396.0000,891420.0000,892332.0000,885819.0000,893073.0000,892562.0000,894195.0000,895898.0000,892502.0000,893493.0000,897511.0000,892041.0000,888404.0000,892963.0000,892743.0000,891289.0000,895317.0000,892873.0000,891601.0000,918311.0000,892191.0000,886250.0000,889386.0000,892352.0000,893113.0000,895708.0000,891320.0000,893804.0000,892112.0000,893955.0000,891911.0000,885960.0000,895778.0000,893825.0000,891721.0000,894946.0000,892031.0000,893714.0000,893473.0000,895748.0000,886781.0000,892602.0000,893223.0000,896410.0000,895718.0000,894075.0000,903173.0000,893093.0000,894135.0000,892513.0000,886550.0000,894265.0000,894316.0000,892332.0000,895507.0000,892882.0000,895046.0000,894355.0000,896580.0000,887703.0000,896700.0000,895006.0000,894095.0000,897752.0000,897071.0000,896079.0000,896910.0000,895667.0000,885278.0000,889196.0000,894536.0000,892753.0000,845763.0000" +generating large instruction graphs for N devices - 1,contracting tree topology,100,1,92803700,1008060.4500,998142.5000,1016501.8500,46755.4845,40949.9363,51012.0496,"benchmark,group:instruction-graph","1034651.0000,1035703.0000,937607.0000,929232.0000,929392.0000,927828.0000,929241.0000,928260.0000,930764.0000,933279.0000,930304.0000,928941.0000,929822.0000,928730.0000,925835.0000,921547.0000,927869.0000,927468.0000,930955.0000,925965.0000,928731.0000,928180.0000,928901.0000,929763.0000,929943.0000,928941.0000,930654.0000,936947.0000,1040773.0000,1035593.0000,1036685.0000,1035003.0000,1033339.0000,1031766.0000,1039160.0000,1035002.0000,1037948.0000,1035122.0000,1035222.0000,1037417.0000,1039200.0000,1037316.0000,1041374.0000,1039942.0000,1036436.0000,1036315.0000,1036535.0000,1034651.0000,1036185.0000,1034551.0000,1034271.0000,1032768.0000,1034091.0000,1042547.0000,1036786.0000,1035133.0000,1035323.0000,1032348.0000,1037938.0000,1034031.0000,1032117.0000,1034702.0000,1033831.0000,1035764.0000,1033369.0000,1033640.0000,1035503.0000,1033169.0000,1034492.0000,1032918.0000,1036645.0000,1031826.0000,1032037.0000,1033831.0000,1033920.0000,1033360.0000,1036014.0000,1032838.0000,1062274.0000,1033760.0000,1034091.0000,1040012.0000,1033640.0000,1033269.0000,1037316.0000,1036274.0000,1038749.0000,1037027.0000,1034802.0000,1033460.0000,1035072.0000,1035072.0000,1033048.0000,1035252.0000,1035032.0000,1032046.0000,1035874.0000,1031706.0000,1036706.0000,1035363.0000" +generating large instruction graphs for N devices - 1,wave_sim topology,100,1,583388900,5560778.6800,5495066.4900,5623635.3400,327081.0948,309310.3090,336467.2027,"benchmark,group:instruction-graph","5860771.0000,5826216.0000,5377014.0000,5234372.0000,5158488.0000,5148209.0000,5152177.0000,5144752.0000,5147798.0000,5149852.0000,5189548.0000,5169940.0000,5156705.0000,5300769.0000,5174339.0000,5165281.0000,5141306.0000,5152307.0000,5147217.0000,5157798.0000,5159751.0000,5161554.0000,5148219.0000,5155953.0000,5128903.0000,5227930.0000,5155824.0000,5160252.0000,5144782.0000,5143049.0000,5167536.0000,5156504.0000,5134833.0000,5144212.0000,5153178.0000,5141757.0000,5159360.0000,5138701.0000,5162325.0000,5171032.0000,5143430.0000,5140685.0000,5327840.0000,5854089.0000,5851404.0000,5832558.0000,5833459.0000,5833951.0000,5850852.0000,5824512.0000,5831155.0000,5838669.0000,5810927.0000,5828320.0000,5834291.0000,5829973.0000,5863907.0000,5817529.0000,5838419.0000,5830263.0000,5825665.0000,5836405.0000,5834261.0000,5835142.0000,5815446.0000,5842707.0000,5819674.0000,5852025.0000,5829652.0000,5821146.0000,5810616.0000,5901489.0000,5823681.0000,5830343.0000,5826396.0000,5841224.0000,5818020.0000,5827568.0000,5823681.0000,5824563.0000,5835824.0000,5836756.0000,5834432.0000,5850702.0000,5822459.0000,5831205.0000,5833189.0000,5821807.0000,5817109.0000,5818801.0000,5831816.0000,5831376.0000,5818732.0000,5823891.0000,5829112.0000,5829602.0000,5815185.0000,5823831.0000,5829071.0000,5816517.0000" +generating large instruction graphs for N devices - 1,jacobi topology,100,1,111859100,1212967.3800,1198392.7000,1226458.8600,71629.0775,66261.8867,74690.0019,"benchmark,group:instruction-graph","1263236.0000,1269978.0000,1119833.0000,1122267.0000,1115866.0000,1120104.0000,1115004.0000,1117979.0000,1121005.0000,1116407.0000,1120445.0000,1116768.0000,1126226.0000,1118811.0000,1119853.0000,1130313.0000,1112950.0000,1113011.0000,1113892.0000,1112600.0000,1118772.0000,1116377.0000,1115165.0000,1113331.0000,1116447.0000,1113712.0000,1113151.0000,1115065.0000,1115014.0000,1129833.0000,1118902.0000,1120534.0000,1116106.0000,1113311.0000,1114484.0000,1113311.0000,1116688.0000,1127638.0000,1262825.0000,1263366.0000,1266222.0000,1273615.0000,1264067.0000,1270008.0000,1262194.0000,1299024.0000,1264287.0000,1266371.0000,1274316.0000,1262715.0000,1261783.0000,1266833.0000,1272262.0000,1264758.0000,1266903.0000,1263246.0000,1272934.0000,1262294.0000,1266482.0000,1261472.0000,1271922.0000,1259308.0000,1260090.0000,1260370.0000,1269367.0000,1258857.0000,1264588.0000,1271050.0000,1261583.0000,1261993.0000,1269237.0000,1271341.0000,1270079.0000,1260670.0000,1260901.0000,1274798.0000,1262684.0000,1261141.0000,1269548.0000,1267083.0000,1261883.0000,1292682.0000,1270870.0000,1265119.0000,1262294.0000,1263536.0000,1270169.0000,1262625.0000,1262113.0000,1264568.0000,1268806.0000,1259038.0000,1263556.0000,1262313.0000,1266261.0000,1263777.0000,1268175.0000,1274557.0000,1259960.0000,1265460.0000" +generating large instruction graphs for N devices - 4,soup topology,100,1,458167000,4210328.9000,4164680.7300,4262158.0700,247097.8650,222724.8044,263558.2408,"benchmark,group:instruction-graph","4597413.0000,4581343.0000,4578588.0000,4575442.0000,4272516.0000,4030277.0000,4035517.0000,4040216.0000,4041479.0000,4041949.0000,4029395.0000,4040557.0000,4040517.0000,4039114.0000,4042320.0000,4045516.0000,4045045.0000,4048281.0000,4041819.0000,4039454.0000,4156567.0000,4058692.0000,4046818.0000,4040015.0000,4033804.0000,4050214.0000,4049072.0000,4041017.0000,4032432.0000,4049794.0000,4035878.0000,4038613.0000,4035277.0000,4040126.0000,4046047.0000,4058831.0000,4033323.0000,4033413.0000,4043392.0000,4044905.0000,4036018.0000,4048963.0000,4042270.0000,4037681.0000,4040626.0000,4061947.0000,4033784.0000,4051798.0000,4043603.0000,4034796.0000,4042570.0000,4099648.0000,4036048.0000,4043722.0000,4037781.0000,4030949.0000,4038994.0000,4034485.0000,4039275.0000,4041558.0000,4044995.0000,4044173.0000,4039405.0000,4040877.0000,4041779.0000,4041338.0000,4039224.0000,4055215.0000,4031029.0000,4028173.0000,4053462.0000,4046959.0000,4043292.0000,4230306.0000,4583357.0000,4577836.0000,4578588.0000,4573428.0000,4578367.0000,4581353.0000,4600790.0000,4578567.0000,4584959.0000,4603815.0000,4573808.0000,4589258.0000,4598025.0000,4582285.0000,4575121.0000,4571495.0000,4592374.0000,4582776.0000,4612963.0000,4590601.0000,4581603.0000,4589208.0000,4582375.0000,4582084.0000,4576694.0000,4579429.0000" +generating large instruction graphs for N devices - 4,chain topology,100,1,60229500,603855.0400,602495.5700,607315.3600,10359.6811,5173.2082,21854.6372,"benchmark,group:instruction-graph","596991.0000,603363.0000,617911.0000,607121.0000,597712.0000,692262.0000,607361.0000,596370.0000,605979.0000,597602.0000,606560.0000,610296.0000,597192.0000,606419.0000,597903.0000,610366.0000,611358.0000,598434.0000,606359.0000,595899.0000,606809.0000,608734.0000,599215.0000,608764.0000,598504.0000,607792.0000,609284.0000,596610.0000,609555.0000,595659.0000,606118.0000,609605.0000,596079.0000,606520.0000,594957.0000,605738.0000,610737.0000,598574.0000,605898.0000,596410.0000,607020.0000,612050.0000,598394.0000,605567.0000,596850.0000,605457.0000,605628.0000,596941.0000,605537.0000,603484.0000,600177.0000,607802.0000,600087.0000,606540.0000,608363.0000,597602.0000,606760.0000,597632.0000,604055.0000,606790.0000,600498.0000,607180.0000,598014.0000,607751.0000,604696.0000,596470.0000,604966.0000,597031.0000,609816.0000,605938.0000,596500.0000,606238.0000,595699.0000,605618.0000,606669.0000,596821.0000,608383.0000,598254.0000,603463.0000,604606.0000,594156.0000,606359.0000,593434.0000,604084.0000,603303.0000,595217.0000,605857.0000,593835.0000,605457.0000,604686.0000,594266.0000,604195.0000,597592.0000,605507.0000,609835.0000,594827.0000,607701.0000,596260.0000,603293.0000,603273.0000" +generating large instruction graphs for N devices - 4,expanding tree topology,100,1,89559100,886897.0300,880445.8500,891335.8400,26977.9052,19882.8239,33958.9761,"benchmark,group:instruction-graph","895958.0000,899896.0000,904665.0000,898053.0000,897662.0000,897201.0000,894245.0000,895287.0000,888765.0000,895468.0000,894997.0000,895087.0000,894205.0000,896209.0000,898914.0000,893694.0000,895037.0000,887512.0000,895919.0000,896068.0000,898012.0000,896830.0000,896159.0000,896379.0000,895768.0000,894836.0000,896178.0000,891880.0000,898323.0000,896560.0000,893634.0000,897532.0000,895828.0000,895648.0000,895397.0000,897522.0000,888925.0000,899175.0000,897722.0000,900618.0000,899495.0000,895729.0000,896089.0000,895477.0000,897261.0000,892031.0000,887573.0000,897311.0000,899636.0000,898594.0000,893033.0000,893484.0000,895337.0000,897120.0000,894585.0000,890268.0000,895197.0000,894937.0000,896329.0000,895348.0000,895878.0000,920736.0000,897331.0000,895978.0000,895167.0000,888023.0000,894055.0000,893865.0000,894837.0000,894406.0000,894485.0000,896780.0000,894626.0000,895017.0000,894005.0000,801830.0000,810306.0000,807681.0000,808723.0000,805737.0000,798925.0000,811418.0000,806609.0000,803774.0000,813292.0000,887753.0000,899105.0000,896730.0000,896880.0000,896349.0000,894736.0000,895217.0000,895969.0000,899876.0000,896159.0000,890779.0000,895698.0000,897221.0000,894355.0000,896790.0000" +generating large instruction graphs for N devices - 4,contracting tree topology,100,1,103810900,1038999.9000,1038490.1600,1040001.0200,3490.5431,2140.5057,6689.6606,"benchmark,group:instruction-graph","1036826.0000,1036986.0000,1045683.0000,1043990.0000,1041124.0000,1035774.0000,1037618.0000,1038689.0000,1038649.0000,1039571.0000,1041214.0000,1038539.0000,1036967.0000,1036184.0000,1036936.0000,1036635.0000,1039521.0000,1039731.0000,1041715.0000,1039230.0000,1040022.0000,1037467.0000,1038349.0000,1038399.0000,1038179.0000,1039751.0000,1038669.0000,1040673.0000,1040402.0000,1043478.0000,1040954.0000,1040032.0000,1041735.0000,1040062.0000,1036545.0000,1037597.0000,1037638.0000,1040924.0000,1040372.0000,1038769.0000,1065169.0000,1034873.0000,1037076.0000,1036115.0000,1038439.0000,1043940.0000,1035153.0000,1037046.0000,1039280.0000,1038139.0000,1038990.0000,1039090.0000,1037037.0000,1037417.0000,1048919.0000,1040934.0000,1037888.0000,1038259.0000,1040042.0000,1037598.0000,1039701.0000,1036805.0000,1039310.0000,1035644.0000,1037698.0000,1037267.0000,1036475.0000,1037187.0000,1036165.0000,1036776.0000,1037828.0000,1041525.0000,1040283.0000,1039711.0000,1038129.0000,1039501.0000,1041064.0000,1038359.0000,1038980.0000,1042997.0000,1039381.0000,1035904.0000,1037016.0000,1039762.0000,1037557.0000,1037648.0000,1036425.0000,1036886.0000,1038789.0000,1035533.0000,1039551.0000,1038178.0000,1040724.0000,1034441.0000,1038419.0000,1039210.0000,1039581.0000,1036235.0000,1037316.0000,1037026.0000" +generating large instruction graphs for N devices - 4,wave_sim topology,100,1,586374100,5747402.3900,5691390.2000,5790344.6300,249933.5307,204298.0828,290210.0028,"benchmark,group:instruction-graph","5846824.0000,5852545.0000,5516137.0000,5264329.0000,5173056.0000,5181522.0000,5173176.0000,5187133.0000,5181532.0000,5168146.0000,5185861.0000,5200037.0000,5190219.0000,5189778.0000,5205738.0000,5182775.0000,5182464.0000,5169339.0000,5188435.0000,5447187.0000,5884556.0000,5863957.0000,5895808.0000,5868045.0000,5856493.0000,5850913.0000,5862384.0000,5867895.0000,5853167.0000,5868106.0000,5877553.0000,5873595.0000,5892431.0000,5862334.0000,5881821.0000,5855852.0000,5862815.0000,5884046.0000,5863727.0000,5878344.0000,5866002.0000,5865220.0000,5872924.0000,5871472.0000,5867153.0000,5864779.0000,5851424.0000,5863236.0000,5864378.0000,5848879.0000,5849871.0000,5869718.0000,5860341.0000,5846534.0000,5858828.0000,5849700.0000,5881210.0000,5849820.0000,5857395.0000,5907951.0000,5875058.0000,5857044.0000,5864458.0000,5878044.0000,5860110.0000,5858456.0000,5858877.0000,5859469.0000,5855251.0000,5857906.0000,5845362.0000,5853227.0000,5867885.0000,5885879.0000,5863927.0000,5849470.0000,5858908.0000,5865721.0000,5864258.0000,5849269.0000,5865300.0000,5851023.0000,5851223.0000,5857175.0000,5850081.0000,5854039.0000,5868666.0000,5872904.0000,5871562.0000,5860962.0000,5873756.0000,5856513.0000,5860651.0000,5845452.0000,5837777.0000,5851023.0000,5871161.0000,5859689.0000,5859999.0000,5835794.0000" +generating large instruction graphs for N devices - 4,jacobi topology,100,1,127629300,1232219.0400,1217832.6600,1244605.4600,68160.4722,60548.4843,73524.0856,"benchmark,group:instruction-graph","1121005.0000,1117389.0000,1284686.0000,1274957.0000,1287261.0000,1270990.0000,1268215.0000,1274236.0000,1283584.0000,1269207.0000,1272904.0000,1271431.0000,1277503.0000,1271932.0000,1274977.0000,1277883.0000,1270810.0000,1265811.0000,1269327.0000,1282022.0000,1269868.0000,1271491.0000,1270239.0000,1277162.0000,1267323.0000,1268937.0000,1278575.0000,1267123.0000,1269247.0000,1267424.0000,1275980.0000,1276521.0000,1269878.0000,1264077.0000,1279938.0000,1272493.0000,1268085.0000,1304214.0000,1270038.0000,1270138.0000,1268456.0000,1275148.0000,1266562.0000,1268185.0000,1272032.0000,1279497.0000,1273876.0000,1271661.0000,1277091.0000,1273024.0000,1274216.0000,1271200.0000,1282912.0000,1277071.0000,1276981.0000,1284586.0000,1283864.0000,1274166.0000,1277483.0000,1284115.0000,1276191.0000,1272513.0000,1273716.0000,1276631.0000,1267694.0000,1273445.0000,1280659.0000,1271010.0000,1273515.0000,1280929.0000,1282773.0000,1276681.0000,1270690.0000,1274137.0000,1133269.0000,1123440.0000,1122519.0000,1120775.0000,1119223.0000,1124662.0000,1124021.0000,1123060.0000,1132738.0000,1120935.0000,1122167.0000,1124582.0000,1122258.0000,1123361.0000,1126135.0000,1120725.0000,1130734.0000,1121306.0000,1120184.0000,1118320.0000,1122469.0000,1123680.0000,1119633.0000,1120224.0000,1130714.0000,1123179.0000" +generating large instruction graphs for N devices - 16,soup topology,100,1,406907600,4383807.8900,4330549.3100,4436069.7500,265126.9143,250751.6990,270614.1050,"benchmark,group:instruction-graph","4600069.0000,4594137.0000,4063260.0000,4072727.0000,4067277.0000,4063781.0000,4057288.0000,4065154.0000,4081224.0000,4065283.0000,4051146.0000,4060925.0000,4064392.0000,4062699.0000,4058260.0000,4076074.0000,4054333.0000,4061717.0000,4063931.0000,4159402.0000,4079410.0000,4073068.0000,4060444.0000,4069642.0000,4063961.0000,4070824.0000,4057057.0000,4071465.0000,4052639.0000,4053922.0000,4056587.0000,4066055.0000,4065244.0000,4072788.0000,4062729.0000,4065634.0000,4075162.0000,4051216.0000,4066576.0000,4057448.0000,4060644.0000,4054202.0000,4055425.0000,4584259.0000,4609576.0000,4612873.0000,4600108.0000,4612252.0000,4603705.0000,4598555.0000,4611700.0000,4616169.0000,4599447.0000,4594889.0000,4605428.0000,4614886.0000,4626117.0000,4602272.0000,4603766.0000,4600039.0000,4603585.0000,4596442.0000,4597313.0000,4592715.0000,4614316.0000,4595971.0000,4593696.0000,4604177.0000,4600469.0000,4616209.0000,4604166.0000,4610669.0000,4598325.0000,4610839.0000,4608715.0000,4606531.0000,4600490.0000,4614656.0000,4597884.0000,4598255.0000,4595690.0000,4606681.0000,4591282.0000,4617672.0000,4599297.0000,4600319.0000,4620257.0000,4619625.0000,4600068.0000,4601732.0000,4600970.0000,4609687.0000,4607072.0000,4603615.0000,4594828.0000,4600059.0000,4602944.0000,4608655.0000,4601111.0000,4632540.0000" +generating large instruction graphs for N devices - 16,chain topology,100,1,69105500,690516.0400,689493.4800,692395.6100,6867.2989,4396.3915,12964.0737,"benchmark,group:instruction-graph","695107.0000,685810.0000,708984.0000,695608.0000,684978.0000,692131.0000,692161.0000,689457.0000,685519.0000,692722.0000,740904.0000,682904.0000,692192.0000,691952.0000,682523.0000,692603.0000,693254.0000,683786.0000,692773.0000,695598.0000,692793.0000,684827.0000,690438.0000,694446.0000,683785.0000,692342.0000,694736.0000,684838.0000,692432.0000,689467.0000,680630.0000,691150.0000,693084.0000,686040.0000,691270.0000,693685.0000,692011.0000,686450.0000,695327.0000,693283.0000,687022.0000,691851.0000,694907.0000,681892.0000,688805.0000,691681.0000,683115.0000,694466.0000,693254.0000,694126.0000,682313.0000,692152.0000,692993.0000,685089.0000,693244.0000,694766.0000,685028.0000,689787.0000,695579.0000,684256.0000,691641.0000,691490.0000,690759.0000,683355.0000,692672.0000,692382.0000,681872.0000,691060.0000,691621.0000,683125.0000,691580.0000,696680.0000,683806.0000,692933.0000,692192.0000,685780.0000,691300.0000,692262.0000,690839.0000,683906.0000,690960.0000,689687.0000,682564.0000,696039.0000,688284.0000,683795.0000,688575.0000,691961.0000,683646.0000,690489.0000,690929.0000,688084.0000,684888.0000,693073.0000,693525.0000,685639.0000,694256.0000,695568.0000,684547.0000,693514.0000" +generating large instruction graphs for N devices - 16,expanding tree topology,100,1,90369800,904178.1000,903578.3200,905169.4800,3854.1954,2524.0195,7072.2353,"benchmark,group:instruction-graph","901108.0000,901659.0000,905747.0000,906659.0000,903934.0000,904725.0000,907130.0000,905236.0000,904324.0000,904746.0000,904685.0000,897622.0000,904765.0000,904225.0000,906528.0000,931876.0000,904385.0000,905717.0000,907110.0000,908172.0000,906258.0000,905476.0000,898894.0000,903011.0000,903993.0000,903943.0000,905446.0000,905166.0000,903112.0000,911428.0000,904274.0000,905426.0000,898473.0000,902370.0000,905136.0000,903643.0000,903643.0000,907471.0000,903513.0000,904825.0000,903833.0000,906238.0000,903152.0000,896089.0000,905176.0000,902792.0000,905216.0000,903914.0000,903293.0000,902531.0000,903773.0000,903803.0000,902671.0000,896790.0000,903713.0000,901810.0000,903844.0000,907130.0000,905296.0000,905587.0000,902922.0000,903684.0000,905366.0000,904585.0000,897491.0000,904665.0000,902381.0000,903513.0000,903513.0000,903143.0000,903523.0000,905857.0000,907000.0000,900647.0000,898964.0000,903904.0000,899455.0000,902982.0000,901819.0000,905487.0000,902331.0000,906218.0000,904645.0000,900757.0000,899726.0000,906759.0000,904395.0000,908152.0000,903693.0000,905035.0000,904325.0000,904445.0000,907540.0000,906949.0000,902872.0000,895558.0000,903994.0000,903663.0000,905015.0000,908332.0000" +generating large instruction graphs for N devices - 16,contracting tree topology,100,1,104731600,1046442.8300,1045741.7800,1047846.9700,4877.7229,2909.1988,8666.1886,"benchmark,group:instruction-graph","1043909.0000,1046104.0000,1061363.0000,1044641.0000,1044661.0000,1047606.0000,1048178.0000,1045382.0000,1045393.0000,1048969.0000,1042767.0000,1045202.0000,1047556.0000,1047686.0000,1049651.0000,1046344.0000,1046334.0000,1042857.0000,1044650.0000,1048337.0000,1044250.0000,1044981.0000,1041745.0000,1050241.0000,1046645.0000,1048648.0000,1044992.0000,1041665.0000,1043168.0000,1046705.0000,1044611.0000,1046384.0000,1046304.0000,1047276.0000,1046374.0000,1043639.0000,1041835.0000,1050241.0000,1045792.0000,1044079.0000,1045632.0000,1044120.0000,1044691.0000,1044631.0000,1049189.0000,1051453.0000,1046343.0000,1043839.0000,1046404.0000,1044180.0000,1045202.0000,1042176.0000,1043378.0000,1042317.0000,1043208.0000,1041595.0000,1045532.0000,1049079.0000,1043268.0000,1045132.0000,1045422.0000,1046784.0000,1045342.0000,1044370.0000,1045202.0000,1045122.0000,1044320.0000,1050432.0000,1046865.0000,1046705.0000,1045222.0000,1047296.0000,1044541.0000,1046544.0000,1043820.0000,1046113.0000,1043869.0000,1046835.0000,1045001.0000,1046283.0000,1046995.0000,1047797.0000,1046194.0000,1046805.0000,1044029.0000,1046404.0000,1044761.0000,1045863.0000,1045402.0000,1051193.0000,1068115.0000,1046154.0000,1046795.0000,1043128.0000,1044030.0000,1081050.0000,1048318.0000,1043158.0000,1047827.0000,1045643.0000" +generating large instruction graphs for N devices - 16,wave_sim topology,100,1,594780300,5936660.8800,5914482.6500,5942843.6500,52911.5995,14088.3883,120603.9064,"benchmark,group:instruction-graph","5943418.0000,5935443.0000,5439361.0000,5820866.0000,5945391.0000,5929341.0000,5939771.0000,5941665.0000,5934771.0000,5934031.0000,5966932.0000,5954679.0000,5934862.0000,5926516.0000,5941033.0000,5940422.0000,5931706.0000,5955841.0000,5934682.0000,5951022.0000,5943919.0000,5937217.0000,5927007.0000,5941534.0000,5950932.0000,5933659.0000,5925254.0000,5958286.0000,5939931.0000,5924672.0000,5948207.0000,5943148.0000,5961672.0000,5928239.0000,5958086.0000,5943017.0000,5951514.0000,5940692.0000,5947565.0000,5950381.0000,5941043.0000,5940131.0000,5949460.0000,5947205.0000,5970870.0000,5937446.0000,5947806.0000,5937226.0000,5939741.0000,5946143.0000,5927568.0000,5938739.0000,5942355.0000,5943778.0000,5922168.0000,5927207.0000,5948959.0000,5958407.0000,5951102.0000,5962424.0000,5933799.0000,5963246.0000,5941274.0000,5929121.0000,5920665.0000,5939831.0000,5948047.0000,5932708.0000,5932437.0000,5931986.0000,5948738.0000,5948628.0000,5953146.0000,5956243.0000,5940182.0000,5929201.0000,5939280.0000,5954078.0000,5968495.0000,5944270.0000,5933729.0000,5991749.0000,5945071.0000,5921447.0000,5951834.0000,5940803.0000,5946544.0000,5932948.0000,5935042.0000,5935202.0000,5941555.0000,5936314.0000,5947246.0000,5932176.0000,5986851.0000,5945883.0000,5926966.0000,5938348.0000,5936846.0000,5947696.0000" +generating large instruction graphs for N devices - 16,jacobi topology,100,1,131745000,1314613.2100,1313724.2800,1315832.4300,5254.0429,4119.1621,8301.7524,"benchmark,group:instruction-graph","1312419.0000,1312018.0000,1317128.0000,1309704.0000,1320544.0000,1312599.0000,1310846.0000,1317308.0000,1313591.0000,1309494.0000,1317198.0000,1310946.0000,1310816.0000,1316276.0000,1312088.0000,1312319.0000,1313491.0000,1317469.0000,1309002.0000,1311246.0000,1319933.0000,1314873.0000,1309743.0000,1317087.0000,1308761.0000,1311988.0000,1317939.0000,1311818.0000,1311888.0000,1318600.0000,1314974.0000,1311578.0000,1308000.0000,1321747.0000,1312529.0000,1310795.0000,1323309.0000,1312249.0000,1309854.0000,1326556.0000,1315054.0000,1313361.0000,1322879.0000,1312068.0000,1311287.0000,1321947.0000,1310496.0000,1308381.0000,1345031.0000,1315044.0000,1315225.0000,1318901.0000,1312670.0000,1309323.0000,1312028.0000,1320274.0000,1317348.0000,1310976.0000,1322929.0000,1313641.0000,1313942.0000,1321517.0000,1308130.0000,1313561.0000,1319883.0000,1313160.0000,1312799.0000,1320634.0000,1307800.0000,1309222.0000,1305916.0000,1317589.0000,1314804.0000,1312389.0000,1314232.0000,1310956.0000,1313180.0000,1317499.0000,1314823.0000,1315615.0000,1318600.0000,1311688.0000,1311247.0000,1319462.0000,1311878.0000,1309123.0000,1318851.0000,1309673.0000,1314493.0000,1313852.0000,1320484.0000,1309313.0000,1312609.0000,1318781.0000,1313541.0000,1314402.0000,1322418.0000,1310625.0000,1311227.0000,1321817.0000" +generating large instruction graphs for N devices without d2d copy support - 1,soup topology,100,1,454427900,4575963.3900,4574046.9500,4577969.1100,10023.1352,8796.8282,11679.3469,"benchmark,group:instruction-graph","4576534.0000,4570703.0000,4587615.0000,4590991.0000,4583918.0000,4567106.0000,4566325.0000,4563639.0000,4577295.0000,4579329.0000,4592123.0000,4586052.0000,4575211.0000,4575712.0000,4560493.0000,4566766.0000,4584699.0000,4577035.0000,4582285.0000,4604948.0000,4575632.0000,4571294.0000,4586412.0000,4585742.0000,4578066.0000,4575962.0000,4559411.0000,4562287.0000,4579519.0000,4581143.0000,4581694.0000,4569701.0000,4571354.0000,4568388.0000,4568829.0000,4572936.0000,4577004.0000,4588687.0000,4568278.0000,4572977.0000,4559060.0000,4591633.0000,4584679.0000,4596813.0000,4587254.0000,4563168.0000,4579479.0000,4576734.0000,4577626.0000,4577105.0000,4570412.0000,4580211.0000,4579159.0000,4575742.0000,4568228.0000,4561174.0000,4584318.0000,4552869.0000,4559201.0000,4566405.0000,4576654.0000,4559411.0000,4563529.0000,4597283.0000,4574660.0000,4574660.0000,4580791.0000,4582965.0000,4567586.0000,4585681.0000,4576193.0000,4566164.0000,4578157.0000,4573548.0000,4566835.0000,4565323.0000,4580842.0000,4569049.0000,4561384.0000,4579380.0000,4564891.0000,4579729.0000,4566394.0000,4579930.0000,4580962.0000,4596782.0000,4601592.0000,4575932.0000,4580511.0000,4572847.0000,4568498.0000,4581132.0000,4563449.0000,4580141.0000,4575061.0000,4592734.0000,4584218.0000,4573979.0000,4572416.0000,4569681.0000" +generating large instruction graphs for N devices without d2d copy support - 1,chain topology,100,1,68123900,681768.4400,680907.1100,682874.2700,4956.0218,3879.1421,7839.2810,"benchmark,group:instruction-graph","685459.0000,684517.0000,684337.0000,685099.0000,682984.0000,675971.0000,686250.0000,683716.0000,678095.0000,684618.0000,688615.0000,681421.0000,682634.0000,683105.0000,683215.0000,675320.0000,685098.0000,685539.0000,677594.0000,681100.0000,710807.0000,677043.0000,688345.0000,687994.0000,677624.0000,682343.0000,686351.0000,674108.0000,687402.0000,684757.0000,677614.0000,686120.0000,684237.0000,681321.0000,675791.0000,683636.0000,683676.0000,673586.0000,684127.0000,681682.0000,673406.0000,682714.0000,681612.0000,675510.0000,683636.0000,683365.0000,677274.0000,684026.0000,683755.0000,675170.0000,686932.0000,684167.0000,676632.0000,684688.0000,682924.0000,673827.0000,681131.0000,682283.0000,681231.0000,675531.0000,683425.0000,682343.0000,674268.0000,681782.0000,681562.0000,674709.0000,683335.0000,681201.0000,676132.0000,681782.0000,682523.0000,673255.0000,678666.0000,683044.0000,674438.0000,683084.0000,685379.0000,675190.0000,683044.0000,688124.0000,682002.0000,677124.0000,684016.0000,684598.0000,675740.0000,682684.0000,682684.0000,676673.0000,684407.0000,685709.0000,680108.0000,683635.0000,686792.0000,679838.0000,683626.0000,682834.0000,678797.0000,683485.0000,685369.0000,676372.0000" +generating large instruction graphs for N devices without d2d copy support - 1,expanding tree topology,100,1,89390700,894056.6000,893326.1600,895041.0400,4277.3479,3120.9654,6646.9966,"benchmark,group:instruction-graph","895026.0000,895036.0000,909214.0000,896359.0000,897230.0000,894035.0000,896529.0000,893934.0000,895187.0000,888554.0000,894666.0000,892642.0000,895568.0000,893764.0000,892682.0000,895367.0000,895207.0000,893324.0000,885569.0000,893293.0000,894777.0000,893594.0000,894816.0000,894185.0000,895117.0000,892622.0000,894195.0000,888023.0000,892392.0000,895849.0000,896008.0000,896399.0000,900006.0000,895527.0000,895889.0000,894195.0000,892212.0000,885248.0000,902692.0000,896549.0000,892872.0000,894726.0000,893624.0000,892773.0000,893884.0000,891911.0000,883054.0000,895798.0000,892312.0000,895257.0000,895868.0000,895628.0000,894215.0000,895247.0000,894516.0000,894065.0000,888725.0000,899655.0000,896780.0000,898082.0000,893864.0000,892733.0000,892562.0000,919283.0000,894857.0000,884927.0000,894405.0000,896820.0000,892542.0000,893013.0000,894155.0000,893243.0000,892853.0000,891941.0000,893283.0000,886150.0000,894435.0000,892171.0000,895938.0000,894696.0000,894005.0000,893534.0000,892251.0000,892622.0000,887322.0000,893294.0000,894295.0000,893463.0000,891460.0000,895678.0000,898764.0000,894075.0000,893825.0000,890769.0000,885919.0000,892763.0000,893825.0000,893564.0000,893944.0000,893944.0000" +generating large instruction graphs for N devices without d2d copy support - 1,contracting tree topology,100,1,103711700,1037119.3700,1036421.6100,1038342.3000,4602.6530,2787.2486,7347.1353,"benchmark,group:instruction-graph","1033649.0000,1037968.0000,1048277.0000,1039261.0000,1039491.0000,1042988.0000,1037788.0000,1036505.0000,1035734.0000,1037628.0000,1036555.0000,1035753.0000,1037126.0000,1034542.0000,1033469.0000,1034080.0000,1033570.0000,1032167.0000,1035403.0000,1033710.0000,1037447.0000,1038589.0000,1038459.0000,1037818.0000,1039230.0000,1038979.0000,1044741.0000,1039831.0000,1036875.0000,1037697.0000,1035393.0000,1035763.0000,1032487.0000,1032968.0000,1035944.0000,1035172.0000,1035603.0000,1036716.0000,1036736.0000,1036966.0000,1035623.0000,1037147.0000,1061342.0000,1038338.0000,1039090.0000,1039431.0000,1037848.0000,1036054.0000,1034210.0000,1037176.0000,1034251.0000,1036125.0000,1041435.0000,1036756.0000,1036325.0000,1031746.0000,1033549.0000,1034993.0000,1032908.0000,1031786.0000,1035163.0000,1035664.0000,1036836.0000,1037096.0000,1038589.0000,1037878.0000,1034622.0000,1036705.0000,1035563.0000,1033820.0000,1035743.0000,1037196.0000,1035914.0000,1036475.0000,1034061.0000,1037407.0000,1036445.0000,1039981.0000,1040553.0000,1035543.0000,1041424.0000,1038289.0000,1036665.0000,1033820.0000,1038800.0000,1035884.0000,1064859.0000,1035844.0000,1032337.0000,1035133.0000,1042106.0000,1031035.0000,1033510.0000,1035483.0000,1037246.0000,1035663.0000,1039702.0000,1036525.0000,1036155.0000,1034992.0000" +generating large instruction graphs for N devices without d2d copy support - 1,wave_sim topology,100,1,583295700,5834351.9500,5830389.7900,5843104.1200,28565.5053,15948.4806,56700.1548,"benchmark,group:instruction-graph","5854840.0000,5832638.0000,6060219.0000,5913651.0000,5826286.0000,5831615.0000,5854659.0000,5839461.0000,5827938.0000,5847986.0000,5818070.0000,5828449.0000,5837517.0000,5837968.0000,5820344.0000,5821576.0000,5816386.0000,5842467.0000,5832136.0000,5830414.0000,5833169.0000,5829361.0000,5815636.0000,5832307.0000,5866582.0000,5815295.0000,5827788.0000,5829121.0000,5821026.0000,5819944.0000,5828439.0000,5839851.0000,5834551.0000,5831766.0000,5822949.0000,5819743.0000,5846654.0000,5835253.0000,5832968.0000,5846264.0000,5825464.0000,5861152.0000,5831405.0000,5822558.0000,5825504.0000,5822909.0000,5808402.0000,5824262.0000,5837908.0000,5867995.0000,5832527.0000,5840292.0000,5837256.0000,5806268.0000,5838318.0000,5822909.0000,5829992.0000,5844761.0000,5851774.0000,5828530.0000,5828840.0000,5840432.0000,5839230.0000,5836044.0000,5812630.0000,5819753.0000,5830524.0000,5834602.0000,5824091.0000,5821226.0000,5815976.0000,5826617.0000,5833329.0000,5825093.0000,5845873.0000,5859789.0000,5837718.0000,5828249.0000,5834862.0000,5840863.0000,5827909.0000,5825685.0000,5815876.0000,5834751.0000,5821687.0000,5891700.0000,5816126.0000,5816316.0000,5795357.0000,5813061.0000,5820955.0000,5816778.0000,5841314.0000,5807671.0000,5824672.0000,5807971.0000,5886089.0000,5809704.0000,5819703.0000,5842656.0000" +generating large instruction graphs for N devices without d2d copy support - 1,jacobi topology,100,1,126627400,1265617.7300,1264679.0800,1267002.1100,5756.0743,4130.1571,9153.0667,"benchmark,group:instruction-graph","1264598.0000,1274607.0000,1268786.0000,1270209.0000,1266782.0000,1265620.0000,1262754.0000,1300186.0000,1264588.0000,1264979.0000,1267443.0000,1272834.0000,1263115.0000,1265179.0000,1270259.0000,1267093.0000,1264809.0000,1266091.0000,1275409.0000,1265209.0000,1263336.0000,1264638.0000,1268515.0000,1267454.0000,1264007.0000,1265259.0000,1270319.0000,1263836.0000,1263165.0000,1271992.0000,1262033.0000,1269758.0000,1270309.0000,1272293.0000,1261532.0000,1258917.0000,1257545.0000,1263476.0000,1259278.0000,1264277.0000,1261703.0000,1269417.0000,1263597.0000,1265610.0000,1268295.0000,1261162.0000,1257555.0000,1263576.0000,1271331.0000,1259238.0000,1288484.0000,1260390.0000,1267013.0000,1266352.0000,1260881.0000,1263406.0000,1267915.0000,1262945.0000,1261502.0000,1266993.0000,1260891.0000,1265279.0000,1261092.0000,1268766.0000,1260220.0000,1262023.0000,1262704.0000,1267063.0000,1266762.0000,1256733.0000,1262224.0000,1268415.0000,1265109.0000,1265309.0000,1264408.0000,1271371.0000,1264007.0000,1266541.0000,1269988.0000,1267464.0000,1261853.0000,1260370.0000,1271782.0000,1264608.0000,1262625.0000,1263256.0000,1270960.0000,1258056.0000,1258637.0000,1260260.0000,1269477.0000,1264608.0000,1261853.0000,1260009.0000,1267022.0000,1261331.0000,1261973.0000,1268786.0000,1263797.0000,1264287.0000" +generating large instruction graphs for N devices without d2d copy support - 4,soup topology,100,1,458090200,4181148.1800,4138397.6300,4230330.0200,233659.8758,203045.7997,256226.3788,"benchmark,group:instruction-graph","4599708.0000,4571304.0000,4045937.0000,4034144.0000,4044173.0000,4043783.0000,4041388.0000,4036028.0000,4045145.0000,4057118.0000,4046418.0000,4053331.0000,4049764.0000,4041338.0000,4042069.0000,4053761.0000,4049784.0000,4051918.0000,4042771.0000,4051167.0000,4040887.0000,4051688.0000,4044694.0000,4058872.0000,4047088.0000,4041157.0000,4029586.0000,4050716.0000,4034325.0000,4025608.0000,4035377.0000,4032751.0000,4038382.0000,4044925.0000,4040446.0000,4048151.0000,4040016.0000,4047159.0000,4044704.0000,4038904.0000,4038472.0000,4043341.0000,4051267.0000,4045075.0000,4037020.0000,4047310.0000,4046578.0000,4056156.0000,4058611.0000,4056106.0000,4051928.0000,4040967.0000,4051798.0000,4031620.0000,4033543.0000,4051798.0000,4048652.0000,4045306.0000,4056837.0000,4072547.0000,4044413.0000,4041678.0000,4049514.0000,4047209.0000,4053391.0000,4036038.0000,4049213.0000,4056206.0000,4034696.0000,4051617.0000,4049032.0000,4035287.0000,4077466.0000,4050015.0000,4051036.0000,4041007.0000,4078729.0000,4589378.0000,4584218.0000,4581182.0000,4579499.0000,4593435.0000,4572086.0000,4595219.0000,4581653.0000,4592774.0000,4592234.0000,4575321.0000,4587765.0000,4577376.0000,4582314.0000,4579559.0000,4574540.0000,4582215.0000,4578657.0000,4619054.0000,4581924.0000,4585671.0000,4590931.0000,4589849.0000" +generating large instruction graphs for N devices without d2d copy support - 4,chain topology,100,1,68459100,684970.3100,684081.8700,686082.5200,5057.8372,4014.2033,7837.6550,"benchmark,group:instruction-graph","686701.0000,685238.0000,691921.0000,686912.0000,679808.0000,688906.0000,687773.0000,677584.0000,689827.0000,687483.0000,676883.0000,686962.0000,690509.0000,688625.0000,679878.0000,687923.0000,685690.0000,679367.0000,685589.0000,688244.0000,680039.0000,685760.0000,686140.0000,678465.0000,688926.0000,687343.0000,677894.0000,687613.0000,688485.0000,679638.0000,685820.0000,686972.0000,687453.0000,677003.0000,690879.0000,686020.0000,678085.0000,687813.0000,689266.0000,680920.0000,688024.0000,686782.0000,678405.0000,686020.0000,686922.0000,679036.0000,684417.0000,686681.0000,684117.0000,679989.0000,687903.0000,684827.0000,679417.0000,686601.0000,685128.0000,679528.0000,687603.0000,686591.0000,677494.0000,685449.0000,687743.0000,678306.0000,686521.0000,687974.0000,676572.0000,685078.0000,684216.0000,680109.0000,685399.0000,686191.0000,689667.0000,678426.0000,687332.0000,686791.0000,679067.0000,684107.0000,685599.0000,677243.0000,686351.0000,686571.0000,677855.0000,689256.0000,688645.0000,678436.0000,686912.0000,688785.0000,684797.0000,680850.0000,690308.0000,686361.0000,683315.0000,688745.0000,688033.0000,679477.0000,688175.0000,689166.0000,684367.0000,689507.0000,713973.0000,677514.0000" +generating large instruction graphs for N devices without d2d copy support - 4,expanding tree topology,100,1,89770100,896948.6600,896310.7800,897881.8100,3890.4038,2798.5241,6599.7046,"benchmark,group:instruction-graph","897140.0000,898273.0000,903914.0000,899064.0000,898303.0000,897301.0000,897421.0000,899314.0000,894856.0000,891220.0000,922288.0000,897230.0000,896629.0000,898082.0000,897101.0000,899405.0000,901660.0000,899555.0000,892522.0000,891560.0000,896469.0000,896149.0000,895337.0000,895979.0000,894385.0000,896529.0000,899255.0000,898243.0000,895378.0000,889506.0000,896188.0000,900687.0000,896440.0000,898754.0000,899645.0000,896970.0000,895568.0000,897131.0000,891229.0000,899485.0000,896099.0000,898584.0000,898543.0000,896189.0000,900366.0000,896890.0000,902050.0000,895748.0000,890648.0000,898674.0000,897331.0000,897582.0000,897361.0000,895237.0000,900547.0000,898433.0000,894165.0000,894926.0000,889606.0000,898123.0000,900126.0000,899435.0000,899645.0000,895748.0000,900737.0000,896429.0000,897822.0000,897261.0000,891229.0000,904976.0000,897562.0000,896279.0000,900016.0000,893423.0000,894456.0000,896490.0000,895107.0000,892783.0000,893824.0000,899966.0000,897421.0000,896439.0000,897351.0000,896530.0000,896369.0000,895378.0000,895077.0000,890869.0000,896780.0000,898223.0000,895207.0000,897953.0000,895457.0000,897391.0000,895017.0000,891440.0000,888454.0000,895607.0000,896599.0000,898723.0000" +generating large instruction graphs for N devices without d2d copy support - 4,contracting tree topology,100,1,103958600,1040412.7700,1039404.5000,1043547.2800,8298.8061,2737.9343,18299.6478,"benchmark,group:instruction-graph","1039971.0000,1037256.0000,1048518.0000,1040483.0000,1041344.0000,1040733.0000,1037277.0000,1035603.0000,1040272.0000,1041134.0000,1042697.0000,1039341.0000,1037998.0000,1040613.0000,1035573.0000,1036305.0000,1046264.0000,1042487.0000,1040232.0000,1036124.0000,1038409.0000,1039862.0000,1038509.0000,1037377.0000,1037668.0000,1044050.0000,1040282.0000,1038900.0000,1040273.0000,1037798.0000,1041665.0000,1038589.0000,1040974.0000,1038649.0000,1038960.0000,1040893.0000,1042867.0000,1042406.0000,1043117.0000,1041073.0000,1042446.0000,1041365.0000,1039521.0000,1040272.0000,1039380.0000,1044610.0000,1044040.0000,1042958.0000,1115254.0000,1040332.0000,1037177.0000,1035874.0000,1037578.0000,1036365.0000,1035573.0000,1037527.0000,1038599.0000,1037047.0000,1039481.0000,1041815.0000,1039722.0000,1039471.0000,1036084.0000,1039190.0000,1039631.0000,1040423.0000,1041876.0000,1039300.0000,1039100.0000,1039501.0000,1040433.0000,1039461.0000,1037267.0000,1040603.0000,1040032.0000,1037597.0000,1039941.0000,1034952.0000,1037778.0000,1036165.0000,1040472.0000,1038198.0000,1038579.0000,1038058.0000,1039912.0000,1039170.0000,1040303.0000,1039441.0000,1038649.0000,1064478.0000,1035413.0000,1037496.0000,1035583.0000,1038399.0000,1042868.0000,1038279.0000,1034892.0000,1035012.0000,1040472.0000,1037316.0000" +generating large instruction graphs for N devices without d2d copy support - 4,wave_sim topology,100,1,586956300,5869444.2600,5865447.6100,5878468.2600,29111.9713,16066.5254,57464.8969,"benchmark,group:instruction-graph","5842897.0000,5855811.0000,6096698.0000,5935683.0000,5864267.0000,5852576.0000,5877703.0000,5858076.0000,5844750.0000,5858307.0000,5858176.0000,5890207.0000,5880238.0000,5859498.0000,5880569.0000,5877292.0000,5853026.0000,5865519.0000,5877402.0000,5865390.0000,5872092.0000,5870329.0000,5875750.0000,5860821.0000,5859799.0000,5866402.0000,5885397.0000,5865209.0000,5891609.0000,5868265.0000,5867864.0000,5895587.0000,5873275.0000,5858466.0000,5861913.0000,5884085.0000,5866952.0000,5883534.0000,5856012.0000,5857374.0000,5865039.0000,5863927.0000,5972603.0000,5863235.0000,5872143.0000,5879957.0000,5877372.0000,5867052.0000,5871060.0000,5862845.0000,5864889.0000,5872874.0000,5854398.0000,5855991.0000,5861201.0000,5864669.0000,5862293.0000,5862353.0000,5867353.0000,5853998.0000,5866301.0000,5862904.0000,5890246.0000,5848247.0000,5851202.0000,5862504.0000,5857514.0000,5859498.0000,5874717.0000,5861923.0000,5858637.0000,5874797.0000,5861552.0000,5867453.0000,5908191.0000,5866081.0000,5862004.0000,5853236.0000,5846624.0000,5901638.0000,5867954.0000,5863315.0000,5851843.0000,5861261.0000,5847155.0000,5848368.0000,5874607.0000,5864488.0000,5874647.0000,5844860.0000,5874397.0000,5860160.0000,5851173.0000,5854649.0000,5842045.0000,5851413.0000,5895226.0000,5855852.0000,5849870.0000,5845802.0000" +generating large instruction graphs for N devices without d2d copy support - 4,jacobi topology,100,1,127632500,1165563.1200,1153175.5300,1179773.8100,67755.4815,59845.0611,73475.1870,"benchmark,group:instruction-graph","1274196.0000,1270319.0000,1132948.0000,1124132.0000,1124592.0000,1121276.0000,1120133.0000,1123951.0000,1121847.0000,1132117.0000,1125063.0000,1123130.0000,1118481.0000,1123851.0000,1121968.0000,1121236.0000,1116207.0000,1123770.0000,1129842.0000,1122649.0000,1121717.0000,1122949.0000,1120594.0000,1124442.0000,1130714.0000,1123430.0000,1132969.0000,1122097.0000,1122348.0000,1124091.0000,1124552.0000,1130403.0000,1121246.0000,1122859.0000,1131525.0000,1124021.0000,1125344.0000,1124312.0000,1126416.0000,1123390.0000,1120205.0000,1118681.0000,1125464.0000,1124262.0000,1127769.0000,1123590.0000,1122569.0000,1135824.0000,1123971.0000,1122379.0000,1128239.0000,1126045.0000,1125775.0000,1123210.0000,1120084.0000,1126125.0000,1122698.0000,1121466.0000,1129452.0000,1124903.0000,1120194.0000,1119423.0000,1120585.0000,1120374.0000,1118490.0000,1122638.0000,1132969.0000,1121857.0000,1124172.0000,1121887.0000,1124412.0000,1117168.0000,1121006.0000,1122308.0000,1160761.0000,1276130.0000,1274187.0000,1270229.0000,1281430.0000,1280438.0000,1277483.0000,1286039.0000,1281360.0000,1275629.0000,1274137.0000,1281119.0000,1276120.0000,1273245.0000,1272583.0000,1275688.0000,1276100.0000,1276000.0000,1280939.0000,1273084.0000,1272654.0000,1274186.0000,1285638.0000,1274707.0000,1274186.0000,1280919.0000" +generating large instruction graphs for N devices without d2d copy support - 16,soup topology,100,1,460688900,4367296.3400,4313581.2600,4419159.5900,269856.0866,260714.1960,274580.8080,"benchmark,group:instruction-graph","4599748.0000,4609907.0000,4076885.0000,4063991.0000,4066155.0000,4072166.0000,4060354.0000,4057438.0000,4067758.0000,4050606.0000,4059412.0000,4058431.0000,4060554.0000,4053641.0000,4063190.0000,4072557.0000,4078869.0000,4062959.0000,4065453.0000,4053742.0000,4061746.0000,4053742.0000,4058801.0000,4070143.0000,4059151.0000,4057127.0000,4060093.0000,4068159.0000,4068810.0000,4061095.0000,4080351.0000,4055705.0000,4068339.0000,4058871.0000,4062078.0000,4058640.0000,4075462.0000,4056026.0000,4071435.0000,4070914.0000,4070183.0000,4059813.0000,4079601.0000,4060584.0000,4065173.0000,4059733.0000,4414627.0000,4609175.0000,4613744.0000,4596461.0000,4608785.0000,4594267.0000,4613153.0000,4640615.0000,4607983.0000,4610799.0000,4600609.0000,4598195.0000,4620217.0000,4595299.0000,4679118.0000,4605078.0000,4605148.0000,4604497.0000,4596251.0000,4609787.0000,4613313.0000,4603776.0000,4608153.0000,4616769.0000,4599527.0000,4598916.0000,4604286.0000,4620107.0000,4612151.0000,4624735.0000,4608875.0000,4593837.0000,4600779.0000,4617201.0000,4606531.0000,4600559.0000,4585651.0000,4597974.0000,4599817.0000,4592614.0000,4610868.0000,4637820.0000,4608625.0000,4600599.0000,4596191.0000,4609677.0000,4601230.0000,4610297.0000,4612692.0000,4594818.0000,4663609.0000,4638271.0000,4589708.0000,4600259.0000" +generating large instruction graphs for N devices without d2d copy support - 16,chain topology,100,1,61183100,612173.4200,611139.9500,613291.7700,5478.2140,4867.8173,7094.7861,"benchmark,group:instruction-graph","604786.0000,616007.0000,617080.0000,619544.0000,605517.0000,614054.0000,616247.0000,606368.0000,616027.0000,614875.0000,605688.0000,634452.0000,608583.0000,620626.0000,617570.0000,607571.0000,615316.0000,605858.0000,614575.0000,614885.0000,606850.0000,613633.0000,612049.0000,607120.0000,613953.0000,604856.0000,616868.0000,613101.0000,606620.0000,616498.0000,606529.0000,614365.0000,614334.0000,605908.0000,612581.0000,607721.0000,612179.0000,615385.0000,605717.0000,618010.0000,614344.0000,606850.0000,614173.0000,605767.0000,616078.0000,616949.0000,605107.0000,617981.0000,605136.0000,612710.0000,621307.0000,605387.0000,619955.0000,603624.0000,613202.0000,616838.0000,605366.0000,614163.0000,612902.0000,605788.0000,611709.0000,606700.0000,613121.0000,612059.0000,603854.0000,615586.0000,603804.0000,613423.0000,613192.0000,606749.0000,618142.0000,606319.0000,614374.0000,618492.0000,607130.0000,620896.0000,616168.0000,607861.0000,617219.0000,606810.0000,615877.0000,613102.0000,610637.0000,620806.0000,605817.0000,615706.0000,614875.0000,605707.0000,615406.0000,612391.0000,608062.0000,619885.0000,605527.0000,616408.0000,616388.0000,604466.0000,614524.0000,605618.0000,614094.0000,614905.0000" +generating large instruction graphs for N devices without d2d copy support - 16,expanding tree topology,100,1,90523500,904970.0300,904386.2500,905941.2700,3740.7952,2455.3562,6940.1995,"benchmark,group:instruction-graph","903973.0000,905636.0000,909695.0000,902781.0000,904936.0000,904936.0000,905857.0000,905086.0000,905928.0000,902220.0000,903663.0000,898293.0000,905897.0000,905326.0000,905807.0000,905497.0000,906428.0000,906429.0000,909143.0000,907049.0000,908022.0000,904795.0000,897181.0000,904265.0000,907410.0000,905226.0000,904835.0000,903463.0000,902681.0000,904996.0000,904094.0000,904415.0000,900748.0000,897952.0000,905216.0000,906889.0000,904134.0000,906899.0000,904614.0000,904264.0000,905827.0000,905666.0000,902781.0000,902291.0000,906308.0000,904765.0000,905687.0000,904164.0000,903282.0000,904414.0000,906639.0000,907992.0000,903913.0000,902931.0000,897672.0000,903503.0000,905487.0000,904284.0000,902691.0000,903373.0000,904795.0000,906028.0000,905196.0000,900918.0000,899936.0000,902691.0000,904525.0000,909654.0000,906628.0000,908532.0000,906599.0000,908121.0000,906949.0000,905858.0000,904534.0000,899675.0000,905036.0000,906168.0000,906058.0000,908072.0000,903913.0000,906288.0000,903773.0000,906569.0000,903092.0000,900958.0000,908051.0000,905667.0000,904836.0000,931816.0000,904675.0000,907119.0000,906258.0000,912470.0000,901489.0000,904825.0000,898353.0000,903312.0000,903303.0000,903914.0000" +generating large instruction graphs for N devices without d2d copy support - 16,contracting tree topology,100,1,104740200,1047209.7100,1046726.8600,1048182.4400,3330.8601,2057.0637,6405.3487,"benchmark,group:instruction-graph","1045833.0000,1047997.0000,1053417.0000,1044039.0000,1048148.0000,1046734.0000,1052024.0000,1048367.0000,1046154.0000,1046324.0000,1046344.0000,1046665.0000,1045863.0000,1047406.0000,1044721.0000,1044601.0000,1047095.0000,1044720.0000,1046063.0000,1045873.0000,1046194.0000,1047165.0000,1054118.0000,1047776.0000,1048137.0000,1048528.0000,1048869.0000,1047235.0000,1048487.0000,1043027.0000,1045822.0000,1047035.0000,1047476.0000,1051825.0000,1046855.0000,1044450.0000,1043799.0000,1047906.0000,1045752.0000,1047175.0000,1046164.0000,1047696.0000,1047385.0000,1043869.0000,1052225.0000,1047316.0000,1047015.0000,1044219.0000,1045802.0000,1045702.0000,1044830.0000,1045692.0000,1045973.0000,1045502.0000,1047837.0000,1044681.0000,1049410.0000,1047887.0000,1049390.0000,1072373.0000,1047116.0000,1050281.0000,1049329.0000,1046294.0000,1053057.0000,1050091.0000,1046945.0000,1047355.0000,1044119.0000,1046354.0000,1046434.0000,1046815.0000,1046624.0000,1046755.0000,1047126.0000,1045442.0000,1046915.0000,1048308.0000,1045873.0000,1045132.0000,1047987.0000,1047877.0000,1046034.0000,1048918.0000,1048027.0000,1050872.0000,1046494.0000,1046394.0000,1046124.0000,1046143.0000,1043207.0000,1047576.0000,1043829.0000,1044130.0000,1045733.0000,1044130.0000,1044901.0000,1049450.0000,1044120.0000,1045673.0000" +generating large instruction graphs for N devices without d2d copy support - 16,wave_sim topology,100,1,595639000,5794738.7500,5731665.9200,5846390.5400,289746.2778,246642.7513,324749.2597,"benchmark,group:instruction-graph","5933439.0000,5917458.0000,5468857.0000,5306920.0000,5228200.0000,5307010.0000,5229132.0000,5232619.0000,5239121.0000,5214875.0000,5213092.0000,5225805.0000,5222258.0000,5230985.0000,5243720.0000,5224754.0000,5228711.0000,5244992.0000,5233240.0000,5247277.0000,5262866.0000,5236165.0000,5237348.0000,5257386.0000,5994595.0000,5950270.0000,5958687.0000,5959648.0000,5945311.0000,5938428.0000,5951563.0000,5950481.0000,5936074.0000,5948527.0000,5924611.0000,5934671.0000,5945160.0000,5951563.0000,5941744.0000,5935643.0000,5949279.0000,5979105.0000,5942235.0000,5940542.0000,5946193.0000,5956723.0000,5955020.0000,5942636.0000,5934310.0000,5949519.0000,5946313.0000,5961863.0000,5937636.0000,5939730.0000,5941344.0000,5946864.0000,5949810.0000,5944229.0000,5982712.0000,5961502.0000,5929120.0000,5969597.0000,5956382.0000,5945722.0000,5959087.0000,5967243.0000,5946894.0000,5949489.0000,5939340.0000,5947906.0000,5934801.0000,5936855.0000,5955560.0000,5943448.0000,5945512.0000,5954919.0000,5939801.0000,5951072.0000,5936535.0000,5952034.0000,5948477.0000,5937988.0000,5941884.0000,5940813.0000,5946544.0000,5968365.0000,5951132.0000,5960250.0000,5939209.0000,5955941.0000,5929130.0000,5957213.0000,5952385.0000,5944640.0000,5927427.0000,5950400.0000,5927347.0000,5953607.0000,5946643.0000,5972392.0000" +generating large instruction graphs for N devices without d2d copy support - 16,jacobi topology,100,1,132132400,1319494.0200,1318389.2400,1320779.5800,6087.5025,5200.9815,7864.0553,"benchmark,group:instruction-graph","1318741.0000,1325524.0000,1327367.0000,1314854.0000,1322027.0000,1315254.0000,1318641.0000,1318741.0000,1317569.0000,1315074.0000,1319262.0000,1311337.0000,1309734.0000,1324612.0000,1313110.0000,1318831.0000,1319252.0000,1313671.0000,1308752.0000,1333148.0000,1315345.0000,1313651.0000,1315966.0000,1320774.0000,1310735.0000,1315044.0000,1322709.0000,1316076.0000,1318180.0000,1330002.0000,1317338.0000,1318760.0000,1329281.0000,1345190.0000,1319833.0000,1328740.0000,1317769.0000,1317368.0000,1335262.0000,1318420.0000,1317669.0000,1324011.0000,1315234.0000,1315094.0000,1317529.0000,1317208.0000,1315244.0000,1317598.0000,1318100.0000,1312930.0000,1316376.0000,1327126.0000,1312579.0000,1316296.0000,1324051.0000,1311597.0000,1316266.0000,1321636.0000,1312689.0000,1314433.0000,1323079.0000,1318881.0000,1317789.0000,1330463.0000,1320905.0000,1324792.0000,1328730.0000,1330894.0000,1321647.0000,1326856.0000,1317779.0000,1323661.0000,1327096.0000,1326164.0000,1325603.0000,1322748.0000,1328249.0000,1322799.0000,1318310.0000,1320634.0000,1315244.0000,1314663.0000,1322819.0000,1314142.0000,1316667.0000,1322949.0000,1315104.0000,1312278.0000,1322839.0000,1310675.0000,1310134.0000,1320214.0000,1314443.0000,1316977.0000,1319672.0000,1314102.0000,1316326.0000,1316897.0000,1322308.0000,1318260.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: single-threaded immediate graph generation,soup topology,100,1,108709700,1082635.7500,1081640.6000,1085189.1300,7569.3519,3414.6351,15641.4451,"benchmark,group:scheduler","1079326.0000,1079497.0000,1084846.0000,1078374.0000,1083364.0000,1089616.0000,1078324.0000,1080238.0000,1076812.0000,1083664.0000,1085227.0000,1085719.0000,1083284.0000,1077373.0000,1080950.0000,1078064.0000,1081451.0000,1087361.0000,1081370.0000,1145642.0000,1079055.0000,1077953.0000,1077653.0000,1085699.0000,1081901.0000,1079096.0000,1078064.0000,1079376.0000,1082473.0000,1085789.0000,1082903.0000,1083745.0000,1083575.0000,1081170.0000,1081150.0000,1083284.0000,1082463.0000,1081771.0000,1084536.0000,1078464.0000,1078584.0000,1087762.0000,1084356.0000,1078074.0000,1084095.0000,1080589.0000,1079878.0000,1080018.0000,1083324.0000,1081180.0000,1077523.0000,1079827.0000,1078034.0000,1084076.0000,1078555.0000,1085608.0000,1078484.0000,1079326.0000,1081280.0000,1081871.0000,1091479.0000,1081771.0000,1085077.0000,1085569.0000,1082322.0000,1086460.0000,1108963.0000,1083154.0000,1082793.0000,1078706.0000,1085227.0000,1078695.0000,1085659.0000,1078454.0000,1084356.0000,1079246.0000,1083194.0000,1085108.0000,1091389.0000,1085408.0000,1083675.0000,1076561.0000,1079456.0000,1081560.0000,1079818.0000,1078465.0000,1077944.0000,1078555.0000,1083965.0000,1083564.0000,1081561.0000,1078505.0000,1081200.0000,1079417.0000,1079487.0000,1078064.0000,1081471.0000,1080258.0000,1082984.0000,1080969.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: single-threaded immediate graph generation,chain topology,100,1,7394900,66321.3200,66097.0600,66681.7900,1422.0715,966.4516,1916.2413,"benchmark,group:scheduler","65933.0000,66194.0000,70271.0000,66294.0000,66104.0000,65993.0000,66164.0000,65963.0000,66064.0000,65983.0000,65863.0000,66044.0000,65903.0000,65953.0000,71614.0000,66034.0000,65833.0000,65813.0000,65963.0000,65954.0000,65813.0000,65833.0000,65863.0000,65923.0000,65943.0000,66013.0000,66164.0000,65773.0000,65833.0000,71483.0000,66053.0000,65923.0000,65884.0000,65963.0000,66184.0000,65853.0000,65693.0000,65863.0000,65883.0000,65773.0000,65753.0000,65923.0000,65974.0000,65893.0000,71504.0000,65803.0000,66013.0000,65963.0000,65853.0000,65933.0000,66003.0000,66034.0000,65713.0000,65863.0000,65963.0000,65873.0000,65953.0000,65762.0000,65864.0000,71644.0000,66053.0000,65733.0000,65943.0000,65963.0000,65813.0000,65993.0000,66044.0000,66003.0000,65823.0000,65793.0000,65853.0000,65732.0000,65733.0000,65913.0000,71563.0000,66043.0000,65873.0000,65663.0000,66013.0000,66024.0000,65743.0000,65783.0000,65943.0000,65893.0000,65733.0000,65893.0000,66054.0000,65823.0000,65963.0000,72125.0000,66354.0000,66113.0000,65943.0000,65742.0000,66164.0000,66224.0000,65983.0000,65944.0000,66123.0000,66084.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: single-threaded immediate graph generation,expanding tree topology,100,1,13327200,148501.4100,148035.6000,149106.6900,2696.3895,2189.9514,3178.5261,"benchmark,group:scheduler","148039.0000,147248.0000,156074.0000,154802.0000,149382.0000,147979.0000,147037.0000,147829.0000,148139.0000,147569.0000,153389.0000,147438.0000,147238.0000,146796.0000,147177.0000,147057.0000,147558.0000,153870.0000,146656.0000,147748.0000,146747.0000,147308.0000,147117.0000,146967.0000,154121.0000,147368.0000,146837.0000,146776.0000,148510.0000,148129.0000,154531.0000,147668.0000,147217.0000,147337.0000,147629.0000,147307.0000,147427.0000,153830.0000,147157.0000,146737.0000,147608.0000,147408.0000,146286.0000,146897.0000,156155.0000,148129.0000,147748.0000,146987.0000,147317.0000,147157.0000,154381.0000,148550.0000,147819.0000,147839.0000,146937.0000,146787.0000,147368.0000,155042.0000,147909.0000,147288.0000,147428.0000,147057.0000,146777.0000,147177.0000,155433.0000,147107.0000,146907.0000,146947.0000,147498.0000,147448.0000,146947.0000,154130.0000,147869.0000,146967.0000,146847.0000,146777.0000,147849.0000,153680.0000,148269.0000,147849.0000,147208.0000,146556.0000,148199.0000,147077.0000,154752.0000,148199.0000,146717.0000,147368.0000,146877.0000,147057.0000,146466.0000,154251.0000,147027.0000,147899.0000,147378.0000,147047.0000,147337.0000,147188.0000,154141.0000,147077.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: single-threaded immediate graph generation,contracting tree topology,100,1,15136400,134805.8700,134371.2400,135399.7000,2586.1379,2039.6145,3268.1070,"benchmark,group:scheduler","133271.0000,134613.0000,141908.0000,134403.0000,134564.0000,133581.0000,139994.0000,134043.0000,134493.0000,134333.0000,134443.0000,133842.0000,133912.0000,140324.0000,134824.0000,134433.0000,133923.0000,133842.0000,133892.0000,134002.0000,143470.0000,135095.0000,133401.0000,134624.0000,134393.0000,132900.0000,134213.0000,133582.0000,140735.0000,133953.0000,133812.0000,133902.0000,134433.0000,132900.0000,133261.0000,139774.0000,134363.0000,133271.0000,133882.0000,133952.0000,134813.0000,133541.0000,134023.0000,140164.0000,133672.0000,133571.0000,133972.0000,134874.0000,134443.0000,133322.0000,140474.0000,134723.0000,133822.0000,133942.0000,133612.0000,133752.0000,133491.0000,139373.0000,134032.0000,132840.0000,133581.0000,133581.0000,133512.0000,133822.0000,133672.0000,140284.0000,134363.0000,132650.0000,133261.0000,133801.0000,133591.0000,133582.0000,140254.0000,133902.0000,133060.0000,133511.0000,133932.0000,132891.0000,133341.0000,133872.0000,145204.0000,133391.0000,134093.0000,133151.0000,133962.0000,133482.0000,133121.0000,140354.0000,133762.0000,133532.0000,133491.0000,132880.0000,133982.0000,133592.0000,133321.0000,140896.0000,134293.0000,133672.0000,133702.0000,133231.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: single-threaded immediate graph generation,wave_sim topology,100,1,104323900,1044835.4900,1044310.0100,1045750.6800,3455.6749,2343.3443,6126.8818,"benchmark,group:scheduler","1045312.0000,1045683.0000,1051704.0000,1046645.0000,1045182.0000,1045933.0000,1046464.0000,1044631.0000,1044480.0000,1042696.0000,1044931.0000,1044560.0000,1043989.0000,1043047.0000,1043829.0000,1044961.0000,1043278.0000,1044431.0000,1043288.0000,1040703.0000,1043929.0000,1043568.0000,1050141.0000,1045762.0000,1044451.0000,1043628.0000,1044660.0000,1044000.0000,1044681.0000,1044480.0000,1045983.0000,1041454.0000,1043579.0000,1041214.0000,1042377.0000,1048217.0000,1043799.0000,1041415.0000,1044821.0000,1043819.0000,1041625.0000,1043739.0000,1041956.0000,1044019.0000,1048128.0000,1043298.0000,1042356.0000,1039782.0000,1041084.0000,1042837.0000,1042707.0000,1043017.0000,1043829.0000,1042687.0000,1068636.0000,1042266.0000,1044240.0000,1044841.0000,1046183.0000,1042186.0000,1042236.0000,1044751.0000,1042096.0000,1042967.0000,1044731.0000,1045212.0000,1044430.0000,1052145.0000,1044130.0000,1046174.0000,1040633.0000,1044170.0000,1045803.0000,1043027.0000,1041495.0000,1045232.0000,1043378.0000,1053538.0000,1043338.0000,1042577.0000,1044230.0000,1044440.0000,1045903.0000,1045122.0000,1042416.0000,1044400.0000,1043789.0000,1045833.0000,1046514.0000,1051484.0000,1046664.0000,1042025.0000,1046104.0000,1044661.0000,1044841.0000,1046564.0000,1048729.0000,1048277.0000,1050773.0000,1047576.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: single-threaded immediate graph generation,jacobi topology,100,1,26462800,265696.2800,264967.5600,266831.2000,4524.8696,3337.3733,7420.1943,"benchmark,group:scheduler","269660.0000,264099.0000,277224.0000,263698.0000,264009.0000,264430.0000,270371.0000,264390.0000,263679.0000,265171.0000,270752.0000,263939.0000,263468.0000,264310.0000,270100.0000,263097.0000,263108.0000,272505.0000,266775.0000,265572.0000,265512.0000,273678.0000,265191.0000,265322.0000,264320.0000,271714.0000,264520.0000,263058.0000,263899.0000,269980.0000,264309.0000,263018.0000,270171.0000,265191.0000,265511.0000,265431.0000,272525.0000,266093.0000,265101.0000,265562.0000,271473.0000,264941.0000,264981.0000,264830.0000,270591.0000,262607.0000,262656.0000,269249.0000,262696.0000,262696.0000,262517.0000,269610.0000,263007.0000,262517.0000,261905.0000,269319.0000,262846.0000,262656.0000,261935.0000,271072.0000,262877.0000,262486.0000,262466.0000,269290.0000,262095.0000,263248.0000,268758.0000,262116.0000,262086.0000,262386.0000,294437.0000,262577.0000,262727.0000,262556.0000,268859.0000,262837.0000,262155.0000,262486.0000,269460.0000,262626.0000,262447.0000,269770.0000,262887.0000,262066.0000,263157.0000,270882.0000,261945.0000,262707.0000,262526.0000,269820.0000,262636.0000,261514.0000,262086.0000,271062.0000,262897.0000,264570.0000,272335.0000,265071.0000,261945.0000,264210.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > immediate submission to a scheduler thread,soup topology,100,1,205084700,2049145.3800,2045814.5700,2052761.1900,17628.5950,15953.8678,19945.4986,"benchmark,group:scheduler","2032244.0000,2032385.0000,2061661.0000,2063154.0000,2059747.0000,2088442.0000,2061610.0000,2032205.0000,2033808.0000,2060258.0000,2061531.0000,2032666.0000,2061560.0000,2031804.0000,2062051.0000,2031974.0000,2032074.0000,2031564.0000,2062482.0000,2032576.0000,2032185.0000,2031724.0000,2090505.0000,2035742.0000,2088241.0000,2059667.0000,2061481.0000,2032415.0000,2062202.0000,2031754.0000,2061380.0000,2032415.0000,2061229.0000,2032505.0000,2062091.0000,2032104.0000,2061581.0000,2031514.0000,2033256.0000,2031393.0000,2063284.0000,2059196.0000,2061731.0000,2035571.0000,2030392.0000,2030641.0000,2031884.0000,2032756.0000,2061971.0000,2031894.0000,2061290.0000,2032896.0000,2061260.0000,2032034.0000,2061450.0000,2032465.0000,2061631.0000,2031965.0000,2063404.0000,2059376.0000,2067692.0000,2054907.0000,2062031.0000,2031864.0000,2038277.0000,2057663.0000,2058905.0000,2032164.0000,2032125.0000,2063895.0000,2054698.0000,2045560.0000,2084514.0000,2067812.0000,2085846.0000,2059988.0000,2089854.0000,2090596.0000,2032265.0000,2061721.0000,2031804.0000,2032606.0000,2036473.0000,2034579.0000,2054878.0000,2031714.0000,2061741.0000,2044719.0000,2073353.0000,2032305.0000,2061591.0000,2032395.0000,2061811.0000,2031213.0000,2062001.0000,2032856.0000,2061119.0000,2031713.0000,2032845.0000,2032174.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > immediate submission to a scheduler thread,chain topology,100,1,23272000,225972.2500,222959.2300,229089.2300,15589.3381,13412.5919,20127.8688,"benchmark,group:scheduler","231618.0000,203284.0000,258238.0000,253910.0000,231337.0000,233191.0000,231287.0000,233471.0000,230486.0000,233982.0000,231097.0000,231207.0000,203474.0000,203274.0000,203615.0000,232299.0000,290870.0000,230916.0000,203154.0000,203384.0000,232049.0000,231848.0000,203464.0000,203354.0000,202693.0000,232830.0000,232159.0000,232279.0000,232139.0000,231217.0000,203544.0000,232840.0000,231969.0000,203213.0000,231868.0000,232549.0000,232229.0000,232129.0000,260402.0000,232990.0000,232038.0000,202643.0000,207873.0000,228201.0000,232189.0000,231828.0000,202933.0000,232840.0000,232089.0000,231988.0000,202873.0000,206189.0000,228892.0000,203293.0000,232950.0000,231207.0000,234002.0000,230415.0000,232739.0000,232089.0000,207422.0000,227901.0000,202542.0000,233071.0000,231938.0000,232329.0000,231708.0000,232610.0000,232168.0000,231598.0000,203775.0000,232259.0000,231968.0000,202973.0000,232810.0000,231477.0000,232560.0000,231127.0000,233591.0000,231748.0000,232319.0000,232039.0000,206209.0000,228803.0000,203504.0000,232299.0000,231948.0000,231918.0000,203003.0000,232790.0000,232099.0000,231638.0000,203394.0000,203544.0000,232189.0000,232079.0000,260803.0000,202983.0000,233161.0000,231798.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > immediate submission to a scheduler thread,expanding tree topology,100,1,34623700,410686.2700,408592.2600,413214.3500,11719.8843,9782.1042,13548.3024,"benchmark,group:scheduler","407381.0000,405358.0000,434513.0000,404636.0000,436617.0000,405117.0000,406139.0000,436136.0000,435174.0000,408814.0000,403624.0000,406339.0000,408533.0000,404315.0000,406310.0000,406539.0000,429714.0000,399316.0000,397643.0000,407251.0000,405497.0000,406118.0000,407652.0000,434713.0000,406810.0000,405417.0000,407221.0000,407712.0000,404386.0000,407221.0000,406058.0000,409656.0000,403504.0000,405688.0000,409034.0000,404185.0000,405898.0000,406750.0000,435865.0000,405839.0000,406690.0000,435364.0000,406500.0000,406099.0000,407441.0000,435685.0000,406470.0000,404866.0000,407802.0000,405217.0000,406911.0000,435334.0000,435555.0000,405527.0000,406499.0000,407341.0000,405778.0000,406439.0000,406449.0000,406219.0000,406890.0000,407752.0000,434493.0000,406620.0000,405437.0000,410648.0000,402161.0000,406189.0000,436116.0000,435394.0000,406810.0000,405468.0000,406720.0000,406900.0000,405829.0000,407200.0000,405778.0000,406169.0000,406910.0000,434673.0000,406650.0000,406440.0000,436586.0000,405508.0000,406309.0000,408033.0000,434072.0000,405627.0000,407251.0000,406229.0000,402462.0000,398103.0000,391622.0000,387874.0000,411088.0000,387213.0000,408854.0000,422911.0000,406229.0000,406530.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > immediate submission to a scheduler thread,contracting tree topology,100,1,40020600,470912.6100,468246.2200,473935.0600,14423.3632,12793.1115,15942.6018,"benchmark,group:scheduler","453057.0000,449330.0000,505107.0000,465201.0000,491731.0000,464810.0000,463568.0000,494907.0000,463307.0000,464841.0000,493695.0000,463888.0000,464619.0000,469008.0000,459931.0000,477183.0000,452277.0000,451735.0000,453339.0000,451755.0000,470201.0000,463007.0000,494516.0000,463949.0000,464369.0000,494717.0000,462997.0000,464951.0000,468727.0000,455612.0000,493285.0000,464830.0000,463848.0000,494225.0000,463758.0000,464399.0000,494667.0000,463398.0000,464800.0000,493465.0000,464740.0000,464119.0000,493985.0000,463427.0000,464830.0000,493054.0000,460082.0000,464840.0000,458969.0000,482574.0000,458899.0000,464780.0000,464590.0000,493214.0000,470721.0000,457797.0000,498544.0000,459781.0000,465191.0000,493014.0000,464289.0000,463979.0000,493725.0000,464460.0000,468236.0000,460482.0000,494216.0000,464499.0000,463658.0000,465822.0000,463618.0000,464760.0000,493775.0000,463498.0000,464610.0000,494156.0000,464209.0000,464069.0000,494286.0000,463678.0000,464660.0000,467054.0000,491390.0000,463768.0000,464589.0000,464510.0000,495298.0000,463047.0000,464530.0000,493805.0000,465361.0000,463367.0000,494667.0000,463478.0000,463778.0000,493635.0000,469379.0000,452056.0000,452808.0000,451895.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > immediate submission to a scheduler thread,wave_sim topology,100,1,287082000,2572829.9100,2558200.5300,2594687.3300,90684.4394,65538.0477,118071.0611,"benchmark,group:scheduler","2527154.0000,2531051.0000,2923877.0000,2873451.0000,2847582.0000,2873150.0000,2844345.0000,2846790.0000,2871728.0000,2876446.0000,2615802.0000,2529919.0000,2529659.0000,2527675.0000,2530401.0000,2527134.0000,2532154.0000,2526282.0000,2587719.0000,2525090.0000,2529428.0000,2527715.0000,2585114.0000,2527134.0000,2582469.0000,2555668.0000,2529589.0000,2553865.0000,2529698.0000,2557141.0000,2528947.0000,2528657.0000,2529920.0000,2527494.0000,2529318.0000,2556399.0000,2535059.0000,2548685.0000,2584703.0000,2527144.0000,2530120.0000,2529559.0000,2529108.0000,2527184.0000,2585725.0000,2526633.0000,2530199.0000,2526593.0000,2585344.0000,2553514.0000,2583271.0000,2555438.0000,2529238.0000,2554726.0000,2532444.0000,2553594.0000,2527866.0000,2586126.0000,2552873.0000,2528216.0000,2586186.0000,2526813.0000,2582429.0000,2556579.0000,2529047.0000,2527445.0000,2585615.0000,2529278.0000,2580104.0000,2556129.0000,2529609.0000,2553704.0000,2529388.0000,2557361.0000,2528737.0000,2527174.0000,2531592.0000,2555026.0000,2533495.0000,2551600.0000,2582289.0000,2527304.0000,2585985.0000,2527004.0000,2583050.0000,2528377.0000,2590073.0000,2535149.0000,2528907.0000,2581968.0000,2526664.0000,2585575.0000,2530801.0000,2557852.0000,2526804.0000,2583030.0000,2528266.0000,2581808.0000,2555578.0000,2529869.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > immediate submission to a scheduler thread,jacobi topology,100,1,78313300,787688.2700,785895.2700,790352.0200,11053.7142,8399.9857,14946.4265,"benchmark,group:scheduler","783796.0000,782863.0000,823931.0000,784397.0000,783215.0000,782703.0000,783746.0000,786270.0000,780940.0000,781561.0000,784787.0000,783485.0000,784186.0000,783195.0000,783845.0000,784647.0000,784046.0000,782303.0000,784517.0000,790909.0000,779077.0000,810436.0000,783435.0000,783906.0000,784697.0000,783645.0000,783214.0000,784267.0000,785048.0000,783545.0000,783856.0000,782803.0000,784127.0000,783735.0000,815015.0000,781672.0000,812931.0000,783625.0000,783605.0000,784426.0000,784297.0000,785238.0000,781311.0000,819894.0000,778405.0000,811308.0000,784046.0000,784086.0000,783866.0000,785449.0000,781972.0000,783515.0000,785018.0000,784136.0000,782753.0000,783876.0000,783715.0000,783464.0000,784486.0000,783194.0000,784056.0000,784778.0000,784647.0000,840744.0000,783004.0000,783926.0000,785809.0000,783405.0000,812460.0000,782904.0000,783375.0000,786030.0000,811789.0000,783385.0000,812790.0000,783875.0000,784828.0000,782743.0000,785318.0000,784697.0000,781431.0000,783966.0000,785659.0000,781631.0000,784536.0000,784326.0000,784347.0000,812480.0000,783014.0000,783776.0000,785168.0000,784507.0000,781972.0000,785779.0000,782102.0000,784807.0000,812270.0000,782894.0000,783865.0000,785298.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: throttled single-threaded graph generation at 10 us per task,soup topology,100,1,209069200,2089001.9500,2087863.5300,2090522.5300,6669.9652,5112.8621,9155.5320,"benchmark,group:scheduler","2083452.0000,2086478.0000,2082079.0000,2089743.0000,2080646.0000,2091658.0000,2087961.0000,2082791.0000,2086538.0000,2087299.0000,2075307.0000,2090626.0000,2114390.0000,2086648.0000,2096667.0000,2086448.0000,2082540.0000,2086147.0000,2090346.0000,2082370.0000,2085806.0000,2088101.0000,2115102.0000,2081458.0000,2078963.0000,2092799.0000,2092428.0000,2096466.0000,2097528.0000,2092860.0000,2090345.0000,2083832.0000,2083042.0000,2079915.0000,2092529.0000,2087309.0000,2089243.0000,2089504.0000,2088281.0000,2082550.0000,2088160.0000,2080245.0000,2086578.0000,2090305.0000,2085596.0000,2089083.0000,2086147.0000,2081949.0000,2091638.0000,2093481.0000,2087811.0000,2094553.0000,2087600.0000,2086878.0000,2091828.0000,2089744.0000,2089513.0000,2085857.0000,2088061.0000,2092950.0000,2093471.0000,2088913.0000,2085956.0000,2094583.0000,2093090.0000,2093401.0000,2092349.0000,2091356.0000,2084033.0000,2088181.0000,2119641.0000,2089012.0000,2090976.0000,2091357.0000,2089924.0000,2089513.0000,2077511.0000,2087600.0000,2090325.0000,2085717.0000,2089503.0000,2096788.0000,2086928.0000,2087990.0000,2085326.0000,2083362.0000,2088652.0000,2089463.0000,2085586.0000,2084864.0000,2077861.0000,2083993.0000,2089113.0000,2099202.0000,2094052.0000,2083022.0000,2093671.0000,2094814.0000,2091577.0000,2091347.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: throttled single-threaded graph generation at 10 us per task,chain topology,100,1,37222200,371840.4600,371610.7100,372212.1300,1458.3665,1048.2629,2124.4669,"benchmark,group:scheduler","371192.0000,371433.0000,379799.0000,372064.0000,371073.0000,376973.0000,371313.0000,371073.0000,371773.0000,370982.0000,377334.0000,371533.0000,371163.0000,371733.0000,371242.0000,370652.0000,371503.0000,370932.0000,375220.0000,371633.0000,371122.0000,371463.0000,371282.0000,371233.0000,371583.0000,370972.0000,371092.0000,371904.0000,371644.0000,372505.0000,371713.0000,370872.0000,371824.0000,371483.0000,371013.0000,372204.0000,371283.0000,374379.0000,371483.0000,370932.0000,371794.0000,371232.0000,371252.0000,371824.0000,371243.0000,373587.0000,371423.0000,371183.0000,371743.0000,371233.0000,370992.0000,371874.0000,371423.0000,374349.0000,371473.0000,370922.0000,371814.0000,371042.0000,371283.0000,371363.0000,371203.0000,374348.0000,371343.0000,371133.0000,371553.0000,371113.0000,371393.0000,371643.0000,371684.0000,370762.0000,372004.0000,371302.0000,372955.0000,371523.0000,371192.0000,371723.0000,371343.0000,370732.0000,371723.0000,371013.0000,375501.0000,371262.0000,371353.0000,371734.0000,371263.0000,370661.0000,371604.0000,370982.0000,374108.0000,371353.0000,371143.0000,371563.0000,371453.0000,370932.0000,371974.0000,370922.0000,374869.0000,371283.0000,371243.0000,371503.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: throttled single-threaded graph generation at 10 us per task,expanding tree topology,100,1,43121100,439106.0300,437132.0500,441258.0200,10516.2347,9603.7189,11358.0195,"benchmark,group:scheduler","451615.0000,457366.0000,438360.0000,437438.0000,430235.0000,432949.0000,430394.0000,431667.0000,430725.0000,429713.0000,432709.0000,430354.0000,432139.0000,431477.0000,436566.0000,430124.0000,430725.0000,430765.0000,430776.0000,431647.0000,430936.0000,432028.0000,430986.0000,430826.0000,437268.0000,431046.0000,434031.0000,429343.0000,433150.0000,430445.0000,436226.0000,431216.0000,430565.0000,435094.0000,430616.0000,431507.0000,430295.0000,431066.0000,430786.0000,430324.0000,431907.0000,429954.0000,431757.0000,429644.0000,430264.0000,429874.0000,430996.0000,432179.0000,430094.0000,431537.0000,430755.0000,436216.0000,430916.0000,431196.0000,432639.0000,430505.0000,433150.0000,430645.0000,437729.0000,430095.0000,429784.0000,432769.0000,430154.0000,433210.0000,430726.0000,431376.0000,430836.0000,429874.0000,456254.0000,451335.0000,454921.0000,450553.0000,452507.0000,450453.0000,456084.0000,453268.0000,457556.0000,450753.0000,450884.0000,456945.0000,451645.0000,451485.0000,451324.0000,450863.0000,451385.0000,457306.0000,450914.0000,450654.0000,449912.0000,451184.0000,458619.0000,452146.0000,457546.0000,450633.0000,451896.0000,452767.0000,459450.0000,451535.0000,460863.0000,450684.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: throttled single-threaded graph generation at 10 us per task,contracting tree topology,100,1,46375100,464043.5300,463468.8600,465119.9400,3889.5980,2524.8417,7306.6129,"benchmark,group:scheduler","461293.0000,465592.0000,472495.0000,461634.0000,467926.0000,461554.0000,461754.0000,468317.0000,460612.0000,463268.0000,463097.0000,470030.0000,461384.0000,463588.0000,462766.0000,464410.0000,463347.0000,466283.0000,463357.0000,463107.0000,463498.0000,461764.0000,464499.0000,461614.0000,468568.0000,461033.0000,462937.0000,461824.0000,464178.0000,462646.0000,465121.0000,462986.0000,468457.0000,462496.0000,462185.0000,463858.0000,462906.0000,467516.0000,462345.0000,463127.0000,461193.0000,463207.0000,461534.0000,464891.0000,460241.0000,467676.0000,460783.0000,461894.0000,466974.0000,462726.0000,463488.0000,460873.0000,462486.0000,461794.0000,468206.0000,461454.0000,467445.0000,461764.0000,467736.0000,461814.0000,461323.0000,467405.0000,460962.0000,466734.0000,461224.0000,468247.0000,461273.0000,465432.0000,461554.0000,464650.0000,463197.0000,464049.0000,463989.0000,462856.0000,461053.0000,461834.0000,467035.0000,461774.0000,461834.0000,461895.0000,463938.0000,463247.0000,469028.0000,461795.0000,467124.0000,462445.0000,464610.0000,463017.0000,462055.0000,467365.0000,462235.0000,463397.0000,461433.0000,492582.0000,461022.0000,468156.0000,460973.0000,466905.0000,459650.0000,467505.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: throttled single-threaded graph generation at 10 us per task,wave_sim topology,100,1,306056100,3092174.9200,3091293.1600,3093447.8800,5372.4160,4009.6839,7353.1590,"benchmark,group:scheduler","3088629.0000,3093850.0000,3107816.0000,3090292.0000,3090534.0000,3089040.0000,3089742.0000,3090333.0000,3090132.0000,3092297.0000,3094831.0000,3092397.0000,3087969.0000,3089651.0000,3090734.0000,3090824.0000,3114188.0000,3096334.0000,3091405.0000,3089992.0000,3096194.0000,3091145.0000,3089250.0000,3089210.0000,3090222.0000,3091024.0000,3088159.0000,3092788.0000,3089461.0000,3091134.0000,3089401.0000,3098459.0000,3104550.0000,3089812.0000,3089601.0000,3102155.0000,3093178.0000,3089731.0000,3089952.0000,3090653.0000,3092537.0000,3091145.0000,3093869.0000,3105301.0000,3103788.0000,3091224.0000,3091174.0000,3089391.0000,3090694.0000,3117624.0000,3093128.0000,3091595.0000,3094902.0000,3090142.0000,3090122.0000,3089641.0000,3088249.0000,3091956.0000,3091315.0000,3089962.0000,3090303.0000,3091315.0000,3088529.0000,3094841.0000,3093298.0000,3090433.0000,3088860.0000,3090634.0000,3089711.0000,3091244.0000,3089652.0000,3091114.0000,3090253.0000,3087127.0000,3099390.0000,3089561.0000,3089912.0000,3088309.0000,3090733.0000,3091495.0000,3090483.0000,3106594.0000,3088439.0000,3089360.0000,3090412.0000,3095352.0000,3091465.0000,3090764.0000,3087587.0000,3092066.0000,3090002.0000,3092407.0000,3085924.0000,3090012.0000,3080935.0000,3088369.0000,3094631.0000,3091344.0000,3088339.0000,3091465.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: throttled single-threaded graph generation at 10 us per task,jacobi topology,100,1,77296500,772106.6400,771541.1600,772661.2900,2863.7179,2538.9341,3545.8201,"benchmark,group:scheduler","769278.0000,772855.0000,782813.0000,768987.0000,775650.0000,774127.0000,774738.0000,773406.0000,769088.0000,773005.0000,773526.0000,774258.0000,768476.0000,773657.0000,772304.0000,774618.0000,774438.0000,770731.0000,771312.0000,775339.0000,773376.0000,770060.0000,773346.0000,772634.0000,774989.0000,775149.0000,769829.0000,769879.0000,773275.0000,774027.0000,767795.0000,772224.0000,774748.0000,774107.0000,768346.0000,773135.0000,774699.0000,773686.0000,773907.0000,767334.0000,774097.0000,774137.0000,773586.0000,768356.0000,772995.0000,775410.0000,776792.0000,772645.0000,767875.0000,772474.0000,773526.0000,772424.0000,767374.0000,773286.0000,773576.0000,774107.0000,767574.0000,773346.0000,773576.0000,768586.0000,769709.0000,767445.0000,772204.0000,772995.0000,772805.0000,766562.0000,768196.0000,771502.0000,773576.0000,765802.0000,773065.0000,771563.0000,768145.0000,769558.0000,768346.0000,776131.0000,773887.0000,772855.0000,767625.0000,773295.0000,774057.0000,774057.0000,773877.0000,768637.0000,773245.0000,774689.0000,775129.0000,768036.0000,769989.0000,774318.0000,774107.0000,767294.0000,773185.0000,772985.0000,773867.0000,773346.0000,767224.0000,773677.0000,768176.0000,770610.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > throttled submission to a scheduler thread at 10 us per task,soup topology,100,1,272125700,2750203.3900,2732313.3600,2765828.2000,85450.0730,75293.3279,95520.1721,"benchmark,group:scheduler","2597608.0000,2588551.0000,2779102.0000,2785384.0000,2786205.0000,2786446.0000,2818968.0000,2784582.0000,2846340.0000,2815742.0000,2846540.0000,2785825.0000,2787358.0000,2788169.0000,2931601.0000,2782769.0000,2787849.0000,2786316.0000,2817074.0000,2787858.0000,2787428.0000,2786076.0000,2813918.0000,2786827.0000,2788069.0000,2757251.0000,2817395.0000,2786266.0000,2822154.0000,2780785.0000,2706405.0000,2713638.0000,2746851.0000,2825690.0000,2817505.0000,2814930.0000,2823376.0000,2808718.0000,2789252.0000,2778230.0000,2787267.0000,2814740.0000,2787127.0000,2786486.0000,2851800.0000,2781968.0000,2812816.0000,2789592.0000,2785074.0000,2847441.0000,2784853.0000,2818056.0000,2786115.0000,2788690.0000,2816243.0000,2843925.0000,2787288.0000,2793369.0000,2781937.0000,2787357.0000,2845679.0000,2785875.0000,2793009.0000,2810672.0000,2816443.0000,2817705.0000,2785455.0000,2822544.0000,2809861.0000,2788059.0000,2816984.0000,2818327.0000,2813077.0000,2690814.0000,2678081.0000,2673221.0000,2667070.0000,2676828.0000,2673672.0000,2671538.0000,2701004.0000,2658594.0000,2680465.0000,2684562.0000,2680905.0000,2611845.0000,2597247.0000,2580666.0000,2593770.0000,2588972.0000,2584292.0000,2598780.0000,2588260.0000,2605934.0000,2592698.0000,2585966.0000,2591997.0000,2586838.0000,2588851.0000,2590584.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > throttled submission to a scheduler thread at 10 us per task,chain topology,100,1,37610300,406665.2200,404673.8600,408697.5700,10202.9523,7761.1486,12986.1947,"benchmark,group:scheduler","406310.0000,406529.0000,410768.0000,402572.0000,406409.0000,406239.0000,406629.0000,406280.0000,403774.0000,406550.0000,406499.0000,406570.0000,406079.0000,406399.0000,406470.0000,406449.0000,406420.0000,406680.0000,406028.0000,435284.0000,406179.0000,406630.0000,406920.0000,406369.0000,405928.0000,406339.0000,406500.0000,406439.0000,406409.0000,406139.0000,406469.0000,377575.0000,435605.0000,406169.0000,406209.0000,435475.0000,406259.0000,406569.0000,406669.0000,406209.0000,406489.0000,406409.0000,410897.0000,402041.0000,405988.0000,435625.0000,406149.0000,406379.0000,406529.0000,406229.0000,406680.0000,406530.0000,377054.0000,406409.0000,406991.0000,405988.0000,406179.0000,406971.0000,405648.0000,406560.0000,406399.0000,406650.0000,406129.0000,406409.0000,406179.0000,406951.0000,405938.0000,406620.0000,406319.0000,377585.0000,435485.0000,406109.0000,406529.0000,406218.0000,383285.0000,429543.0000,406320.0000,406429.0000,406490.0000,406189.0000,406509.0000,406690.0000,406310.0000,406159.0000,406449.0000,406450.0000,406259.0000,406720.0000,406009.0000,435464.0000,377535.0000,406419.0000,406460.0000,406289.0000,406159.0000,377605.0000,406149.0000,406720.0000,405928.0000,406720.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > throttled submission to a scheduler thread at 10 us per task,expanding tree topology,100,1,64646700,649747.7300,646453.4100,653773.3100,18494.8910,15724.4600,21698.2932,"benchmark,group:scheduler","638280.0000,667505.0000,636937.0000,638550.0000,643068.0000,662094.0000,638510.0000,674248.0000,633350.0000,638540.0000,637438.0000,639581.0000,638980.0000,638661.0000,637858.0000,638570.0000,639582.0000,696671.0000,638069.0000,638499.0000,638740.0000,667875.0000,638479.0000,639883.0000,638049.0000,666863.0000,638990.0000,638320.0000,639361.0000,674047.0000,690498.0000,638249.0000,638780.0000,639392.0000,638530.0000,666693.0000,668848.0000,638229.0000,637708.0000,668236.0000,667194.0000,641035.0000,637187.0000,638260.0000,667404.0000,639642.0000,638239.0000,638440.0000,638990.0000,675820.0000,637999.0000,638079.0000,668457.0000,667735.0000,638149.0000,638159.0000,639321.0000,638390.0000,640945.0000,665360.0000,639411.0000,638650.0000,637949.0000,668968.0000,637838.0000,667435.0000,696690.0000,638990.0000,638290.0000,638219.0000,639151.0000,668015.0000,702552.0000,633119.0000,638300.0000,638540.0000,668286.0000,667685.0000,638880.0000,638710.0000,637968.0000,696349.0000,639562.0000,638770.0000,638049.0000,638721.0000,638459.0000,668316.0000,638360.0000,697461.0000,667144.0000,639071.0000,639551.0000,695477.0000,638449.0000,641636.0000,635625.0000,638760.0000,640183.0000,695618.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > throttled submission to a scheduler thread at 10 us per task,contracting tree topology,100,1,69564900,702948.2200,700328.6300,706559.9400,15514.2454,11891.6354,19787.7892,"benchmark,group:scheduler","696610.0000,696831.0000,709574.0000,695257.0000,695849.0000,696630.0000,697762.0000,696380.0000,696129.0000,702982.0000,690318.0000,697421.0000,756634.0000,694145.0000,697141.0000,756384.0000,695197.0000,696721.0000,696780.0000,727779.0000,695078.0000,696470.0000,696870.0000,696701.0000,697271.0000,695638.0000,698713.0000,694896.0000,697462.0000,756063.0000,694877.0000,697262.0000,696510.0000,697411.0000,696380.0000,696169.0000,727659.0000,695719.0000,696219.0000,696680.0000,697722.0000,696119.0000,726497.0000,695949.0000,697001.0000,696650.0000,725845.0000,696068.0000,697581.0000,756393.0000,694466.0000,696801.0000,697051.0000,698684.0000,695067.0000,725605.0000,727098.0000,694917.0000,697702.0000,725134.0000,699576.0000,694095.0000,697241.0000,696630.0000,696439.0000,696540.0000,698364.0000,695177.0000,697131.0000,726407.0000,699796.0000,692392.0000,697592.0000,697071.0000,695678.0000,696790.0000,728159.0000,694666.0000,696570.0000,696901.0000,699616.0000,694245.0000,696640.0000,695928.0000,697101.0000,697381.0000,756023.0000,694837.0000,697251.0000,696019.0000,698764.0000,695448.0000,696140.0000,726787.0000,696700.0000,695848.0000,697101.0000,697372.0000,725435.0000,696049.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > throttled submission to a scheduler thread at 10 us per task,wave_sim topology,100,1,291926100,2939286.9200,2921524.2800,2949636.3200,67572.7585,44903.9061,95295.6477,"benchmark,group:scheduler","2661218.0000,2661689.0000,2957731.0000,2931501.0000,2932223.0000,2961859.0000,2932393.0000,2931942.0000,2920190.0000,2928015.0000,2980755.0000,2964694.0000,2960847.0000,2967078.0000,2986837.0000,2987798.0000,2962280.0000,2963091.0000,2959966.0000,2962099.0000,2961468.0000,2960316.0000,2968762.0000,2925940.0000,2961518.0000,2960296.0000,2933295.0000,2932172.0000,2962310.0000,2932093.0000,2961278.0000,2960777.0000,2961688.0000,2933015.0000,2967429.0000,2925510.0000,2962330.0000,2989993.0000,2932633.0000,2962621.0000,2989681.0000,2966267.0000,2958192.0000,2932864.0000,2930409.0000,2931942.0000,2965345.0000,2926422.0000,2932323.0000,2932283.0000,2962921.0000,2930940.0000,2961468.0000,2932483.0000,2933665.0000,2960807.0000,2990664.0000,2962220.0000,2959805.0000,2962059.0000,2963462.0000,2949175.0000,2963392.0000,2959464.0000,2904089.0000,2960787.0000,2933204.0000,2961758.0000,2961278.0000,2961048.0000,2961258.0000,2933094.0000,2932243.0000,2932052.0000,2932373.0000,2962260.0000,2960637.0000,2962660.0000,2961387.0000,2960105.0000,2967390.0000,2956939.0000,2989741.0000,2990382.0000,3021071.0000,2959585.0000,2961748.0000,2961127.0000,2968802.0000,2954074.0000,2932974.0000,2961628.0000,2961048.0000,2932343.0000,2942893.0000,2961398.0000,2936290.0000,2661920.0000,2635500.0000,2663703.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > throttled submission to a scheduler thread at 10 us per task,jacobi topology,100,1,80702100,807583.2700,805204.6000,810283.5000,12886.9892,11167.5955,15394.3944,"benchmark,group:scheduler","813762.0000,798133.0000,848158.0000,799655.0000,797943.0000,795638.0000,818311.0000,805517.0000,802752.0000,792121.0000,817520.0000,806258.0000,796069.0000,815536.0000,790278.0000,801749.0000,802301.0000,800658.0000,802771.0000,788344.0000,806889.0000,802351.0000,799075.0000,841685.0000,814464.0000,804926.0000,804184.0000,800036.0000,823601.0000,821126.0000,802191.0000,794265.0000,797422.0000,817159.0000,797301.0000,819513.0000,804776.0000,797131.0000,798273.0000,822779.0000,806689.0000,796099.0000,821627.0000,800818.0000,843820.0000,788274.0000,795728.0000,804505.0000,812260.0000,801900.0000,787843.0000,812821.0000,798112.0000,810947.0000,844470.0000,815136.0000,792702.0000,798433.0000,818101.0000,803944.0000,793815.0000,792802.0000,817780.0000,802000.0000,796369.0000,828390.0000,818372.0000,795618.0000,821006.0000,802972.0000,817870.0000,814304.0000,804936.0000,805737.0000,823781.0000,813182.0000,815716.0000,788094.0000,818251.0000,810686.0000,802521.0000,818691.0000,792973.0000,794536.0000,822459.0000,796509.0000,814073.0000,787473.0000,814263.0000,823390.0000,808613.0000,825445.0000,818611.0000,790548.0000,824052.0000,800567.0000,818210.0000,807921.0000,801860.0000,797081.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: single-threaded immediate graph generation,soup topology,100,1,119960800,1452529.5500,1451373.9700,1454072.5500,6793.2309,5353.2726,10402.4973,"benchmark,group:scheduler","1444158.0000,1448117.0000,1457194.0000,1456312.0000,1451623.0000,1443908.0000,1460710.0000,1450220.0000,1490627.0000,1444709.0000,1455029.0000,1449890.0000,1458566.0000,1447786.0000,1453957.0000,1450621.0000,1452134.0000,1453085.0000,1448157.0000,1454007.0000,1457755.0000,1459017.0000,1453867.0000,1457023.0000,1445021.0000,1454308.0000,1449459.0000,1445361.0000,1463966.0000,1445801.0000,1459447.0000,1444630.0000,1458416.0000,1444379.0000,1459548.0000,1455420.0000,1452063.0000,1446893.0000,1449680.0000,1455450.0000,1443077.0000,1460730.0000,1444229.0000,1453787.0000,1450421.0000,1462323.0000,1454599.0000,1453066.0000,1456772.0000,1446172.0000,1457995.0000,1446303.0000,1455721.0000,1446663.0000,1459808.0000,1451753.0000,1449138.0000,1447976.0000,1447695.0000,1455000.0000,1450661.0000,1453567.0000,1441884.0000,1451262.0000,1459157.0000,1463555.0000,1452795.0000,1456933.0000,1447094.0000,1446604.0000,1451592.0000,1448166.0000,1456422.0000,1446283.0000,1460019.0000,1445071.0000,1455219.0000,1472261.0000,1448216.0000,1442816.0000,1451512.0000,1458055.0000,1449819.0000,1459007.0000,1449619.0000,1454990.0000,1453536.0000,1458056.0000,1450961.0000,1448617.0000,1452705.0000,1446533.0000,1453677.0000,1445411.0000,1454128.0000,1445802.0000,1453917.0000,1446574.0000,1450881.0000,1448036.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: single-threaded immediate graph generation,chain topology,100,1,33319500,333296.9700,332511.6400,335037.4100,5699.8885,3277.6217,11418.5118,"benchmark,group:scheduler","335836.0000,330195.0000,345654.0000,331357.0000,338570.0000,332739.0000,330816.0000,336126.0000,331277.0000,331347.0000,336457.0000,332249.0000,331998.0000,337679.0000,331768.0000,331547.0000,337117.0000,330074.0000,330906.0000,336337.0000,332058.0000,331007.0000,338330.0000,330566.0000,330705.0000,337268.0000,330896.0000,329313.0000,337278.0000,330936.0000,329633.0000,338871.0000,329774.0000,330235.0000,338320.0000,330395.0000,331688.0000,336707.0000,329995.0000,329894.0000,336847.0000,328832.0000,330625.0000,337679.0000,330094.0000,329193.0000,336186.0000,329843.0000,330325.0000,337098.0000,331056.0000,329694.0000,336958.0000,330175.0000,329994.0000,337358.0000,330325.0000,329172.0000,335294.0000,329333.0000,329404.0000,335535.0000,331497.0000,328472.0000,336837.0000,330295.0000,330676.0000,336737.0000,330596.0000,330726.0000,337619.0000,330916.0000,330826.0000,336186.0000,330365.0000,330585.0000,378697.0000,332740.0000,332158.0000,338100.0000,329333.0000,329384.0000,337809.0000,330075.0000,329633.0000,338139.0000,332449.0000,330966.0000,337629.0000,330665.0000,331417.0000,337959.0000,329784.0000,329242.0000,335815.0000,331608.0000,331176.0000,336357.0000,330195.0000,331096.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: single-threaded immediate graph generation,expanding tree topology,100,1,30159600,301239.1400,300563.8800,302055.8200,3779.7280,3282.0647,4638.3520,"benchmark,group:scheduler","298284.0000,298104.0000,315436.0000,300589.0000,300248.0000,305979.0000,300599.0000,299266.0000,300127.0000,306940.0000,300559.0000,299426.0000,306660.0000,299106.0000,299186.0000,305167.0000,300638.0000,299457.0000,298995.0000,310547.0000,298615.0000,298505.0000,304245.0000,298264.0000,298275.0000,304556.0000,298254.0000,298144.0000,298024.0000,304927.0000,298544.0000,296751.0000,306319.0000,298765.0000,299186.0000,305487.0000,299105.0000,298335.0000,297873.0000,306039.0000,299146.0000,297333.0000,305477.0000,297753.0000,297863.0000,310017.0000,300007.0000,299046.0000,298705.0000,305879.0000,298825.0000,297934.0000,305497.0000,298614.0000,297833.0000,306289.0000,299467.0000,298494.0000,299647.0000,305598.0000,299507.0000,298835.0000,305679.0000,298304.0000,298014.0000,304896.0000,299246.0000,299386.0000,299386.0000,306019.0000,299006.0000,299486.0000,311450.0000,299095.0000,298525.0000,305809.0000,299296.0000,298134.0000,298845.0000,306410.0000,299737.0000,300128.0000,305938.0000,300208.0000,299907.0000,306329.0000,298495.0000,298104.0000,304586.0000,299797.0000,299126.0000,298274.0000,305829.0000,298865.0000,298314.0000,305798.0000,298725.0000,298364.0000,306860.0000,302252.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: single-threaded immediate graph generation,contracting tree topology,100,1,35883700,359700.6700,359069.6400,360377.7100,3348.2214,3095.6667,3615.9257,"benchmark,group:scheduler","357366.0000,363889.0000,363428.0000,356615.0000,363528.0000,357506.0000,357477.0000,362265.0000,356886.0000,362857.0000,357586.0000,356554.0000,364851.0000,356615.0000,356264.0000,363468.0000,357316.0000,357356.0000,364109.0000,357146.0000,358218.0000,363839.0000,356865.0000,363017.0000,357597.0000,358419.0000,362416.0000,356274.0000,357667.0000,364410.0000,355633.0000,357035.0000,362295.0000,357106.0000,361675.0000,357196.0000,356374.0000,364900.0000,358589.0000,359440.0000,364871.0000,359069.0000,357857.0000,365552.0000,358007.0000,357577.0000,363067.0000,356073.0000,364730.0000,358809.0000,357316.0000,364210.0000,357186.0000,357647.0000,363578.0000,358729.0000,357707.0000,365071.0000,358078.0000,364981.0000,357095.0000,358217.0000,362556.0000,356384.0000,356194.0000,365331.0000,356525.0000,356054.0000,363007.0000,356344.0000,357677.0000,362917.0000,357066.0000,363819.0000,356564.0000,356925.0000,363799.0000,355983.0000,355643.0000,363548.0000,359310.0000,358679.0000,364019.0000,356454.0000,363758.0000,357286.0000,357146.0000,363699.0000,355723.0000,355723.0000,363358.0000,356976.0000,356575.0000,367074.0000,358318.0000,357546.0000,365140.0000,357827.0000,364540.0000,357106.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: single-threaded immediate graph generation,wave_sim topology,100,1,238690500,2371921.3100,2351968.8400,2382524.0700,72331.5608,44779.2669,105821.2541,"benchmark,group:scheduler","2390765.0000,2389222.0000,2412486.0000,2388070.0000,2386547.0000,2382540.0000,2388451.0000,2386006.0000,2406956.0000,2385725.0000,2387038.0000,2393841.0000,2384964.0000,2395905.0000,2385305.0000,2380686.0000,2387759.0000,2383611.0000,2384083.0000,2415442.0000,2381237.0000,2390124.0000,2376217.0000,2378282.0000,2388180.0000,2381307.0000,2392328.0000,2380445.0000,2379264.0000,2392618.0000,2380305.0000,2388972.0000,2388120.0000,2385946.0000,2386357.0000,2388971.0000,2379905.0000,2387860.0000,2380846.0000,2389132.0000,2380436.0000,2389793.0000,2391086.0000,2381497.0000,2385835.0000,2378422.0000,2382760.0000,2389753.0000,2382048.0000,2374274.0000,2388912.0000,2133446.0000,2018097.0000,2021504.0000,2020522.0000,2117656.0000,2389994.0000,2384383.0000,2382550.0000,2390805.0000,2381578.0000,2411685.0000,2400594.0000,2384523.0000,2391847.0000,2383301.0000,2384574.0000,2389773.0000,2390404.0000,2386847.0000,2385906.0000,2380376.0000,2390625.0000,2384813.0000,2388991.0000,2382901.0000,2383621.0000,2393591.0000,2388250.0000,2387339.0000,2392198.0000,2387589.0000,2391116.0000,2387709.0000,2388231.0000,2390645.0000,2377610.0000,2396847.0000,2386637.0000,2387219.0000,2394291.0000,2391596.0000,2400524.0000,2397458.0000,2399251.0000,2397117.0000,2385084.0000,2395594.0000,2390856.0000,2387429.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: single-threaded immediate graph generation,jacobi topology,100,1,56429400,565420.5500,564620.2300,566477.3500,4639.5351,3677.6503,7369.1666,"benchmark,group:scheduler","567535.0000,560081.0000,571543.0000,568196.0000,561274.0000,567335.0000,567334.0000,564158.0000,569259.0000,562626.0000,568988.0000,562956.0000,570321.0000,568817.0000,563958.0000,568437.0000,559730.0000,571343.0000,562185.0000,571142.0000,562446.0000,568226.0000,568497.0000,561534.0000,564720.0000,560883.0000,566403.0000,560031.0000,566212.0000,567334.0000,560232.0000,567845.0000,560802.0000,567445.0000,562315.0000,566643.0000,565371.0000,563267.0000,566073.0000,562395.0000,569028.0000,562145.0000,568708.0000,561463.0000,575850.0000,570380.0000,558749.0000,568407.0000,560582.0000,567004.0000,560422.0000,567745.0000,567776.0000,561403.0000,568917.0000,562054.0000,569519.0000,562546.0000,569679.0000,568466.0000,560843.0000,569098.0000,562195.0000,569950.0000,561494.0000,568667.0000,560863.0000,568607.0000,568727.0000,561844.0000,568978.0000,560853.0000,568406.0000,562104.0000,568416.0000,567375.0000,560302.0000,567605.0000,559851.0000,566042.0000,559450.0000,565882.0000,568026.0000,560702.0000,565060.0000,560692.0000,566793.0000,560291.0000,566663.0000,560261.0000,567094.0000,566282.0000,558809.0000,567395.0000,559861.0000,592212.0000,560431.0000,568327.0000,567946.0000,560923.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > immediate submission to a scheduler thread,soup topology,100,1,286593800,2865852.1700,2862422.1800,2869544.0000,18101.6236,15924.8153,22324.6892,"benchmark,group:scheduler","2874894.0000,2873421.0000,2911773.0000,2872309.0000,2845458.0000,2875264.0000,2843715.0000,2874874.0000,2844927.0000,2875826.0000,2844346.0000,2874994.0000,2844235.0000,2874574.0000,2844967.0000,2875745.0000,2844096.0000,2876246.0000,2844646.0000,2903729.0000,2844005.0000,2874242.0000,2863201.0000,2844396.0000,2871157.0000,2844186.0000,2875164.0000,2844146.0000,2874312.0000,2844766.0000,2845829.0000,2876296.0000,2843574.0000,2888510.0000,2845508.0000,2867189.0000,2845038.0000,2845588.0000,2876707.0000,2872389.0000,2875574.0000,2873050.0000,2845177.0000,2844666.0000,2846190.0000,2875595.0000,2844155.0000,2875514.0000,2872839.0000,2902947.0000,2874513.0000,2874443.0000,2845478.0000,2877358.0000,2843634.0000,2874503.0000,2844255.0000,2845017.0000,2874463.0000,2844896.0000,2876296.0000,2843444.0000,2875585.0000,2844716.0000,2845398.0000,2874103.0000,2845237.0000,2875455.0000,2857441.0000,2871828.0000,2882909.0000,2844857.0000,2880294.0000,2875535.0000,2872599.0000,2876166.0000,2872490.0000,2875946.0000,2871978.0000,2876106.0000,2933025.0000,2873491.0000,2845909.0000,2875505.0000,2871978.0000,2876227.0000,2901694.0000,2874914.0000,2875636.0000,2902265.0000,2874182.0000,2844887.0000,2876467.0000,2873030.0000,2851188.0000,2867270.0000,2874593.0000,2848905.0000,2872479.0000,2872680.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > immediate submission to a scheduler thread,chain topology,100,1,100587000,1003902.4500,999792.7900,1008347.1100,21856.3263,19512.8836,24847.5215,"benchmark,group:scheduler","986661.0000,988303.0000,1031205.0000,995006.0000,989847.0000,977222.0000,972904.0000,981921.0000,991039.0000,974187.0000,979477.0000,979267.0000,977563.0000,1015505.0000,1016818.0000,986811.0000,986370.0000,1016437.0000,1016477.0000,991980.0000,986741.0000,1045041.0000,1015716.0000,1045823.0000,1015856.0000,1045362.0000,1015435.0000,988875.0000,1014804.0000,1045332.0000,1015585.0000,1045763.0000,1015645.0000,1016417.0000,1015895.0000,1045572.0000,1016076.0000,1045392.0000,1015866.0000,1045152.0000,1016757.0000,1015294.0000,1019894.0000,983785.0000,988274.0000,985097.0000,987311.0000,987312.0000,1016097.0000,1057074.0000,975299.0000,989325.0000,984437.0000,1011437.0000,984677.0000,985048.0000,985147.0000,1010486.0000,1040032.0000,980339.0000,987271.0000,1015746.0000,1016056.0000,987171.0000,1017439.0000,1014794.0000,987342.0000,987171.0000,987441.0000,1015334.0000,1016466.0000,1019302.0000,983725.0000,987122.0000,1016817.0000,1017930.0000,955161.0000,993574.0000,981200.0000,986951.0000,1016337.0000,987182.0000,1016076.0000,1056263.0000,976100.0000,986831.0000,987132.0000,987281.0000,987011.0000,1018390.0000,1013932.0000,987261.0000,1016948.0000,986460.0000,986620.0000,1017449.0000,1014423.0000,1016037.0000,1019733.0000,984296.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > immediate submission to a scheduler thread,expanding tree topology,100,1,102462300,1001867.2300,998668.9700,1005322.7100,16905.5561,15398.0812,19483.1539,"benchmark,group:scheduler","986691.0000,1016417.0000,1042717.0000,985889.0000,986630.0000,1015516.0000,987151.0000,1016187.0000,1015836.0000,1016437.0000,986871.0000,1016357.0000,987161.0000,1016097.0000,986710.0000,1016708.0000,1015275.0000,987983.0000,986600.0000,1016247.0000,1015665.0000,1045832.0000,987092.0000,1016787.0000,986269.0000,1016347.0000,986931.0000,987592.0000,986360.0000,1016518.0000,987542.0000,1015946.0000,986921.0000,1016307.0000,1015615.0000,1045953.0000,1015506.0000,1045261.0000,988114.0000,1015324.0000,1016036.0000,1021366.0000,981441.0000,1020084.0000,983013.0000,987131.0000,987472.0000,987262.0000,987241.0000,986871.0000,988124.0000,1015665.0000,1016487.0000,986249.0000,986831.0000,987853.0000,987793.0000,1015214.0000,986350.0000,1017038.0000,1015865.0000,986851.0000,1016627.0000,987873.0000,985668.0000,1017519.0000,1014594.0000,987923.0000,1017168.0000,985699.0000,986981.0000,1015666.0000,987763.0000,986640.0000,987552.0000,988214.0000,986881.0000,1015775.0000,986601.0000,1016507.0000,986530.0000,1016688.0000,1015986.0000,986951.0000,986971.0000,1016207.0000,986761.0000,1016457.0000,987261.0000,1016267.0000,986851.0000,1016417.0000,986470.0000,1016948.0000,986931.0000,986991.0000,987121.0000,1016317.0000,986791.0000,1016557.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > immediate submission to a scheduler thread,contracting tree topology,100,1,96792900,1000374.8100,997317.3300,1003660.5400,16249.1925,15033.9764,18793.5469,"benchmark,group:scheduler","986219.0000,1016838.0000,1045963.0000,1013542.0000,985648.0000,986751.0000,1017078.0000,985940.0000,1016878.0000,1015865.0000,987441.0000,987201.0000,1015846.0000,986891.0000,987362.0000,1016477.0000,986089.0000,1016927.0000,1015976.0000,986791.0000,987842.0000,986379.0000,1016697.0000,986490.0000,1016246.0000,986450.0000,989336.0000,1016226.0000,986329.0000,1015645.0000,1016227.0000,986380.0000,987582.0000,1016096.0000,987442.0000,968506.0000,983835.0000,974327.0000,1017269.0000,1015836.0000,987061.0000,986981.0000,1016006.0000,986350.0000,1016868.0000,1016427.0000,985939.0000,987431.0000,1016266.0000,986771.0000,987582.0000,1017269.0000,985578.0000,1016897.0000,1016187.0000,986240.0000,987803.0000,1015755.0000,986420.0000,988114.0000,1016196.0000,986961.0000,1016076.0000,1016126.0000,986851.0000,987603.0000,1016016.0000,986250.0000,987632.0000,1015886.0000,987011.0000,987673.0000,1016026.0000,986681.0000,1016677.0000,1016107.0000,986480.0000,987392.0000,1016367.0000,986741.0000,987462.0000,1016316.0000,986260.0000,1016938.0000,1016267.0000,986600.0000,1045401.0000,1016286.0000,986410.0000,987673.0000,1015766.0000,986891.0000,1016607.0000,1016056.0000,987272.0000,986490.0000,1016657.0000,986811.0000,987652.0000,1016106.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > immediate submission to a scheduler thread,wave_sim topology,100,1,654913500,6561839.5900,6536940.2700,6572005.0700,76466.8598,35159.4169,158845.0833,"benchmark,group:scheduler","6590886.0000,6561239.0000,6791025.0000,6590414.0000,6591377.0000,6560538.0000,6534118.0000,6530962.0000,6592008.0000,6536212.0000,6587830.0000,6561500.0000,6533406.0000,6580836.0000,6533667.0000,6559687.0000,6574003.0000,6546892.0000,6575546.0000,6552694.0000,6592719.0000,6531703.0000,6563143.0000,6560428.0000,6533858.0000,6531292.0000,6311476.0000,5924421.0000,6532705.0000,6564496.0000,6559696.0000,6592449.0000,6560879.0000,6595635.0000,6596797.0000,6590494.0000,6595935.0000,6525902.0000,6592759.0000,6535791.0000,6616374.0000,6588841.0000,6589873.0000,6591006.0000,6595825.0000,6586467.0000,6600794.0000,6530972.0000,6587850.0000,6560648.0000,6595995.0000,6586016.0000,6591026.0000,6532816.0000,6589994.0000,6566860.0000,6586397.0000,6533978.0000,6534198.0000,6531613.0000,6592088.0000,6560108.0000,6592639.0000,6560758.0000,6592319.0000,6531472.0000,6591687.0000,6591066.0000,6560428.0000,6597398.0000,6525872.0000,6592599.0000,6560017.0000,6592048.0000,6558905.0000,6591196.0000,6561470.0000,6591016.0000,6561520.0000,6533647.0000,6560338.0000,6591557.0000,6561059.0000,6592098.0000,6531353.0000,6594833.0000,6557803.0000,6592268.0000,6561530.0000,6531844.0000,6592438.0000,6531192.0000,6592318.0000,6560238.0000,6553274.0000,6536893.0000,6587209.0000,6590695.0000,6590666.0000,6561139.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > immediate submission to a scheduler thread,jacobi topology,100,1,161132800,1611381.8700,1607919.5800,1615349.4000,18901.5615,16732.6058,21681.6229,"benchmark,group:scheduler","1596738.0000,1625803.0000,1635983.0000,1595275.0000,1625292.0000,1596197.0000,1626736.0000,1596267.0000,1597620.0000,1624801.0000,1597479.0000,1625392.0000,1626054.0000,1597640.0000,1625232.0000,1595946.0000,1596998.0000,1596318.0000,1597930.0000,1627778.0000,1594083.0000,1626755.0000,1626295.0000,1596838.0000,1625072.0000,1596869.0000,1596407.0000,1596878.0000,1596548.0000,1597440.0000,1598542.0000,1594714.0000,1626495.0000,1596478.0000,1596468.0000,1655189.0000,1596348.0000,1597088.0000,1596497.0000,1655961.0000,1625062.0000,1597019.0000,1596668.0000,1596899.0000,1596638.0000,1627777.0000,1594413.0000,1655781.0000,1599243.0000,1623339.0000,1626104.0000,1596237.0000,1596859.0000,1655339.0000,1596869.0000,1625773.0000,1596428.0000,1625623.0000,1626795.0000,1596337.0000,1596949.0000,1600906.0000,1621305.0000,1626906.0000,1595826.0000,1626625.0000,1623569.0000,1595886.0000,1655740.0000,1596177.0000,1597179.0000,1625373.0000,1597219.0000,1624922.0000,1597279.0000,1596809.0000,1655970.0000,1595315.0000,1655189.0000,1625673.0000,1597038.0000,1596838.0000,1596708.0000,1596668.0000,1627426.0000,1595155.0000,1626425.0000,1596428.0000,1597349.0000,1596087.0000,1596979.0000,1626094.0000,1596899.0000,1626184.0000,1654979.0000,1595827.0000,1625703.0000,1626835.0000,1595887.0000,1626214.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: throttled single-threaded graph generation at 10 us per task,soup topology,100,1,246115400,2459821.8100,2458437.4500,2461431.1000,7599.4521,6287.9942,9955.8061,"benchmark,group:scheduler","2454476.0000,2457742.0000,2466819.0000,2465337.0000,2462300.0000,2457511.0000,2461650.0000,2455408.0000,2467390.0000,2461630.0000,2462361.0000,2448675.0000,2459055.0000,2451560.0000,2473352.0000,2445269.0000,2471167.0000,2461429.0000,2458103.0000,2458233.0000,2452081.0000,2449696.0000,2455649.0000,2461118.0000,2462421.0000,2451842.0000,2459465.0000,2484473.0000,2455598.0000,2459145.0000,2448184.0000,2453294.0000,2460137.0000,2457221.0000,2465858.0000,2452753.0000,2464404.0000,2458042.0000,2464696.0000,2456209.0000,2470947.0000,2459085.0000,2461910.0000,2445980.0000,2478642.0000,2461740.0000,2455578.0000,2461600.0000,2462521.0000,2458985.0000,2462220.0000,2468732.0000,2461298.0000,2457281.0000,2463483.0000,2457492.0000,2449226.0000,2462661.0000,2469143.0000,2455268.0000,2467982.0000,2450819.0000,2458082.0000,2454726.0000,2467030.0000,2445489.0000,2457943.0000,2492768.0000,2473222.0000,2469875.0000,2458965.0000,2459866.0000,2454426.0000,2460057.0000,2457551.0000,2461779.0000,2451119.0000,2458854.0000,2461148.0000,2455107.0000,2459465.0000,2464735.0000,2463242.0000,2458093.0000,2458063.0000,2459566.0000,2468122.0000,2451790.0000,2461108.0000,2452593.0000,2458503.0000,2452963.0000,2458052.0000,2450728.0000,2447132.0000,2456399.0000,2466589.0000,2466589.0000,2458664.0000,2457432.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: throttled single-threaded graph generation at 10 us per task,chain topology,100,1,62645100,626320.2600,625796.8500,627195.8100,3380.3213,2386.7442,5793.0905,"benchmark,group:scheduler","632548.0000,627329.0000,636466.0000,624153.0000,630945.0000,624654.0000,625455.0000,625836.0000,623241.0000,627499.0000,624593.0000,624073.0000,625885.0000,623791.0000,624803.0000,625485.0000,622760.0000,626357.0000,625545.0000,623852.0000,625776.0000,623221.0000,625625.0000,626457.0000,623962.0000,625696.0000,624553.0000,623642.0000,626186.0000,623461.0000,625896.0000,625966.0000,624233.0000,625435.0000,624233.0000,624182.0000,625065.0000,624733.0000,625825.0000,625395.0000,623341.0000,624433.0000,626396.0000,625575.0000,625736.0000,624222.0000,625795.0000,625876.0000,623521.0000,625194.0000,624413.0000,624584.0000,625014.0000,624133.0000,626036.0000,648408.0000,623170.0000,627078.0000,631726.0000,625204.0000,631246.0000,630073.0000,624644.0000,625565.0000,626377.0000,630765.0000,630415.0000,624112.0000,630946.0000,626317.0000,625825.0000,626547.0000,624904.0000,632037.0000,632518.0000,626407.0000,626337.0000,626377.0000,625946.0000,631627.0000,625625.0000,630565.0000,628471.0000,624834.0000,624733.0000,625185.0000,623652.0000,626046.0000,623131.0000,627449.0000,625835.0000,623481.0000,624683.0000,626907.0000,623851.0000,625996.0000,624693.0000,626527.0000,631175.0000,625535.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: throttled single-threaded graph generation at 10 us per task,expanding tree topology,100,1,64924800,652069.0200,651413.6400,652724.7900,3353.8979,3123.3103,3641.5400,"benchmark,group:scheduler","655272.0000,654450.0000,654310.0000,650162.0000,647748.0000,649540.0000,654530.0000,648018.0000,655151.0000,654420.0000,647387.0000,653318.0000,653909.0000,646214.0000,649029.0000,647998.0000,647447.0000,653749.0000,655342.0000,647487.0000,654179.0000,653147.0000,647577.0000,648779.0000,648769.0000,651064.0000,654369.0000,647577.0000,654840.0000,656033.0000,648769.0000,656273.0000,655742.0000,647777.0000,655972.0000,652817.0000,648969.0000,655702.0000,653478.0000,647968.0000,654180.0000,656033.0000,649110.0000,657245.0000,651875.0000,648779.0000,655452.0000,648048.0000,655893.0000,655351.0000,648047.0000,654229.0000,654761.0000,646605.0000,651084.0000,648549.0000,647337.0000,654870.0000,653668.0000,650192.0000,655803.0000,652055.0000,649600.0000,657827.0000,651013.0000,647927.0000,654480.0000,653949.0000,648288.0000,648349.0000,647958.0000,649530.0000,654160.0000,647126.0000,653669.0000,655221.0000,648930.0000,655402.0000,655572.0000,648639.0000,656785.0000,655722.0000,648910.0000,656925.0000,651655.0000,647557.0000,654770.0000,655341.0000,649220.0000,656173.0000,653749.0000,649731.0000,657786.0000,658818.0000,652456.0000,653699.0000,651775.0000,651154.0000,653498.0000,649090.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: throttled single-threaded graph generation at 10 us per task,contracting tree topology,100,1,66524900,664915.1800,664207.0900,665961.8800,4340.5351,3274.2237,7424.3742,"benchmark,group:scheduler","667074.0000,661644.0000,667766.0000,661153.0000,661343.0000,667375.0000,659750.0000,668006.0000,667074.0000,660451.0000,667666.0000,660491.0000,660081.0000,665040.0000,667245.0000,660040.0000,666923.0000,692733.0000,661103.0000,666984.0000,668126.0000,662505.0000,668207.0000,667845.0000,660963.0000,667935.0000,662274.0000,661313.0000,664008.0000,667896.0000,660581.0000,669017.0000,669559.0000,662075.0000,668005.0000,668276.0000,660241.0000,670300.0000,667886.0000,662135.0000,668176.0000,667775.0000,660692.0000,667836.0000,667675.0000,661444.0000,661744.0000,663687.0000,660692.0000,667464.0000,665932.0000,659540.0000,661483.0000,661693.0000,661414.0000,667344.0000,667275.0000,660962.0000,661033.0000,661754.0000,661664.0000,668697.0000,664910.0000,660191.0000,662977.0000,667865.0000,660983.0000,667505.0000,666132.0000,661213.0000,667876.0000,662345.0000,660892.0000,663167.0000,669348.0000,661544.0000,669999.0000,669588.0000,660893.0000,667665.0000,668667.0000,661523.0000,667394.0000,667695.0000,661984.0000,667996.0000,668557.0000,662736.0000,664649.0000,660802.0000,661202.0000,664969.0000,667605.0000,660772.0000,668306.0000,668697.0000,660912.0000,668086.0000,666904.0000,661904.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: throttled single-threaded graph generation at 10 us per task,wave_sim topology,100,1,408067700,4175681.4900,4147377.6500,4209226.5100,157648.1932,137389.6031,172865.7081,"benchmark,group:scheduler","4474750.0000,4457848.0000,4114607.0000,4084860.0000,4081143.0000,4079990.0000,4075542.0000,4082836.0000,4156906.0000,4081062.0000,4079580.0000,4079300.0000,4078317.0000,4081574.0000,4079430.0000,4077646.0000,4081032.0000,4079950.0000,4078348.0000,4081904.0000,4085782.0000,4075272.0000,4081132.0000,4078988.0000,4078789.0000,4079139.0000,4083437.0000,4076675.0000,4081363.0000,4080511.0000,4080421.0000,4079460.0000,4080782.0000,4098275.0000,4079130.0000,4080401.0000,4079089.0000,4080031.0000,4080361.0000,4077757.0000,4080311.0000,4081714.0000,4078708.0000,4079600.0000,4078849.0000,4086102.0000,4079430.0000,4076033.0000,4081954.0000,4077305.0000,4082325.0000,4077787.0000,4081513.0000,4077626.0000,4083567.0000,4136608.0000,4081323.0000,4098646.0000,4087986.0000,4092163.0000,4085241.0000,4097173.0000,4080522.0000,4075302.0000,4084289.0000,4076724.0000,4084008.0000,4076043.0000,4083848.0000,4096111.0000,4099097.0000,4082455.0000,4080351.0000,4089218.0000,4091252.0000,4076534.0000,4146527.0000,4456445.0000,4431909.0000,4438511.0000,4450904.0000,4465872.0000,4447758.0000,4434694.0000,4438341.0000,4451195.0000,4440134.0000,4452177.0000,4439463.0000,4449652.0000,4438090.0000,4458289.0000,4452097.0000,4440014.0000,4432850.0000,4456505.0000,4432480.0000,4438992.0000,4452998.0000,4461114.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: throttled single-threaded graph generation at 10 us per task,jacobi topology,100,1,106765100,1067204.2400,1066492.9000,1068254.0600,4359.7737,3250.7001,7379.2804,"benchmark,group:scheduler","1064468.0000,1070199.0000,1077934.0000,1062815.0000,1063376.0000,1068877.0000,1067854.0000,1068947.0000,1063046.0000,1062234.0000,1062053.0000,1062364.0000,1062424.0000,1062705.0000,1074768.0000,1070189.0000,1063025.0000,1062244.0000,1063557.0000,1064879.0000,1069097.0000,1070029.0000,1063255.0000,1061973.0000,1063226.0000,1064849.0000,1068446.0000,1068455.0000,1067243.0000,1065771.0000,1064458.0000,1063947.0000,1068787.0000,1067433.0000,1067744.0000,1065761.0000,1070559.0000,1069657.0000,1064418.0000,1064298.0000,1069718.0000,1069307.0000,1063246.0000,1063987.0000,1065510.0000,1064207.0000,1063076.0000,1071341.0000,1069808.0000,1066452.0000,1070910.0000,1072584.0000,1062755.0000,1071281.0000,1070179.0000,1063416.0000,1065400.0000,1070931.0000,1069568.0000,1067243.0000,1063967.0000,1071481.0000,1070169.0000,1064037.0000,1071481.0000,1070199.0000,1064579.0000,1065289.0000,1069447.0000,1069548.0000,1065911.0000,1064709.0000,1070409.0000,1094766.0000,1065660.0000,1070941.0000,1070910.0000,1066603.0000,1070359.0000,1068426.0000,1065360.0000,1064869.0000,1069908.0000,1070128.0000,1065130.0000,1063977.0000,1070710.0000,1070009.0000,1066793.0000,1064879.0000,1071481.0000,1069257.0000,1063406.0000,1062173.0000,1063796.0000,1063285.0000,1062714.0000,1069086.0000,1071210.0000,1065079.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > throttled submission to a scheduler thread at 10 us per task,soup topology,100,1,322496100,3224306.7300,3221493.2100,3227579.1100,15368.1007,12369.7182,19383.9205,"benchmark,group:scheduler","3218926.0000,3195522.0000,3217153.0000,3193929.0000,3210521.0000,3212464.0000,3220360.0000,3222112.0000,3225178.0000,3221612.0000,3222764.0000,3250536.0000,3195653.0000,3223355.0000,3220039.0000,3223786.0000,3222132.0000,3224617.0000,3199530.0000,3221611.0000,3238142.0000,3282777.0000,3220610.0000,3222403.0000,3224858.0000,3221040.0000,3256137.0000,3218666.0000,3224346.0000,3221451.0000,3224718.0000,3221191.0000,3223034.0000,3222103.0000,3224297.0000,3222703.0000,3220669.0000,3224978.0000,3221060.0000,3253773.0000,3222013.0000,3226621.0000,3217634.0000,3225219.0000,3220780.0000,3221552.0000,3225148.0000,3222253.0000,3223836.0000,3220820.0000,3223846.0000,3214307.0000,3249014.0000,3220510.0000,3247010.0000,3250877.0000,3192376.0000,3221211.0000,3221993.0000,3220860.0000,3195913.0000,3226411.0000,3226130.0000,3242472.0000,3222253.0000,3191675.0000,3259443.0000,3210341.0000,3223956.0000,3219788.0000,3278329.0000,3263451.0000,3248081.0000,3219387.0000,3219558.0000,3220800.0000,3224327.0000,3222814.0000,3252290.0000,3228505.0000,3215180.0000,3224978.0000,3221541.0000,3223736.0000,3220420.0000,3225108.0000,3221101.0000,3224277.0000,3223144.0000,3221541.0000,3223706.0000,3222082.0000,3221481.0000,3221311.0000,3223636.0000,3221191.0000,3224587.0000,3222133.0000,3195021.0000,3219939.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > throttled submission to a scheduler thread at 10 us per task,chain topology,100,1,87706800,998932.0700,996281.2700,1001790.9700,14070.2866,13347.9307,15483.1455,"benchmark,group:scheduler","987192.0000,987242.0000,1035182.0000,1015816.0000,987693.0000,985748.0000,987642.0000,990929.0000,987181.0000,986951.0000,988815.0000,982011.0000,986680.0000,986761.0000,987402.0000,987392.0000,986750.0000,986770.0000,987142.0000,1015846.0000,987231.0000,1015746.0000,987502.0000,1015776.0000,987462.0000,986871.0000,987612.0000,986710.0000,987392.0000,987011.0000,987112.0000,1016036.0000,987171.0000,987141.0000,1015986.0000,987262.0000,988304.0000,1014112.0000,987782.0000,1015515.0000,1016196.0000,1016217.0000,987362.0000,1015856.0000,987161.0000,987031.0000,987281.0000,987773.0000,986600.0000,986891.0000,987242.0000,986841.0000,987061.0000,987051.0000,987251.0000,987081.0000,986550.0000,992341.0000,1011067.0000,1011357.0000,987391.0000,1012990.0000,987662.0000,986670.0000,984917.0000,1016037.0000,1017418.0000,1012679.0000,1013391.0000,1001619.0000,1016347.0000,987151.0000,987282.0000,1015515.0000,1016477.0000,987142.0000,987051.0000,1016317.0000,1015956.0000,986470.0000,1016327.0000,987001.0000,1016167.0000,1016216.0000,1015865.0000,1016287.0000,1016157.0000,1016076.0000,992191.0000,1011317.0000,1011437.0000,998944.0000,1016697.0000,1015615.0000,1013822.0000,1016317.0000,1015846.0000,1016177.0000,1016006.0000,987171.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > throttled submission to a scheduler thread at 10 us per task,expanding tree topology,100,1,101948300,1019570.9400,1017824.2600,1021977.9900,10336.6767,8068.2732,12686.2985,"benchmark,group:scheduler","1015976.0000,1015976.0000,1017920.0000,1044340.0000,1016908.0000,1014183.0000,1017098.0000,1015806.0000,1045572.0000,1015255.0000,1045873.0000,1015926.0000,1045372.0000,1015666.0000,1046093.0000,1015766.0000,1016427.0000,1015535.0000,1025484.0000,1011127.0000,1013872.0000,1016227.0000,1016347.0000,1015976.0000,1013632.0000,1015685.0000,1016467.0000,1015785.0000,1016387.0000,1016297.0000,1016136.0000,1016366.0000,1015796.0000,1016187.0000,1016236.0000,1045132.0000,1020174.0000,1014423.0000,1013492.0000,1016156.0000,1016006.0000,1016006.0000,1016577.0000,1016116.0000,1016086.0000,1016216.0000,1016407.0000,1015996.0000,1016708.0000,1015685.0000,1015896.0000,1045331.0000,1016197.0000,1015695.0000,1016426.0000,1016316.0000,1015876.0000,1016888.0000,1015125.0000,1045883.0000,1015425.0000,1046113.0000,1015425.0000,1056463.0000,1031666.0000,1007800.0000,1014864.0000,1045922.0000,1013080.0000,1003863.0000,1011147.0000,1014363.0000,1015344.0000,1016557.0000,1015856.0000,1016387.0000,1016236.0000,1015816.0000,1015966.0000,1016538.0000,1015625.0000,1016277.0000,1016236.0000,1016196.0000,1015916.0000,1016597.0000,1015735.0000,1016006.0000,1016216.0000,1019723.0000,1013462.0000,1018881.0000,1012300.0000,1015685.0000,1016187.0000,1016096.0000,1016387.0000,1018120.0000,1014644.0000,1045462.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > throttled submission to a scheduler thread at 10 us per task,contracting tree topology,100,1,102245600,1022664.3800,1020291.7900,1025735.1600,13680.6730,11374.9197,17007.3296,"benchmark,group:scheduler","1015815.0000,1016367.0000,1021657.0000,1015395.0000,1014664.0000,1045532.0000,1015736.0000,1045582.0000,1017238.0000,1014744.0000,1015856.0000,1045693.0000,1015966.0000,1016317.0000,1044901.0000,1016046.0000,1016186.0000,1015986.0000,1016447.0000,1016457.0000,1016036.0000,1015856.0000,1016236.0000,1016457.0000,1016146.0000,1016377.0000,1015806.0000,1019954.0000,1015485.0000,1043137.0000,1014523.0000,1075669.0000,1016217.0000,1016186.0000,1017379.0000,1014313.0000,1015756.0000,1016337.0000,1016186.0000,1015285.0000,1045612.0000,1016507.0000,1015705.0000,1016507.0000,1015656.0000,1045492.0000,1015926.0000,1045682.0000,1015456.0000,1046063.0000,1015465.0000,1016667.0000,1015465.0000,1016396.0000,1051885.0000,1009413.0000,1016437.0000,1016446.0000,1067914.0000,1022028.0000,1016297.0000,1015775.0000,1016637.0000,1015705.0000,1016266.0000,1016357.0000,1016257.0000,1015856.0000,1016006.0000,1051644.0000,1012209.0000,1010095.0000,1033930.0000,1011978.0000,1015555.0000,1016046.0000,1015936.0000,1017739.0000,1016687.0000,1043428.0000,1046033.0000,1044761.0000,1015425.0000,1016688.0000,1016166.0000,1016147.0000,1016457.0000,1015214.0000,1045502.0000,1016106.0000,1045752.0000,1015174.0000,1046254.0000,1015274.0000,1046143.0000,1018130.0000,1013331.0000,1016327.0000,1016337.0000,1016166.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > throttled submission to a scheduler thread at 10 us per task,wave_sim topology,100,1,655536400,6547925.0500,6524304.9600,6557049.7200,70056.8634,31679.0252,147254.6062,"benchmark,group:scheduler","6591416.0000,6560408.0000,6721413.0000,6619930.0000,6530301.0000,6563293.0000,6524339.0000,6551871.0000,6555639.0000,6561940.0000,6562902.0000,6503600.0000,6560978.0000,6532876.0000,6561980.0000,6532104.0000,6562672.0000,6532475.0000,6562321.0000,6531994.0000,6560838.0000,6563684.0000,6534628.0000,6616253.0000,6560167.0000,6562852.0000,6563844.0000,6529799.0000,6544718.0000,6564976.0000,6595874.0000,6566369.0000,6573923.0000,6536292.0000,6584704.0000,6533807.0000,6533156.0000,6594472.0000,6591707.0000,6585636.0000,6533126.0000,6532975.0000,6571298.0000,5951602.0000,6337464.0000,6530921.0000,6563704.0000,6530901.0000,6563033.0000,6538917.0000,6531503.0000,6497628.0000,6533366.0000,6562731.0000,6531473.0000,6564305.0000,6531673.0000,6532805.0000,6532776.0000,6596095.0000,6565016.0000,6587449.0000,6564626.0000,6524209.0000,6569364.0000,6525341.0000,6562792.0000,6531222.0000,6563162.0000,6563243.0000,6560849.0000,6531953.0000,6562401.0000,6533216.0000,6532545.0000,6590394.0000,6533146.0000,6533096.0000,6565777.0000,6556490.0000,6568202.0000,6526583.0000,6620381.0000,6527815.0000,6561659.0000,6537844.0000,6586788.0000,6532665.0000,6532344.0000,6595865.0000,6557191.0000,6537283.0000,6557322.0000,6561149.0000,6562571.0000,6561750.0000,6537063.0000,6586266.0000,6538496.0000,6556530.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > throttled submission to a scheduler thread at 10 us per task,jacobi topology,100,1,159548700,1606706.3700,1603069.1200,1610715.9600,19419.0781,16752.0977,24169.0456,"benchmark,group:scheduler","1595636.0000,1597539.0000,1667623.0000,1594394.0000,1600615.0000,1594544.0000,1595546.0000,1627947.0000,1594644.0000,1628197.0000,1625492.0000,1594765.0000,1568434.0000,1627496.0000,1594815.0000,1626344.0000,1567373.0000,1570097.0000,1594414.0000,1627366.0000,1626544.0000,1594284.0000,1597459.0000,1626925.0000,1596147.0000,1596608.0000,1596538.0000,1567623.0000,1627457.0000,1594975.0000,1568214.0000,1596648.0000,1569216.0000,1680006.0000,1627397.0000,1625683.0000,1595345.0000,1599293.0000,1624921.0000,1624231.0000,1631905.0000,1620092.0000,1626083.0000,1626294.0000,1595676.0000,1597059.0000,1628759.0000,1595396.0000,1595766.0000,1596247.0000,1597148.0000,1590897.0000,1596738.0000,1624080.0000,1597430.0000,1596938.0000,1598352.0000,1594874.0000,1597028.0000,1596558.0000,1597319.0000,1598722.0000,1595556.0000,1625062.0000,1598010.0000,1595186.0000,1596738.0000,1626695.0000,1626174.0000,1595726.0000,1598532.0000,1625733.0000,1624120.0000,1627176.0000,1596027.0000,1626093.0000,1626554.0000,1625843.0000,1595626.0000,1627567.0000,1624040.0000,1602609.0000,1591658.0000,1600555.0000,1593863.0000,1595897.0000,1625773.0000,1596708.0000,1599794.0000,1624420.0000,1595246.0000,1627747.0000,1595456.0000,1596688.0000,1626985.0000,1594674.0000,1599213.0000,1594874.0000,1597369.0000,1626494.0000" +normalizing randomized box sets - 2d,"small, native",100,45,2574000,614.4584,611.9900,619.6956,17.5545,9.6167,29.2171,"benchmark,group:grid","606.8667,606.8667,626.0222,612.9111,615.8000,619.3556,613.5556,610.8889,608.6667,609.1111,609.5556,609.7778,609.7778,612.0222,703.7333,612.4444,608.0000,605.5556,607.5556,611.5556,613.5778,614.0000,605.7778,607.3333,606.0000,609.5556,606.6667,615.5778,614.2222,616.8889,617.1333,615.3556,617.1333,614.0000,609.1111,605.5556,606.6667,607.7778,606.0000,611.5556,612.0222,610.0000,607.1111,605.1111,600.6444,604.6667,613.1111,612.6889,616.6667,610.9111,614.2222,695.9556,610.0000,610.6667,605.7778,608.4444,609.5556,611.3556,610.8889,620.0222,620.9111,616.9111,612.4444,611.8000,622.6889,608.8889,608.2222,612.6889,609.5556,611.1111,618.9111,616.4667,608.8889,609.5556,616.4667,621.1333,623.1333,613.5778,607.5556,612.4444,615.1333,618.4667,611.5556,606.2222,614.4444,606.8667,609.1333,729.7778,616.0222,607.5556,613.7778,607.1111,607.3333,609.5556,614.2444,610.6667,610.0000,609.1111,608.8889,606.8889" +normalizing randomized box sets - 2d,"small, embedded in 3d",100,37,2530800,682.5416,680.0184,688.1184,18.5371,10.1807,29.7034,"benchmark,group:grid","679.6216,680.4054,706.1622,684.7568,679.8919,685.8378,682.8649,685.5676,683.4054,686.6486,678.0000,679.0811,676.0811,678.8108,679.8919,679.0811,680.7027,678.7838,680.7027,792.8108,681.7838,677.7297,680.4324,681.2432,680.4054,681.2162,680.4054,678.2703,676.6486,677.7027,678.5405,676.9189,677.1622,679.8649,679.3514,677.7297,674.4595,679.3514,679.3514,680.1622,680.4324,679.6216,677.4324,675.2973,680.1622,680.1622,678.5135,679.0811,678.2703,680.4324,680.1622,674.1892,680.7027,678.2703,678.5135,679.3243,679.6216,681.5135,787.3784,679.0541,678.8108,678.8108,679.6216,681.7838,679.0541,678.5135,679.0811,675.2973,677.4324,680.9730,680.4324,678.2703,676.8919,679.3514,678.8108,675.0270,679.0541,680.1622,678.2703,678.8108,678.5135,679.3243,674.7568,677.1622,678.2432,680.1622,678.2703,677.1622,676.0811,675.8378,675.8108,679.0811,679.8919,679.3514,677.9730,678.2703,678.0000,673.6486,777.3784,678.8108" +normalizing randomized box sets - 2d,"medium, native",100,5,2988500,6002.1160,5975.9620,6066.8300,202.5930,102.1505,342.8748,"benchmark,group:grid","5970.8000,5950.8000,7413.8000,6009.0000,6017.0000,5985.0000,5965.0000,5977.0000,5950.8000,5977.0000,5957.0000,5974.8000,5991.0000,5991.0000,5985.0000,5983.0000,5985.0000,5949.0000,5972.8000,5981.0000,5985.0000,5951.0000,5932.8000,5965.0000,5971.0000,5972.8000,5962.8000,5973.0000,5953.0000,5962.8000,5969.0000,5963.0000,5989.0000,5976.8000,5969.0000,5951.0000,7006.8000,5959.0000,5969.0000,5997.0000,5948.8000,5979.0000,5965.0000,5993.0000,5963.0000,5976.8000,5984.8000,5997.0000,5993.0000,5979.0000,5999.0000,5975.0000,5983.0000,5975.0000,5966.8000,5924.8000,5977.0000,5950.8000,5973.0000,5973.0000,5973.0000,5956.8000,5955.0000,5971.0000,5950.8000,5973.0000,5959.0000,5958.8000,5957.0000,6978.8000,5947.0000,5944.8000,5975.0000,5977.0000,5955.0000,5978.8000,5956.8000,5926.8000,5972.8000,5955.0000,5979.0000,5952.8000,5947.0000,5960.8000,5936.8000,5969.0000,5940.8000,5977.0000,5977.0000,5952.8000,5954.8000,5928.8000,5966.8000,5943.0000,5979.0000,5932.8000,5969.0000,5958.8000,5953.0000,5969.0000" +normalizing randomized box sets - 2d,"medium, embedded in 3d",100,4,2724800,6824.4075,6797.5525,6885.5825,199.9710,115.5424,317.7083,"benchmark,group:grid","6775.0000,6794.7500,7118.0000,6789.7500,6777.5000,6762.2500,6770.0000,6792.5000,6759.7500,6792.5000,6799.7500,6802.5000,6754.7500,6787.2500,6800.0000,6802.5000,6787.2500,6795.0000,6812.5000,6777.2500,7934.7500,6799.7500,6790.0000,6790.0000,6754.7500,6802.5000,6812.5000,6789.7500,6797.5000,6807.5000,6802.5000,6812.2500,6787.5000,6795.0000,6772.2500,6792.5000,6810.0000,6799.7500,6759.7500,6774.7500,6744.7500,6789.7500,6792.5000,6790.0000,6807.5000,6807.2500,6767.5000,6767.2500,6797.5000,6787.5000,6762.2500,6787.5000,6764.7500,6792.5000,6772.2500,6802.5000,6737.2500,7972.2500,6754.7500,6792.2500,6770.0000,6759.7500,6792.5000,6772.2500,6775.0000,6815.0000,6787.2500,6805.0000,6754.7500,6789.7500,6765.0000,6832.5000,6759.7500,6810.0000,6757.2500,6822.5000,6790.0000,6804.7500,6789.7500,6790.0000,6779.7500,6782.5000,6775.0000,6819.7500,6762.5000,6802.5000,6812.2500,6782.2500,6772.5000,6787.2500,6737.2500,6794.7500,6795.0000,7914.5000,6790.0000,6767.2500,6805.0000,6810.0000,6802.5000,6779.7500" +normalizing randomized box sets - 2d,"large, native",100,1,18788700,197515.8400,197059.9500,198610.2400,3397.0479,1814.7002,6955.1895,"benchmark,group:grid","200558.0000,197112.0000,199978.0000,197222.0000,200629.0000,196481.0000,196962.0000,196060.0000,196561.0000,200138.0000,196030.0000,195880.0000,195699.0000,195830.0000,200168.0000,196721.0000,195770.0000,195740.0000,195909.0000,200688.0000,195970.0000,195689.0000,196471.0000,195329.0000,200118.0000,197072.0000,195278.0000,196091.0000,196430.0000,200358.0000,197352.0000,195569.0000,195910.0000,195929.0000,200919.0000,196381.0000,196631.0000,197663.0000,195700.0000,201179.0000,196440.0000,196872.0000,196030.0000,196161.0000,196350.0000,201120.0000,196291.0000,196841.0000,196331.0000,196120.0000,225526.0000,196400.0000,195810.0000,196641.0000,196912.0000,201240.0000,196812.0000,195849.0000,196521.0000,196662.0000,201430.0000,196391.0000,196922.0000,196841.0000,195890.0000,203174.0000,196691.0000,196391.0000,197252.0000,196802.0000,201270.0000,196411.0000,196411.0000,195789.0000,197022.0000,202052.0000,196301.0000,196561.0000,196150.0000,196090.0000,200449.0000,196741.0000,196161.0000,195960.0000,196190.0000,200599.0000,195739.0000,195750.0000,196120.0000,195810.0000,200068.0000,196130.0000,195319.0000,196601.0000,196261.0000,201209.0000,196751.0000,196381.0000,196360.0000,196040.0000" +normalizing randomized box sets - 2d,"large, embedded in 3d",100,1,21412600,214464.7100,213986.5300,215542.8500,3467.0015,1981.9778,6925.2878,"benchmark,group:grid","213252.0000,213323.0000,216078.0000,213434.0000,213292.0000,213524.0000,219384.0000,213373.0000,213153.0000,213193.0000,219043.0000,213524.0000,213002.0000,212792.0000,213383.0000,218272.0000,213243.0000,212982.0000,212611.0000,212982.0000,217822.0000,213904.0000,213152.0000,212672.0000,217701.0000,212942.0000,213062.0000,213243.0000,213152.0000,216860.0000,212902.0000,212942.0000,213273.0000,213273.0000,218673.0000,212972.0000,212731.0000,213714.0000,219024.0000,213543.0000,212401.0000,213023.0000,213333.0000,242127.0000,212742.0000,213473.0000,213103.0000,213042.0000,218673.0000,213734.0000,212972.0000,213323.0000,217782.0000,213343.0000,212802.0000,213062.0000,213624.0000,217531.0000,213052.0000,213283.0000,212922.0000,213012.0000,218172.0000,213322.0000,213583.0000,213203.0000,217851.0000,213533.0000,213062.0000,212571.0000,213373.0000,217431.0000,213904.0000,213293.0000,212642.0000,212351.0000,217471.0000,212922.0000,212822.0000,213303.0000,218462.0000,212811.0000,212771.0000,213484.0000,212932.0000,219004.0000,213122.0000,213093.0000,212511.0000,213553.0000,217350.0000,213093.0000,213202.0000,212802.0000,218002.0000,212952.0000,213494.0000,212451.0000,213543.0000,219274.0000" +normalizing randomized box sets - 3d,small - native,100,11,2536600,2468.7255,2457.6709,2492.5600,79.2325,43.3455,134.4476,"benchmark,group:grid","2455.4545,2459.0000,2642.0909,2514.6364,2484.5455,2474.4545,2475.4545,2461.8182,2474.4545,2464.4545,2472.7273,2445.3636,2448.0909,2841.6364,2459.9091,2473.6364,2455.3636,2455.4545,2447.1818,2449.9091,2460.9091,2452.6364,2453.5455,2442.6364,2448.1818,2449.9091,2453.5455,2451.7273,2435.3636,2450.9091,2443.5455,2449.9091,2469.0909,2455.3636,2460.0000,2446.2727,2449.9091,2458.0909,2451.7273,2449.9091,2446.2727,2441.7273,2433.5455,2445.3636,2457.2727,2448.0909,2449.9091,2453.6364,2442.6364,2449.9091,2837.0000,2453.6364,2456.2727,2452.6364,2455.3636,2444.4545,2447.1818,2454.5455,2446.2727,2436.2727,2445.3636,2458.0909,2459.0909,2451.7273,2457.1818,2446.2727,2449.9091,2449.9091,2442.6364,2455.4545,2458.0909,2445.3636,2452.7273,2430.7273,2440.8182,2458.0909,2460.8182,2451.8182,2449.0000,2445.3636,2444.4545,2450.0000,2453.5455,2458.0909,2456.3636,2452.6364,2456.2727,3006.4545,2454.5455,2469.9091,2456.3636,2443.5455,2457.1818,2442.6364,2439.9091,2460.8182,2460.8182,2456.2727,2457.1818,2446.2727" +normalizing randomized box sets - 3d,medium - native,100,4,3280800,9110.9975,9074.4600,9188.7525,259.2267,138.7939,435.2499,"benchmark,group:grid","9064.2500,9024.0000,9835.5000,9139.2500,9096.7500,9134.5000,9089.2500,9064.2500,9099.2500,9116.7500,9056.7500,9046.7500,9139.2500,9112.0000,9039.0000,9091.7500,9092.0000,9064.0000,9066.5000,9079.2500,9026.5000,9069.2500,9066.7500,9119.2500,9096.7500,9089.2500,10837.5000,9089.2500,9081.7500,9094.2500,9044.2500,9054.2500,9046.7500,9019.0000,9069.2500,9041.7500,9046.7500,9091.7500,9041.7500,9031.5000,9001.7500,9056.7500,9006.5000,9066.7500,9031.7500,9041.7500,9006.5000,9019.2500,8981.5000,9016.5000,9061.7500,9044.2500,9061.7500,10394.2500,9019.2500,9051.5000,9059.0000,8996.7500,8986.5000,9014.2500,9076.7500,8981.5000,9036.7500,9036.5000,9099.2500,8986.5000,9036.7500,9076.7500,9106.7500,9049.2500,9056.5000,9049.0000,9134.5000,9009.0000,9071.7500,9049.2500,9104.2500,9026.7500,9071.7500,9069.2500,9121.7500,10206.5000,9089.2500,9129.2500,9079.2500,9031.7500,9046.7500,9076.7500,9071.7500,9071.7500,9034.0000,9076.7500,9089.2500,9059.2500,9054.0000,9076.7500,9054.2500,9076.7500,9029.2500,9069.2500" +normalizing randomized box sets - 3d,large - native,100,1,214143600,2102312.9100,2100562.7200,2104694.7700,10345.0361,7586.9395,15167.0401,"benchmark,group:grid","2099302.0000,2105243.0000,2156641.0000,2091026.0000,2087580.0000,2088581.0000,2080847.0000,2084804.0000,2100635.0000,2093931.0000,2092258.0000,2089664.0000,2098790.0000,2098199.0000,2088281.0000,2095996.0000,2089523.0000,2090205.0000,2094473.0000,2094392.0000,2105584.0000,2099092.0000,2105313.0000,2106065.0000,2103209.0000,2099672.0000,2105964.0000,2104672.0000,2102598.0000,2101376.0000,2092589.0000,2101216.0000,2099382.0000,2114370.0000,2108309.0000,2108800.0000,2105864.0000,2109240.0000,2104382.0000,2114040.0000,2096857.0000,2096436.0000,2106145.0000,2085987.0000,2110984.0000,2109321.0000,2101616.0000,2105323.0000,2097088.0000,2108590.0000,2100874.0000,2097688.0000,2104342.0000,2093340.0000,2108610.0000,2098220.0000,2101546.0000,2120372.0000,2115081.0000,2111174.0000,2101356.0000,2101115.0000,2099552.0000,2104191.0000,2097929.0000,2104892.0000,2096346.0000,2103269.0000,2110894.0000,2106616.0000,2094963.0000,2097990.0000,2106936.0000,2106305.0000,2109401.0000,2107127.0000,2105634.0000,2112096.0000,2094202.0000,2106916.0000,2119219.0000,2096587.0000,2100554.0000,2102398.0000,2099923.0000,2104722.0000,2094713.0000,2106626.0000,2100264.0000,2093441.0000,2092228.0000,2100624.0000,2148716.0000,2098901.0000,2103360.0000,2106165.0000,2111625.0000,2098540.0000,2094844.0000,2108409.0000" +normalizing a fully mergeable tiling of boxes - 1,"small, native",100,754,2488200,33.9044,33.7692,34.2484,1.0104,0.2834,1.8519,"benchmark,group:grid","34.0663,33.9085,35.2639,33.5358,33.7347,33.6286,34.2666,33.5623,33.8939,33.5902,33.8806,33.5491,33.5093,33.8554,33.9085,33.7082,33.4164,33.6684,33.2971,33.3103,33.7878,34.2268,33.6419,33.5504,33.4695,41.5212,33.8687,33.5491,33.8408,33.4960,33.7891,33.7745,33.7626,33.6286,34.1472,33.6419,33.8952,33.4164,33.8674,33.5491,33.9615,33.7347,33.5225,33.8408,33.7082,33.6963,33.4430,33.4695,33.7745,34.3992,33.7215,33.8541,33.4695,34.1870,33.4682,33.4019,33.9085,34.1074,33.6286,33.8024,33.6950,33.8820,33.6552,33.9072,39.7944,33.8939,33.7759,33.7878,34.1472,33.3899,34.2135,33.5756,33.8289,33.6950,33.6817,33.5358,34.0676,33.4695,33.9615,34.0809,33.8541,33.8939,33.7891,34.0663,33.5769,33.6154,33.5623,34.0279,33.6684,33.5358,33.7215,33.6950,33.6684,33.8554,33.9072,33.5491,34.1472,33.9350,33.9218,33.3355" +normalizing a fully mergeable tiling of boxes - 1,"small, embedded in 3d",100,557,2506500,45.5059,45.3880,45.7966,0.8656,0.2225,1.5583,"benchmark,group:grid","45.1993,45.4865,46.2424,45.7379,45.5224,45.6320,45.4147,45.4686,45.5583,45.5045,45.5422,45.7020,45.5045,45.6320,45.7738,45.8115,45.5224,45.6302,45.3070,45.7038,45.5224,45.6122,45.7935,45.8276,45.5063,45.6302,45.3788,45.5404,45.8474,45.5763,45.5224,45.4704,45.4147,45.6661,45.3070,45.5943,45.6320,50.8654,45.3250,45.3070,45.3609,45.3968,45.5583,45.1454,45.3070,45.1634,45.1993,45.2334,45.2154,45.2890,45.2352,45.1634,45.1993,45.2890,45.2711,45.1993,45.3429,45.2711,44.9659,45.5943,45.1813,45.1634,45.1795,45.2172,45.2711,45.1993,45.1275,45.1275,45.1275,45.1436,45.1795,45.1634,45.2711,45.5224,45.0557,45.2531,51.8366,45.3968,45.2531,45.3429,45.6122,45.3070,45.1634,45.2531,45.2531,45.2531,45.1454,45.2172,45.2531,45.3070,45.0000,45.1813,45.2711,45.5961,45.5045,45.4147,45.4327,45.3070,45.1993,45.2711" +normalizing a fully mergeable tiling of boxes - 1,"medium, native",100,85,2524500,264.7885,263.3604,267.8008,10.0779,5.3529,16.3002,"benchmark,group:grid","262.1294,262.1176,267.4235,264.0118,263.0588,264.1294,312.3294,263.0706,263.0588,262.3529,263.2941,263.1765,263.0706,263.0588,263.4235,263.0588,263.0706,262.3529,263.3059,263.0588,263.0706,263.0588,263.4235,263.0588,263.0588,262.3529,263.3059,263.0706,263.1765,263.0706,263.4118,263.0706,263.0588,262.3647,263.2941,263.0706,263.1765,263.0706,263.4235,263.0588,263.0706,262.2353,263.4235,263.0588,263.1882,263.0588,263.3059,263.0588,263.0706,262.2353,263.4235,316.1059,262.7059,261.6588,262.9412,262.6000,262.7059,261.7647,262.9412,262.7059,262.5882,261.6471,262.9529,262.5882,262.7176,261.6471,262.8235,262.7059,262.5882,261.6471,262.9412,262.6000,262.7059,261.6588,262.8235,262.5882,262.5882,261.7647,262.9529,262.5882,262.7176,261.6471,262.9529,262.7059,262.7059,261.6471,262.9412,262.6000,262.7059,261.6588,262.9412,262.7176,262.7059,261.6471,262.8353,328.7176,292.1765,261.8941,262.2353,262.1176" +normalizing a fully mergeable tiling of boxes - 1,"medium, embedded in 3d",100,56,2525600,487.6804,486.1989,490.9957,10.9869,6.1458,17.5524,"benchmark,group:grid","486.9643,485.7143,493.7679,488.5714,488.5714,552.2500,486.7679,486.4286,486.0714,486.4286,486.4286,486.4107,486.2500,486.4286,485.7143,486.4107,485.6964,486.2500,484.1071,484.0893,484.4643,484.8036,486.7857,487.6786,486.6071,486.7857,485.8929,485.8750,486.4286,486.7857,484.8214,486.5893,486.9643,486.6071,487.1429,487.3214,486.6071,486.0536,486.4107,486.6071,486.6071,545.4643,483.3929,483.5536,484.1071,483.7321,483.9286,484.2679,479.4464,482.8571,481.9464,483.5714,485.8750,486.7857,486.9643,486.7857,488.0357,486.9643,486.9643,486.9464,486.4286,486.9643,487.8571,487.1429,485.5357,487.1429,485.6964,485.5357,485.7143,486.6071,486.0536,485.5357,486.0714,487.3214,486.0536,485.3393,484.2857,484.8036,550.3036,485.0000,486.0536,485.0000,483.3929,482.8393,484.8214,484.6250,482.8571,484.4464,486.2500,485.1786,482.8393,484.2857,487.3214,486.5893,485.0000,484.8214,485.1607,486.0714,487.5000,482.8393" +normalizing a fully mergeable tiling of boxes - 1,"large, native",100,3,2578500,8687.9333,8581.9167,9156.0700,968.3075,45.7308,2290.1512,"benchmark,group:grid","8609.0000,8565.6667,8779.3333,8605.6667,8532.0000,8509.0000,8602.3333,8582.3333,8545.6667,8568.6667,8505.6667,8609.0000,8599.0000,8562.3333,8559.0000,8632.3333,8639.0000,8599.0000,8642.3333,8572.3333,8639.0000,8589.0000,8535.6667,8515.3333,8572.3333,8589.0000,8565.6667,8599.0000,18217.3333,8615.6667,8605.6667,8579.0000,8525.6667,8625.6667,8632.3333,8579.0000,8605.6667,8549.0000,8619.0000,8585.6667,8535.6667,8509.0000,8589.0000,8575.6667,8552.0000,8569.0000,8519.0000,8575.6667,8589.0000,8498.6667,8525.6667,8589.0000,8535.6667,8605.6667,8589.0000,8535.6667,8582.0000,8588.6667,8528.6667,8542.3333,8582.3333,8552.3333,8602.3333,8592.3333,8528.6667,8578.6667,9954.6667,8559.0000,8505.6667,8572.3333,8592.3333,8555.3333,8615.6667,8585.3333,8552.0000,8609.0000,8612.6667,8502.0000,8565.6667,8595.6667,8539.0000,8612.3333,8599.0000,8562.3333,8615.6667,8632.3333,8565.6667,8575.6667,8602.3333,8562.3333,8599.0000,8595.6667,8539.0000,8595.6667,8599.0000,8555.6667,8572.3333,8615.6667,8539.0000,8602.3333" +normalizing a fully mergeable tiling of boxes - 1,"large, embedded in 3d",100,3,3617400,12076.3200,12039.2700,12147.2533,250.1049,134.3899,375.0397,"benchmark,group:grid","12012.0000,11992.3333,12139.0000,12062.0000,12092.0000,11998.6667,12012.0000,12055.6667,12065.6667,11995.3333,12015.6667,12015.3333,12052.3333,13368.0000,11962.0000,12068.6667,11985.6667,12018.6667,12002.3333,12058.6667,12029.0000,12002.0000,11968.6667,12058.6667,12048.6667,12002.3333,11995.3333,12079.0000,12062.3333,11998.6667,11985.3333,12038.6667,12035.6667,11995.3333,12002.3333,12008.6667,12049.0000,11988.6667,12042.3333,11975.3333,13251.3333,12005.3333,11975.3333,12042.3333,12055.6667,11985.3333,11945.3333,12029.0000,12028.6667,11968.6667,11998.6667,12019.0000,12045.3333,11969.0000,12025.3333,12012.3333,12069.0000,12005.3333,12019.0000,11982.0000,12069.0000,12012.0000,12035.6667,11998.6667,12065.6667,12005.3333,12052.0000,12005.6667,13331.3333,11992.0000,12012.3333,12068.6667,12072.3333,12019.0000,12022.0000,12072.3333,12055.6667,11998.6667,12039.0000,12042.3333,12072.0000,11995.3333,12045.6667,11975.3333,12072.3333,12012.0000,12059.0000,11998.6667,12085.6667,12019.0000,12058.6667,11988.6667,12095.6667,12035.3333,12039.0000,12012.3333,13201.0000,12028.6667,12002.3333,12095.6667" +normalizing a fully mergeable tiling of boxes - 2,"small, native",100,238,2522800,107.5620,107.2536,108.2511,2.2402,0.8200,3.9062,"benchmark,group:grid","107.6303,107.7185,108.4328,106.2017,107.2941,107.6765,107.9706,109.0210,107.4664,105.8655,106.0336,106.0756,107.2521,107.3403,107.8025,108.1807,107.4622,106.0756,108.3445,106.9160,106.8319,108.2227,107.2563,107.6765,107.4202,106.1597,106.7521,107.2101,107.5084,107.7605,108.0126,107.7143,107.9286,107.4664,105.9916,106.8319,105.9496,107.2983,122.7857,107.8866,107.8025,107.8445,105.3992,105.8655,108.2647,105.8655,106.9202,107.2101,107.6345,107.8025,108.6008,108.1807,106.3697,106.2017,106.8361,106.9580,108.3487,106.4958,108.3487,105.8235,107.9286,105.8655,106.5378,106.9202,107.4202,107.6765,107.7605,107.4622,105.8193,107.8025,106.0336,107.2983,107.4202,107.4244,107.7605,108.0126,107.3361,121.5672,106.0336,108.5588,107.6303,106.7941,107.1261,107.7605,107.9286,107.4202,105.6975,107.3403,107.2941,108.1387,107.0882,107.3361,107.8866,108.1387,107.5504,105.6975,108.8529,107.1303,107.0420,107.5084" +normalizing a fully mergeable tiling of boxes - 2,"small, embedded in 3d",100,233,2516400,108.2270,107.8691,109.1288,2.5325,0.1691,4.6092,"benchmark,group:grid","107.7039,108.0944,107.1030,107.7511,108.0944,107.7511,108.0515,107.6609,108.0086,107.7940,107.9227,107.8369,107.8326,107.9657,107.7511,108.0086,107.7082,108.0901,107.5794,108.0944,107.6652,108.0515,107.7468,107.9657,107.8369,107.9227,107.8798,125.8498,108.0086,107.7511,108.0515,107.6609,108.0472,107.6652,108.0944,107.7082,108.0086,107.7897,107.9227,107.8798,107.8369,107.9614,107.7897,108.0086,107.7082,108.0944,107.5751,108.1373,107.6652,108.0086,107.7940,107.9614,107.8369,107.8798,107.9227,107.8369,107.9614,107.7082,108.0944,107.6652,108.0515,107.6609,108.0944,107.7082,108.0086,107.7897,107.9185,125.9828,107.8369,107.9227,107.7940,108.0043,107.7082,108.0944,107.5794,108.0944,107.7039,108.0086,107.7511,107.9227,107.8369,107.8755,107.9227,107.7940,108.0086,107.7039,108.0472,107.6652,108.0515,107.6652,108.0472,107.7468,107.9657,107.7940,107.8798,107.8326,107.7897,107.9227,107.7511,108.0086" +normalizing a fully mergeable tiling of boxes - 2,"medium, native",100,29,2534600,878.8690,867.7252,927.6076,100.4867,14.0335,236.5362,"benchmark,group:grid","867.4138,860.2069,1862.0690,877.1379,863.9655,866.7241,864.6897,867.7931,863.6207,858.1034,867.4483,866.7241,869.4828,865.6897,867.4483,864.0000,864.3103,869.1724,868.4828,869.5172,870.2069,867.4483,865.0345,870.8966,860.5172,865.3793,871.9310,866.7586,866.7586,865.3448,868.4828,860.5517,868.4828,868.1379,869.8621,869.5172,866.3793,870.5517,866.7586,859.1724,869.8621,1004.2414,868.8276,865.7241,868.1034,867.7586,871.5862,863.9655,859.1724,866.7241,865.0345,863.3103,867.7931,866.0345,869.8621,857.4483,869.1724,865.3448,869.8621,867.7931,868.1379,865.7241,868.4828,862.5862,868.4828,866.7586,864.0000,867.4483,863.6207,867.1034,858.4483,868.8276,865.0345,866.7586,866.4138,868.4828,865.6897,866.0690,861.9310,869.1724,867.4138,984.5517,867.4483,863.6207,866.7586,864.0000,862.5862,864.6897,863.6552,867.0690,865.3448,865.3793,867.4483,866.7586,862.2414,867.4483,869.5172,866.4138,867.4483,868.1379" +normalizing a fully mergeable tiling of boxes - 2,"medium, embedded in 3d",100,28,2592800,926.6236,923.6846,934.0200,21.0894,3.0883,38.2235,"benchmark,group:grid","923.4643,922.7500,942.4286,929.2143,925.6071,925.9643,925.9643,926.3214,925.6071,926.3571,925.9643,926.6786,926.7143,925.6071,926.6786,925.6429,925.2500,925.9643,926.7143,926.3214,926.3214,925.9643,925.9643,925.6071,925.9643,926.0000,924.8929,925.9643,1076.2500,930.6071,920.6071,919.1786,919.8929,920.2500,923.1071,923.1071,922.0357,922.7500,920.9286,921.6786,920.9643,926.3214,922.3929,923.8214,924.5357,921.6786,926.6786,923.1071,920.6071,919.5357,919.8929,919.8929,919.8929,919.8929,919.8929,920.2500,920.2500,920.2500,920.2500,919.8929,920.2500,920.2500,919.8929,919.8929,920.2500,920.2500,1069.1071,923.4643,922.7500,923.1071,923.8214,923.1071,923.4643,923.4643,924.1786,923.1071,923.1071,922.3929,923.5000,923.1071,923.1071,924.5357,923.4643,922.7500,922.7857,923.8214,923.1071,924.1786,923.8214,923.8214,924.1786,923.4643,924.5357,924.8929,924.9286,924.5357,923.8214,924.1786,923.4643,924.2143" +normalizing a fully mergeable tiling of boxes - 2,"large, native",100,1,3679800,34798.3800,34659.4900,35069.5500,952.7917,524.7621,1473.0477,"benchmark,group:grid","34633.0000,34383.0000,38081.0000,35295.0000,34974.0000,34895.0000,34724.0000,34563.0000,34494.0000,34694.0000,34654.0000,34573.0000,34614.0000,34273.0000,34384.0000,34373.0000,39643.0000,34814.0000,34534.0000,34684.0000,34433.0000,34784.0000,34553.0000,34584.0000,34584.0000,34663.0000,34473.0000,34604.0000,34563.0000,34524.0000,34764.0000,34333.0000,34374.0000,34553.0000,34384.0000,34483.0000,34474.0000,34654.0000,34553.0000,34474.0000,34473.0000,34454.0000,34353.0000,34383.0000,34534.0000,39373.0000,34734.0000,34684.0000,34553.0000,34603.0000,34604.0000,34474.0000,34423.0000,34544.0000,34633.0000,34394.0000,34834.0000,34484.0000,34573.0000,34814.0000,34775.0000,34273.0000,34543.0000,34464.0000,34604.0000,34814.0000,34624.0000,34804.0000,34844.0000,34514.0000,34744.0000,34413.0000,34564.0000,40234.0000,34574.0000,34764.0000,34724.0000,34914.0000,34714.0000,34654.0000,34764.0000,34904.0000,34814.0000,34834.0000,34594.0000,34483.0000,34514.0000,34664.0000,34593.0000,34794.0000,34734.0000,34513.0000,34654.0000,34594.0000,34674.0000,34563.0000,34654.0000,34654.0000,34604.0000,34664.0000" +normalizing a fully mergeable tiling of boxes - 2,"large, embedded in 3d",100,1,3807000,37962.5100,37800.5200,38267.3900,1099.6388,686.0416,1681.4812,"benchmark,group:grid","37599.0000,37770.0000,41136.0000,38451.0000,38191.0000,38020.0000,37820.0000,37820.0000,37940.0000,38020.0000,37770.0000,37659.0000,37620.0000,37850.0000,37589.0000,44463.0000,37549.0000,37840.0000,37710.0000,37569.0000,37529.0000,37510.0000,37749.0000,37790.0000,37690.0000,37820.0000,37940.0000,37519.0000,37900.0000,37650.0000,38040.0000,37629.0000,37690.0000,37890.0000,37619.0000,37449.0000,37559.0000,37710.0000,37679.0000,37620.0000,37950.0000,42649.0000,39383.0000,37649.0000,37760.0000,37730.0000,37589.0000,37760.0000,37519.0000,37730.0000,37780.0000,37770.0000,37519.0000,37770.0000,37419.0000,37659.0000,37690.0000,37740.0000,37659.0000,37720.0000,37499.0000,37800.0000,37910.0000,37449.0000,37840.0000,37439.0000,37600.0000,37699.0000,41968.0000,37990.0000,37840.0000,37610.0000,37639.0000,37419.0000,37760.0000,37610.0000,37649.0000,37750.0000,37719.0000,37540.0000,37709.0000,37680.0000,37630.0000,37499.0000,37729.0000,37559.0000,37760.0000,37479.0000,37649.0000,37660.0000,37669.0000,37779.0000,37459.0000,37490.0000,42388.0000,37660.0000,37579.0000,37880.0000,37840.0000,37610.0000" +normalizing a fully mergeable tiling of boxes - 3,"small, native",100,121,2516800,209.1511,208.0442,212.1401,8.7278,3.5424,17.5735,"benchmark,group:grid","207.9835,207.9835,212.0413,208.0661,207.5702,207.6446,207.6529,207.5702,207.7355,207.5620,207.6446,243.0083,207.6529,207.6529,207.7355,207.6446,207.7355,207.7355,207.5702,207.7273,207.7273,207.5702,207.7355,207.5702,207.5620,207.7355,207.4876,207.7355,207.6529,207.5620,207.7355,207.7355,207.5702,207.7273,207.7273,207.6529,207.7355,207.5702,207.6446,207.7355,207.4876,207.8182,207.6529,207.5620,207.8182,207.5702,207.6529,207.7273,207.7355,207.5702,207.7355,280.5950,207.7355,207.5702,207.5702,207.4793,207.7355,207.3223,207.6529,207.8099,207.4793,207.7355,207.6529,207.5702,207.6446,207.6529,207.4876,207.8182,207.3967,207.8182,207.4876,207.4876,207.8182,207.6446,207.6529,207.7355,207.4876,207.5620,207.7355,207.3223,207.7355,207.6529,207.5620,207.4876,207.8182,207.3223,207.6446,207.8182,207.4876,207.7355,243.0083,207.4793,207.9008,207.8182,207.9835,207.9835,207.8099,207.8926,207.9835,207.9008" +normalizing a fully mergeable tiling of boxes - 3,"medium, native",100,17,2556800,1500.5071,1494.6053,1512.7782,41.4772,23.5617,66.5131,"benchmark,group:grid","1495.0588,1492.1176,1536.3529,1484.4706,1483.8824,1489.7647,1479.7647,1705.4706,1497.4706,1499.1765,1500.4118,1499.1765,1498.0000,1499.7647,1493.8824,1489.7647,1482.1176,1488.0000,1487.4118,1488.5882,1490.3529,1490.9412,1489.7647,1474.4706,1491.5294,1486.2353,1493.3529,1488.5882,1488.5882,1487.4118,1486.8235,1476.2353,1488.0000,1488.5882,1484.4706,1487.4118,1483.2941,1487.4118,1490.3529,1483.2941,1492.1765,1490.3529,1488.5882,1491.5294,1496.8235,1497.4118,1492.1176,1752.6471,1476.8235,1495.0588,1493.2941,1496.8824,1493.2941,1497.4118,1493.9412,1492.1176,1482.1176,1498.5882,1494.5294,1498.0000,1496.8235,1491.5294,1497.4118,1491.5294,1483.8824,1487.4118,1490.9412,1586.4118,1501.5294,1500.9412,1499.2353,1500.9412,1499.2353,1490.9412,1500.9412,1500.4118,1498.0000,1496.8824,1499.1765,1490.9412,1499.8235,1483.8824,1502.7059,1498.0000,1502.7059,1497.4118,1718.4118,1494.4706,1496.2353,1495.0588,1486.8235,1486.2353,1495.6471,1492.7059,1493.9412,1493.8824,1493.2941,1497.4706,1490.3529,1485.0588" +normalizing a fully mergeable tiling of boxes - 3,"large, native",100,1,4632800,45540.9300,45299.6500,45890.9700,1467.4199,1119.8675,2013.1153,"benchmark,group:grid","45925.0000,45725.0000,52638.0000,48881.0000,47498.0000,46316.0000,49593.0000,45935.0000,45444.0000,45314.0000,45054.0000,47999.0000,47468.0000,46286.0000,46066.0000,45825.0000,45474.0000,45454.0000,45364.0000,45074.0000,45083.0000,45074.0000,44663.0000,45094.0000,44632.0000,44884.0000,44823.0000,44713.0000,48871.0000,44703.0000,44863.0000,44863.0000,45004.0000,44793.0000,44963.0000,45004.0000,44893.0000,45044.0000,44462.0000,44743.0000,44743.0000,44894.0000,44652.0000,44623.0000,44653.0000,44984.0000,44703.0000,44642.0000,44924.0000,44763.0000,49051.0000,44663.0000,44743.0000,44823.0000,44673.0000,44603.0000,44933.0000,44843.0000,44703.0000,44543.0000,44522.0000,44924.0000,44452.0000,44623.0000,45234.0000,46336.0000,45474.0000,45625.0000,44994.0000,45123.0000,45064.0000,44773.0000,48921.0000,45134.0000,44853.0000,44743.0000,44863.0000,44593.0000,44713.0000,44793.0000,44723.0000,44783.0000,44653.0000,44783.0000,44773.0000,44743.0000,44643.0000,44843.0000,44793.0000,44573.0000,44793.0000,48180.0000,47809.0000,47097.0000,51195.0000,46517.0000,46125.0000,45695.0000,46076.0000,45875.0000" +performing set operations between randomized regions - 2d,"union, small, native",100,33,2547600,900.3773,897.5006,906.6809,20.9131,12.0056,33.2815,"benchmark,group:grid","895.6061,894.0606,940.5152,907.7273,898.9091,903.4848,898.3030,898.6364,894.6667,899.2121,901.3636,895.8788,892.8485,895.8788,895.2727,895.9091,897.0909,899.5152,897.1212,892.2424,895.8788,897.6970,894.3636,1007.6061,898.6364,895.8788,893.7576,898.3030,897.3939,897.6970,895.2727,896.5152,895.8788,896.7879,896.7879,895.3030,895.2727,894.9697,894.0606,896.1818,896.1818,894.3636,899.2121,895.5758,894.0606,898.0303,896.7879,894.9697,897.6970,894.0606,893.7576,896.7879,893.4545,894.9697,894.9697,892.5455,897.4242,1023.0909,896.4848,894.9697,894.0606,894.9697,899.2121,897.0909,894.9697,897.1212,896.7879,893.7576,896.4848,896.8182,895.5758,897.3939,896.7879,893.4545,896.7879,898.6061,893.4545,894.6667,897.7273,895.5758,896.1818,896.1818,894.0606,898.0303,895.2727,894.6667,897.6970,896.8182,895.5758,898.3030,1016.7273,895.8788,894.0606,897.7273,899.5152,895.5758,896.5152,896.7879,895.8788,897.0909" +performing set operations between randomized regions - 2d,"union, small, embedded in 3d",100,25,2562500,1031.5352,1026.6524,1042.6616,35.9726,18.0952,60.7077,"benchmark,group:grid","1030.6800,1019.4800,1079.5600,1032.6800,1034.2800,1037.0800,1029.0800,1027.4800,1026.6800,1030.6800,1021.8400,1022.2800,1025.0800,1027.0800,1028.6400,1025.8400,1022.2800,1019.4400,1024.2800,1018.6800,1025.4400,1021.0800,1026.6800,1023.0400,1022.2800,1022.2800,1028.2400,1024.2800,1016.2400,1024.2400,1023.4800,1023.0400,1022.6400,1029.0800,1026.2800,1025.8800,1020.6400,1019.8800,1025.8400,1212.6000,1029.0800,1029.0800,1029.0800,1029.0800,1025.8800,1029.0800,1025.8400,1022.6800,1025.4800,1027.4800,1022.2400,1024.6800,1027.0800,1026.6800,1025.8400,1018.2400,1027.0800,1022.6400,1024.2800,1025.8800,1025.4800,1021.8400,1020.2800,1026.2800,1011.4400,1023.4400,1026.2800,1026.2800,1023.4800,1022.2400,1027.0800,1024.6800,1017.0400,1027.0800,1023.4800,1026.6400,1020.6400,1024.2800,1194.6000,1024.2400,1027.0800,1027.4800,1280.7600,1029.4800,1022.2400,1023.4800,1025.4800,1025.4800,1027.0400,1025.4800,1023.4800,1023.8800,1021.8400,1020.6800,1025.8400,1023.4400,1027.8800,1025.8800,1022.6400,1023.4800" +performing set operations between randomized regions - 2d,"intersection, small, native",100,115,2518500,220.1026,219.4500,221.7363,4.8247,1.2329,8.6093,"benchmark,group:grid","217.0870,219.8783,228.3217,222.0522,222.4087,218.6609,219.9652,219.7043,219.9652,219.6174,219.7913,219.3565,219.2696,217.7913,219.3565,219.7913,219.2696,219.7913,219.4435,219.7913,218.4000,218.3913,219.4435,219.5304,219.4435,253.2522,219.6174,219.6174,219.7043,217.0000,219.6174,220.4087,219.9652,219.0957,219.3565,219.8783,219.4435,217.4348,219.5304,219.7043,219.7043,219.6174,219.7043,220.0522,219.8783,218.0522,219.2609,219.6174,219.7043,219.2696,219.0870,219.0870,218.7478,218.4000,218.9217,219.4435,219.3565,219.7913,219.0087,219.5304,217.4435,219.6174,219.5304,219.2696,252.3739,220.0522,220.0522,219.8783,219.5304,217.4435,220.0522,219.7913,219.7043,219.4435,219.5304,219.7913,219.1826,217.7043,219.2696,219.6174,219.4435,219.4435,219.4435,219.5304,218.3043,218.2261,219.5304,219.1826,219.7043,219.0087,219.7043,219.1826,217.6174,219.6174,219.3565,219.7043,218.9217,219.7043,219.5304,219.4435" +performing set operations between randomized regions - 2d,"intersection, small, embedded in 3d",100,99,2524500,257.6461,256.4476,260.4678,9.2282,4.5502,15.1018,"benchmark,group:grid","255.5152,255.8182,261.7980,257.6364,257.5455,254.7071,255.4141,256.5253,256.2222,256.4343,301.0505,256.1212,255.9192,255.7172,255.8182,255.3131,255.7172,255.6162,254.6061,254.3030,255.4141,256.2323,256.0202,255.6162,256.2222,255.1111,255.7172,255.5152,256.0202,255.9192,256.3232,256.0202,256.2323,255.8182,256.3232,256.2222,255.7172,256.1212,255.7172,255.9192,253.7980,255.3131,256.0202,256.0202,255.9293,255.6162,256.5253,256.4242,255.6162,312.5859,256.1313,256.4242,256.2222,255.9192,256.1313,258.1414,256.3232,256.3333,256.2222,255.9192,256.0202,256.7374,256.4242,256.5253,256.6364,256.1212,256.2222,254.5051,256.1212,255.6162,255.9293,256.3232,256.8283,256.4242,256.4242,255.9192,256.5253,255.9192,256.5354,256.3232,256.3232,256.3333,255.7172,255.8182,255.6162,256.2222,256.3232,256.4242,315.0202,256.2222,256.2323,256.0202,255.5152,256.2222,254.3030,255.0101,255.5152,255.6162,256.5354,255.9192" +performing set operations between randomized regions - 2d,"difference, small, native",100,25,2617500,1060.8120,1046.3876,1126.4744,133.1664,12.5400,315.0597,"benchmark,group:grid","1049.1200,1045.1200,1124.4400,1068.3600,1057.9200,1042.3200,1047.5200,1053.1200,1043.4800,1042.7200,1037.4800,1051.9200,1039.9200,1043.4800,1046.3200,1045.9200,1045.5200,1041.4800,1043.9200,1036.6800,1037.8800,1047.5200,1041.9200,1045.4800,1040.7200,1041.8800,1045.9200,1039.5200,1044.6800,1042.3200,1042.6800,1047.9200,1219.4400,1045.5200,1047.5200,1043.8800,1044.3200,1038.2800,1045.9200,1045.9200,1037.0800,1042.7200,1045.8800,1048.6800,1044.7200,1043.9200,1040.6800,1040.3200,1040.6800,1045.9200,1030.6800,1046.7200,1039.0800,1048.7200,1040.2800,1042.7200,1043.1200,1044.2800,1041.9200,1042.2800,1033.9200,1039.8800,1043.5200,1043.0800,1051.5200,1044.3200,1040.6800,1039.5200,1040.6800,1040.3200,2371.2000,1059.5600,1057.1200,1056.7200,1048.7200,1048.3200,1047.5200,1045.9200,1045.8800,1049.5200,1053.1200,1042.7200,1043.4800,1047.8800,1049.9200,1041.1200,1047.9200,1045.4800,1045.9200,1047.1200,1051.5200,1046.3200,1044.6800,1045.9200,1044.7200,1046.2800,1046.6800,1048.3200,1038.2800,1049.4800" +performing set operations between randomized regions - 2d,"difference, small, embedded in 3d",100,21,2559900,1219.4338,1214.2957,1230.7624,36.8398,19.8409,62.2425,"benchmark,group:grid","1213.6667,1204.5714,1251.8095,1217.9524,1213.6190,1209.8095,1201.6667,1214.0952,1212.6667,1211.2857,1210.7619,1211.7619,1213.6190,1212.6667,1403.0000,1201.1905,1207.9048,1206.9524,1223.6667,1275.6667,1214.0952,1213.1905,1213.6190,1209.3810,1207.9048,1213.6190,1212.2381,1216.0000,1216.5238,1218.4286,1213.6190,1210.7619,1206.5238,1211.7143,1215.0952,1213.6190,1214.6190,1212.1905,1212.1905,1214.1429,1212.6667,1203.1429,1210.8095,1208.8571,1214.1429,1211.7143,1210.7619,1212.2381,1213.6190,1205.5238,1215.0952,1219.3810,1219.3333,1394.0000,1221.2857,1219.8571,1216.4762,1216.5238,1203.6190,1218.8571,1215.5238,1216.5238,1216.9524,1214.1429,1216.0000,1211.7619,1206.9524,1208.3810,1208.3810,1206.5238,1209.3333,1210.7619,1211.2857,1212.6667,1214.6190,1206.0000,1220.8095,1210.7619,1211.7143,1212.7143,1211.7143,1208.8571,1208.9048,1207.4286,1208.3810,1207.9048,1210.7619,1211.7143,1213.1905,1213.1429,1208.8571,1201.6667,1465.0476,1206.9524,1209.3333,1225.5238,1212.7143,1214.5714,1214.6190,1214.5714" +performing set operations between randomized regions - 2d,"union, medium, native",100,2,2650600,12146.7450,12093.3950,12265.9400,392.1470,184.2665,655.5512,"benchmark,group:grid","12067.0000,12042.0000,13835.0000,12352.0000,12272.0000,12117.0000,12167.0000,12031.5000,12152.0000,12091.5000,12021.5000,12052.0000,12077.0000,12052.0000,12017.0000,12127.0000,12072.0000,12036.5000,12117.0000,12117.5000,14566.5000,12052.0000,12032.0000,12091.5000,12096.5000,12081.5000,11981.5000,12032.0000,12097.0000,12067.0000,12112.0000,12092.0000,12082.0000,12127.0000,12027.0000,12036.5000,12092.0000,11957.0000,11966.5000,12007.0000,12147.0000,12077.0000,12022.0000,11971.5000,12082.0000,12042.0000,12057.0000,12012.0000,12072.0000,12021.5000,12092.0000,12117.0000,12082.0000,12087.0000,12052.0000,12117.0000,12132.0000,12122.0000,12101.5000,12076.5000,12212.5000,14576.5000,12157.5000,12046.5000,12082.0000,12147.0000,12122.0000,12102.0000,12187.0000,12092.0000,11997.0000,12062.0000,12092.0000,11971.5000,12092.0000,12002.0000,12052.0000,12087.0000,12036.5000,12117.0000,12082.0000,12072.0000,12077.0000,12117.0000,12082.0000,12092.0000,12052.0000,12137.0000,12067.0000,12117.0000,12092.0000,12072.0000,12072.0000,12087.0000,12067.0000,12012.0000,12072.0000,12066.5000,12032.0000,12077.0000" +performing set operations between randomized regions - 2d,"union, medium, embedded in 3d",100,2,2650000,13276.1250,13207.0050,13425.7150,494.3316,264.1042,815.5005,"benchmark,group:grid","13149.0000,13144.0000,14707.0000,13389.5000,13224.5000,13234.0000,13264.0000,13254.5000,15864.0000,13214.0000,13269.5000,13214.0000,13144.0000,13179.0000,13189.0000,13144.0000,13149.0000,13109.0000,13154.0000,13144.0000,13179.0000,13139.0000,13159.0000,13169.0000,13174.5000,13043.5000,13189.0000,13179.0000,13184.5000,13128.5000,13179.5000,13184.0000,13189.0000,13129.0000,13154.0000,13209.0000,13224.0000,13169.0000,13169.0000,13089.0000,13234.5000,13249.0000,13184.0000,13209.0000,13219.5000,13174.0000,16510.0000,13189.5000,13239.0000,13159.0000,13179.0000,13129.0000,13214.0000,13159.0000,13189.0000,13244.0000,13249.0000,13164.0000,13149.0000,13144.0000,13189.0000,13184.0000,13169.0000,13134.0000,13149.0000,13234.0000,13149.0000,13109.0000,13204.0000,13184.0000,13159.0000,13244.5000,13108.5000,13194.0000,13164.0000,13164.0000,13154.0000,13159.0000,13259.0000,13154.0000,13179.0000,13189.5000,13159.0000,15308.0000,13109.0000,13139.0000,13199.0000,13139.0000,13149.0000,13164.0000,13119.0000,13209.0000,13209.0000,13169.0000,13164.0000,13154.0000,13214.0000,13154.0000,13214.0000,13239.0000" +performing set operations between randomized regions - 2d,"intersection, medium, native",100,12,2743200,2286.5800,2279.5450,2302.7667,53.1837,28.5459,85.6815,"benchmark,group:grid","2281.6667,2279.1667,2300.0833,2276.5833,2272.4167,2275.0000,2276.6667,2280.8333,2253.3333,2277.5000,2279.1667,2275.0000,2281.6667,2295.0000,2283.3333,2284.1667,2280.0000,2281.6667,2290.8333,2278.3333,2609.7500,2277.5000,2276.6667,2280.8333,2282.5000,2278.3333,2277.5000,2281.6667,2257.4167,2274.1667,2277.5000,2282.5000,2275.8333,2275.8333,2275.8333,2278.3333,2272.5000,2280.8333,2279.1667,2282.5000,2281.6667,2279.1667,2280.0000,2279.1667,2275.8333,2271.6667,2254.9167,2278.3333,2278.3333,2275.8333,2277.5000,2274.1667,2276.6667,2277.5000,2279.1667,2277.5000,2279.1667,2590.5833,2282.5000,2287.5000,2278.3333,2277.5000,2280.8333,2279.1667,2275.8333,2281.6667,2262.5000,2275.0000,2268.3333,2268.2500,2279.9167,2275.7500,2275.7500,2271.6667,2276.6667,2272.5000,2278.3333,2288.3333,2275.8333,2270.8333,2273.3333,2271.6667,2288.3333,2258.2500,2284.1667,2281.6667,2274.1667,2278.3333,2277.5000,2274.9167,2277.4167,2280.8333,2276.5833,2557.2500,2272.5000,2272.5000,2274.9167,2278.2500,2277.4167,2278.2500" +performing set operations between randomized regions - 2d,"intersection, medium, embedded in 3d",100,11,2644400,2431.3709,2423.6155,2448.9764,58.0168,32.2299,92.9061,"benchmark,group:grid","2432.6364,2434.4545,2467.1818,2432.6364,2425.3636,2433.5455,2424.3636,2423.5455,2416.2727,2416.1818,2759.6364,2444.4545,2423.5455,2421.6364,2421.6364,2400.7273,2417.1818,2419.0000,2416.1818,2418.0909,2415.2727,2421.7273,2421.7273,2419.8182,2419.0000,2419.8182,2421.7273,2400.7273,2422.6364,2424.4545,2423.4545,2420.8182,2419.0000,2425.2727,2419.0000,2422.6364,2418.0000,2416.2727,2413.4545,2414.4545,2401.6364,2421.7273,2421.6364,2432.6364,2435.3636,2439.0000,2430.8182,2418.0909,2776.9091,2415.2727,2420.8182,2415.2727,2423.4545,2420.8182,2408.0000,2427.1818,2422.6364,2417.0909,2425.3636,2420.8182,2420.7273,2426.2727,2420.8182,2418.9091,2423.5455,2423.5455,2398.9091,2418.0000,2420.7273,2419.0000,2418.9091,2426.2727,2426.2727,2429.0000,2419.8182,2419.0000,2417.0909,2416.1818,2410.8182,2404.3636,2418.9091,2418.0000,2417.1818,2421.6364,2422.6364,2734.0909,2423.5455,2419.8182,2425.2727,2429.0000,2424.4545,2426.1818,2397.0909,2432.6364,2427.0909,2417.1818,2418.9091,2423.4545,2417.1818,2422.5455" +performing set operations between randomized regions - 2d,"difference, medium, native",100,4,3130800,7897.6525,7859.3550,7983.5050,278.7388,147.1542,460.3848,"benchmark,group:grid","7839.5000,7834.2500,8350.2500,7864.5000,7844.5000,7849.2500,7859.5000,7769.2500,7812.0000,7816.7500,7869.5000,7779.2500,7789.2500,7839.5000,7834.5000,7806.7500,7864.5000,7884.5000,7912.0000,7849.5000,7789.2500,7927.0000,7894.5000,7817.0000,7851.7500,7832.0000,7852.0000,7894.5000,7889.5000,7829.2500,7929.5000,9700.5000,7857.0000,7854.5000,7856.7500,7884.2500,7872.0000,7879.5000,7812.0000,7874.5000,7834.2500,7864.5000,7892.0000,7816.7500,7864.5000,7902.0000,7869.5000,7844.5000,7874.5000,7854.2500,7864.2500,7864.5000,7829.5000,7874.5000,7856.7500,7827.0000,7819.2500,7819.5000,7796.7500,7854.5000,7867.0000,7844.2500,9395.0000,7897.0000,7874.5000,7831.7500,7859.5000,7884.5000,7837.0000,7877.0000,7874.2500,7869.5000,7899.5000,7824.5000,7859.5000,7829.2500,7779.2500,7804.5000,7856.7500,7826.7500,7774.2500,7799.2500,7794.2500,7764.2500,7889.5000,7831.7500,7797.0000,7851.7500,7857.0000,7796.7500,7851.7500,7859.5000,7779.2500,7832.0000,9194.5000,7882.0000,7816.7500,7816.7500,7779.5000,7816.7500" +performing set operations between randomized regions - 2d,"difference, medium, embedded in 3d",100,3,2533500,8458.9967,8426.4133,8529.0467,234.4588,136.9379,370.6851,"benchmark,group:grid","9777.6667,8472.3333,8876.0000,8465.3333,8442.0000,8435.3333,8418.6667,8418.6667,8368.6667,8412.0000,8458.6667,8468.6667,8402.0000,8428.6667,8395.3333,8408.6667,8382.0000,8402.0000,8472.0000,8449.0000,8408.6667,9744.3333,8472.0000,8358.3333,8445.3333,8332.0000,8378.6667,8422.0000,8472.0000,8452.0000,8418.6667,8405.3333,8445.6667,8345.0000,8398.6667,8428.6667,8408.6667,8438.6667,8412.0000,8452.3333,8398.3333,8405.3333,8439.0000,8445.3333,8408.6667,8465.3333,8412.0000,8485.3333,8411.6667,8428.6667,8455.3333,8455.3333,8345.3333,8435.3333,8395.3333,8448.6667,8392.0000,8375.3333,8455.3333,8432.0000,8405.3333,9731.0000,8391.6667,8362.0000,8455.3333,8348.6667,8398.6667,8408.6667,8445.3333,8425.3333,8418.6667,8365.3333,8432.0000,8348.6667,8371.6667,8435.3333,8371.6667,8472.3333,8435.3333,8408.6667,8382.0000,8402.0000,8422.0000,8418.6667,8351.6667,8432.0000,8345.0000,8448.6667,8358.6667,8412.0000,8438.6667,8385.3333,8392.0000,8412.0000,8352.0000,8392.0000,8375.0000,8402.0000,8435.3333,8428.6667" +performing set operations between randomized regions - 2d,"union, large, native",100,1,15867200,158675.3900,158352.6700,159086.6800,1839.0883,1503.4151,2232.1117,"benchmark,group:grid","157978.0000,163358.0000,160432.0000,158419.0000,157958.0000,157888.0000,157657.0000,162066.0000,157988.0000,157376.0000,157067.0000,157667.0000,157717.0000,162457.0000,157707.0000,158569.0000,157938.0000,157056.0000,157798.0000,157697.0000,161895.0000,158058.0000,157486.0000,157136.0000,157226.0000,158259.0000,165372.0000,158318.0000,157798.0000,159090.0000,157787.0000,157978.0000,163248.0000,157998.0000,157667.0000,157578.0000,157927.0000,157487.0000,162807.0000,158478.0000,158339.0000,157256.0000,158439.0000,157086.0000,157608.0000,163648.0000,157738.0000,157637.0000,158028.0000,157768.0000,157807.0000,162296.0000,158649.0000,158129.0000,157336.0000,158269.0000,157477.0000,162727.0000,157847.0000,158509.0000,157858.0000,157567.0000,157677.0000,158309.0000,162126.0000,157246.0000,157908.0000,157767.0000,157767.0000,157116.0000,161655.0000,157868.0000,157687.0000,157828.0000,158589.0000,158639.0000,161976.0000,157717.0000,158288.0000,157748.0000,157727.0000,158319.0000,158048.0000,162106.0000,157617.0000,157757.0000,158539.0000,157608.0000,157998.0000,162236.0000,158589.0000,158448.0000,157668.0000,157036.0000,158038.0000,162737.0000,158589.0000,157988.0000,158248.0000,157928.0000" +performing set operations between randomized regions - 2d,"union, large, embedded in 3d",100,1,16218800,162190.4100,161836.4500,162663.3900,2078.4360,1689.6336,2610.2258,"benchmark,group:grid","161625.0000,161204.0000,165282.0000,167025.0000,161966.0000,161745.0000,162125.0000,161114.0000,161294.0000,167176.0000,161524.0000,161345.0000,161093.0000,161284.0000,161083.0000,166364.0000,161455.0000,160953.0000,161495.0000,161374.0000,160663.0000,161424.0000,166163.0000,160883.0000,161785.0000,161334.0000,161504.0000,161335.0000,166053.0000,161374.0000,161134.0000,161545.0000,160993.0000,161074.0000,165462.0000,160613.0000,161094.0000,161064.0000,161133.0000,161374.0000,165762.0000,161454.0000,161364.0000,160874.0000,160903.0000,160974.0000,167325.0000,161054.0000,161354.0000,161484.0000,161014.0000,161154.0000,161604.0000,167255.0000,161715.0000,161675.0000,161444.0000,161355.0000,161324.0000,166774.0000,161184.0000,160914.0000,161294.0000,160914.0000,160943.0000,165673.0000,161474.0000,161625.0000,161454.0000,161214.0000,161515.0000,166364.0000,161164.0000,161334.0000,161515.0000,160793.0000,161054.0000,166293.0000,161645.0000,161114.0000,160683.0000,161324.0000,161224.0000,165953.0000,161795.0000,161354.0000,161524.0000,161495.0000,161204.0000,161565.0000,166694.0000,161204.0000,160994.0000,161134.0000,161454.0000,161064.0000,170782.0000,161164.0000,161475.0000,161083.0000" +performing set operations between randomized regions - 2d,"intersection, large, native",100,2,4090600,18929.9800,18843.3200,19097.2550,594.6681,333.8477,884.1321,"benchmark,group:grid","18799.5000,18769.5000,20087.0000,18920.0000,18810.0000,18809.5000,18780.0000,18839.5000,18875.0000,18820.0000,21815.0000,18814.5000,18799.5000,18875.0000,18749.5000,18780.0000,18779.5000,18754.5000,18820.0000,18764.5000,18749.5000,18764.5000,18769.5000,18769.5000,18785.0000,18774.5000,18734.5000,18795.0000,18759.5000,18825.0000,18774.5000,18694.5000,18825.0000,18889.5000,18845.0000,18814.5000,21830.5000,18860.0000,18805.0000,18729.5000,18859.5000,18800.0000,18844.5000,18809.5000,18799.5000,18790.0000,18829.5000,18760.0000,18789.5000,18830.0000,18754.5000,18809.5000,18754.5000,18759.5000,18779.5000,18805.0000,18714.5000,18789.5000,18909.5000,18780.0000,18799.5000,18860.0000,18784.5000,21329.5000,18760.0000,18764.5000,18850.0000,18759.5000,18769.5000,18790.0000,18774.5000,18764.5000,18775.0000,18724.5000,18834.5000,18719.5000,18719.5000,18709.5000,18759.5000,18779.5000,18704.5000,18765.0000,18709.5000,18679.5000,18819.5000,18910.0000,18790.0000,18834.5000,18754.5000,21990.5000,19361.0000,18804.5000,18764.5000,18780.0000,18864.5000,18824.5000,18875.0000,18839.5000,18795.0000,18880.0000" +performing set operations between randomized regions - 2d,"intersection, large, embedded in 3d",100,2,4312800,22441.0600,22366.7400,22574.5500,495.1677,309.3978,710.4498,"benchmark,group:grid","22371.5000,22331.0000,23002.5000,22331.5000,22456.5000,22196.5000,22336.5000,22446.5000,24295.0000,22391.5000,22301.5000,22371.5000,22376.5000,22361.5000,22321.5000,22331.5000,22261.0000,22371.5000,22241.5000,22341.5000,22321.5000,22326.0000,22366.0000,22276.0000,22286.5000,22211.0000,22261.5000,22321.5000,22346.5000,22291.0000,24390.5000,22276.5000,22236.0000,22411.5000,22311.5000,22301.5000,22271.5000,22361.0000,22271.0000,22326.5000,22381.5000,22431.5000,22321.5000,22341.5000,22341.5000,22211.0000,22336.5000,22236.5000,22291.5000,22241.0000,22441.5000,22241.5000,24560.5000,22316.5000,22236.5000,22416.5000,22291.0000,22396.5000,22241.0000,22361.5000,22266.5000,22351.5000,22351.5000,22466.5000,22361.5000,22331.5000,22336.5000,22356.5000,22391.5000,22216.0000,22356.5000,22371.5000,22406.5000,22326.5000,22326.5000,24786.0000,22246.5000,22296.5000,22231.0000,22391.5000,22196.5000,22476.5000,22216.0000,22326.5000,22296.5000,22256.5000,22321.0000,22241.5000,22351.5000,22341.5000,22361.5000,22271.0000,22331.0000,22301.5000,22361.5000,22296.5000,22371.5000,24741.0000,22321.5000,22316.0000" +performing set operations between randomized regions - 2d,"difference, large, native",100,1,60158100,587403.2500,585946.0000,592477.6700,12414.4792,3874.3161,28324.1868,"benchmark,group:grid","588675.0000,581882.0000,597081.0000,589377.0000,582493.0000,704044.0000,582453.0000,587342.0000,587973.0000,582243.0000,588074.0000,581261.0000,602893.0000,589156.0000,585759.0000,588896.0000,581662.0000,588895.0000,581762.0000,587262.0000,588745.0000,580490.0000,589366.0000,581953.0000,587623.0000,590799.0000,582243.0000,590068.0000,580920.0000,587512.0000,586141.0000,581451.0000,586782.0000,582563.0000,589617.0000,581051.0000,588976.0000,588244.0000,581091.0000,586731.0000,581822.0000,586862.0000,586862.0000,587182.0000,591701.0000,581431.0000,587442.0000,581362.0000,589637.0000,588965.0000,581963.0000,589356.0000,582103.0000,587393.0000,589026.0000,582443.0000,587733.0000,581662.0000,588285.0000,581130.0000,591331.0000,589226.0000,582533.0000,588846.0000,580590.0000,590588.0000,587603.0000,581892.0000,588425.0000,580970.0000,589948.0000,589757.0000,581752.0000,589326.0000,581201.0000,591790.0000,581792.0000,587793.0000,591731.0000,582143.0000,591290.0000,581652.0000,588645.0000,588485.0000,581932.0000,589136.0000,581101.0000,590448.0000,588995.0000,582534.0000,588174.0000,581281.0000,589807.0000,585069.0000,589176.0000,587713.0000,581512.0000,587843.0000,581802.0000,588584.0000" +performing set operations between randomized regions - 2d,"difference, large, embedded in 3d",100,1,64046200,640212.6400,639614.8900,640890.5200,3248.1987,2766.7802,4612.8786,"benchmark,group:grid","643640.0000,636786.0000,643850.0000,643449.0000,635855.0000,643228.0000,641275.0000,637077.0000,640895.0000,642657.0000,636156.0000,641084.0000,642177.0000,636887.0000,640884.0000,636566.0000,640824.0000,640644.0000,636415.0000,641325.0000,640984.0000,635654.0000,642678.0000,643920.0000,636376.0000,640613.0000,635264.0000,641846.0000,640854.0000,636396.0000,643740.0000,642627.0000,638019.0000,641966.0000,644572.0000,636716.0000,640974.0000,640824.0000,636465.0000,640634.0000,636326.0000,641435.0000,640924.0000,636697.0000,640343.0000,640613.0000,636225.0000,656083.0000,641906.0000,636797.0000,643489.0000,636075.0000,642067.0000,642968.0000,636536.0000,641666.0000,640874.0000,635885.0000,641325.0000,642467.0000,636596.0000,642036.0000,641025.0000,636396.0000,643539.0000,637097.0000,640634.0000,643489.0000,635544.0000,642357.0000,640955.0000,635383.0000,641746.0000,641446.0000,635323.0000,640784.0000,635985.0000,641456.0000,643238.0000,636136.0000,644451.0000,642156.0000,637768.0000,641947.0000,644190.0000,636386.0000,641996.0000,642718.0000,637237.0000,641756.0000,637618.0000,642147.0000,640974.0000,637859.0000,642818.0000,643539.0000,636436.0000,643409.0000,642788.0000,638409.0000" +performing set operations between randomized regions - 3d,"union, small, native",100,7,2629900,3865.6971,3847.7057,3902.4786,125.2235,68.5643,197.2634,"benchmark,group:grid","3839.8571,3815.5714,4214.8571,3848.4286,3871.2857,3854.2857,4597.0000,3872.7143,3865.7143,3872.7143,3867.1429,3881.4286,3851.2857,3829.8571,3844.1429,3875.7143,3858.4286,3864.1429,3855.7143,3845.5714,3845.5714,3848.4286,3845.7143,3858.4286,3857.0000,3842.7143,3824.1429,3842.7143,3826.8571,3832.7143,3852.7143,3841.2857,3849.8571,3847.0000,3841.2857,3841.4286,3842.7143,3837.0000,3818.4286,3844.1429,3831.2857,3829.8571,4515.4286,3842.7143,3817.0000,3825.5714,3847.0000,3848.4286,3858.5714,3839.8571,3858.4286,3842.7143,3834.1429,3842.8571,3824.0000,3849.8571,3815.5714,3834.1429,3822.5714,3811.1429,3842.7143,3834.1429,3834.0000,3838.4286,3816.8571,3848.5714,3827.0000,3842.7143,3834.1429,3851.2857,3828.4286,3814.1429,3841.2857,3831.2857,3829.8571,3825.5714,3824.1429,3844.1429,3831.2857,4505.4286,3832.7143,3851.2857,3845.5714,3847.0000,3852.7143,3847.0000,3827.0000,3807.0000,3827.0000,3855.5714,3837.0000,3851.2857,3819.8571,3845.5714,3837.0000,3842.7143,3839.8571,3839.8571,3842.7143,3818.4286" +performing set operations between randomized regions - 3d,"intersection, small, native",100,174,2523000,146.1359,145.6906,147.1789,3.2495,1.1728,5.6739,"benchmark,group:grid","145.5517,146.0172,152.9253,149.2931,147.4540,146.0115,146.3621,145.2069,146.8161,144.5172,145.3793,145.2644,146.6494,144.8046,144.9195,145.2644,145.2069,145.4368,144.9770,144.9770,145.7816,145.3218,144.9770,145.3793,144.7471,144.8621,145.3218,145.7299,146.5287,145.6667,143.7126,145.8391,144.6322,144.8621,145.4368,145.7816,166.9770,144.2241,145.7299,145.1494,145.2644,145.0345,145.6092,145.6667,145.7816,146.4195,144.4598,146.2989,145.3218,148.7759,145.5575,145.2069,146.0115,145.7816,144.9195,144.9195,146.3046,145.7241,148.2586,145.2069,145.4368,146.1264,145.1494,145.4368,145.4943,145.8391,144.8046,145.8391,145.8448,145.7816,144.5172,144.9770,145.2644,145.7816,145.8966,167.9540,146.1839,146.0172,146.0690,144.7471,145.4368,144.6897,145.3218,145.6667,145.4943,145.4943,145.8448,145.8966,144.2299,146.5862,145.2069,145.6667,146.2989,145.9540,145.3218,144.5172,146.9368,147.7989,145.4368,146.4138" +performing set operations between randomized regions - 3d,"difference, small, native",100,19,2555500,1346.0142,1341.5389,1356.4984,32.8030,12.0838,57.3361,"benchmark,group:grid","1333.4737,1336.1053,1436.3158,1356.1579,1350.3158,1356.1053,1354.0000,1350.3158,1350.3684,1347.2105,1352.4737,1341.3684,1324.0000,1349.8421,1337.1579,1337.1579,1340.3684,1339.2632,1348.7895,1340.8421,1332.4737,1334.0000,1342.4211,1338.2632,1342.9474,1348.7895,1350.8947,1352.4737,1347.6842,1330.8421,1341.4211,1338.7368,1344.5789,1566.0000,1349.8421,1336.6842,1339.2632,1343.4737,1328.7368,1341.3684,1349.8421,1342.4211,1343.5263,1341.3684,1334.0000,1349.7895,1337.7368,1336.6316,1343.4737,1345.1053,1336.6316,1345.1053,1342.9474,1344.0000,1335.5789,1325.0526,1337.2105,1339.2632,1343.4737,1342.9474,1345.1053,1340.3158,1349.8421,1323.4737,1331.8947,1340.3158,1345.6316,1336.6316,1333.4737,1340.3684,1334.0000,1325.5789,1553.8947,1358.2632,1344.5789,1339.2632,1338.2632,1339.7895,1343.5263,1343.4737,1348.2632,1337.6842,1330.8421,1332.4211,1336.6842,1337.6842,1330.3158,1341.9474,1336.1053,1328.7368,1332.9474,1332.4211,1337.2105,1334.0000,1337.6842,1343.5263,1341.8947,1337.7368,1344.5263,1342.4737" +performing set operations between randomized regions - 3d,"union, medium, native",100,2,4331000,19892.1200,19810.6900,20047.9450,554.6708,334.8548,867.2369,"benchmark,group:grid","19706.5000,19811.5000,21890.5000,20192.0000,19881.5000,19927.0000,21985.5000,19867.0000,19841.5000,19801.5000,19912.0000,19756.5000,19897.0000,19786.5000,19721.5000,19761.5000,19746.5000,19801.5000,19972.0000,19952.0000,19751.5000,19831.5000,19736.5000,19777.0000,19696.0000,19696.5000,19701.5000,19706.5000,19927.0000,19806.5000,19887.0000,19786.5000,23283.0000,19701.5000,19731.5000,19771.5000,19791.5000,19751.5000,19821.5000,19696.5000,19786.5000,19801.5000,19731.5000,19696.5000,19666.5000,19706.5000,19766.5000,19896.5000,19807.0000,19766.5000,19716.5000,19726.5000,19736.5000,19791.5000,19776.5000,19856.5000,19927.0000,22191.0000,19761.5000,19731.5000,19686.0000,19731.5000,19862.0000,19756.5000,19676.5000,19761.5000,19771.5000,19586.0000,19716.5000,19761.5000,19721.5000,19842.0000,19746.5000,19726.5000,19791.5000,19706.5000,19716.5000,19631.0000,19802.0000,19676.0000,19781.5000,19716.0000,21750.5000,19756.5000,19661.5000,19666.5000,19696.0000,19681.0000,19721.5000,19676.5000,19761.5000,19736.5000,19781.5000,19902.0000,19746.5000,19751.5000,19661.5000,19676.5000,19846.5000,19666.5000" +performing set operations between randomized regions - 3d,"intersection, medium, native",100,11,2750000,2496.7164,2488.8109,2515.6500,61.6015,32.3826,99.4219,"benchmark,group:grid","2807.0000,2487.2727,2535.5455,2480.8182,2488.1818,2477.1818,2487.2727,2484.5455,2484.5455,2484.5455,2486.3636,2488.1818,2487.2727,2483.6364,2483.6364,2484.5455,2483.6364,2483.6364,2484.5455,2489.0909,2485.4545,2489.0909,2480.9091,2490.9091,2485.4545,2484.5455,2484.5455,2483.6364,2866.1818,2486.3636,2490.0000,2487.2727,2486.3636,2487.2727,2483.6364,2493.6364,2490.0000,2483.6364,2490.0000,2489.0909,2488.1818,2487.2727,2490.9091,2489.0909,2486.3636,2485.4545,2487.2727,2487.2727,2487.2727,2491.0000,2488.1818,2488.1818,2484.5455,2485.4545,2489.0909,2489.0909,2490.0000,2488.1818,2491.8182,2489.0909,2484.5455,2487.2727,2490.0000,2485.4545,2859.8182,2482.7273,2483.6364,2488.1818,2479.0909,2485.3636,2484.4545,2485.3636,2483.6364,2482.7273,2488.1818,2484.5455,2485.4545,2482.7273,2484.5455,2486.3636,2479.0909,2480.9091,2484.5455,2480.9091,2481.8182,2490.0000,2479.0909,2475.3636,2486.3636,2482.7273,2482.7273,2482.7273,2476.3636,2480.9091,2485.4545,2480.0000,2481.8182,2486.3636,2480.8182,2486.3636" +performing set operations between randomized regions - 3d,"difference, medium, native",100,3,3366000,11253.5033,11211.4700,11331.3067,282.9780,163.9670,418.1186,"benchmark,group:grid","11190.6667,11197.0000,11895.0000,11267.6667,11260.6667,11200.6667,12549.6667,11367.6667,11180.6667,11344.3333,11274.0000,11157.3333,11113.6667,11204.0000,11163.6667,11300.6667,11177.3333,11117.0000,11157.3333,11163.6667,11331.0000,11123.6667,11160.6667,11207.3333,11200.6667,11187.3333,11173.6667,11187.3333,11267.3333,11217.3333,11227.3333,11190.6667,11204.0000,11170.6667,11234.0000,11194.0000,12556.3333,11184.0000,11190.6667,11247.3333,11134.0000,11187.0000,11157.3333,11073.6667,11207.3333,11154.0000,11244.0000,11164.0000,11157.0000,11167.3333,11137.0000,11173.6667,11274.0000,11127.0000,11167.3333,11200.3333,11207.0000,11264.3333,11230.6667,11244.0000,11163.6667,11183.6667,11210.6667,11210.6667,11134.0000,11247.3333,12583.3333,11117.0000,11237.3333,11250.6667,11227.3333,11137.3333,11133.6667,11144.0000,11190.6667,11173.6667,11167.3333,11150.6667,11207.3333,11170.3333,11167.3333,11164.0000,11150.3333,11240.6667,11217.3333,11204.0000,11157.3333,11177.0000,11133.6667,11247.3333,11097.0000,11210.6667,11217.3333,11170.6667,11164.0000,12603.3333,11163.6667,11174.0000,11150.6667,11090.3333" +performing set operations between randomized regions - 3d,"union, large, native",100,1,217673900,2180714.6400,2179824.0700,2182175.4900,5692.6152,3742.3070,8769.2660,"benchmark,group:grid","2191797.0000,2178853.0000,2181617.0000,2191026.0000,2178352.0000,2175386.0000,2180996.0000,2180396.0000,2181267.0000,2179674.0000,2178953.0000,2177841.0000,2182519.0000,2177440.0000,2175597.0000,2178582.0000,2181788.0000,2183241.0000,2175065.0000,2176869.0000,2178762.0000,2176638.0000,2174855.0000,2179714.0000,2182510.0000,2186727.0000,2184453.0000,2175927.0000,2177570.0000,2181237.0000,2179624.0000,2182550.0000,2180596.0000,2175626.0000,2181167.0000,2177901.0000,2182549.0000,2183661.0000,2211645.0000,2192749.0000,2179895.0000,2188531.0000,2184413.0000,2182209.0000,2179584.0000,2181958.0000,2182129.0000,2177380.0000,2181197.0000,2184523.0000,2184624.0000,2178692.0000,2181307.0000,2179674.0000,2179193.0000,2176298.0000,2176297.0000,2178562.0000,2178071.0000,2182309.0000,2178732.0000,2175476.0000,2181678.0000,2181557.0000,2177721.0000,2177850.0000,2177390.0000,2189814.0000,2177920.0000,2177570.0000,2177991.0000,2173041.0000,2181127.0000,2181357.0000,2175486.0000,2177830.0000,2176808.0000,2177921.0000,2181197.0000,2176218.0000,2179824.0000,2178983.0000,2177199.0000,2176348.0000,2211154.0000,2178703.0000,2181006.0000,2181878.0000,2181207.0000,2187048.0000,2178101.0000,2178482.0000,2178732.0000,2182760.0000,2174525.0000,2181938.0000,2178793.0000,2179343.0000,2179464.0000,2180726.0000" +performing set operations between randomized regions - 3d,"intersection, large, native",100,2,2995400,14981.4500,14931.6600,15100.2150,383.9469,223.6688,609.5566,"benchmark,group:grid","14917.5000,14912.5000,15308.0000,14937.5000,14947.5000,14887.0000,14952.5000,14922.5000,14872.0000,14912.0000,14937.5000,14937.5000,14907.0000,14917.0000,14922.5000,14932.5000,14922.0000,14897.0000,14892.5000,14942.5000,14947.0000,14952.5000,14922.5000,14937.5000,14912.0000,14902.0000,17141.5000,14932.5000,14947.5000,14917.5000,14907.0000,14892.5000,14897.5000,14947.5000,14972.0000,14922.5000,14877.5000,14897.0000,14897.5000,14892.5000,14942.0000,14842.0000,14892.5000,14882.0000,14912.5000,14887.0000,14877.0000,14892.5000,14897.0000,14867.5000,14937.5000,14962.5000,14897.0000,14907.5000,14892.5000,14847.0000,14892.5000,14917.0000,14902.5000,17166.5000,14932.5000,14922.5000,14902.0000,14907.0000,14932.5000,14847.0000,14952.5000,14872.5000,14912.5000,14907.0000,14917.5000,14882.5000,14912.0000,14872.5000,14867.0000,14947.5000,14872.5000,14877.0000,14917.5000,14887.5000,14887.0000,14972.5000,14922.5000,14837.0000,14907.5000,14902.5000,14892.0000,14932.5000,14952.5000,14892.5000,14982.5000,14877.0000,14932.5000,17131.5000,14957.5000,14907.5000,14877.0000,14857.5000,14942.5000,14932.0000" +performing set operations between randomized regions - 3d,"difference, large, native",100,1,636835000,6368649.3100,6357376.8700,6407295.9300,95584.1451,30000.1172,215726.6574,"benchmark,group:grid","6361719.0000,6347904.0000,6564925.0000,7257640.0000,6382088.0000,6357742.0000,6335991.0000,6352573.0000,6354345.0000,6375295.0000,6342934.0000,6355979.0000,6345228.0000,6400794.0000,6341371.0000,6371308.0000,6345148.0000,6359616.0000,6332324.0000,6330891.0000,6348394.0000,6487058.0000,6371468.0000,6385345.0000,6339778.0000,6364905.0000,6335710.0000,6365487.0000,6341592.0000,6341882.0000,6368783.0000,6427805.0000,6346540.0000,6374524.0000,6346772.0000,6366058.0000,6341942.0000,6347954.0000,6348044.0000,6374544.0000,6337023.0000,6451209.0000,6389382.0000,6363693.0000,6336312.0000,6368633.0000,6311074.0000,6359455.0000,6308539.0000,6351530.0000,6391967.0000,6344957.0000,6328717.0000,6424388.0000,6348845.0000,6373892.0000,6346420.0000,6345047.0000,6355467.0000,6343164.0000,6372370.0000,6369093.0000,6376537.0000,6393519.0000,6348855.0000,6351370.0000,6350829.0000,6340479.0000,6374834.0000,6363283.0000,6327024.0000,6350328.0000,6323547.0000,6341431.0000,6350578.0000,6375396.0000,6344547.0000,6351330.0000,6405643.0000,6354215.0000,6373752.0000,6359015.0000,6344447.0000,6331142.0000,6316373.0000,6385424.0000,6344788.0000,6326763.0000,6325521.0000,6356250.0000,6355688.0000,6340129.0000,6385124.0000,6353364.0000,6377990.0000,6331903.0000,6321062.0000,6344287.0000,6375927.0000,6330660.0000" +"normalizing a fully mergeable, complex tiling of boxes - 2d","small, native",100,12,2642400,1951.8908,1942.1925,1973.7800,70.2446,35.2296,123.7004,"benchmark,group:grid","1946.0000,1940.1667,2184.0000,1986.1667,1956.8333,1955.2500,1961.9167,1941.8333,1941.8333,1956.0833,1941.0000,1932.6667,1941.9167,1931.0000,1941.0000,1934.3333,1955.2500,1932.6667,1951.0000,1931.0000,1929.3333,1934.3333,1942.6667,1936.0000,1937.6667,1936.8333,1936.0000,1947.6667,1934.3333,1937.6667,1945.1667,2453.6667,2114.6667,1930.1667,1926.0000,1934.4167,1936.0000,1937.6667,1939.3333,1933.5000,1931.8333,1937.7500,1948.5000,1933.5000,1940.2500,1928.5000,1931.0000,1933.5000,1941.0000,1941.0000,1931.8333,1932.6667,1931.0000,1926.8333,1936.8333,1933.5000,1946.0000,1934.3333,1937.7500,1939.3333,1936.0000,1931.0000,1937.6667,1931.9167,1932.6667,1935.1667,1933.5000,1936.0000,1936.0000,1939.4167,1937.6667,1934.3333,1933.5000,1940.1667,2323.4167,1935.1667,1943.5000,1942.6667,1939.3333,1943.5833,1933.5000,1931.8333,1931.8333,1942.6667,1932.7500,1934.3333,1938.5000,1936.8333,1941.8333,1940.2500,1942.6667,1935.1667,1935.1667,1943.5833,1936.8333,1941.8333,1944.4167,1939.3333,1934.3333,1946.8333" +"normalizing a fully mergeable, complex tiling of boxes - 2d","small, embedded in 3d",100,10,2585000,2596.7240,2585.8500,2621.4250,79.9529,47.1730,126.1164,"benchmark,group:grid","2575.7000,2566.6000,2691.9000,2623.8000,2625.8000,2591.7000,2611.7000,2602.8000,2587.7000,2590.7000,2580.7000,2587.7000,2571.6000,2596.8000,2584.7000,3043.6000,2594.7000,2589.7000,2583.8000,2584.7000,2586.7000,2581.7000,2562.7000,2581.7000,2573.7000,2592.7000,2583.7000,2591.8000,2571.6000,2577.6000,2588.7000,2558.6000,2582.8000,2587.7000,2579.7000,2595.7000,2580.7000,2594.8000,2578.7000,2580.7000,2591.7000,2568.7000,2587.7000,2585.7000,2571.7000,2585.7000,2586.8000,2584.7000,2583.7000,2572.7000,2574.7000,2589.7000,2577.7000,3044.6000,2581.7000,2584.7000,2586.7000,2582.7000,2570.7000,2581.7000,2569.7000,2576.7000,2586.7000,2575.7000,2575.7000,2574.7000,2587.7000,2577.7000,2570.7000,2574.7000,2567.7000,2588.7000,2582.7000,2570.7000,2578.7000,2581.7000,2585.7000,2573.7000,2569.7000,2555.7000,2580.7000,2580.7000,2576.7000,2580.7000,2575.7000,2575.7000,2570.7000,2574.7000,2561.7000,2569.7000,2588.7000,2587.7000,3039.6000,2601.7000,2583.7000,2569.7000,2589.8000,2584.7000,2573.7000,2568.7000" +"normalizing a fully mergeable, complex tiling of boxes - 2d","large, native",100,1,151807700,1526402.9100,1525636.2400,1527532.7500,4686.0734,3272.0864,7002.0253,"benchmark,group:grid","1527446.0000,1551602.0000,1522578.0000,1533097.0000,1520533.0000,1529911.0000,1522477.0000,1525092.0000,1522176.0000,1528298.0000,1523880.0000,1528469.0000,1523739.0000,1528438.0000,1523909.0000,1529160.0000,1525072.0000,1525924.0000,1526765.0000,1524862.0000,1529831.0000,1523118.0000,1530342.0000,1522708.0000,1525532.0000,1524992.0000,1531525.0000,1521294.0000,1527807.0000,1525031.0000,1521054.0000,1523008.0000,1530583.0000,1526083.0000,1529290.0000,1522717.0000,1549068.0000,1526945.0000,1521976.0000,1527457.0000,1522477.0000,1529981.0000,1522437.0000,1530361.0000,1526174.0000,1530191.0000,1527657.0000,1525824.0000,1522016.0000,1527216.0000,1524200.0000,1533689.0000,1524431.0000,1525553.0000,1522837.0000,1531585.0000,1528929.0000,1524872.0000,1527907.0000,1525323.0000,1528739.0000,1523078.0000,1534380.0000,1523789.0000,1527647.0000,1520483.0000,1525924.0000,1522657.0000,1525733.0000,1524641.0000,1531865.0000,1521144.0000,1528258.0000,1528067.0000,1522237.0000,1525563.0000,1521806.0000,1524941.0000,1524090.0000,1525112.0000,1523960.0000,1525402.0000,1529390.0000,1526676.0000,1524460.0000,1527066.0000,1523690.0000,1524110.0000,1524270.0000,1523419.0000,1523309.0000,1525863.0000,1525273.0000,1531714.0000,1527115.0000,1521345.0000,1526164.0000,1523428.0000,1533518.0000,1522516.0000" +"normalizing a fully mergeable, complex tiling of boxes - 2d","large, embedded in 3d",100,1,172530100,1725691.5000,1724595.4700,1728939.1000,8774.4501,3456.3812,19037.8801,"benchmark,group:grid","1724260.0000,1727206.0000,1803239.0000,1727877.0000,1722828.0000,1729069.0000,1726915.0000,1727426.0000,1719471.0000,1723558.0000,1725533.0000,1726454.0000,1746592.0000,1723789.0000,1724461.0000,1720933.0000,1726945.0000,1721956.0000,1724771.0000,1721404.0000,1722186.0000,1724931.0000,1725522.0000,1718689.0000,1727045.0000,1725362.0000,1721485.0000,1725311.0000,1724971.0000,1728267.0000,1720212.0000,1724330.0000,1727636.0000,1723328.0000,1721855.0000,1726164.0000,1728317.0000,1723489.0000,1727797.0000,1728347.0000,1727106.0000,1721765.0000,1722987.0000,1728978.0000,1722918.0000,1725111.0000,1727056.0000,1724520.0000,1722056.0000,1726103.0000,1723939.0000,1725933.0000,1718890.0000,1725392.0000,1728077.0000,1720673.0000,1725042.0000,1724360.0000,1721665.0000,1719230.0000,1724991.0000,1725272.0000,1727867.0000,1722526.0000,1723228.0000,1727036.0000,1720593.0000,1725291.0000,1725953.0000,1723699.0000,1746362.0000,1727185.0000,1725332.0000,1723569.0000,1719200.0000,1723068.0000,1726795.0000,1722045.0000,1724049.0000,1724821.0000,1725953.0000,1719982.0000,1726174.0000,1724470.0000,1720994.0000,1724500.0000,1724301.0000,1724600.0000,1720834.0000,1724440.0000,1727326.0000,1727666.0000,1722367.0000,1726744.0000,1726134.0000,1721635.0000,1727406.0000,1725292.0000,1729059.0000,1718659.0000" +benchmark independent task pattern with 100 tasks,task generation,100,1,823867600,7670266.2300,7565350.0800,7784652.5800,560347.9944,513977.9975,726645.8066,"benchmark,group:system,indep-tasks","8258568.0000,8199907.0000,8479999.0000,8054903.0000,8288045.0000,8086202.0000,8156265.0000,8126147.0000,8196151.0000,8081693.0000,8207202.0000,7287506.0000,7181325.0000,7484129.0000,8251726.0000,8081082.0000,8250533.0000,8102613.0000,8230776.0000,8203785.0000,8243861.0000,8155724.0000,8221489.0000,8118683.0000,8234453.0000,8084719.0000,8282093.0000,8127700.0000,8207232.0000,8131387.0000,8254942.0000,8149662.0000,7351778.0000,7844333.0000,8262557.0000,8137539.0000,8293956.0000,8114295.0000,8272335.0000,8183085.0000,8154742.0000,8109405.0000,7161917.0000,7106151.0000,7184661.0000,7122964.0000,7171095.0000,7105761.0000,7198758.0000,7077888.0000,7192936.0000,7097857.0000,7166597.0000,7061026.0000,7152831.0000,7141239.0000,7162198.0000,7106392.0000,7162679.0000,7103216.0000,7172448.0000,7098929.0000,7147661.0000,7098036.0000,7190572.0000,7100812.0000,7147420.0000,7110500.0000,7190903.0000,7096684.0000,7193438.0000,7140868.0000,7192516.0000,7099049.0000,7163992.0000,7106483.0000,7183729.0000,7113025.0000,7163330.0000,7105711.0000,7184530.0000,7083649.0000,7115750.0000,7103237.0000,7161848.0000,7113446.0000,7162299.0000,7106462.0000,7164232.0000,7697825.0000,8184719.0000,8154902.0000,8283636.0000,8167095.0000,8255734.0000,8200188.0000,8196511.0000,9819872.0000,8281061.0000,8152828.0000" +benchmark independent task pattern with 500 tasks,task generation,100,1,4886545000,47368069.3900,46795513.3400,47917338.9700,2859248.3657,2679615.9781,3002815.1992,"benchmark,group:system,indep-tasks","49863894.0000,49885846.0000,49271891.0000,43403166.0000,43312153.0000,43336810.0000,43665824.0000,43755133.0000,43852438.0000,44595828.0000,50338215.0000,49784956.0000,49559918.0000,47345496.0000,49620703.0000,48543068.0000,50492878.0000,50336983.0000,45674355.0000,50372650.0000,50462951.0000,49518309.0000,50512204.0000,50575605.0000,50631201.0000,50598619.0000,50490894.0000,47803434.0000,43693547.0000,43637991.0000,43499298.0000,43607884.0000,43583327.0000,43557027.0000,47617412.0000,49884042.0000,49671249.0000,49920342.0000,48827308.0000,43670613.0000,43637790.0000,43486634.0000,43493957.0000,43576294.0000,43650925.0000,43533663.0000,43970952.0000,49623629.0000,49665649.0000,49789604.0000,49809081.0000,49865758.0000,48773255.0000,43640075.0000,43556726.0000,44821366.0000,49857593.0000,49807227.0000,50069354.0000,48766863.0000,48711367.0000,49647774.0000,43713063.0000,43710609.0000,43528063.0000,43600489.0000,43699598.0000,43588967.0000,43521179.0000,43576684.0000,44992721.0000,43637470.0000,48860139.0000,49845369.0000,49779524.0000,49910643.0000,49994292.0000,49916564.0000,48397762.0000,48372935.0000,49826012.0000,48445523.0000,49743075.0000,49473113.0000,43758258.0000,46595262.0000,49627095.0000,49599683.0000,49717907.0000,49615382.0000,44258237.0000,46092077.0000,49780065.0000,49880266.0000,49768704.0000,49762511.0000,48481321.0000,49685716.0000,49748014.0000,49771649.0000" +benchmark independent task pattern with 2500 tasks,task generation,100,1,23382875600,236935981.3400,234715923.0100,239075887.9800,11142161.6307,10371864.4245,11991112.2825,"benchmark,group:system,indep-tasks","239519413.0000,221531653.0000,248379574.0000,236721352.0000,223133790.0000,223612068.0000,220132725.0000,249583617.0000,230710295.0000,222307030.0000,223807037.0000,240085845.0000,230672283.0000,244579080.0000,236572578.0000,232847049.0000,241468487.0000,244989688.0000,223786425.0000,226882230.0000,244345545.0000,219057923.0000,251255437.0000,227836530.0000,245699384.0000,231791914.0000,222222857.0000,223735938.0000,240189128.0000,250044367.0000,242554646.0000,222316925.0000,230582248.0000,248115386.0000,250011723.0000,240914853.0000,228016730.0000,251763347.0000,244046585.0000,245207397.0000,245253726.0000,248328118.0000,245783349.0000,248578553.0000,244644317.0000,251365270.0000,241830918.0000,239835082.0000,222338974.0000,247698191.0000,222391693.0000,221939415.0000,223994485.0000,234905758.0000,234687282.0000,222279179.0000,234095008.0000,251968022.0000,246187503.0000,222622149.0000,246125034.0000,238416868.0000,244055978.0000,222790388.0000,219569817.0000,245865501.0000,248335437.0000,224959903.0000,224455486.0000,256129786.0000,245352627.0000,231193961.0000,222582461.0000,222204194.0000,227598989.0000,250215202.0000,222861240.0000,229643529.0000,252511259.0000,251574521.0000,241946481.0000,245116456.0000,244238230.0000,251881502.0000,250897214.0000,253901514.0000,245546381.0000,252364157.0000,241700553.0000,244648878.0000,245290355.0000,252547665.0000,231107573.0000,223991310.0000,222862128.0000,241363062.0000,231409475.0000,219050145.0000,222294942.0000,233239858.0000" +benchmark stencil: 1D 50 iters oversub 1,iterations,100,1,296337200,2978010.9600,2961733.3700,2992763.9500,79242.7053,69271.2182,95171.2514,"benchmark,group:system,stencil","2903357.0000,2848122.0000,3107885.0000,3047491.0000,3069953.0000,3051468.0000,3046428.0000,3096163.0000,3045416.0000,3100310.0000,3049213.0000,3045877.0000,3046469.0000,3053272.0000,3047881.0000,3047841.0000,2992587.0000,3008226.0000,3028585.0000,3078179.0000,3045266.0000,3100401.0000,3047751.0000,3049525.0000,3050406.0000,3045877.0000,3047781.0000,3098548.0000,3049063.0000,3049023.0000,3021942.0000,3099920.0000,3054915.0000,3094871.0000,3048622.0000,3043823.0000,3045497.0000,3049304.0000,3048152.0000,3065885.0000,3056909.0000,3060004.0000,3044405.0000,2976366.0000,2933754.0000,2944214.0000,2870124.0000,2940728.0000,2935087.0000,2939716.0000,2934556.0000,2898337.0000,2951248.0000,2988939.0000,2936459.0000,2947240.0000,3012594.0000,2987226.0000,2964994.0000,2888549.0000,2874823.0000,2941028.0000,2927884.0000,2899810.0000,2905061.0000,2947089.0000,2926841.0000,2924317.0000,2972077.0000,2896764.0000,2889060.0000,2942611.0000,2919157.0000,2939755.0000,2952399.0000,2918686.0000,2976726.0000,2918225.0000,2979992.0000,2940928.0000,2903938.0000,2989881.0000,2949855.0000,2896724.0000,2865926.0000,2985843.0000,2748783.0000,2732413.0000,2730519.0000,2895843.0000,2893508.0000,2980674.0000,2944605.0000,2939676.0000,2921742.0000,2915901.0000,2953191.0000,3013787.0000,2902065.0000,2960245.0000" +benchmark stencil: 1D 500 iters oversub 1,iterations,100,1,3013831200,28176606.8400,27962372.9500,28416082.4200,1153173.5644,1038758.7166,1270822.5312,"benchmark,group:system,stencil","27395047.0000,28881848.0000,28209993.0000,29823565.0000,30070163.0000,28202099.0000,28503811.0000,30295180.0000,30351116.0000,30255355.0000,30244865.0000,30407944.0000,30183868.0000,30341378.0000,30354212.0000,28795314.0000,27337377.0000,27335955.0000,27292643.0000,30079621.0000,30089900.0000,30214236.0000,30302043.0000,30197815.0000,30248792.0000,28862482.0000,27501198.0000,27395728.0000,27392593.0000,28848996.0000,29231412.0000,29306705.0000,29297887.0000,29324538.0000,29374302.0000,28885224.0000,27454129.0000,26852778.0000,27318332.0000,27443650.0000,27329312.0000,27418191.0000,27377915.0000,27374118.0000,26627802.0000,27577113.0000,27432568.0000,27511107.0000,27230916.0000,27603793.0000,27331005.0000,27357876.0000,26653670.0000,27592793.0000,27666743.0000,27329022.0000,26543131.0000,27391099.0000,27507800.0000,26722541.0000,27309454.0000,27485879.0000,27351144.0000,27315746.0000,27529683.0000,28796256.0000,29349155.0000,28998349.0000,27735573.0000,29351139.0000,29349475.0000,29427324.0000,28948555.0000,27552476.0000,26670622.0000,27430564.0000,27306258.0000,27339001.0000,27370751.0000,27565370.0000,27390789.0000,27546515.0000,26659532.0000,27354440.0000,27307711.0000,27515536.0000,27392442.0000,27458067.0000,27325485.0000,26723322.0000,28664616.0000,27396320.0000,27306740.0000,27257366.0000,27400908.0000,27633049.0000,27442607.0000,28645660.0000,29297176.0000,28277020.0000" +benchmark stencil: 1D 50 iters oversub 3,iterations,100,1,596907100,6342641.1300,6272985.7400,6413782.5400,358462.1896,348145.9910,368175.7715,"benchmark,group:system,stencil","6012265.0000,5978732.0000,6752370.0000,6682378.0000,6742862.0000,6674622.0000,6763141.0000,6608146.0000,5969014.0000,5963673.0000,5979964.0000,5949937.0000,5968773.0000,5979062.0000,5938405.0000,5964105.0000,5980645.0000,6053403.0000,5993900.0000,5994822.0000,5958414.0000,5972280.0000,5948535.0000,5975666.0000,6020331.0000,5985265.0000,5990815.0000,5985204.0000,5962831.0000,5955938.0000,5968313.0000,6005102.0000,5970456.0000,6323146.0000,6733404.0000,6711923.0000,6706814.0000,6668140.0000,6703708.0000,6712905.0000,6703047.0000,6703397.0000,6663361.0000,6684341.0000,6757119.0000,6714689.0000,6690973.0000,6704059.0000,6665765.0000,6709268.0000,6753883.0000,6705231.0000,6711542.0000,6737191.0000,6276266.0000,6225650.0000,6732181.0000,6757159.0000,6723274.0000,6695452.0000,6695271.0000,6753802.0000,6672649.0000,6744084.0000,6718276.0000,6699800.0000,6712184.0000,6692496.0000,6223948.0000,6316372.0000,6659092.0000,6750336.0000,6675784.0000,6700651.0000,6720670.0000,6685353.0000,6719378.0000,6750617.0000,6704850.0000,6681114.0000,6044406.0000,5935970.0000,5965947.0000,5983021.0000,5961178.0000,5963112.0000,5996766.0000,5967421.0000,5935320.0000,5953114.0000,5976317.0000,6004851.0000,5924309.0000,5993801.0000,5944968.0000,5922635.0000,5951811.0000,5987028.0000,6025280.0000,6026874.0000" +benchmark stencil: 1D 500 iters oversub 3,iterations,100,1,6464302200,63131450.1100,62478492.6200,63833964.8000,3466730.5318,3229071.0434,3674826.4749,"benchmark,group:system,stencil","62423087.0000,60198395.0000,65993953.0000,67929146.0000,67900621.0000,61218813.0000,60092316.0000,60247861.0000,60628023.0000,67938623.0000,67968220.0000,61001451.0000,60039265.0000,60269832.0000,60011182.0000,60211072.0000,60107845.0000,62650620.0000,67950596.0000,67973760.0000,66988431.0000,63945216.0000,67929236.0000,67922041.0000,66732064.0000,60103607.0000,59956509.0000,61812790.0000,59889140.0000,60225228.0000,60046469.0000,60074262.0000,60137301.0000,64481463.0000,66821293.0000,68063049.0000,66375437.0000,60180964.0000,60121240.0000,60258791.0000,60080533.0000,60165865.0000,60073179.0000,60917190.0000,67971415.0000,68166776.0000,67915399.0000,67958160.0000,61999013.0000,67362079.0000,67907053.0000,68019998.0000,66046262.0000,65176732.0000,60132170.0000,60182175.0000,60048151.0000,64762867.0000,67750716.0000,67939263.0000,69951852.0000,65644079.0000,60003837.0000,60215589.0000,63782096.0000,67988998.0000,67055257.0000,67205942.0000,60005740.0000,60114797.0000,59941128.0000,60231018.0000,59952871.0000,60210159.0000,60103066.0000,60205420.0000,60199177.0000,60141909.0000,59994290.0000,60207664.0000,61189858.0000,68047179.0000,67949994.0000,68129374.0000,61182723.0000,60200510.0000,60120148.0000,60088147.0000,60203215.0000,60837529.0000,61060281.0000,61872523.0000,60073549.0000,60128143.0000,60016691.0000,60201081.0000,60377687.0000,68090330.0000,67904307.0000,66922645.0000" +benchmark stencil: 2D 30 iters oversub 1,iterations,100,1,470120000,4587725.2700,4539895.8200,4632691.7900,235745.6055,226441.8471,243746.4209,"benchmark,group:system,stencil","4296850.0000,4308923.0000,4812920.0000,4746453.0000,4785367.0000,4852264.0000,4846373.0000,4816016.0000,4620455.0000,4287293.0000,4548558.0000,4779357.0000,4789766.0000,4776240.0000,4794165.0000,4772604.0000,4805726.0000,4814012.0000,4780238.0000,4803031.0000,4814392.0000,4864267.0000,4795106.0000,4814292.0000,4802220.0000,4793012.0000,4804744.0000,4814603.0000,4792801.0000,4799204.0000,4775338.0000,4780849.0000,4784225.0000,4787993.0000,4838098.0000,4834160.0000,4793442.0000,4835312.0000,4783745.0000,4809914.0000,4826175.0000,4819483.0000,4850040.0000,4786340.0000,4634752.0000,4357466.0000,4604274.0000,4819553.0000,4832387.0000,4820424.0000,4760751.0000,4798132.0000,4812469.0000,4780879.0000,4791479.0000,4804644.0000,4797601.0000,4784275.0000,4813230.0000,4766582.0000,4771822.0000,4419384.0000,4337427.0000,4310677.0000,4338520.0000,4331276.0000,4293735.0000,4286281.0000,4382493.0000,4311308.0000,4361393.0000,4359750.0000,4294587.0000,4307911.0000,4295448.0000,4330655.0000,4339101.0000,4331376.0000,4337939.0000,4311969.0000,4298814.0000,4319534.0000,4336476.0000,4292022.0000,4340854.0000,4298884.0000,4326818.0000,4345413.0000,4331877.0000,4313513.0000,4292252.0000,4291641.0000,4333440.0000,4311990.0000,4293263.0000,4309705.0000,4340133.0000,4252927.0000,4335544.0000,4339111.0000" +benchmark stencil: 2D 300 iters oversub 1,iterations,100,1,4301523200,46429438.7200,45903316.8300,46932567.4700,2617291.9241,2464362.1408,2751649.7736,"benchmark,group:system,stencil","42865609.0000,43431924.0000,48822982.0000,48971865.0000,48415088.0000,49086733.0000,48299860.0000,49079769.0000,48447129.0000,44883838.0000,44152601.0000,48972957.0000,48339495.0000,49106311.0000,48335798.0000,45811989.0000,43142565.0000,49085871.0000,48284661.0000,48987996.0000,48438333.0000,48114589.0000,48528894.0000,49089959.0000,47330650.0000,48968869.0000,48563680.0000,47256419.0000,42740271.0000,47865085.0000,48397575.0000,48912662.0000,48406201.0000,49777413.0000,42751633.0000,47110282.0000,48434946.0000,48935966.0000,48484680.0000,49191101.0000,47353233.0000,49122611.0000,48410981.0000,49107723.0000,48227212.0000,43724829.0000,43928696.0000,44970723.0000,48488829.0000,49053048.0000,48376004.0000,48982304.0000,45623251.0000,43391968.0000,42789415.0000,48364352.0000,48449734.0000,49253799.0000,48410099.0000,49029954.0000,48468660.0000,49206139.0000,48395170.0000,49177635.0000,48401622.0000,49106119.0000,47349005.0000,47468011.0000,42824140.0000,43284303.0000,42862303.0000,43335641.0000,42761261.0000,43325771.0000,42781770.0000,43413829.0000,42834771.0000,44757469.0000,42843036.0000,43469985.0000,42761731.0000,43354857.0000,42813440.0000,44488448.0000,48534846.0000,49186071.0000,48364362.0000,49140725.0000,45342148.0000,43339558.0000,42819161.0000,43214039.0000,42679065.0000,43463062.0000,42792660.0000,43293560.0000,42748526.0000,43368413.0000,42882731.0000,43406815.0000" +benchmark stencil: 2D 30 iters oversub 3,iterations,100,1,1527972300,14624735.2100,14482804.6900,14771881.5700,735497.9730,688469.2895,910756.4634,"benchmark,group:system,stencil","13896364.0000,13904780.0000,15786740.0000,15281161.0000,15257767.0000,15371603.0000,15285570.0000,15271042.0000,15196612.0000,15268527.0000,15264439.0000,15258128.0000,15230776.0000,15258158.0000,15229985.0000,15268067.0000,15269499.0000,15216659.0000,15255633.0000,17117305.0000,15248390.0000,15267746.0000,15337428.0000,15318853.0000,15163348.0000,15247929.0000,15277124.0000,15258098.0000,15182896.0000,15309184.0000,15256825.0000,15221808.0000,15255392.0000,15238029.0000,15260291.0000,15289106.0000,15238631.0000,15294306.0000,15233821.0000,15309766.0000,15197994.0000,15292273.0000,15246636.0000,15270341.0000,15246215.0000,15239873.0000,15240714.0000,15309455.0000,15218543.0000,15288705.0000,15268016.0000,15244101.0000,15255002.0000,15279689.0000,14151158.0000,13927714.0000,13918917.0000,13839346.0000,13846139.0000,13914609.0000,13922083.0000,13896986.0000,13927142.0000,13883559.0000,13877608.0000,13774634.0000,13916492.0000,13745308.0000,13861748.0000,13960365.0000,13895312.0000,13904209.0000,13927713.0000,13806874.0000,13878110.0000,13850437.0000,13863943.0000,13870936.0000,13893318.0000,13927373.0000,13907305.0000,13796094.0000,13888890.0000,13793179.0000,13883810.0000,13877028.0000,13944405.0000,13871768.0000,13857661.0000,13857090.0000,13880644.0000,13899791.0000,13925960.0000,13897816.0000,13941259.0000,13928656.0000,13870064.0000,13930790.0000,13878099.0000,13765836.0000" +benchmark stencil: 2D 300 iters oversub 3,iterations,100,1,14926688900,144968017.2400,143778953.3000,146269500.8000,6377739.4737,5801435.8814,6871523.8220,"benchmark,group:system,stencil","156745189.0000,154690250.0000,152097427.0000,153508814.0000,147568945.0000,141429015.0000,154531535.0000,145581053.0000,139598322.0000,139426877.0000,139323129.0000,139652204.0000,141602254.0000,154748025.0000,145516300.0000,139473966.0000,139370920.0000,141165084.0000,139597911.0000,141796713.0000,154769125.0000,145320748.0000,139464286.0000,139651091.0000,139415965.0000,139505564.0000,141818463.0000,154779714.0000,149239813.0000,139503280.0000,139512378.0000,141145246.0000,139480938.0000,142547767.0000,154880736.0000,144696954.0000,139661670.0000,139722626.0000,139590636.0000,139694913.0000,148601070.0000,154923697.0000,143973340.0000,139541041.0000,139639388.0000,141137891.0000,139828306.0000,143292658.0000,154597778.0000,144018645.0000,139740950.0000,139500864.0000,140245417.0000,154942792.0000,154354376.0000,155051188.0000,148279529.0000,139587448.0000,139430140.0000,141181963.0000,139612075.0000,146613017.0000,154947149.0000,139657440.0000,139493178.0000,139637553.0000,139714208.0000,139617485.0000,146601736.0000,154881946.0000,150920480.0000,154852619.0000,156698271.0000,155220688.0000,154837421.0000,153757682.0000,147401222.0000,139548914.0000,136990420.0000,139336551.0000,139626570.0000,139495172.0000,154312294.0000,153963001.0000,140438702.0000,139456839.0000,141038259.0000,139587937.0000,140509906.0000,154595451.0000,146974070.0000,139681474.0000,139442280.0000,139615159.0000,139438363.0000,140441757.0000,154765573.0000,146715269.0000,148043098.0000,154626168.0000" +benchmark rsim: 64 tris 50 iters,iterations,100,1,962407200,10538516.4800,10460336.9200,10612431.5000,387054.8450,301657.0802,541222.7044,"benchmark,group:system,rsim","10593657.0000,12454037.0000,10879069.0000,10595361.0000,10607263.0000,10651126.0000,10691402.0000,10725186.0000,10601361.0000,10704627.0000,10735476.0000,10712473.0000,10639875.0000,10669241.0000,10656025.0000,10739615.0000,10688086.0000,10597816.0000,10626780.0000,10620348.0000,10657168.0000,10642129.0000,10605270.0000,10659562.0000,10629125.0000,10627702.0000,10595761.0000,10652509.0000,10633202.0000,10672357.0000,10703155.0000,10657177.0000,10663850.0000,10627602.0000,10682546.0000,10595541.0000,10611181.0000,10630537.0000,10600861.0000,10621190.0000,10634284.0000,10679049.0000,10656346.0000,10738872.0000,10690722.0000,10701592.0000,10668088.0000,10659542.0000,10594258.0000,10658810.0000,10615869.0000,10659933.0000,10585292.0000,10610910.0000,10521561.0000,10571285.0000,10622331.0000,10382987.0000,10123145.0000,10646217.0000,10665504.0000,10623704.0000,10683538.0000,10628593.0000,10658189.0000,9806533.0000,9667840.0000,9574654.0000,9592948.0000,9581838.0000,9572690.0000,9591025.0000,9607066.0000,9580224.0000,9618407.0000,9644697.0000,9786846.0000,10673139.0000,10682516.0000,10581414.0000,10686974.0000,10625498.0000,10624085.0000,10724215.0000,10659362.0000,10646909.0000,10596713.0000,10611110.0000,10650585.0000,10609517.0000,10635217.0000,10659592.0000,10692705.0000,10645846.0000,10704187.0000,10658360.0000,10687505.0000,10660053.0000,10645466.0000,10628042.0000" +benchmark rsim: 1024 tris 50 iters,iterations,100,1,1055818700,10350072.8200,10260626.7500,10423744.1800,412802.1663,356328.4212,456211.5908,"benchmark,group:system,rsim","9591045.0000,9607526.0000,10557178.0000,10524696.0000,10544184.0000,10564502.0000,10563310.0000,10660113.0000,10649573.0000,10602493.0000,10596813.0000,10605099.0000,10551647.0000,10607173.0000,10595010.0000,10580322.0000,10559503.0000,10586744.0000,10529335.0000,10566475.0000,10525188.0000,10553691.0000,10553421.0000,10573379.0000,10564312.0000,10551217.0000,10626950.0000,10616922.0000,10519126.0000,10575713.0000,10579100.0000,10561095.0000,10567488.0000,10560955.0000,10553341.0000,10538583.0000,10535357.0000,10556577.0000,10592996.0000,10589670.0000,10575442.0000,10597073.0000,10602294.0000,10625858.0000,10607653.0000,10650996.0000,10595260.0000,10591714.0000,10548962.0000,10551488.0000,10567387.0000,10580332.0000,10559823.0000,10648311.0000,10565635.0000,10585842.0000,10552960.0000,10568620.0000,10539795.0000,10624396.0000,10647509.0000,10531259.0000,10644233.0000,10584399.0000,10623644.0000,10654292.0000,10580833.0000,10571064.0000,10541528.0000,10590251.0000,10607713.0000,10505890.0000,10565463.0000,10598387.0000,10583007.0000,10637761.0000,10591403.0000,10595711.0000,9888038.0000,9589051.0000,9610561.0000,9566588.0000,9610392.0000,9632654.0000,9673461.0000,9554576.0000,9585815.0000,9602266.0000,9595132.0000,9562310.0000,9615141.0000,9564124.0000,9653223.0000,9630570.0000,9671999.0000,9621993.0000,9677819.0000,9588711.0000,9610993.0000,9569855.0000" +benchmark rsim: 64 tris 500 iters,iterations,100,1,11090643000,105120902.4200,104202581.3500,106082497.9700,4804969.4985,4550376.9074,5036526.2380,"benchmark,group:system,rsim","100693678.0000,100524617.0000,111164989.0000,105409218.0000,100631122.0000,100657543.0000,100478884.0000,100540470.0000,100622186.0000,100760077.0000,100810653.0000,110060382.0000,111020885.0000,109132642.0000,100762382.0000,100691367.0000,100722736.0000,102437199.0000,100801285.0000,100551181.0000,103682371.0000,110937847.0000,109129786.0000,105713374.0000,111296587.0000,111179415.0000,111214501.0000,111244769.0000,111053335.0000,109681593.0000,110987471.0000,109739502.0000,108544395.0000,111185967.0000,111413067.0000,111022878.0000,112813966.0000,111219551.0000,111187259.0000,111274655.0000,110148739.0000,100499963.0000,100814670.0000,100446331.0000,100528085.0000,100640900.0000,100636030.0000,100411174.0000,105228493.0000,111204021.0000,110417518.0000,104591965.0000,100852852.0000,100621582.0000,100733766.0000,102341505.0000,100552061.0000,100526823.0000,108590122.0000,111166780.0000,103581839.0000,100299471.0000,100327484.0000,100478150.0000,100369684.0000,100448394.0000,100510471.0000,101621230.0000,111192328.0000,111116605.0000,100578280.0000,101923523.0000,110926453.0000,111180926.0000,113045874.0000,111176858.0000,111201565.0000,111047994.0000,111186827.0000,102263458.0000,100309089.0000,100379512.0000,100463222.0000,100458753.0000,100555226.0000,100507155.0000,102584696.0000,110991646.0000,110498440.0000,107182119.0000,100836088.0000,100701433.0000,100599420.0000,101997993.0000,100479823.0000,100497857.0000,106507739.0000,111046841.0000,106233348.0000,100833263.0000" +benchmark rsim: 1024 tris 500 iters,iterations,100,1,11391483400,106642514.6000,105694620.2000,107581276.2200,4823696.0248,4606888.9630,5041565.5253,"benchmark,group:system,rsim","108009083.0000,111585169.0000,107298519.0000,103979662.0000,103158835.0000,110800974.0000,113450681.0000,111610590.0000,111686524.0000,111688127.0000,111658351.0000,105575219.0000,101207342.0000,110491496.0000,111479851.0000,111814617.0000,111516541.0000,111690552.0000,111669942.0000,111685622.0000,110862901.0000,103880273.0000,100783919.0000,101019836.0000,102566320.0000,111016392.0000,111534695.0000,112014024.0000,111434165.0000,109898370.0000,101181262.0000,100801201.0000,100980882.0000,100841697.0000,101067547.0000,100791141.0000,100735507.0000,106554056.0000,111355184.0000,108182154.0000,111549232.0000,111613704.0000,111420478.0000,113468364.0000,111606270.0000,111591963.0000,111545335.0000,111484619.0000,106521854.0000,101073497.0000,101174599.0000,101017460.0000,110491255.0000,111564019.0000,111671705.0000,111907832.0000,111398897.0000,110951678.0000,106406805.0000,100934133.0000,100877434.0000,100816499.0000,102598480.0000,101091370.0000,100908544.0000,107949552.0000,111525296.0000,105601798.0000,101205036.0000,101233910.0000,100828301.0000,102095906.0000,111592574.0000,111773507.0000,111805688.0000,111609335.0000,109858984.0000,101016438.0000,101069208.0000,100918963.0000,100697412.0000,102931992.0000,100995818.0000,101304714.0000,107391723.0000,111678656.0000,106108949.0000,101279918.0000,100927689.0000,101058097.0000,100719996.0000,101098814.0000,110748321.0000,111768446.0000,111687102.0000,111347418.0000,103843550.0000,101292832.0000,101155631.0000,100884637.0000" diff --git a/ci/perf/gpuc2_bench.md b/ci/perf/gpuc2_bench.md index b53c1bd4..3fcd965f 100644 --- a/ci/perf/gpuc2_bench.md +++ b/ci/perf/gpuc2_bench.md @@ -2,201 +2,201 @@ | Metadata | | | :------- | :------------------- | -| Created | 2024-12-04T10:56:17Z | +| Created | 2025-01-15T12:10:22Z | | Test case | Benchmark name | Min | Mean | Std dev | | :----------------------------------------------------------------------------------------------------------------------------------------------------------------- | :----------------------------------- | -------------: | -------------: | ------------: | -| benchmark intrusive graph dependency handling with N nodes - 1 | creating nodes | 4.47 | 4.50 | 0.10 | -| benchmark intrusive graph dependency handling with N nodes - 1 | creating and adding dependencies | 22.04 | 22.21 | 0.52 | -| benchmark intrusive graph dependency handling with N nodes - 1 | adding and removing dependencies | 15.45 | 15.63 | 0.47 | -| benchmark intrusive graph dependency handling with N nodes - 1 | checking for dependencies | 1.45 | 1.46 | 0.06 | -| benchmark intrusive graph dependency handling with N nodes - 10 | creating nodes | 41.07 | 41.42 | 0.90 | -| benchmark intrusive graph dependency handling with N nodes - 10 | creating and adding dependencies | 239.30 | 242.89 | 5.62 | -| benchmark intrusive graph dependency handling with N nodes - 10 | adding and removing dependencies | 206.26 | 207.82 | 4.72 | -| benchmark intrusive graph dependency handling with N nodes - 10 | checking for dependencies | 23.89 | 23.99 | 0.61 | -| benchmark intrusive graph dependency handling with N nodes - 100 | creating nodes | 452.55 | 454.94 | 10.19 | -| benchmark intrusive graph dependency handling with N nodes - 100 | creating and adding dependencies | 3'888.57 | 3'936.69 | 132.71 | -| benchmark intrusive graph dependency handling with N nodes - 100 | adding and removing dependencies | 4'698.50 | 4'753.89 | 142.12 | -| benchmark intrusive graph dependency handling with N nodes - 100 | checking for dependencies | 1'897.00 | 1'914.70 | 35.94 | -| benchmark task handling | generating and deleting tasks | 5'006'637.00 | 5'875'455.78 | 204'328.26 | -| generating large task graphs | soup topology | 365'260.00 | 370'531.02 | 3'251.76 | -| generating large task graphs | chain topology | 37'118.00 | 37'643.14 | 1'107.92 | -| generating large task graphs | expanding tree topology | 57'076.00 | 58'059.39 | 1'418.80 | -| generating large task graphs | contracting tree topology | 59'411.00 | 60'278.86 | 1'420.01 | -| generating large task graphs | wave\_sim topology | 443'959.00 | 449'444.55 | 3'365.33 | -| generating large task graphs | jacobi topology | 115'447.00 | 116'790.39 | 1'833.06 | -| generating large command graphs for N nodes - 1 | soup topology | 881'409.00 | 1'042'249.35 | 62'628.89 | -| generating large command graphs for N nodes - 1 | chain topology | 76'833.00 | 77'908.60 | 1'681.07 | -| generating large command graphs for N nodes - 1 | expanding tree topology | 143'520.00 | 145'686.11 | 2'719.96 | -| generating large command graphs for N nodes - 1 | contracting tree topology | 152'927.00 | 155'466.17 | 2'983.15 | -| generating large command graphs for N nodes - 1 | wave\_sim topology | 1'015'031.00 | 1'019'933.83 | 3'483.30 | -| generating large command graphs for N nodes - 1 | jacobi topology | 256'705.00 | 259'995.11 | 3'443.94 | -| generating large command graphs for N nodes - 4 | soup topology | 1'413'257.00 | 1'434'789.72 | 15'216.61 | -| generating large command graphs for N nodes - 4 | chain topology | 324'483.00 | 329'665.28 | 4'746.89 | -| generating large command graphs for N nodes - 4 | expanding tree topology | 335'194.00 | 340'282.11 | 3'704.48 | -| generating large command graphs for N nodes - 4 | contracting tree topology | 346'044.00 | 351'361.20 | 4'826.56 | -| generating large command graphs for N nodes - 4 | wave\_sim topology | 2'274'680.00 | 2'289'539.90 | 8'381.73 | -| generating large command graphs for N nodes - 4 | jacobi topology | 542'076.00 | 549'029.55 | 3'815.86 | -| generating large command graphs for N nodes - 16 | soup topology | 1'917'493.00 | 1'943'372.62 | 29'200.35 | -| generating large command graphs for N nodes - 16 | chain topology | 1'093'410.00 | 1'099'139.11 | 7'703.19 | -| generating large command graphs for N nodes - 16 | expanding tree topology | 561'161.00 | 568'793.84 | 9'952.01 | -| generating large command graphs for N nodes - 16 | contracting tree topology | 737'596.00 | 748'342.76 | 4'501.65 | -| generating large command graphs for N nodes - 16 | wave\_sim topology | 4'110'339.00 | 4'745'273.82 | 302'463.91 | -| generating large command graphs for N nodes - 16 | jacobi topology | 1'095'374.00 | 1'292'277.28 | 54'127.91 | -| generating large instruction graphs for N devices - 1 | soup topology | 4'081'374.00 | 4'520'326.36 | 213'912.86 | -| generating large instruction graphs for N devices - 1 | chain topology | 676'490.00 | 686'547.84 | 5'236.37 | -| generating large instruction graphs for N devices - 1 | expanding tree topology | 807'649.00 | 819'479.43 | 4'907.21 | -| generating large instruction graphs for N devices - 1 | contracting tree topology | 924'180.00 | 1'031'324.82 | 31'605.05 | -| generating large instruction graphs for N devices - 1 | wave\_sim topology | 5'131'705.00 | 5'491'460.62 | 326'397.98 | -| generating large instruction graphs for N devices - 1 | jacobi topology | 1'271'809.00 | 1'282'143.99 | 8'580.48 | -| generating large instruction graphs for N devices - 4 | soup topology | 4'091'974.00 | 4'596'033.45 | 146'048.28 | -| generating large instruction graphs for N devices - 4 | chain topology | 679'786.00 | 689'668.91 | 7'620.18 | -| generating large instruction graphs for N devices - 4 | expanding tree topology | 814'151.00 | 898'281.36 | 31'089.23 | -| generating large instruction graphs for N devices - 4 | contracting tree topology | 923'599.00 | 1'023'029.00 | 43'892.97 | -| generating large instruction graphs for N devices - 4 | wave\_sim topology | 5'148'667.00 | 5'775'553.24 | 162'111.91 | -| generating large instruction graphs for N devices - 4 | jacobi topology | 1'123'758.00 | 1'131'915.60 | 4'548.82 | -| generating large instruction graphs for N devices - 16 | soup topology | 4'097'795.00 | 4'504'016.98 | 251'237.44 | -| generating large instruction graphs for N devices - 16 | chain topology | 686'259.00 | 696'060.60 | 5'180.05 | -| generating large instruction graphs for N devices - 16 | expanding tree topology | 908'971.00 | 919'990.16 | 6'896.97 | -| generating large instruction graphs for N devices - 16 | contracting tree topology | 1'048'695.00 | 1'054'227.68 | 3'311.89 | -| generating large instruction graphs for N devices - 16 | wave\_sim topology | 5'872'889.00 | 5'908'444.06 | 27'897.82 | -| generating large instruction graphs for N devices - 16 | jacobi topology | 1'158'534.00 | 1'168'327.89 | 8'311.80 | -| generating large instruction graphs for N devices without d2d copy support - 1 | soup topology | 4'611'980.00 | 4'635'242.53 | 11'847.01 | -| generating large instruction graphs for N devices without d2d copy support - 1 | chain topology | 679'375.00 | 687'842.10 | 6'984.17 | -| generating large instruction graphs for N devices without d2d copy support - 1 | expanding tree topology | 805'936.00 | 820'276.86 | 7'093.17 | -| generating large instruction graphs for N devices without d2d copy support - 1 | contracting tree topology | 1'038'166.00 | 1'043'695.57 | 4'684.42 | -| generating large instruction graphs for N devices without d2d copy support - 1 | wave\_sim topology | 5'765'766.00 | 5'793'394.97 | 31'714.65 | -| generating large instruction graphs for N devices without d2d copy support - 1 | jacobi topology | 1'271'137.00 | 1'282'761.40 | 13'165.06 | -| generating large instruction graphs for N devices without d2d copy support - 4 | soup topology | 4'080'031.00 | 4'560'209.73 | 192'832.46 | -| generating large instruction graphs for N devices without d2d copy support - 4 | chain topology | 680'798.00 | 689'794.81 | 5'343.86 | -| generating large instruction graphs for N devices without d2d copy support - 4 | expanding tree topology | 901'377.00 | 912'759.83 | 5'649.58 | -| generating large instruction graphs for N devices without d2d copy support - 4 | contracting tree topology | 1'039'969.00 | 1'045'568.49 | 4'000.70 | -| generating large instruction graphs for N devices without d2d copy support - 4 | wave\_sim topology | 5'144'709.00 | 5'495'682.14 | 327'826.32 | -| generating large instruction graphs for N devices without d2d copy support - 4 | jacobi topology | 1'284'673.00 | 1'292'647.77 | 5'829.71 | -| generating large instruction graphs for N devices without d2d copy support - 16 | soup topology | 4'643'670.00 | 4'661'950.63 | 10'820.84 | -| generating large instruction graphs for N devices without d2d copy support - 16 | chain topology | 601'338.00 | 647'981.34 | 43'570.76 | -| generating large instruction graphs for N devices without d2d copy support - 16 | expanding tree topology | 818'749.00 | 829'690.90 | 4'528.73 | -| generating large instruction graphs for N devices without d2d copy support - 16 | contracting tree topology | 930'672.00 | 942'293.36 | 6'284.73 | -| generating large instruction graphs for N devices without d2d copy support - 16 | wave\_sim topology | 5'232'636.00 | 5'793'248.55 | 258'698.72 | -| generating large instruction graphs for N devices without d2d copy support - 16 | jacobi topology | 1'326'142.00 | 1'335'780.30 | 6'650.20 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: single-threaded immediate graph generation | soup topology | 1'073'423.00 | 1'084'876.33 | 7'723.57 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: single-threaded immediate graph generation | chain topology | 77'485.00 | 78'800.52 | 3'414.43 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: single-threaded immediate graph generation | expanding tree topology | 145'103.00 | 147'656.83 | 2'450.59 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: single-threaded immediate graph generation | contracting tree topology | 155'443.00 | 157'980.37 | 2'536.82 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: single-threaded immediate graph generation | wave\_sim topology | 858'997.00 | 871'409.20 | 8'665.49 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: single-threaded immediate graph generation | jacobi topology | 258'338.00 | 262'294.72 | 3'126.28 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > immediate submission to a scheduler thread | soup topology | 2'006'902.00 | 2'040'549.30 | 21'626.51 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > immediate submission to a scheduler thread | chain topology | 207'992.00 | 231'302.93 | 13'613.79 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > immediate submission to a scheduler thread | expanding tree topology | 328'070.00 | 393'942.09 | 32'312.67 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > immediate submission to a scheduler thread | contracting tree topology | 431'275.00 | 456'037.34 | 22'199.97 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > immediate submission to a scheduler thread | wave\_sim topology | 2'810'946.00 | 2'852'123.38 | 24'802.79 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > immediate submission to a scheduler thread | jacobi topology | 777'702.00 | 787'452.49 | 10'299.59 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: throttled single-threaded graph generation at 10 us per task | soup topology | 1'880'422.00 | 1'907'336.53 | 28'563.46 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: throttled single-threaded graph generation at 10 us per task | chain topology | 356'854.00 | 358'219.49 | 1'417.03 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: throttled single-threaded graph generation at 10 us per task | expanding tree topology | 427'959.00 | 431'282.38 | 6'830.79 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: throttled single-threaded graph generation at 10 us per task | contracting tree topology | 458'938.00 | 462'732.01 | 2'586.75 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: throttled single-threaded graph generation at 10 us per task | wave\_sim topology | 2'899'874.00 | 2'972'718.59 | 80'733.30 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: throttled single-threaded graph generation at 10 us per task | jacobi topology | 764'688.00 | 770'278.43 | 4'534.21 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > throttled submission to a scheduler thread at 10 us per task | soup topology | 2'748'097.00 | 2'790'737.17 | 23'894.46 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > throttled submission to a scheduler thread at 10 us per task | chain topology | 401'208.00 | 406'665.94 | 3'263.78 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > throttled submission to a scheduler thread at 10 us per task | expanding tree topology | 631'836.00 | 648'830.80 | 16'996.60 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > throttled submission to a scheduler thread at 10 us per task | contracting tree topology | 665'510.00 | 702'441.67 | 13'943.46 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > throttled submission to a scheduler thread at 10 us per task | wave\_sim topology | 2'873'104.00 | 2'921'061.30 | 24'110.12 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > throttled submission to a scheduler thread at 10 us per task | jacobi topology | 811'205.00 | 828'354.12 | 18'993.10 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: single-threaded immediate graph generation | soup topology | 1'218'127.00 | 1'424'753.69 | 73'110.16 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: single-threaded immediate graph generation | chain topology | 279'147.00 | 321'516.67 | 22'163.44 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: single-threaded immediate graph generation | expanding tree topology | 339'372.00 | 343'896.04 | 4'038.76 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: single-threaded immediate graph generation | contracting tree topology | 350'242.00 | 356'150.56 | 4'016.38 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: single-threaded immediate graph generation | wave\_sim topology | 1'946'227.00 | 2'290'576.01 | 63'050.47 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: single-threaded immediate graph generation | jacobi topology | 547'516.00 | 555'931.35 | 4'714.35 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > immediate submission to a scheduler thread | soup topology | 2'562'084.00 | 2'870'966.07 | 56'505.23 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > immediate submission to a scheduler thread | chain topology | 856'492.00 | 990'277.93 | 35'402.86 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > immediate submission to a scheduler thread | expanding tree topology | 988'272.00 | 1'033'097.97 | 24'618.23 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > immediate submission to a scheduler thread | contracting tree topology | 938'848.00 | 966'187.26 | 13'389.43 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > immediate submission to a scheduler thread | wave\_sim topology | 6'403'866.00 | 6'436'605.78 | 29'722.21 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > immediate submission to a scheduler thread | jacobi topology | 1'590'673.00 | 1'604'612.59 | 15'640.87 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: throttled single-threaded graph generation at 10 us per task | soup topology | 2'200'088.00 | 2'263'422.42 | 85'628.60 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: throttled single-threaded graph generation at 10 us per task | chain topology | 624'903.00 | 629'403.66 | 4'446.23 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: throttled single-threaded graph generation at 10 us per task | expanding tree topology | 645'471.00 | 650'223.29 | 3'444.58 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: throttled single-threaded graph generation at 10 us per task | contracting tree topology | 603'873.00 | 609'662.71 | 3'981.27 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: throttled single-threaded graph generation at 10 us per task | wave\_sim topology | 3'999'820.00 | 4'356'201.15 | 47'869.34 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: throttled single-threaded graph generation at 10 us per task | jacobi topology | 969'596.00 | 1'055'678.58 | 24'162.90 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > throttled submission to a scheduler thread at 10 us per task | soup topology | 3'095'275.00 | 3'220'770.39 | 26'257.98 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > throttled submission to a scheduler thread at 10 us per task | chain topology | 982'550.00 | 993'343.01 | 12'990.82 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > throttled submission to a scheduler thread at 10 us per task | expanding tree topology | 1'010'343.00 | 1'030'478.12 | 18'602.32 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > throttled submission to a scheduler thread at 10 us per task | contracting tree topology | 1'004'221.00 | 1'020'823.76 | 12'052.05 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > throttled submission to a scheduler thread at 10 us per task | wave\_sim topology | 5'743'865.00 | 6'326'608.15 | 283'372.50 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > throttled submission to a scheduler thread at 10 us per task | jacobi topology | 1'591'424.00 | 1'626'273.22 | 12'626.91 | -| normalizing randomized box sets - 2d | small, native | 565.04 | 573.28 | 16.42 | -| normalizing randomized box sets - 2d | small, embedded in 3d | 652.50 | 661.39 | 15.85 | -| normalizing randomized box sets - 2d | medium, native | 5'982.80 | 6'061.70 | 169.45 | -| normalizing randomized box sets - 2d | medium, embedded in 3d | 5'941.00 | 6'003.72 | 165.64 | -| normalizing randomized box sets - 2d | large, native | 196'571.00 | 198'463.80 | 3'237.33 | -| normalizing randomized box sets - 2d | large, embedded in 3d | 211'980.00 | 215'613.46 | 16'369.31 | -| normalizing randomized box sets - 3d | small - native | 2'207.64 | 2'241.70 | 178.28 | -| normalizing randomized box sets - 3d | medium - native | 9'106.67 | 9'251.61 | 278.93 | -| normalizing randomized box sets - 3d | large - native | 2'087'134.00 | 2'158'456.17 | 70'241.59 | -| normalizing a fully mergeable tiling of boxes - 1 | small, native | 29.85 | 30.58 | 0.84 | -| normalizing a fully mergeable tiling of boxes - 1 | small, embedded in 3d | 44.72 | 45.18 | 0.94 | -| normalizing a fully mergeable tiling of boxes - 1 | medium, native | 286.46 | 297.88 | 8.14 | -| normalizing a fully mergeable tiling of boxes - 1 | medium, embedded in 3d | 414.38 | 418.98 | 14.67 | -| normalizing a fully mergeable tiling of boxes - 1 | large, native | 7'661.75 | 7'838.00 | 702.64 | -| normalizing a fully mergeable tiling of boxes - 1 | large, embedded in 3d | 10'956.67 | 11'053.03 | 267.50 | -| normalizing a fully mergeable tiling of boxes - 2 | small, native | 106.20 | 107.40 | 2.61 | -| normalizing a fully mergeable tiling of boxes - 2 | small, embedded in 3d | 120.54 | 121.30 | 2.51 | -| normalizing a fully mergeable tiling of boxes - 2 | medium, native | 874.69 | 889.76 | 24.72 | -| normalizing a fully mergeable tiling of boxes - 2 | medium, embedded in 3d | 1'018.24 | 1'031.20 | 19.19 | -| normalizing a fully mergeable tiling of boxes - 2 | large, native | 36'558.00 | 37'108.38 | 840.20 | -| normalizing a fully mergeable tiling of boxes - 2 | large, embedded in 3d | 40'284.00 | 40'960.16 | 948.54 | -| normalizing a fully mergeable tiling of boxes - 3 | small, native | 245.45 | 247.66 | 4.99 | -| normalizing a fully mergeable tiling of boxes - 3 | medium, native | 1'299.90 | 1'311.48 | 37.88 | -| normalizing a fully mergeable tiling of boxes - 3 | large, native | 46'136.00 | 48'532.42 | 1'786.13 | -| performing set operations between randomized regions - 2d | union, small, native | 865.34 | 879.03 | 27.43 | -| performing set operations between randomized regions - 2d | union, small, embedded in 3d | 1'004.20 | 1'018.82 | 26.07 | -| performing set operations between randomized regions - 2d | intersection, small, native | 215.26 | 221.65 | 6.13 | -| performing set operations between randomized regions - 2d | intersection, small, embedded in 3d | 238.57 | 240.90 | 6.60 | -| performing set operations between randomized regions - 2d | difference, small, native | 997.44 | 1'013.29 | 28.07 | -| performing set operations between randomized regions - 2d | difference, small, embedded in 3d | 1'186.43 | 1'203.40 | 32.89 | -| performing set operations between randomized regions - 2d | union, medium, native | 13'133.50 | 13'340.69 | 362.52 | -| performing set operations between randomized regions - 2d | union, medium, embedded in 3d | 14'607.00 | 14'858.85 | 508.20 | -| performing set operations between randomized regions - 2d | intersection, medium, native | 2'316.00 | 2'353.26 | 62.89 | -| performing set operations between randomized regions - 2d | intersection, medium, embedded in 3d | 2'052.08 | 2'076.68 | 50.39 | -| performing set operations between randomized regions - 2d | difference, medium, native | 8'039.75 | 8'248.13 | 744.84 | -| performing set operations between randomized regions - 2d | difference, medium, embedded in 3d | 8'673.50 | 8'801.61 | 254.63 | -| performing set operations between randomized regions - 2d | union, large, native | 157'627.00 | 159'047.94 | 1'763.08 | -| performing set operations between randomized regions - 2d | union, large, embedded in 3d | 170'672.00 | 172'306.06 | 1'839.75 | -| performing set operations between randomized regions - 2d | intersection, large, native | 20'097.00 | 20'352.60 | 531.20 | -| performing set operations between randomized regions - 2d | intersection, large, embedded in 3d | 18'599.50 | 18'967.65 | 1'482.00 | -| performing set operations between randomized regions - 2d | difference, large, native | 641'133.00 | 647'238.29 | 4'162.78 | -| performing set operations between randomized regions - 2d | difference, large, embedded in 3d | 706'918.00 | 715'077.23 | 8'083.98 | -| performing set operations between randomized regions - 3d | union, small, native | 3'838.43 | 3'886.86 | 100.21 | -| performing set operations between randomized regions - 3d | intersection, small, native | 151.88 | 154.22 | 3.31 | -| performing set operations between randomized regions - 3d | difference, small, native | 1'353.00 | 1'375.48 | 37.10 | -| performing set operations between randomized regions - 3d | union, medium, native | 21'575.00 | 21'887.57 | 507.03 | -| performing set operations between randomized regions - 3d | intersection, medium, native | 2'577.70 | 2'611.12 | 72.32 | -| performing set operations between randomized regions - 3d | difference, medium, native | 11'100.33 | 11'302.60 | 291.38 | -| performing set operations between randomized regions - 3d | union, large, native | 2'180'290.00 | 2'190'028.04 | 8'374.61 | -| performing set operations between randomized regions - 3d | intersection, large, native | 15'633.50 | 16'018.47 | 502.92 | -| performing set operations between randomized regions - 3d | difference, large, native | 6'112'674.00 | 6'249'128.54 | 176'627.16 | -| normalizing a fully mergeable, complex tiling of boxes - 2d | small, native | 2'161.62 | 2'191.54 | 66.32 | -| normalizing a fully mergeable, complex tiling of boxes - 2d | small, embedded in 3d | 2'234.92 | 2'259.22 | 72.01 | -| normalizing a fully mergeable, complex tiling of boxes - 2d | large, native | 1'527'052.00 | 1'535'508.10 | 9'165.24 | -| normalizing a fully mergeable, complex tiling of boxes - 2d | large, embedded in 3d | 1'726'841.00 | 1'734'548.85 | 9'055.16 | -| benchmark independent task pattern with 100 tasks | task generation | 7'140'322.00 | 7'944'019.60 | 529'470.53 | -| benchmark independent task pattern with 500 tasks | task generation | 43'345'404.00 | 48'999'576.83 | 1'600'448.73 | -| benchmark independent task pattern with 2500 tasks | task generation | 221'988'451.00 | 244'913'635.07 | 12'062'541.82 | -| benchmark stencil: 1D 50 iters oversub 1 | iterations | 2'876'360.00 | 2'996'084.26 | 41'757.52 | -| benchmark stencil: 1D 500 iters oversub 1 | iterations | 25'451'569.00 | 28'859'443.68 | 1'589'231.19 | -| benchmark stencil: 1D 50 iters oversub 3 | iterations | 5'854'164.00 | 6'213'345.91 | 358'919.11 | -| benchmark stencil: 1D 500 iters oversub 3 | iterations | 58'651'175.00 | 65'233'984.23 | 3'327'009.20 | -| benchmark stencil: 2D 30 iters oversub 1 | iterations | 4'376'193.00 | 4'553'313.51 | 226'610.74 | -| benchmark stencil: 2D 300 iters oversub 1 | iterations | 42'999'088.00 | 46'651'456.90 | 2'573'334.14 | -| benchmark stencil: 2D 30 iters oversub 3 | iterations | 13'715'945.00 | 14'669'929.46 | 734'528.06 | -| benchmark stencil: 2D 300 iters oversub 3 | iterations | 141'590'478.00 | 151'685'470.10 | 6'010'935.77 | -| benchmark rsim: 64 tris 50 iters | iterations | 9'558'716.00 | 10'349'534.80 | 429'353.76 | -| benchmark rsim: 1024 tris 50 iters | iterations | 9'575'257.00 | 9'938'805.08 | 426'477.08 | -| benchmark rsim: 64 tris 500 iters | iterations | 100'496'980.00 | 105'507'466.02 | 4'568'874.51 | -| benchmark rsim: 1024 tris 500 iters | iterations | 101'306'464.00 | 107'632'024.01 | 4'495'631.81 | +| benchmark intrusive graph dependency handling with N nodes - 1 | creating nodes | 3.38 | 3.41 | 0.16 | +| benchmark intrusive graph dependency handling with N nodes - 1 | creating and adding dependencies | 21.98 | 22.21 | 0.42 | +| benchmark intrusive graph dependency handling with N nodes - 1 | adding and removing dependencies | 15.45 | 15.52 | 0.29 | +| benchmark intrusive graph dependency handling with N nodes - 1 | checking for dependencies | 1.68 | 1.71 | 0.04 | +| benchmark intrusive graph dependency handling with N nodes - 10 | creating nodes | 38.87 | 39.12 | 0.74 | +| benchmark intrusive graph dependency handling with N nodes - 10 | creating and adding dependencies | 228.26 | 230.25 | 6.41 | +| benchmark intrusive graph dependency handling with N nodes - 10 | adding and removing dependencies | 201.58 | 203.40 | 4.74 | +| benchmark intrusive graph dependency handling with N nodes - 10 | checking for dependencies | 23.07 | 23.44 | 2.84 | +| benchmark intrusive graph dependency handling with N nodes - 100 | creating nodes | 350.78 | 353.94 | 15.85 | +| benchmark intrusive graph dependency handling with N nodes - 100 | creating and adding dependencies | 4'183.29 | 4'239.49 | 109.22 | +| benchmark intrusive graph dependency handling with N nodes - 100 | adding and removing dependencies | 4'635.17 | 4'677.70 | 87.25 | +| benchmark intrusive graph dependency handling with N nodes - 100 | checking for dependencies | 1'532.82 | 1'545.79 | 45.65 | +| benchmark task handling | generating and deleting tasks | 6'009'088.00 | 6'075'775.41 | 41'571.34 | +| generating large task graphs | soup topology | 367'916.00 | 373'185.69 | 4'054.42 | +| generating large task graphs | chain topology | 37'439.00 | 37'946.28 | 882.64 | +| generating large task graphs | expanding tree topology | 57'187.00 | 58'251.06 | 1'575.37 | +| generating large task graphs | contracting tree topology | 59'891.00 | 60'643.10 | 1'266.33 | +| generating large task graphs | wave\_sim topology | 447'847.00 | 452'144.12 | 5'948.74 | +| generating large task graphs | jacobi topology | 116'339.00 | 118'080.46 | 1'915.22 | +| generating large command graphs for N nodes - 1 | soup topology | 1'047'664.00 | 1'055'448.54 | 3'713.00 | +| generating large command graphs for N nodes - 1 | chain topology | 77'154.00 | 78'085.53 | 1'643.38 | +| generating large command graphs for N nodes - 1 | expanding tree topology | 125'626.00 | 127'894.66 | 2'737.57 | +| generating large command graphs for N nodes - 1 | contracting tree topology | 153'829.00 | 156'020.23 | 2'408.58 | +| generating large command graphs for N nodes - 1 | wave\_sim topology | 1'036'275.00 | 1'043'151.27 | 11'625.93 | +| generating large command graphs for N nodes - 1 | jacobi topology | 260'753.00 | 264'580.51 | 4'019.63 | +| generating large command graphs for N nodes - 4 | soup topology | 1'418'490.00 | 1'429'866.34 | 6'738.21 | +| generating large command graphs for N nodes - 4 | chain topology | 282'905.00 | 326'160.29 | 13'529.65 | +| generating large command graphs for N nodes - 4 | expanding tree topology | 340'644.00 | 345'455.34 | 4'566.30 | +| generating large command graphs for N nodes - 4 | contracting tree topology | 348'620.00 | 354'289.41 | 3'510.05 | +| generating large command graphs for N nodes - 4 | wave\_sim topology | 2'367'431.00 | 2'383'734.89 | 8'902.14 | +| generating large command graphs for N nodes - 4 | jacobi topology | 475'700.00 | 559'399.49 | 50'539.11 | +| generating large command graphs for N nodes - 16 | soup topology | 1'910'444.00 | 1'921'828.01 | 8'007.35 | +| generating large command graphs for N nodes - 16 | chain topology | 1'093'112.00 | 1'098'087.00 | 3'942.66 | +| generating large command graphs for N nodes - 16 | expanding tree topology | 565'120.00 | 572'915.72 | 4'813.72 | +| generating large command graphs for N nodes - 16 | contracting tree topology | 622'549.00 | 702'925.57 | 66'137.22 | +| generating large command graphs for N nodes - 16 | wave\_sim topology | 4'276'384.00 | 4'534'497.97 | 361'465.14 | +| generating large command graphs for N nodes - 16 | jacobi topology | 1'079'397.00 | 1'243'954.08 | 105'816.88 | +| generating large instruction graphs for N devices - 1 | soup topology | 4'546'186.00 | 4'568'307.92 | 34'328.70 | +| generating large instruction graphs for N devices - 1 | chain topology | 673'175.00 | 681'185.87 | 4'121.84 | +| generating large instruction graphs for N devices - 1 | expanding tree topology | 805'928.00 | 891'632.68 | 13'605.41 | +| generating large instruction graphs for N devices - 1 | contracting tree topology | 921'547.00 | 1'008'060.45 | 46'755.48 | +| generating large instruction graphs for N devices - 1 | wave\_sim topology | 5'128'903.00 | 5'560'778.68 | 327'081.09 | +| generating large instruction graphs for N devices - 1 | jacobi topology | 1'112'600.00 | 1'212'967.38 | 71'629.08 | +| generating large instruction graphs for N devices - 4 | soup topology | 4'028'173.00 | 4'210'328.90 | 247'097.86 | +| generating large instruction graphs for N devices - 4 | chain topology | 593'434.00 | 603'855.04 | 10'359.68 | +| generating large instruction graphs for N devices - 4 | expanding tree topology | 798'925.00 | 886'897.03 | 26'977.91 | +| generating large instruction graphs for N devices - 4 | contracting tree topology | 1'034'441.00 | 1'038'999.90 | 3'490.54 | +| generating large instruction graphs for N devices - 4 | wave\_sim topology | 5'168'146.00 | 5'747'402.39 | 249'933.53 | +| generating large instruction graphs for N devices - 4 | jacobi topology | 1'117'389.00 | 1'232'219.04 | 68'160.47 | +| generating large instruction graphs for N devices - 16 | soup topology | 4'051'146.00 | 4'383'807.89 | 265'126.91 | +| generating large instruction graphs for N devices - 16 | chain topology | 680'630.00 | 690'516.04 | 6'867.30 | +| generating large instruction graphs for N devices - 16 | expanding tree topology | 895'558.00 | 904'178.10 | 3'854.20 | +| generating large instruction graphs for N devices - 16 | contracting tree topology | 1'041'595.00 | 1'046'442.83 | 4'877.72 | +| generating large instruction graphs for N devices - 16 | wave\_sim topology | 5'439'361.00 | 5'936'660.88 | 52'911.60 | +| generating large instruction graphs for N devices - 16 | jacobi topology | 1'305'916.00 | 1'314'613.21 | 5'254.04 | +| generating large instruction graphs for N devices without d2d copy support - 1 | soup topology | 4'552'869.00 | 4'575'963.39 | 10'023.14 | +| generating large instruction graphs for N devices without d2d copy support - 1 | chain topology | 673'255.00 | 681'768.44 | 4'956.02 | +| generating large instruction graphs for N devices without d2d copy support - 1 | expanding tree topology | 883'054.00 | 894'056.60 | 4'277.35 | +| generating large instruction graphs for N devices without d2d copy support - 1 | contracting tree topology | 1'031'035.00 | 1'037'119.37 | 4'602.65 | +| generating large instruction graphs for N devices without d2d copy support - 1 | wave\_sim topology | 5'795'357.00 | 5'834'351.95 | 28'565.51 | +| generating large instruction graphs for N devices without d2d copy support - 1 | jacobi topology | 1'256'733.00 | 1'265'617.73 | 5'756.07 | +| generating large instruction graphs for N devices without d2d copy support - 4 | soup topology | 4'025'608.00 | 4'181'148.18 | 233'659.88 | +| generating large instruction graphs for N devices without d2d copy support - 4 | chain topology | 676'572.00 | 684'970.31 | 5'057.84 | +| generating large instruction graphs for N devices without d2d copy support - 4 | expanding tree topology | 888'454.00 | 896'948.66 | 3'890.40 | +| generating large instruction graphs for N devices without d2d copy support - 4 | contracting tree topology | 1'034'892.00 | 1'040'412.77 | 8'298.81 | +| generating large instruction graphs for N devices without d2d copy support - 4 | wave\_sim topology | 5'842'045.00 | 5'869'444.26 | 29'111.97 | +| generating large instruction graphs for N devices without d2d copy support - 4 | jacobi topology | 1'116'207.00 | 1'165'563.12 | 67'755.48 | +| generating large instruction graphs for N devices without d2d copy support - 16 | soup topology | 4'050'606.00 | 4'367'296.34 | 269'856.09 | +| generating large instruction graphs for N devices without d2d copy support - 16 | chain topology | 603'624.00 | 612'173.42 | 5'478.21 | +| generating large instruction graphs for N devices without d2d copy support - 16 | expanding tree topology | 897'181.00 | 904'970.03 | 3'740.80 | +| generating large instruction graphs for N devices without d2d copy support - 16 | contracting tree topology | 1'043'027.00 | 1'047'209.71 | 3'330.86 | +| generating large instruction graphs for N devices without d2d copy support - 16 | wave\_sim topology | 5'213'092.00 | 5'794'738.75 | 289'746.28 | +| generating large instruction graphs for N devices without d2d copy support - 16 | jacobi topology | 1'308'752.00 | 1'319'494.02 | 6'087.50 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: single-threaded immediate graph generation | soup topology | 1'076'561.00 | 1'082'635.75 | 7'569.35 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: single-threaded immediate graph generation | chain topology | 65'663.00 | 66'321.32 | 1'422.07 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: single-threaded immediate graph generation | expanding tree topology | 146'286.00 | 148'501.41 | 2'696.39 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: single-threaded immediate graph generation | contracting tree topology | 132'650.00 | 134'805.87 | 2'586.14 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: single-threaded immediate graph generation | wave\_sim topology | 1'039'782.00 | 1'044'835.49 | 3'455.67 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: single-threaded immediate graph generation | jacobi topology | 261'514.00 | 265'696.28 | 4'524.87 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > immediate submission to a scheduler thread | soup topology | 2'030'392.00 | 2'049'145.38 | 17'628.59 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > immediate submission to a scheduler thread | chain topology | 202'542.00 | 225'972.25 | 15'589.34 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > immediate submission to a scheduler thread | expanding tree topology | 387'213.00 | 410'686.27 | 11'719.88 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > immediate submission to a scheduler thread | contracting tree topology | 449'330.00 | 470'912.61 | 14'423.36 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > immediate submission to a scheduler thread | wave\_sim topology | 2'525'090.00 | 2'572'829.91 | 90'684.44 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > immediate submission to a scheduler thread | jacobi topology | 778'405.00 | 787'688.27 | 11'053.71 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: throttled single-threaded graph generation at 10 us per task | soup topology | 2'075'307.00 | 2'089'001.95 | 6'669.97 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: throttled single-threaded graph generation at 10 us per task | chain topology | 370'652.00 | 371'840.46 | 1'458.37 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: throttled single-threaded graph generation at 10 us per task | expanding tree topology | 429'343.00 | 439'106.03 | 10'516.23 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: throttled single-threaded graph generation at 10 us per task | contracting tree topology | 459'650.00 | 464'043.53 | 3'889.60 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: throttled single-threaded graph generation at 10 us per task | wave\_sim topology | 3'080'935.00 | 3'092'174.92 | 5'372.42 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: throttled single-threaded graph generation at 10 us per task | jacobi topology | 765'802.00 | 772'106.64 | 2'863.72 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > throttled submission to a scheduler thread at 10 us per task | soup topology | 2'580'666.00 | 2'750'203.39 | 85'450.07 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > throttled submission to a scheduler thread at 10 us per task | chain topology | 377'054.00 | 406'665.22 | 10'202.95 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > throttled submission to a scheduler thread at 10 us per task | expanding tree topology | 633'119.00 | 649'747.73 | 18'494.89 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > throttled submission to a scheduler thread at 10 us per task | contracting tree topology | 690'318.00 | 702'948.22 | 15'514.25 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > throttled submission to a scheduler thread at 10 us per task | wave\_sim topology | 2'635'500.00 | 2'939'286.92 | 67'572.76 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > throttled submission to a scheduler thread at 10 us per task | jacobi topology | 787'473.00 | 807'583.27 | 12'886.99 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: single-threaded immediate graph generation | soup topology | 1'441'884.00 | 1'452'529.55 | 6'793.23 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: single-threaded immediate graph generation | chain topology | 328'472.00 | 333'296.97 | 5'699.89 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: single-threaded immediate graph generation | expanding tree topology | 296'751.00 | 301'239.14 | 3'779.73 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: single-threaded immediate graph generation | contracting tree topology | 355'633.00 | 359'700.67 | 3'348.22 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: single-threaded immediate graph generation | wave\_sim topology | 2'018'097.00 | 2'371'921.31 | 72'331.56 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: single-threaded immediate graph generation | jacobi topology | 558'749.00 | 565'420.55 | 4'639.54 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > immediate submission to a scheduler thread | soup topology | 2'843'444.00 | 2'865'852.17 | 18'101.62 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > immediate submission to a scheduler thread | chain topology | 955'161.00 | 1'003'902.45 | 21'856.33 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > immediate submission to a scheduler thread | expanding tree topology | 981'441.00 | 1'001'867.23 | 16'905.56 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > immediate submission to a scheduler thread | contracting tree topology | 968'506.00 | 1'000'374.81 | 16'249.19 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > immediate submission to a scheduler thread | wave\_sim topology | 5'924'421.00 | 6'561'839.59 | 76'466.86 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > immediate submission to a scheduler thread | jacobi topology | 1'594'083.00 | 1'611'381.87 | 18'901.56 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: throttled single-threaded graph generation at 10 us per task | soup topology | 2'445'269.00 | 2'459'821.81 | 7'599.45 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: throttled single-threaded graph generation at 10 us per task | chain topology | 622'760.00 | 626'320.26 | 3'380.32 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: throttled single-threaded graph generation at 10 us per task | expanding tree topology | 646'214.00 | 652'069.02 | 3'353.90 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: throttled single-threaded graph generation at 10 us per task | contracting tree topology | 659'540.00 | 664'915.18 | 4'340.54 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: throttled single-threaded graph generation at 10 us per task | wave\_sim topology | 4'075'272.00 | 4'175'681.49 | 157'648.19 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: throttled single-threaded graph generation at 10 us per task | jacobi topology | 1'061'973.00 | 1'067'204.24 | 4'359.77 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > throttled submission to a scheduler thread at 10 us per task | soup topology | 3'191'675.00 | 3'224'306.73 | 15'368.10 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > throttled submission to a scheduler thread at 10 us per task | chain topology | 982'011.00 | 998'932.07 | 14'070.29 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > throttled submission to a scheduler thread at 10 us per task | expanding tree topology | 1'003'863.00 | 1'019'570.94 | 10'336.68 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > throttled submission to a scheduler thread at 10 us per task | contracting tree topology | 1'009'413.00 | 1'022'664.38 | 13'680.67 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > throttled submission to a scheduler thread at 10 us per task | wave\_sim topology | 5'951'602.00 | 6'547'925.05 | 70'056.86 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > throttled submission to a scheduler thread at 10 us per task | jacobi topology | 1'567'373.00 | 1'606'706.37 | 19'419.08 | +| normalizing randomized box sets - 2d | small, native | 600.64 | 614.46 | 17.55 | +| normalizing randomized box sets - 2d | small, embedded in 3d | 673.65 | 682.54 | 18.54 | +| normalizing randomized box sets - 2d | medium, native | 5'924.80 | 6'002.12 | 202.59 | +| normalizing randomized box sets - 2d | medium, embedded in 3d | 6'737.25 | 6'824.41 | 199.97 | +| normalizing randomized box sets - 2d | large, native | 195'278.00 | 197'515.84 | 3'397.05 | +| normalizing randomized box sets - 2d | large, embedded in 3d | 212'351.00 | 214'464.71 | 3'467.00 | +| normalizing randomized box sets - 3d | small - native | 2'430.73 | 2'468.73 | 79.23 | +| normalizing randomized box sets - 3d | medium - native | 8'981.50 | 9'111.00 | 259.23 | +| normalizing randomized box sets - 3d | large - native | 2'080'847.00 | 2'102'312.91 | 10'345.04 | +| normalizing a fully mergeable tiling of boxes - 1 | small, native | 33.30 | 33.90 | 1.01 | +| normalizing a fully mergeable tiling of boxes - 1 | small, embedded in 3d | 44.97 | 45.51 | 0.87 | +| normalizing a fully mergeable tiling of boxes - 1 | medium, native | 261.65 | 264.79 | 10.08 | +| normalizing a fully mergeable tiling of boxes - 1 | medium, embedded in 3d | 479.45 | 487.68 | 10.99 | +| normalizing a fully mergeable tiling of boxes - 1 | large, native | 8'498.67 | 8'687.93 | 968.31 | +| normalizing a fully mergeable tiling of boxes - 1 | large, embedded in 3d | 11'945.33 | 12'076.32 | 250.10 | +| normalizing a fully mergeable tiling of boxes - 2 | small, native | 105.40 | 107.56 | 2.24 | +| normalizing a fully mergeable tiling of boxes - 2 | small, embedded in 3d | 107.10 | 108.23 | 2.53 | +| normalizing a fully mergeable tiling of boxes - 2 | medium, native | 857.45 | 878.87 | 100.49 | +| normalizing a fully mergeable tiling of boxes - 2 | medium, embedded in 3d | 919.18 | 926.62 | 21.09 | +| normalizing a fully mergeable tiling of boxes - 2 | large, native | 34'273.00 | 34'798.38 | 952.79 | +| normalizing a fully mergeable tiling of boxes - 2 | large, embedded in 3d | 37'419.00 | 37'962.51 | 1'099.64 | +| normalizing a fully mergeable tiling of boxes - 3 | small, native | 207.32 | 209.15 | 8.73 | +| normalizing a fully mergeable tiling of boxes - 3 | medium, native | 1'474.47 | 1'500.51 | 41.48 | +| normalizing a fully mergeable tiling of boxes - 3 | large, native | 44'452.00 | 45'540.93 | 1'467.42 | +| performing set operations between randomized regions - 2d | union, small, native | 892.24 | 900.38 | 20.91 | +| performing set operations between randomized regions - 2d | union, small, embedded in 3d | 1'011.44 | 1'031.54 | 35.97 | +| performing set operations between randomized regions - 2d | intersection, small, native | 217.00 | 220.10 | 4.82 | +| performing set operations between randomized regions - 2d | intersection, small, embedded in 3d | 253.80 | 257.65 | 9.23 | +| performing set operations between randomized regions - 2d | difference, small, native | 1'030.68 | 1'060.81 | 133.17 | +| performing set operations between randomized regions - 2d | difference, small, embedded in 3d | 1'201.19 | 1'219.43 | 36.84 | +| performing set operations between randomized regions - 2d | union, medium, native | 11'957.00 | 12'146.75 | 392.15 | +| performing set operations between randomized regions - 2d | union, medium, embedded in 3d | 13'043.50 | 13'276.12 | 494.33 | +| performing set operations between randomized regions - 2d | intersection, medium, native | 2'253.33 | 2'286.58 | 53.18 | +| performing set operations between randomized regions - 2d | intersection, medium, embedded in 3d | 2'397.09 | 2'431.37 | 58.02 | +| performing set operations between randomized regions - 2d | difference, medium, native | 7'764.25 | 7'897.65 | 278.74 | +| performing set operations between randomized regions - 2d | difference, medium, embedded in 3d | 8'332.00 | 8'459.00 | 234.46 | +| performing set operations between randomized regions - 2d | union, large, native | 157'036.00 | 158'675.39 | 1'839.09 | +| performing set operations between randomized regions - 2d | union, large, embedded in 3d | 160'613.00 | 162'190.41 | 2'078.44 | +| performing set operations between randomized regions - 2d | intersection, large, native | 18'679.50 | 18'929.98 | 594.67 | +| performing set operations between randomized regions - 2d | intersection, large, embedded in 3d | 22'196.50 | 22'441.06 | 495.17 | +| performing set operations between randomized regions - 2d | difference, large, native | 580'490.00 | 587'403.25 | 12'414.48 | +| performing set operations between randomized regions - 2d | difference, large, embedded in 3d | 635'264.00 | 640'212.64 | 3'248.20 | +| performing set operations between randomized regions - 3d | union, small, native | 3'807.00 | 3'865.70 | 125.22 | +| performing set operations between randomized regions - 3d | intersection, small, native | 143.71 | 146.14 | 3.25 | +| performing set operations between randomized regions - 3d | difference, small, native | 1'323.47 | 1'346.01 | 32.80 | +| performing set operations between randomized regions - 3d | union, medium, native | 19'586.00 | 19'892.12 | 554.67 | +| performing set operations between randomized regions - 3d | intersection, medium, native | 2'475.36 | 2'496.72 | 61.60 | +| performing set operations between randomized regions - 3d | difference, medium, native | 11'073.67 | 11'253.50 | 282.98 | +| performing set operations between randomized regions - 3d | union, large, native | 2'173'041.00 | 2'180'714.64 | 5'692.62 | +| performing set operations between randomized regions - 3d | intersection, large, native | 14'837.00 | 14'981.45 | 383.95 | +| performing set operations between randomized regions - 3d | difference, large, native | 6'308'539.00 | 6'368'649.31 | 95'584.15 | +| normalizing a fully mergeable, complex tiling of boxes - 2d | small, native | 1'926.00 | 1'951.89 | 70.24 | +| normalizing a fully mergeable, complex tiling of boxes - 2d | small, embedded in 3d | 2'555.70 | 2'596.72 | 79.95 | +| normalizing a fully mergeable, complex tiling of boxes - 2d | large, native | 1'520'483.00 | 1'526'402.91 | 4'686.07 | +| normalizing a fully mergeable, complex tiling of boxes - 2d | large, embedded in 3d | 1'718'659.00 | 1'725'691.50 | 8'774.45 | +| benchmark independent task pattern with 100 tasks | task generation | 7'061'026.00 | 7'670'266.23 | 560'347.99 | +| benchmark independent task pattern with 500 tasks | task generation | 43'312'153.00 | 47'368'069.39 | 2'859'248.37 | +| benchmark independent task pattern with 2500 tasks | task generation | 219'050'145.00 | 236'935'981.34 | 11'142'161.63 | +| benchmark stencil: 1D 50 iters oversub 1 | iterations | 2'730'519.00 | 2'978'010.96 | 79'242.71 | +| benchmark stencil: 1D 500 iters oversub 1 | iterations | 26'543'131.00 | 28'176'606.84 | 1'153'173.56 | +| benchmark stencil: 1D 50 iters oversub 3 | iterations | 5'922'635.00 | 6'342'641.13 | 358'462.19 | +| benchmark stencil: 1D 500 iters oversub 3 | iterations | 59'889'140.00 | 63'131'450.11 | 3'466'730.53 | +| benchmark stencil: 2D 30 iters oversub 1 | iterations | 4'252'927.00 | 4'587'725.27 | 235'745.61 | +| benchmark stencil: 2D 300 iters oversub 1 | iterations | 42'679'065.00 | 46'429'438.72 | 2'617'291.92 | +| benchmark stencil: 2D 30 iters oversub 3 | iterations | 13'745'308.00 | 14'624'735.21 | 735'497.97 | +| benchmark stencil: 2D 300 iters oversub 3 | iterations | 136'990'420.00 | 144'968'017.24 | 6'377'739.47 | +| benchmark rsim: 64 tris 50 iters | iterations | 9'572'690.00 | 10'538'516.48 | 387'054.85 | +| benchmark rsim: 1024 tris 50 iters | iterations | 9'554'576.00 | 10'350'072.82 | 412'802.17 | +| benchmark rsim: 64 tris 500 iters | iterations | 100'299'471.00 | 105'120'902.42 | 4'804'969.50 | +| benchmark rsim: 1024 tris 500 iters | iterations | 100'697'412.00 | 106'642'514.60 | 4'823'696.02 | All numbers are in nanoseconds.