From f6764d1dca9a2870329d7b3a3d22a9cc215f85d3 Mon Sep 17 00:00:00 2001 From: Philip Salzmann Date: Mon, 25 Nov 2024 12:33:31 +0100 Subject: [PATCH 1/2] Generate single await-push command per buffer for all local chunks This brings await-pushes in line with pushes, where we already compute the union of all regions required by remote chunks executed on the same node. --- include/grid.h | 9 ++++++++ src/command_graph_generator.cc | 31 +++++++++++++++++----------- test/command_graph_transfer_tests.cc | 24 +++++++++++++++++++++ 3 files changed, 52 insertions(+), 12 deletions(-) diff --git a/include/grid.h b/include/grid.h index 55e716ec4..61bc440ea 100644 --- a/include/grid.h +++ b/include/grid.h @@ -273,6 +273,15 @@ class region_builder { m_boxes.push_back(box); } + // Adds a set of boxes to the region builder, skipping empty boxes, + // by calling `add` for each element instead of a single `insert(end)`. + void add(const box_vector& boxes) & { + m_boxes.reserve(m_boxes.size() + boxes.size()); + for(const auto& b : boxes) { + add(b); + } + } + void add(const region& region) & { if(region.empty()) return; m_normalized = m_boxes.empty(); diff --git a/src/command_graph_generator.cc b/src/command_graph_generator.cc index 923d9c43d..6a4cecd21 100644 --- a/src/command_graph_generator.cc +++ b/src/command_graph_generator.cc @@ -387,33 +387,40 @@ void command_graph_generator::generate_pushes(batch& current_batch, const task& } } -// TODO: We currently generate an await push command for each local chunk, whereas we only generate a single push command for all remote chunks void command_graph_generator::generate_await_pushes(batch& current_batch, const task& tsk, const assigned_chunks_with_requirements& chunks_with_requirements) { + std::unordered_map> per_buffer_required_boxes; + for(auto& [_, requirements] : chunks_with_requirements.local_chunks) { for(auto& [bid, consumed, _] : requirements) { if(consumed.empty()) continue; auto& buffer = m_buffers.at(bid); const auto local_sources = buffer.local_last_writer.get_region_values(consumed); - region_builder<3> missing_part_boxes; + box_vector<3> missing_parts_boxes; for(const auto& [box, wcs] : local_sources) { // Note that we initialize all buffers as fresh, so this doesn't trigger for uninitialized reads - if(!box.empty() && !wcs.is_fresh()) { missing_part_boxes.add(box); } + if(!box.empty() && !wcs.is_fresh()) { missing_parts_boxes.push_back(box); } } - // There is data we don't yet have locally. Generate an await push command for it. - if(!missing_part_boxes.empty()) { - const auto missing_parts = std::move(missing_part_boxes).into_region(); + if(!missing_parts_boxes.empty()) { assert(m_num_nodes > 1); - auto* const ap_cmd = create_command(current_batch, transfer_id(tsk.get_id(), bid, no_reduction_id), missing_parts, - [&](const auto& record_debug_info) { record_debug_info(buffer.debug_name); }); - generate_anti_dependencies(tsk, bid, buffer.local_last_writer, missing_parts, ap_cmd); - generate_epoch_dependencies(ap_cmd); - // Remember that we have this data now - buffer.local_last_writer.update_region(missing_parts, {ap_cmd, true /* is_replicated */}); + auto& required_boxes = per_buffer_required_boxes[bid]; // allow default-insert + required_boxes.add(missing_parts_boxes); } } } + + // There is data we don't yet have locally. Generate an await push command for it. + for(auto& [bid, boxes] : per_buffer_required_boxes) { + auto& buffer = m_buffers.at(bid); + auto region = std::move(boxes).into_region(); // moved-from after next line! + auto* const ap_cmd = create_command(current_batch, transfer_id(tsk.get_id(), bid, no_reduction_id), std::move(region), + [&](const auto& record_debug_info) { record_debug_info(buffer.debug_name); }); + generate_anti_dependencies(tsk, bid, buffer.local_last_writer, ap_cmd->get_region(), ap_cmd); + generate_epoch_dependencies(ap_cmd); + // Remember that we have this data now + buffer.local_last_writer.update_region(ap_cmd->get_region(), {ap_cmd, true /* is_replicated */}); + } } void command_graph_generator::update_local_buffer_fresh_regions(const task& tsk, const std::unordered_map>& per_buffer_local_writes) { diff --git a/test/command_graph_transfer_tests.cc b/test/command_graph_transfer_tests.cc index 2535ed756..152c8800d 100644 --- a/test/command_graph_transfer_tests.cc +++ b/test/command_graph_transfer_tests.cc @@ -115,6 +115,30 @@ TEST_CASE("command_graph_generator generates a single push command per buffer an CHECK(cctx.query(buf1.get_id()).on(1)[1]->target_regions == push_regions<1>({{0, region<1>{{box<1>{96, 128}}}}})); } +TEST_CASE("command_graph_generator generates a single await_push command per buffer and task", "[command_graph_generator][command-graph]") { // + cdag_test_context cctx(2); + + const range<1> test_range = {128}; + auto buf0 = cctx.create_buffer(test_range); + auto buf1 = cctx.create_buffer(test_range); + + // Initialize buffers across both nodes + cctx.device_compute(test_range).name("init").discard_write(buf0, acc::one_to_one{}).discard_write(buf1, acc::one_to_one{}).submit(); + + // Read in reverse order, but split task into 4 chunks each + cctx.set_test_chunk_multiplier(4); + cctx.device_compute(test_range).read(buf0, test_utils::access::reverse_one_to_one{}).read(buf1, test_utils::access::reverse_one_to_one{}).submit(); + + CHECK(cctx.query().count_per_node() == 2); + CHECK(cctx.query().count_per_node() == 2); + + // The union of the required regions is just the full other half + CHECK(cctx.query().on(0).iterate()[0]->await_region == region_cast<3>(region<1>{box<1>{64, 128}})); + CHECK(cctx.query().on(0).iterate()[1]->await_region == region_cast<3>(region<1>{box<1>{64, 128}})); + CHECK(cctx.query().on(1).iterate()[0]->await_region == region_cast<3>(region<1>{box<1>{0, 64}})); + CHECK(cctx.query().on(1).iterate()[1]->await_region == region_cast<3>(region<1>{box<1>{0, 64}})); +} + TEST_CASE("command_graph_generator doesn't generate data transfer commands for the same buffer and range more than once", "[command_graph_generator][command-graph]") { cdag_test_context cctx(2); From f9a8656765eae7a65ad6ffef3b2d4762256a74f9 Mon Sep 17 00:00:00 2001 From: Philip Salzmann Date: Fri, 20 Dec 2024 17:45:57 +0100 Subject: [PATCH 2/2] Update benchmark results for single await push cmd --- 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 b787c4b88..32787ccdb 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,5544,2217600,4.4982,4.4850,4.5300,0.1066,0.0584,0.1718,"benchmark,group:graph-nodes","4.4814,4.4816,5.0651,4.4796,4.4814,4.4796,4.4688,4.4814,4.4814,4.4798,4.4832,4.4796,4.4814,4.4670,4.4832,4.4816,4.4814,4.4814,4.4814,4.4834,4.4670,4.4814,4.4814,4.4814,4.4814,4.4814,4.4814,4.4688,4.4798,4.4814,4.4832,4.4814,4.4796,4.4816,4.4688,4.4814,4.4814,4.4796,4.4832,4.4814,4.4796,4.4670,5.1122,4.4832,4.4814,4.4816,4.4796,4.4814,4.4814,4.4688,4.4814,4.4814,4.4814,4.4814,4.4814,4.4796,4.4688,4.4796,4.4814,4.4816,4.4814,4.4814,4.4796,4.4688,4.4814,4.4798,4.4832,4.4796,4.4814,4.4834,4.4814,4.4814,4.4832,4.4670,4.4814,4.4816,4.4814,4.4796,4.4814,4.4814,4.4688,4.4814,5.1320,4.4814,4.4814,4.4814,4.4816,4.4814,4.4670,4.4814,4.4796,4.4834,4.4796,4.4832,4.4814,4.4670,4.4814,4.4796,4.4814,4.4832" -benchmark intrusive graph dependency handling with N nodes - 1,creating and adding dependencies,100,1196,2392000,22.3084,22.2470,22.4598,0.4339,0.0100,0.8112,"benchmark,group:graph-nodes","22.2483,22.2475,22.2726,22.2567,22.2475,22.2483,22.2483,22.2475,22.2149,22.2475,22.2483,22.2475,22.2483,22.2475,22.2483,22.2475,22.2567,22.2475,22.2475,22.2483,22.2140,22.2483,22.2475,22.2483,22.2391,22.2483,22.2475,22.2483,22.2475,22.2475,22.2400,22.2475,22.2232,22.2475,22.2567,22.2475,22.2483,25.6656,22.2567,22.2475,22.2483,22.2559,22.2483,22.2475,22.2483,22.2475,22.2140,22.2475,22.2475,22.2483,22.2475,22.2483,22.2475,22.2483,22.2475,22.2483,22.2475,22.2483,22.2391,22.2308,22.2483,22.2475,22.2483,22.2475,22.2483,22.2475,22.2567,22.2559,22.2567,22.2475,22.2475,22.2149,22.2475,22.2567,22.2559,24.9875,22.2567,22.2391,22.2567,22.2559,22.2567,22.2559,22.2567,22.2391,22.2232,22.2475,22.2475,22.2483,22.2475,22.2483,22.2475,22.2483,22.2475,22.2483,22.2475,22.2475,22.2483,22.2140,22.2567,22.2559" -benchmark intrusive graph dependency handling with N nodes - 1,adding and removing dependencies,100,1604,2406000,15.5619,15.5071,15.6963,0.4381,0.2244,0.7127,"benchmark,group:graph-nodes","15.4894,15.4832,15.5337,15.4894,15.4894,15.4956,15.4894,15.4894,15.4582,15.4894,15.4894,15.4894,15.4900,15.4956,15.4894,18.2756,15.4582,15.4894,15.4894,15.4894,15.4900,15.4894,15.4894,15.4520,15.4894,15.4894,15.4894,15.4832,15.4956,15.4894,15.4582,15.4894,15.4894,15.4956,15.4894,15.4894,15.4894,15.4582,15.4832,15.4956,15.4894,15.4900,15.4894,15.4832,15.4582,15.4832,15.4900,15.4894,15.4894,15.4894,15.4894,15.4520,15.4894,15.4894,15.4894,17.7382,15.4832,15.4963,15.4894,15.4520,15.4894,15.4894,15.4769,15.4900,15.4956,15.4894,15.4520,15.4894,15.4900,15.4894,15.4832,15.4894,15.4894,15.4582,15.4832,15.4894,15.4894,15.4894,15.4894,15.4894,15.4582,15.4832,15.4894,15.4894,15.4838,15.4894,15.4894,15.4582,15.4894,15.4838,15.4894,15.4956,15.4894,15.4956,15.4582,18.1128,15.4894,15.4894,15.4832,15.4900" -benchmark intrusive graph dependency handling with N nodes - 1,checking for dependencies,100,17095,1709500,1.4556,1.4508,1.4674,0.0397,0.0223,0.0641,"benchmark,group:graph-nodes","1.4487,1.4487,1.4504,1.4487,1.4487,1.4487,1.4487,1.6772,1.4487,1.4487,1.4487,1.4486,1.4487,1.4487,1.4487,1.4481,1.4481,1.4481,1.4487,1.4487,1.4487,1.4487,1.4487,1.4487,1.4487,1.4487,1.4487,1.4487,1.4487,1.4487,1.4487,1.4481,1.4481,1.4481,1.4487,1.4487,1.4487,1.4487,1.4487,1.4487,1.4487,1.4487,1.4487,1.4487,1.4487,1.4487,1.4487,1.6725,1.4487,1.4487,1.4487,1.4487,1.4481,1.4487,1.4487,1.4486,1.4487,1.4487,1.4487,1.4487,1.4487,1.4487,1.4487,1.4487,1.4487,1.4487,1.4487,1.4487,1.4481,1.4487,1.4487,1.4487,1.4487,1.4487,1.4487,1.4487,1.4487,1.4487,1.4487,1.4487,1.4487,1.4487,1.4487,1.4487,1.4481,1.4481,1.4481,1.6931,1.4487,1.4487,1.4487,1.4487,1.4487,1.4487,1.4487,1.4487,1.4487,1.4481,1.4481,1.4481" -benchmark intrusive graph dependency handling with N nodes - 10,creating nodes,100,637,2484300,30.3172,30.1924,30.6278,0.8751,0.0075,1.5880,"benchmark,group:graph-nodes","30.1805,30.1947,30.2261,30.1962,30.1947,30.1947,30.1962,30.1790,30.1805,30.1790,30.1962,30.1947,30.1962,30.1947,30.1962,30.1962,30.1947,30.1962,30.1947,30.1962,30.1790,30.1805,30.1790,30.1962,30.1962,30.1947,30.1962,30.1947,30.1962,30.1947,30.1962,30.1947,30.1805,30.1790,30.1790,30.1962,30.1947,36.6279,30.1947,30.1962,30.1947,30.1962,30.1947,30.1962,30.1947,30.1962,30.1962,30.1947,30.1962,30.1947,30.1962,30.1947,30.1805,30.1790,30.1805,30.1790,30.1790,30.1805,30.1790,30.1805,30.1947,30.1962,30.1947,30.1962,30.1962,30.1947,30.1962,30.1947,30.1962,30.1947,30.1962,30.1947,30.1962,30.1962,30.1947,30.1962,30.1947,30.1962,30.1947,30.1962,30.1947,30.1962,30.1962,30.1947,30.1962,30.1947,30.1962,30.1947,36.2512,30.1962,30.1947,30.1962,30.1947,30.1805,30.1790,30.1947,30.1962,30.1947,30.1805,30.1790" -benchmark intrusive graph dependency handling with N nodes - 10,creating and adding dependencies,100,124,2504800,230.3029,229.5781,232.0507,5.5458,2.6877,9.4460,"benchmark,group:graph-nodes","229.2903,229.0403,232.1210,229.7742,259.8306,229.4516,229.5323,228.9597,229.2903,229.6935,229.6129,229.0403,228.9597,230.3468,228.8065,229.6935,229.6935,228.9677,230.0161,228.7258,229.6935,229.7742,228.4839,229.6129,227.9919,228.3145,228.8871,229.3710,228.8065,229.0484,229.2097,228.4032,229.1290,229.5323,229.5323,229.1290,229.2903,229.6935,229.6935,255.7097,228.4839,228.9677,228.8871,228.6452,229.6935,229.2903,229.5323,229.8548,230.0161,229.7742,228.8065,228.8065,230.5000,228.8065,229.8548,228.8790,228.8065,228.4839,229.5323,229.2903,229.2097,229.7742,228.8871,228.5645,228.8871,229.6935,230.3387,229.6935,229.2097,229.5323,228.8790,229.7742,229.6935,229.1290,268.2339,229.6129,229.6129,229.7742,229.9355,229.6129,229.9355,229.6935,229.6129,228.7177,228.6452,228.7258,229.3710,228.8065,229.5323,229.4516,229.7742,229.2097,230.0161,229.7823,229.5323,229.4516,229.5323,228.9677,229.2903,229.1290" -benchmark intrusive graph dependency handling with N nodes - 10,adding and removing dependencies,100,116,2494000,214.8947,214.2953,216.3966,4.3098,0.5974,7.8730,"benchmark,group:graph-nodes","214.6983,213.2328,216.2500,214.7931,214.4397,214.2672,214.3534,214.4397,214.0086,214.3534,214.3534,214.3621,214.4397,214.3534,214.0948,213.9224,214.5345,214.2672,214.2672,214.3534,214.2759,214.3534,213.4914,246.8276,215.3966,215.3879,215.5690,215.4741,215.3103,215.3879,214.9655,215.5603,215.6552,215.6466,215.4828,215.3017,215.3879,214.3534,213.7500,214.0948,214.1810,214.3534,214.4397,214.5259,214.6121,213.7500,214.5345,214.6121,214.1810,214.0086,214.1034,214.0948,213.2328,214.5259,214.0948,214.0948,214.3621,214.3534,214.5259,213.7500,214.1810,214.5259,214.5259,242.5948,214.0948,214.0948,213.7500,213.6638,213.9224,214.0086,213.9224,213.9224,214.0948,213.5776,213.4914,213.8362,213.9224,213.9224,213.8362,214.0948,213.4052,213.9224,214.1810,214.0086,213.9310,213.9224,214.0086,213.4914,213.7500,214.0948,214.0086,213.8362,213.8362,213.7500,213.3190,214.0086,214.0948,213.8362,213.9224,214.3621" -benchmark intrusive graph dependency handling with N nodes - 10,checking for dependencies,100,1087,2391400,22.8853,22.7789,23.1334,0.8201,0.4554,1.3123,"benchmark,group:graph-nodes","22.8013,22.7001,22.5345,22.5897,22.7645,22.5888,27.5391,22.7001,22.5897,22.8105,22.7001,22.6072,22.6541,22.6909,22.8197,22.7737,22.8197,22.7001,22.6173,22.6633,22.8197,22.8289,22.7829,22.7737,22.5069,22.6164,22.6725,22.7185,22.8289,22.8013,22.7001,22.8289,22.8197,22.6725,22.7185,22.8289,22.8013,22.7001,22.5989,22.8289,22.6909,22.7185,22.7737,22.8105,22.7001,22.6081,27.7691,22.6081,22.8565,22.7277,22.7553,22.8197,22.7001,22.6072,22.6532,22.8197,22.8298,22.8289,22.8197,22.7001,22.6072,22.8206,22.6992,22.7369,22.8298,22.8197,22.7001,22.8197,22.8197,22.8197,22.7461,22.8197,22.8289,22.7001,22.6265,22.6633,22.8197,22.8289,22.7829,22.7001,22.8197,22.8289,22.8289,22.8197,22.7544,22.8289,27.2438,22.4600,22.8197,22.8197,22.8197,22.7093,22.7461,22.7921,22.6992,22.8197,22.8289,22.8197,22.8197,22.7553" -benchmark intrusive graph dependency handling with N nodes - 100,creating nodes,100,63,2513700,395.7938,394.6987,398.5830,7.9086,1.1900,14.3381,"benchmark,group:graph-nodes","394.8413,394.0476,397.0794,394.2063,394.2063,394.0476,394.0635,394.5238,394.2063,392.9365,394.0476,395.1587,395.1587,394.8413,394.0476,394.3651,391.5079,394.0476,395.1746,394.3651,394.8413,394.8413,394.3651,391.5079,394.0476,395.4762,395.1587,394.6984,394.0476,394.3651,391.6667,395.4762,394.3651,394.2222,394.6825,395.0000,394.0476,448.2857,394.3651,395.3175,396.1111,396.2698,395.8095,395.9524,396.7619,393.7302,395.0000,395.0000,396.1270,396.1111,395.4762,394.6984,392.1429,395.0000,394.8413,395.3175,396.2698,395.7937,394.8571,393.4127,393.5714,396.5873,396.7619,395.7937,395.0000,394.6984,395.0000,392.1429,395.0000,394.5238,394.8571,395.3175,396.9048,396.7619,394.5238,396.7619,395.3175,452.7302,394.2063,394.6984,395.0000,394.2063,392.6190,395.3175,395.0159,394.5238,394.0476,394.5238,395.1746,391.4921,395.3175,394.5238,394.6825,394.8413,394.3651,395.4762,391.5079,394.3651,394.3651,394.5238" -benchmark intrusive graph dependency handling with N nodes - 100,creating and adding dependencies,100,7,2769200,4091.9429,4082.0171,4117.0586,72.1333,11.8464,132.0765,"benchmark,group:graph-nodes","4077.4286,4081.7143,4149.0000,4091.7143,4061.7143,4078.8571,4084.5714,4068.8571,4100.2857,4070.2857,4086.0000,4084.5714,4088.8571,4090.4286,4096.0000,4077.4286,4076.0000,4083.2857,4067.4286,4081.7143,4094.5714,4069.0000,4091.7143,4101.7143,4078.8571,4081.7143,4074.5714,4083.1429,4086.1429,4094.5714,4087.4286,4080.2857,4093.1429,4632.8571,4096.0000,4080.2857,4070.2857,4074.5714,4086.0000,4074.5714,4091.8571,4084.5714,4077.4286,4084.7143,4093.1429,4100.2857,4081.7143,4073.1429,4096.0000,4077.5714,4084.5714,4088.8571,4077.5714,4084.5714,4103.1429,4090.4286,4077.4286,4080.2857,4081.8571,4067.4286,4080.2857,4091.7143,4084.7143,4066.0000,4068.8571,4078.8571,4058.8571,4544.0000,4093.2857,4068.8571,4068.8571,4086.0000,4071.7143,4074.5714,4070.2857,4074.5714,4078.8571,4073.1429,4084.7143,4083.1429,4087.4286,4087.5714,4086.0000,4076.0000,4061.7143,4074.5714,4076.0000,4074.5714,4086.0000,4094.5714,4073.1429,4083.1429,4081.7143,4073.1429,4068.8571,4077.5714,4064.5714,4080.2857,4088.8571,4073.1429" -benchmark intrusive graph dependency handling with N nodes - 100,adding and removing dependencies,100,6,2717400,4622.1500,4609.9833,4652.9617,86.5703,8.4423,157.2849,"benchmark,group:graph-nodes","4611.8333,4610.0000,4653.5000,4613.3333,4618.5000,4628.3333,4613.5000,4615.1667,4610.0000,4611.8333,4613.3333,4611.8333,4615.0000,4603.3333,4613.3333,4611.6667,4620.1667,4608.3333,4618.5000,4615.0000,4611.6667,4615.1667,4613.3333,4608.5000,4608.3333,4601.8333,4613.3333,4611.8333,4611.6667,4611.6667,4606.8333,4615.0000,4611.8333,5222.8333,4608.5000,4606.6667,4611.8333,4620.0000,4600.0000,4588.3333,4595.1667,4608.3333,4613.5000,4608.3333,4606.8333,4606.6667,4601.8333,4611.6667,4608.5000,4606.6667,4623.5000,4620.1667,4603.3333,4603.5000,4615.0000,4610.1667,4610.0000,4618.5000,4611.6667,4605.0000,4600.0000,4596.8333,4616.6667,4606.8333,4615.0000,4605.0000,4610.1667,4610.0000,4601.8333,5227.8333,4611.8333,4601.6667,4613.5000,4601.6667,4605.1667,4611.6667,4606.8333,4606.6667,4605.1667,4605.0000,4611.8333,4601.6667,4626.8333,4608.3333,4605.1667,4590.0000,4598.5000,4601.6667,4590.0000,4596.8333,4606.6667,4611.8333,4606.6667,4613.5000,4618.5000,4621.6667,4603.5000,4613.3333,4611.8333,4613.3333" -benchmark intrusive graph dependency handling with N nodes - 100,checking for dependencies,100,16,2601600,1648.6531,1629.6644,1732.1756,173.9172,19.6440,410.4460,"benchmark,group:graph-nodes","1703.6875,1699.3750,1619.2500,1621.6875,1622.9375,1626.7500,1626.0625,1624.8750,1626.6875,1622.9375,1621.1250,1620.4375,1624.1875,1622.9375,1621.0625,1624.1875,1623.5625,1626.0625,1631.6875,1614.8125,1625.4375,1622.9375,1623.0000,1621.6875,1622.3125,1624.8750,1622.3125,1623.5625,3355.0000,1618.5625,1619.8125,1612.8750,1617.9375,1616.6875,1616.6875,1619.8125,1619.8125,1607.3125,1616.6875,1621.7500,1619.1875,1613.5625,1614.8125,1616.0625,1613.5625,1613.5625,1601.6875,1614.1875,1616.0625,1610.4375,1613.5625,1611.6875,1611.0625,1621.0625,1622.3750,1622.9375,1604.8125,1622.9375,1633.0000,1636.0625,1627.3750,1631.0625,1634.2500,1630.5000,1629.8125,1629.8750,1868.3750,1614.8125,1635.4375,1635.5000,1634.8750,1637.3125,1634.8750,1644.8750,1640.5000,1641.7500,1639.8750,1621.6875,1644.2500,1642.3750,1644.2500,1638.0000,1643.6250,1636.6875,1634.8750,1638.6250,1643.6250,1643.0000,1629.1875,1640.5000,1643.0000,1642.3750,1641.7500,1639.8750,1643.6250,1641.1250,1639.8125,1642.3750,1633.0000,1700.6250" -benchmark task handling,generating and deleting tasks,100,1,588848000,5739018.1900,5657609.7900,5799555.2200,355144.8403,282494.0187,421326.8542,"benchmark,group:task-graph","5900762.0000,5884472.0000,5912054.0000,5895052.0000,5882808.0000,5885364.0000,5882819.0000,5896053.0000,5894060.0000,5895313.0000,5890473.0000,5896815.0000,5890633.0000,5920229.0000,5898398.0000,5891305.0000,5885374.0000,5896424.0000,5891615.0000,5891925.0000,5893269.0000,5892938.0000,5886455.0000,5892828.0000,5893349.0000,5889972.0000,5886055.0000,5887046.0000,5892848.0000,5893809.0000,5916422.0000,5898027.0000,5893078.0000,5893719.0000,5882708.0000,5893830.0000,5893128.0000,5891124.0000,5887848.0000,5893949.0000,5889922.0000,5887447.0000,5886375.0000,5883459.0000,5878721.0000,5894321.0000,5888539.0000,5911373.0000,5885774.0000,5893770.0000,5884291.0000,5885885.0000,5881536.0000,5896054.0000,5886045.0000,5887507.0000,5881677.0000,5895332.0000,5885724.0000,5884893.0000,5886666.0000,5886896.0000,5878671.0000,5888149.0000,5911583.0000,5890122.0000,5887647.0000,5889872.0000,5885975.0000,5887317.0000,5884702.0000,5888218.0000,5886937.0000,5887417.0000,5886235.0000,5891535.0000,5885002.0000,5948964.0000,5881686.0000,5885364.0000,5389784.0000,4877844.0000,4870389.0000,4884016.0000,4875990.0000,4892632.0000,4888955.0000,4887933.0000,4874848.0000,4867915.0000,4872013.0000,4876431.0000,4863476.0000,4867194.0000,4860841.0000,5410112.0000,5876307.0000,5882337.0000,5879272.0000,5881577.0000" -generating large task graphs,soup topology,100,1,37168000,370540.0100,369836.1900,371916.9300,4839.4334,3019.5392,9401.3092,"benchmark,group:task-graph","365491.0000,365692.0000,377022.0000,368747.0000,374418.0000,369629.0000,367655.0000,372204.0000,367855.0000,367114.0000,374528.0000,367635.0000,365952.0000,375400.0000,367615.0000,375710.0000,367795.0000,366784.0000,374868.0000,367816.0000,368516.0000,373116.0000,366823.0000,373937.0000,367334.0000,368907.0000,377784.0000,368577.0000,367956.0000,374327.0000,370240.0000,373075.0000,369689.0000,367786.0000,374808.0000,367906.0000,368667.0000,373315.0000,367334.0000,368396.0000,373757.0000,367825.0000,374037.0000,368055.0000,368847.0000,373245.0000,367715.0000,368286.0000,372284.0000,366563.0000,373276.0000,368657.0000,368857.0000,373516.0000,369128.0000,367465.0000,377213.0000,368426.0000,372995.0000,372824.0000,371973.0000,371402.0000,369558.0000,368516.0000,374909.0000,367585.0000,367625.0000,374077.0000,368376.0000,372594.0000,368737.0000,370861.0000,375099.0000,369859.0000,367265.0000,407500.0000,368717.0000,373917.0000,368276.0000,367184.0000,374628.0000,369999.0000,369759.0000,374939.0000,368958.0000,371993.0000,366312.0000,367124.0000,371823.0000,366453.0000,366473.0000,370360.0000,366132.0000,370751.0000,366643.0000,368577.0000,371953.0000,366783.0000,366022.0000,372895.0000" -generating large task graphs,chain topology,100,1,3833600,38334.6400,38202.1900,38577.0100,889.2496,550.3608,1299.9588,"benchmark,group:task-graph","38171.0000,38070.0000,41207.0000,39072.0000,42969.0000,38712.0000,38341.0000,38190.0000,38181.0000,38340.0000,38170.0000,38150.0000,38141.0000,38120.0000,38080.0000,38241.0000,38120.0000,38061.0000,38210.0000,38111.0000,37990.0000,38150.0000,38211.0000,38140.0000,38170.0000,38230.0000,37950.0000,38090.0000,38281.0000,38050.0000,38050.0000,42348.0000,38200.0000,38061.0000,38270.0000,38091.0000,37990.0000,38240.0000,38041.0000,37990.0000,38200.0000,38081.0000,37980.0000,38210.0000,38151.0000,37940.0000,38050.0000,38150.0000,37940.0000,38111.0000,38260.0000,38060.0000,38090.0000,38120.0000,38051.0000,38060.0000,38180.0000,41998.0000,38080.0000,38271.0000,38191.0000,38170.0000,38251.0000,37960.0000,38070.0000,38261.0000,38000.0000,38060.0000,38201.0000,38100.0000,38130.0000,38091.0000,38150.0000,37960.0000,38030.0000,38171.0000,38070.0000,38110.0000,38071.0000,38190.0000,37950.0000,38101.0000,38130.0000,42068.0000,38250.0000,38161.0000,38040.0000,38281.0000,38130.0000,38020.0000,38061.0000,38150.0000,38090.0000,38241.0000,38040.0000,38000.0000,38020.0000,38341.0000,38040.0000,37930.0000" -generating large task graphs,expanding tree topology,100,1,5822300,58404.3600,58189.9200,58756.6100,1379.2610,932.7583,1886.7941,"benchmark,group:task-graph","58088.0000,64791.0000,62567.0000,58770.0000,58469.0000,58168.0000,58118.0000,57818.0000,58359.0000,58278.0000,58068.0000,57597.0000,58088.0000,58159.0000,57888.0000,57677.0000,63569.0000,58489.0000,57857.0000,57807.0000,58128.0000,58169.0000,58038.0000,57697.0000,58168.0000,58028.0000,57788.0000,57958.0000,58188.0000,57998.0000,58018.0000,57678.0000,57898.0000,63588.0000,58159.0000,57717.0000,58118.0000,58008.0000,57847.0000,57868.0000,58158.0000,58119.0000,57868.0000,57707.0000,58229.0000,57998.0000,58028.0000,57747.0000,58239.0000,58068.0000,63018.0000,58048.0000,58008.0000,58148.0000,58229.0000,57848.0000,58238.0000,58239.0000,58068.0000,57818.0000,58098.0000,58248.0000,57778.0000,57828.0000,58268.0000,58119.0000,57928.0000,62656.0000,58188.0000,58208.0000,58008.0000,57577.0000,58398.0000,58128.0000,57757.0000,57728.0000,58008.0000,57958.0000,57968.0000,57778.0000,58228.0000,58239.0000,57898.0000,57607.0000,63078.0000,58418.0000,58148.0000,57918.0000,58419.0000,58138.0000,58128.0000,57908.0000,58148.0000,58119.0000,58118.0000,57758.0000,58388.0000,58049.0000,57887.0000,57708.0000" -generating large task graphs,contracting tree topology,100,1,6091200,60819.0100,60639.6800,61109.3500,1145.4386,787.0078,1566.7888,"benchmark,group:task-graph","60403.0000,60653.0000,62497.0000,61053.0000,60833.0000,61174.0000,60603.0000,60833.0000,64971.0000,60943.0000,60783.0000,60653.0000,60493.0000,60733.0000,60914.0000,60603.0000,60412.0000,60132.0000,60382.0000,60292.0000,60602.0000,60653.0000,60342.0000,60733.0000,60333.0000,65923.0000,60433.0000,60202.0000,60292.0000,60714.0000,60362.0000,60573.0000,60463.0000,60262.0000,60343.0000,60052.0000,60683.0000,60663.0000,60302.0000,60613.0000,60333.0000,65011.0000,60453.0000,60342.0000,60243.0000,60553.0000,60623.0000,60743.0000,60483.0000,60282.0000,60092.0000,60603.0000,60433.0000,60533.0000,60182.0000,60513.0000,60262.0000,60192.0000,65182.0000,60202.0000,60202.0000,60503.0000,60212.0000,60773.0000,60112.0000,60102.0000,60473.0000,60282.0000,60874.0000,60773.0000,60383.0000,60883.0000,61715.0000,60814.0000,64871.0000,60603.0000,60442.0000,60933.0000,60473.0000,60663.0000,60423.0000,60292.0000,60433.0000,60382.0000,60623.0000,60663.0000,60512.0000,60553.0000,60844.0000,60412.0000,60553.0000,64961.0000,60723.0000,60773.0000,60553.0000,60773.0000,60182.0000,60292.0000,60232.0000,60473.0000" -generating large task graphs,wave_sim topology,100,1,41559400,451699.9500,450982.0400,452773.5200,4380.6155,3295.5983,7462.6362,"benchmark,group:task-graph","454389.0000,449661.0000,457586.0000,455511.0000,448138.0000,459960.0000,449310.0000,456473.0000,448228.0000,447186.0000,454229.0000,448999.0000,455191.0000,449370.0000,455762.0000,449420.0000,454339.0000,448428.0000,452957.0000,449470.0000,448819.0000,453838.0000,447907.0000,455311.0000,447406.0000,455131.0000,450732.0000,456965.0000,449299.0000,449651.0000,456894.0000,449039.0000,457405.0000,446564.0000,454700.0000,449210.0000,456052.0000,448779.0000,454430.0000,448618.0000,448839.0000,454770.0000,449180.0000,455201.0000,448428.0000,454950.0000,448217.0000,454390.0000,447917.0000,452476.0000,447987.0000,448679.0000,453467.0000,448128.0000,454730.0000,448538.0000,454029.0000,448007.0000,455091.0000,448278.0000,447807.0000,456223.0000,448268.0000,454640.0000,447706.0000,453978.0000,447907.0000,455893.0000,448317.0000,479607.0000,448959.0000,448498.0000,455612.0000,448929.0000,455682.0000,449230.0000,454108.0000,447366.0000,454690.0000,449380.0000,453808.0000,448388.0000,448148.0000,453016.0000,448347.0000,454780.0000,448648.0000,453999.0000,447366.0000,454009.0000,448187.0000,447025.0000,453087.0000,449741.0000,454609.0000,447826.0000,454300.0000,448668.0000,452747.0000,447837.0000" -generating large task graphs,jacobi topology,100,1,11865800,98064.1700,97756.6700,98561.4000,1944.3120,1368.6295,2788.4981,"benchmark,group:task-graph","97804.0000,97242.0000,106710.0000,97603.0000,97763.0000,97453.0000,97353.0000,97623.0000,97583.0000,97342.0000,97212.0000,97322.0000,103303.0000,97413.0000,97233.0000,97422.0000,97573.0000,97252.0000,97273.0000,97412.0000,97613.0000,97322.0000,102352.0000,97563.0000,97824.0000,97543.0000,97282.0000,97543.0000,97594.0000,97412.0000,97413.0000,97533.0000,97743.0000,102522.0000,97453.0000,97583.0000,97703.0000,97423.0000,97282.0000,97552.0000,97713.0000,97493.0000,97322.0000,102793.0000,97844.0000,97242.0000,97242.0000,97493.0000,97573.0000,97473.0000,97383.0000,97352.0000,97483.0000,102473.0000,97252.0000,97453.0000,97623.0000,97293.0000,96992.0000,97362.0000,97563.0000,97423.0000,97072.0000,108213.0000,97794.0000,97262.0000,97323.0000,97383.0000,97422.0000,97252.0000,97152.0000,97503.0000,97734.0000,102472.0000,97473.0000,97613.0000,97693.0000,97353.0000,97273.0000,97492.0000,97593.0000,97332.0000,97223.0000,97553.0000,102602.0000,97373.0000,97152.0000,97593.0000,97603.0000,97212.0000,97292.0000,97633.0000,97653.0000,97453.0000,102111.0000,97683.0000,97513.0000,97453.0000,97312.0000,97613.0000" -generating large command graphs for N nodes - 1,soup topology,100,1,101905500,1048664.7800,1048115.9200,1049698.2800,3718.5963,2364.1124,7038.1659,"benchmark,group:command-graph","1046551.0000,1052773.0000,1055809.0000,1048816.0000,1049407.0000,1047754.0000,1049206.0000,1047714.0000,1048385.0000,1049507.0000,1047613.0000,1054536.0000,1050368.0000,1047383.0000,1048496.0000,1050709.0000,1048406.0000,1043816.0000,1048585.0000,1051351.0000,1046151.0000,1051892.0000,1045510.0000,1050600.0000,1051110.0000,1047132.0000,1045209.0000,1044287.0000,1052393.0000,1048987.0000,1045540.0000,1055408.0000,1050739.0000,1045079.0000,1046852.0000,1047093.0000,1046682.0000,1048205.0000,1048586.0000,1047283.0000,1048546.0000,1050719.0000,1046722.0000,1047583.0000,1051681.0000,1047614.0000,1047223.0000,1046602.0000,1048035.0000,1045289.0000,1043617.0000,1045259.0000,1076339.0000,1050349.0000,1051391.0000,1050028.0000,1048155.0000,1045640.0000,1049788.0000,1047985.0000,1045049.0000,1044738.0000,1049697.0000,1046572.0000,1047283.0000,1049186.0000,1048285.0000,1050749.0000,1049568.0000,1052363.0000,1048555.0000,1047814.0000,1050900.0000,1050760.0000,1045600.0000,1047564.0000,1045980.0000,1049016.0000,1050800.0000,1048946.0000,1043345.0000,1048566.0000,1046922.0000,1048806.0000,1047333.0000,1048516.0000,1044989.0000,1046772.0000,1047403.0000,1051592.0000,1048255.0000,1046271.0000,1048326.0000,1052112.0000,1050149.0000,1048856.0000,1050159.0000,1047954.0000,1043727.0000,1046512.0000" -generating large command graphs for N nodes - 1,chain topology,100,1,8017900,79738.2700,79429.5900,80203.1900,1899.1326,1364.8878,2479.9792,"benchmark,group:command-graph","79108.0000,78917.0000,87554.0000,80501.0000,79699.0000,79629.0000,79359.0000,79228.0000,79328.0000,86001.0000,79639.0000,79459.0000,79158.0000,79148.0000,79248.0000,79169.0000,78937.0000,78948.0000,78958.0000,79128.0000,79229.0000,84738.0000,79639.0000,79087.0000,79228.0000,79048.0000,79088.0000,79218.0000,79018.0000,78938.0000,78988.0000,79358.0000,79098.0000,79138.0000,85720.0000,79489.0000,79299.0000,79288.0000,79359.0000,79388.0000,78748.0000,78977.0000,79027.0000,79128.0000,79168.0000,78887.0000,85349.0000,79870.0000,79048.0000,79108.0000,79128.0000,78948.0000,79048.0000,79108.0000,78878.0000,79318.0000,79067.0000,78997.0000,78918.0000,84809.0000,79218.0000,79008.0000,78858.0000,78998.0000,79118.0000,78787.0000,78918.0000,78958.0000,79038.0000,79008.0000,78988.0000,78787.0000,85200.0000,79358.0000,79378.0000,79058.0000,78958.0000,79168.0000,79198.0000,79128.0000,79278.0000,78767.0000,79138.0000,79118.0000,85139.0000,79489.0000,79479.0000,78958.0000,79178.0000,79138.0000,79148.0000,79429.0000,78958.0000,78627.0000,78828.0000,79288.0000,78938.0000,86502.0000,79178.0000,79118.0000" -generating large command graphs for N nodes - 1,expanding tree topology,100,1,14708300,147338.8900,146904.5200,147969.4800,2638.0698,2086.5007,3655.4465,"benchmark,group:command-graph","147187.0000,145324.0000,160523.0000,146776.0000,146847.0000,146546.0000,146616.0000,146395.0000,152968.0000,146676.0000,146385.0000,147137.0000,146797.0000,146065.0000,146816.0000,153008.0000,147036.0000,146205.0000,146966.0000,146145.0000,146756.0000,145724.0000,154070.0000,147337.0000,147127.0000,146786.0000,146385.0000,146726.0000,146516.0000,152778.0000,145925.0000,146165.0000,146596.0000,145484.0000,146075.0000,153269.0000,146415.0000,146255.0000,147137.0000,145594.0000,146376.0000,145594.0000,153028.0000,146907.0000,146165.0000,146345.0000,145634.0000,146075.0000,145734.0000,152197.0000,146746.0000,146666.0000,147127.0000,146035.0000,145915.0000,145945.0000,152557.0000,146095.0000,146266.0000,145864.0000,146205.0000,146395.0000,145674.0000,152808.0000,146125.0000,145674.0000,145684.0000,146516.0000,146676.0000,151875.0000,147026.0000,146045.0000,145404.0000,145594.0000,145384.0000,145614.0000,152137.0000,145373.0000,146135.0000,146415.0000,146146.0000,146085.0000,146405.0000,152807.0000,146666.0000,146104.0000,146956.0000,146526.0000,146045.0000,145604.0000,151606.0000,146466.0000,146586.0000,146165.0000,145864.0000,145974.0000,145865.0000,152798.0000,146225.0000,147428.0000" -generating large command graphs for N nodes - 1,contracting tree topology,100,1,15452700,154866.3100,154428.0300,155521.7600,2688.2544,2062.0576,4099.0205,"benchmark,group:command-graph","153519.0000,152397.0000,170191.0000,155693.0000,153860.0000,153569.0000,154070.0000,154270.0000,154591.0000,161074.0000,154541.0000,154150.0000,153850.0000,154100.0000,153670.0000,160903.0000,154792.0000,154681.0000,153529.0000,153840.0000,153509.0000,153739.0000,159961.0000,154110.0000,153419.0000,153970.0000,153499.0000,154490.0000,159811.0000,154330.0000,153229.0000,153569.0000,153139.0000,152737.0000,153540.0000,160873.0000,154330.0000,154391.0000,153960.0000,153860.0000,153379.0000,159160.0000,153709.0000,153879.0000,153720.0000,153148.0000,153409.0000,154692.0000,159220.0000,154461.0000,153860.0000,154050.0000,154511.0000,152707.0000,159480.0000,154641.0000,153940.0000,154621.0000,153559.0000,153559.0000,153459.0000,159601.0000,153619.0000,154902.0000,153489.0000,153740.0000,153138.0000,160853.0000,154251.0000,153809.0000,154070.0000,154190.0000,153189.0000,159550.0000,154251.0000,153769.0000,154030.0000,152958.0000,152957.0000,153308.0000,159411.0000,154521.0000,153649.0000,153760.0000,153419.0000,153228.0000,158629.0000,154381.0000,153790.0000,154581.0000,153329.0000,153990.0000,153008.0000,158579.0000,152617.0000,154611.0000,153569.0000,153258.0000,152767.0000,158940.0000" -generating large command graphs for N nodes - 1,wave_sim topology,100,1,100507500,1017649.7100,1017136.0200,1018536.7100,3353.5071,2263.2674,6048.6212,"benchmark,group:command-graph","1017146.0000,1019020.0000,1019601.0000,1022176.0000,1022756.0000,1018428.0000,1017587.0000,1015122.0000,1017818.0000,1016164.0000,1017256.0000,1016956.0000,1013489.0000,1015403.0000,1018038.0000,1017015.0000,1016715.0000,1021304.0000,1019631.0000,1022696.0000,1021113.0000,1026093.0000,1016415.0000,1015503.0000,1016004.0000,1014661.0000,1018579.0000,1016004.0000,1015834.0000,1017116.0000,1018709.0000,1013910.0000,1015142.0000,1015092.0000,1016766.0000,1015012.0000,1015132.0000,1016024.0000,1014882.0000,1015463.0000,1015533.0000,1014982.0000,1015112.0000,1015864.0000,1015082.0000,1013880.0000,1017136.0000,1014852.0000,1015623.0000,1016044.0000,1016385.0000,1013930.0000,1017436.0000,1022035.0000,1017677.0000,1017627.0000,1019461.0000,1018017.0000,1016425.0000,1016775.0000,1017436.0000,1016956.0000,1016825.0000,1019350.0000,1019530.0000,1016525.0000,1022246.0000,1019511.0000,1017767.0000,1015243.0000,1017637.0000,1016394.0000,1016906.0000,1019961.0000,1020022.0000,1018148.0000,1019390.0000,1019090.0000,1017176.0000,1023749.0000,1018479.0000,1018709.0000,1018078.0000,1018128.0000,1017747.0000,1015894.0000,1017687.0000,1018148.0000,1018028.0000,1018929.0000,1015523.0000,1017246.0000,1016244.0000,1016555.0000,1017807.0000,1012698.0000,1012277.0000,1016294.0000,1041092.0000,1021895.0000" -generating large command graphs for N nodes - 1,jacobi topology,100,1,25797700,261853.4000,261321.7300,262472.9200,2910.7543,2542.8464,3268.4037,"benchmark,group:command-graph","267365.0000,260512.0000,265141.0000,260462.0000,265151.0000,260381.0000,257496.0000,258899.0000,267325.0000,260792.0000,260031.0000,260312.0000,268757.0000,259721.0000,260371.0000,260172.0000,267555.0000,261023.0000,260662.0000,265472.0000,260161.0000,258829.0000,259961.0000,264339.0000,260021.0000,260341.0000,260391.0000,266443.0000,258087.0000,259941.0000,259620.0000,266353.0000,260211.0000,259980.0000,259029.0000,264289.0000,260181.0000,259991.0000,264630.0000,262145.0000,259209.0000,260753.0000,267094.0000,261143.0000,260041.0000,260202.0000,266523.0000,260702.0000,260693.0000,260141.0000,266142.0000,260151.0000,260351.0000,261083.0000,265841.0000,260421.0000,259390.0000,259640.0000,266053.0000,260782.0000,259861.0000,266373.0000,260101.0000,260162.0000,258518.0000,264179.0000,260151.0000,260241.0000,260111.0000,265852.0000,259840.0000,260412.0000,260021.0000,266704.0000,259470.0000,260692.0000,260372.0000,268397.0000,260361.0000,260913.0000,268547.0000,261805.0000,260602.0000,259880.0000,266964.0000,260411.0000,260161.0000,259780.0000,267586.0000,261413.0000,260703.0000,260371.0000,268337.0000,260542.0000,259841.0000,260372.0000,265301.0000,260562.0000,259951.0000,260582.0000" -generating large command graphs for N nodes - 4,soup topology,100,1,131050700,1244544.0500,1228954.7900,1264298.2700,89128.5235,74459.6788,101271.4282,"benchmark,group:command-graph","1427815.0000,1434717.0000,1432764.0000,1421383.0000,1428676.0000,1418326.0000,1425229.0000,1430430.0000,1427053.0000,1429447.0000,1427203.0000,1431161.0000,1422504.0000,1413758.0000,1294111.0000,1197608.0000,1199842.0000,1198079.0000,1208529.0000,1194963.0000,1203600.0000,1196025.0000,1195003.0000,1203168.0000,1205664.0000,1189993.0000,1200623.0000,1200494.0000,1201536.0000,1199642.0000,1200694.0000,1261559.0000,1196547.0000,1213318.0000,1204611.0000,1199632.0000,1202127.0000,1193791.0000,1202838.0000,1192409.0000,1203579.0000,1196877.0000,1195033.0000,1195995.0000,1199121.0000,1197598.0000,1196195.0000,1201987.0000,1204912.0000,1195484.0000,1199241.0000,1197428.0000,1213108.0000,1204651.0000,1208909.0000,1197117.0000,1196156.0000,1198760.0000,1205864.0000,1194963.0000,1206705.0000,1192759.0000,1198740.0000,1201396.0000,1203439.0000,1193340.0000,1197678.0000,1195223.0000,1203209.0000,1199862.0000,1194903.0000,1194562.0000,1197548.0000,1198600.0000,1202647.0000,1194733.0000,1199171.0000,1196857.0000,1203289.0000,1194071.0000,1196166.0000,1192769.0000,1198239.0000,1204011.0000,1202227.0000,1185916.0000,1197217.0000,1199903.0000,1196877.0000,1201886.0000,1194903.0000,1201966.0000,1195905.0000,1201655.0000,1252572.0000,1417866.0000,1431772.0000,1426421.0000,1431291.0000,1426261.0000" -generating large command graphs for N nodes - 4,chain topology,100,1,32420000,331801.5900,331175.2000,332506.4300,3394.6920,3095.6242,3797.3710,"benchmark,group:command-graph","330204.0000,328711.0000,341335.0000,335785.0000,329102.0000,329352.0000,335945.0000,329172.0000,329362.0000,336465.0000,330194.0000,329703.0000,336456.0000,329933.0000,329613.0000,335895.0000,329683.0000,329423.0000,334983.0000,329813.0000,329292.0000,336415.0000,329303.0000,329332.0000,335474.0000,329533.0000,328861.0000,335614.0000,329372.0000,330004.0000,337768.0000,330735.0000,329613.0000,336506.0000,329623.0000,328712.0000,336035.0000,329963.0000,329253.0000,335383.0000,329393.0000,328210.0000,335945.0000,329082.0000,328952.0000,335885.0000,328801.0000,328591.0000,336195.0000,328491.0000,328030.0000,334773.0000,328781.0000,329343.0000,335464.0000,329593.0000,328601.0000,335814.0000,329132.0000,329854.0000,339211.0000,328871.0000,328781.0000,335794.0000,329983.0000,329132.0000,336296.0000,329552.0000,329292.0000,336646.0000,328661.0000,328281.0000,336375.0000,330544.0000,330114.0000,335043.0000,329904.0000,329172.0000,336957.0000,330745.0000,328260.0000,336166.0000,329803.0000,330595.0000,336636.0000,330905.0000,330765.0000,337327.0000,329653.0000,329994.0000,335794.0000,328971.0000,330044.0000,335364.0000,329072.0000,329893.0000,336927.0000,330735.0000,329373.0000,337678.0000" -generating large command graphs for N nodes - 4,expanding tree topology,100,1,34401800,344337.1300,343592.7900,345546.3400,4740.3860,3393.4863,8163.2573,"benchmark,group:command-graph","340594.0000,348729.0000,358478.0000,344972.0000,340393.0000,349290.0000,342177.0000,342747.0000,346164.0000,339662.0000,340844.0000,349270.0000,341295.0000,341175.0000,347637.0000,341716.0000,342798.0000,349701.0000,339932.0000,341585.0000,348890.0000,342307.0000,341565.0000,347827.0000,340634.0000,346064.0000,343840.0000,342377.0000,349651.0000,342878.0000,342207.0000,350593.0000,341325.0000,339873.0000,347767.0000,341505.0000,341044.0000,347577.0000,343179.0000,341225.0000,349280.0000,342418.0000,342707.0000,348178.0000,342357.0000,341586.0000,347707.0000,341986.0000,341225.0000,347387.0000,341586.0000,342056.0000,347517.0000,343419.0000,341846.0000,350322.0000,341956.0000,347768.0000,340994.0000,340834.0000,348939.0000,342327.0000,341165.0000,347657.0000,342046.0000,342798.0000,375370.0000,342187.0000,341906.0000,347878.0000,341194.0000,341094.0000,348198.0000,340774.0000,341605.0000,350723.0000,340313.0000,341245.0000,348338.0000,343409.0000,339972.0000,347246.0000,340032.0000,342748.0000,348258.0000,341786.0000,346254.0000,343399.0000,340954.0000,346926.0000,340664.0000,340794.0000,347306.0000,341326.0000,340633.0000,347416.0000,341665.0000,340474.0000,349360.0000,342718.0000" -generating large command graphs for N nodes - 4,contracting tree topology,100,1,34229600,330678.3600,325976.8200,335451.4500,24160.4399,23417.2655,25409.0614,"benchmark,group:command-graph","317089.0000,304776.0000,359590.0000,359770.0000,353669.0000,352065.0000,358778.0000,352676.0000,351495.0000,358517.0000,352086.0000,356905.0000,351795.0000,351694.0000,359199.0000,350582.0000,352426.0000,359589.0000,351595.0000,351324.0000,359750.0000,351945.0000,352386.0000,358127.0000,352897.0000,351484.0000,359099.0000,352226.0000,358758.0000,354049.0000,352907.0000,359330.0000,351564.0000,351865.0000,358538.0000,352276.0000,352897.0000,359730.0000,375390.0000,352406.0000,358278.0000,349791.0000,358748.0000,351294.0000,352436.0000,358527.0000,351665.0000,351124.0000,359790.0000,351414.0000,348018.0000,314134.0000,305146.0000,304304.0000,312630.0000,304766.0000,305387.0000,309856.0000,308152.0000,305347.0000,304335.0000,311799.0000,305067.0000,304525.0000,312711.0000,304335.0000,306118.0000,313722.0000,304856.0000,306128.0000,304555.0000,312060.0000,305267.0000,304856.0000,316137.0000,304555.0000,303984.0000,310256.0000,305507.0000,302101.0000,311689.0000,305166.0000,304836.0000,303674.0000,313693.0000,304706.0000,305497.0000,312871.0000,305016.0000,305376.0000,313161.0000,305728.0000,304926.0000,310607.0000,306610.0000,304405.0000,304735.0000,309655.0000,304305.0000,304255.0000" -generating large command graphs for N nodes - 4,wave_sim topology,100,1,228807500,2162711.5700,2130513.1400,2193593.0700,160281.9037,153919.1980,163110.8886,"benchmark,group:command-graph","2295359.0000,2302041.0000,1984099.0000,1984099.0000,1979901.0000,1976454.0000,1985672.0000,1967508.0000,1982936.0000,1981363.0000,1979340.0000,1977276.0000,1980522.0000,1973208.0000,1963149.0000,1978488.0000,1979219.0000,1985251.0000,1972296.0000,1979671.0000,1978278.0000,1983608.0000,1978378.0000,1968529.0000,1978227.0000,1972417.0000,1981033.0000,1978809.0000,1993146.0000,1982787.0000,1982636.0000,1986534.0000,1968980.0000,1976865.0000,1982004.0000,1983528.0000,1987967.0000,1967918.0000,1985752.0000,1985512.0000,1978328.0000,1975643.0000,1980161.0000,1976274.0000,1982044.0000,2146357.0000,2334764.0000,2306059.0000,2309746.0000,2303755.0000,2307362.0000,2312231.0000,2304466.0000,2300939.0000,2298564.0000,2304496.0000,2303033.0000,2298886.0000,2312181.0000,2303204.0000,2297242.0000,2309225.0000,2300408.0000,2298866.0000,2306860.0000,2301250.0000,2307181.0000,2301260.0000,2307673.0000,2299807.0000,2299968.0000,2312020.0000,2302513.0000,2301651.0000,2306530.0000,2298705.0000,2303274.0000,2296090.0000,2308453.0000,2301631.0000,2295890.0000,2304817.0000,2297072.0000,2298565.0000,2299707.0000,2293505.0000,2297483.0000,2295268.0000,2310768.0000,2295088.0000,2320507.0000,2312581.0000,2305427.0000,2309105.0000,2312311.0000,2302061.0000,2307843.0000,2306760.0000,2299767.0000,2296772.0000" -generating large command graphs for N nodes - 4,jacobi topology,100,1,55340500,552729.1200,551713.1900,553804.7400,5323.6697,4599.8153,7099.2022,"benchmark,group:command-graph","559970.0000,546954.0000,559769.0000,551103.0000,558857.0000,550362.0000,558897.0000,543929.0000,559338.0000,550602.0000,559308.0000,557845.0000,550932.0000,557966.0000,543388.0000,556493.0000,543037.0000,550251.0000,550111.0000,555972.0000,556893.0000,546904.0000,557625.0000,551643.0000,557866.0000,545692.0000,548407.0000,552466.0000,552605.0000,551564.0000,557134.0000,557335.0000,545151.0000,558146.0000,551904.0000,552716.0000,549309.0000,551804.0000,549510.0000,556042.0000,554930.0000,547185.0000,557274.0000,544711.0000,557054.0000,542346.0000,555371.0000,547746.0000,558818.0000,556833.0000,545922.0000,555331.0000,549530.0000,550331.0000,551253.0000,549880.0000,549850.0000,548708.0000,550912.0000,552846.0000,557395.0000,542075.0000,556372.0000,548478.0000,555812.0000,544049.0000,557215.0000,549830.0000,558066.0000,557795.0000,551022.0000,557525.0000,550912.0000,557114.0000,550902.0000,552646.0000,551654.0000,556272.0000,557255.0000,550932.0000,557285.0000,551373.0000,556663.0000,550121.0000,557575.0000,546414.0000,576180.0000,554358.0000,541635.0000,555672.0000,551654.0000,557344.0000,551083.0000,552716.0000,548327.0000,558237.0000,555360.0000,548779.0000,552545.0000,543639.0000" -generating large command graphs for N nodes - 16,soup topology,100,1,193648600,1765599.8300,1733844.3700,1797752.0400,163375.5285,160653.8384,165517.2966,"benchmark,group:command-graph","1929405.0000,1927151.0000,1590072.0000,1626952.0000,1603888.0000,1601895.0000,1599870.0000,1602175.0000,1611733.0000,1606162.0000,1605541.0000,1608126.0000,1603287.0000,1614017.0000,1607666.0000,1600331.0000,1620480.0000,1606944.0000,1606884.0000,1606533.0000,1608106.0000,1612494.0000,1614468.0000,1599930.0000,1614719.0000,1601334.0000,1601804.0000,1614168.0000,1600552.0000,1610951.0000,1584782.0000,1604840.0000,1612375.0000,1583710.0000,1609408.0000,1603617.0000,1607716.0000,1607986.0000,1606503.0000,1611493.0000,1599840.0000,1611632.0000,1617163.0000,1603688.0000,1606253.0000,1599750.0000,1603397.0000,1616702.0000,1601554.0000,1607545.0000,1609359.0000,1600442.0000,1609018.0000,1783308.0000,1934325.0000,1933794.0000,1937330.0000,1938512.0000,1930918.0000,1933653.0000,1935847.0000,1932982.0000,1938823.0000,1958700.0000,1937351.0000,1936989.0000,1938703.0000,1927071.0000,1938502.0000,1919246.0000,1940225.0000,1933523.0000,1935256.0000,1935086.0000,1931549.0000,1937821.0000,1930246.0000,1931929.0000,1927261.0000,1931509.0000,1938132.0000,1931529.0000,1934766.0000,1935577.0000,1927000.0000,1928945.0000,1936709.0000,1936639.0000,1936348.0000,1933463.0000,1933263.0000,1935116.0000,1945556.0000,1937150.0000,1938472.0000,1935596.0000,1934264.0000,1935176.0000,1936399.0000,1923013.0000" -generating large command graphs for N nodes - 16,chain topology,100,1,112121200,1120771.6800,1120056.2100,1122129.5100,4871.2149,2746.5252,8214.5464,"benchmark,group:command-graph","1120452.0000,1121203.0000,1124138.0000,1123197.0000,1121313.0000,1129209.0000,1121053.0000,1123337.0000,1120232.0000,1120311.0000,1120592.0000,1120872.0000,1117506.0000,1125591.0000,1121082.0000,1120001.0000,1120391.0000,1118447.0000,1144657.0000,1118568.0000,1120642.0000,1125051.0000,1120552.0000,1119049.0000,1119029.0000,1118859.0000,1122446.0000,1118418.0000,1118108.0000,1117476.0000,1123968.0000,1118658.0000,1120512.0000,1116575.0000,1120161.0000,1118368.0000,1117947.0000,1117106.0000,1124700.0000,1118718.0000,1118327.0000,1118378.0000,1118818.0000,1118138.0000,1118909.0000,1118608.0000,1126013.0000,1119700.0000,1119430.0000,1122366.0000,1119390.0000,1122886.0000,1118278.0000,1121354.0000,1118468.0000,1124880.0000,1115563.0000,1115152.0000,1117616.0000,1120131.0000,1116424.0000,1123718.0000,1117697.0000,1123417.0000,1119269.0000,1118659.0000,1116594.0000,1116635.0000,1117767.0000,1117847.0000,1120712.0000,1153555.0000,1123608.0000,1120562.0000,1119781.0000,1120912.0000,1120381.0000,1121835.0000,1119680.0000,1127997.0000,1119319.0000,1118839.0000,1119009.0000,1117426.0000,1120011.0000,1120592.0000,1118929.0000,1119029.0000,1124119.0000,1118939.0000,1119831.0000,1117536.0000,1119651.0000,1122165.0000,1120943.0000,1116284.0000,1126884.0000,1121023.0000,1119119.0000,1119570.0000" -generating large command graphs for N nodes - 16,expanding tree topology,100,1,69755400,694713.2200,693841.2900,695827.2300,4989.7708,3873.2733,7688.6855,"benchmark,group:command-graph","700897.0000,688964.0000,700806.0000,689024.0000,697630.0000,697470.0000,689905.0000,696969.0000,696288.0000,697470.0000,691709.0000,696829.0000,695477.0000,688273.0000,697159.0000,697209.0000,689686.0000,696528.0000,697961.0000,687582.0000,695446.0000,695988.0000,695426.0000,688313.0000,696498.0000,696077.0000,688102.0000,695907.0000,700305.0000,689234.0000,697300.0000,697410.0000,690006.0000,693192.0000,695105.0000,694575.0000,688193.0000,697400.0000,696458.0000,690417.0000,695617.0000,697350.0000,687822.0000,695997.0000,697249.0000,696629.0000,690998.0000,696328.0000,698141.0000,690407.0000,711146.0000,696778.0000,688573.0000,698372.0000,699203.0000,687692.0000,695637.0000,697961.0000,696579.0000,689174.0000,696298.0000,696468.0000,688743.0000,694705.0000,697500.0000,688623.0000,698101.0000,696137.0000,692841.0000,689124.0000,722788.0000,698883.0000,688163.0000,696729.0000,696628.0000,687441.0000,696859.0000,695055.0000,689615.0000,697821.0000,694604.0000,694564.0000,689135.0000,694735.0000,695406.0000,687842.0000,696619.0000,696267.0000,690436.0000,696989.0000,695657.0000,687581.0000,698552.0000,695877.0000,695206.0000,689615.0000,696719.0000,696759.0000,690437.0000,696959.0000" -generating large command graphs for N nodes - 16,contracting tree topology,100,1,67058300,768343.9100,767508.5100,769136.6000,4184.7536,3751.1510,4702.1517,"benchmark,group:command-graph","760660.0000,767744.0000,776290.0000,777502.0000,768365.0000,762753.0000,766871.0000,771641.0000,774737.0000,769396.0000,762724.0000,771952.0000,769837.0000,771370.0000,764407.0000,766010.0000,773233.0000,771150.0000,760460.0000,770138.0000,764427.0000,772512.0000,772062.0000,760730.0000,771440.0000,766180.0000,770959.0000,763244.0000,770639.0000,774857.0000,770248.0000,762073.0000,768445.0000,773374.0000,768715.0000,771631.0000,764046.0000,766301.0000,769316.0000,765930.0000,764788.0000,771911.0000,768685.0000,767773.0000,763496.0000,771400.0000,767573.0000,769296.0000,765418.0000,762964.0000,769256.0000,770048.0000,774736.0000,759487.0000,772112.0000,773625.0000,772542.0000,760400.0000,774115.0000,768585.0000,769647.0000,770639.0000,759137.0000,771069.0000,772442.0000,772011.0000,762253.0000,773725.0000,769807.0000,771341.0000,762092.0000,771370.0000,769246.0000,765489.0000,771651.0000,761912.0000,769036.0000,768385.0000,772913.0000,760289.0000,770348.0000,770849.0000,764708.0000,761782.0000,767904.0000,764206.0000,770217.0000,763986.0000,767463.0000,771320.0000,769437.0000,771641.0000,764757.0000,770759.0000,769396.0000,772903.0000,763344.0000,767513.0000,768184.0000,766641.0000" -generating large command graphs for N nodes - 16,wave_sim topology,100,1,456272900,4960421.1300,4955542.4300,4978493.5900,42699.8641,10871.3882,98599.3892,"benchmark,group:command-graph","4963987.0000,4960821.0000,4962484.0000,4969027.0000,4964568.0000,4986169.0000,4955150.0000,4965650.0000,4960190.0000,4956794.0000,4967574.0000,4962324.0000,4966552.0000,4963987.0000,4956533.0000,4961722.0000,4961873.0000,4954258.0000,4963717.0000,4978545.0000,4954840.0000,4974527.0000,4969688.0000,4953447.0000,4944330.0000,4960431.0000,4968856.0000,4972873.0000,4959419.0000,4949089.0000,4955551.0000,5370047.0000,4962334.0000,4955191.0000,4947456.0000,4961983.0000,4962454.0000,4926977.0000,4952214.0000,4955381.0000,4984166.0000,4939671.0000,4950782.0000,4947676.0000,4950262.0000,4950611.0000,4947295.0000,4952836.0000,4942817.0000,4963516.0000,4950972.0000,4958607.0000,4960830.0000,4957003.0000,4972603.0000,4975249.0000,4967373.0000,4948888.0000,4960671.0000,4945472.0000,4973796.0000,4951674.0000,4964127.0000,4949729.0000,4950962.0000,4944250.0000,4932998.0000,4939772.0000,4944199.0000,4951414.0000,4949600.0000,4942576.0000,4942265.0000,4949719.0000,4944891.0000,4944931.0000,4946424.0000,4949870.0000,4954780.0000,4938439.0000,4976831.0000,4948006.0000,4949970.0000,4955190.0000,4951583.0000,4950672.0000,4946063.0000,4935843.0000,4964187.0000,4953247.0000,4953537.0000,4937005.0000,4974286.0000,4947787.0000,4953788.0000,4985217.0000,4963516.0000,4956744.0000,4960280.0000,4945632.0000" -generating large command graphs for N nodes - 16,jacobi topology,100,1,130499200,1302556.6400,1300070.9500,1305146.7700,12958.6958,11910.5523,14147.6256,"benchmark,group:command-graph","1297438.0000,1326061.0000,1298489.0000,1295944.0000,1287097.0000,1326192.0000,1316514.0000,1310271.0000,1304370.0000,1292418.0000,1285675.0000,1300072.0000,1322885.0000,1287749.0000,1314319.0000,1303809.0000,1288961.0000,1291607.0000,1319048.0000,1306685.0000,1296405.0000,1289392.0000,1323196.0000,1286526.0000,1287348.0000,1298559.0000,1297748.0000,1306705.0000,1292358.0000,1314770.0000,1284883.0000,1315181.0000,1299451.0000,1317676.0000,1295554.0000,1293490.0000,1313157.0000,1283521.0000,1323467.0000,1287128.0000,1289462.0000,1288621.0000,1302737.0000,1317776.0000,1286717.0000,1316634.0000,1303930.0000,1294902.0000,1311985.0000,1308899.0000,1294782.0000,1323036.0000,1300844.0000,1318126.0000,1295304.0000,1291706.0000,1288440.0000,1286666.0000,1322034.0000,1311834.0000,1294492.0000,1307617.0000,1282499.0000,1290163.0000,1310292.0000,1298179.0000,1315542.0000,1296385.0000,1315522.0000,1286547.0000,1316132.0000,1299951.0000,1287298.0000,1294912.0000,1291076.0000,1323126.0000,1320531.0000,1312336.0000,1326762.0000,1318537.0000,1300954.0000,1307466.0000,1294932.0000,1289102.0000,1291335.0000,1306544.0000,1290064.0000,1283651.0000,1307316.0000,1315231.0000,1298470.0000,1320070.0000,1314480.0000,1283881.0000,1324880.0000,1302998.0000,1293550.0000,1299711.0000,1322024.0000,1284552.0000" -generating large instruction graphs for N devices - 1,soup topology,100,1,463588700,4636487.0800,4633872.7400,4642047.7700,18604.3526,10514.7833,35905.1132,"benchmark,group:instruction-graph","4633431.0000,4645513.0000,4630254.0000,4624724.0000,4659159.0000,4639192.0000,4630394.0000,4704926.0000,4630605.0000,4637589.0000,4634252.0000,4637448.0000,4627209.0000,4634382.0000,4624824.0000,4616098.0000,4634142.0000,4624483.0000,4632749.0000,4629443.0000,4628251.0000,4645974.0000,4636236.0000,4648989.0000,4637468.0000,4631286.0000,4665050.0000,4628922.0000,4621088.0000,4640413.0000,4635053.0000,4630966.0000,4633351.0000,4640764.0000,4778886.0000,4643069.0000,4634903.0000,4622961.0000,4630896.0000,4614295.0000,4625876.0000,4629253.0000,4621808.0000,4635895.0000,4629112.0000,4625356.0000,4630374.0000,4627078.0000,4655623.0000,4637318.0000,4619484.0000,4637980.0000,4638921.0000,4619664.0000,4634593.0000,4654431.0000,4641355.0000,4632268.0000,4631988.0000,4650763.0000,4637528.0000,4633471.0000,4636366.0000,4632919.0000,4630595.0000,4637588.0000,4632318.0000,4624754.0000,4622290.0000,4651124.0000,4645243.0000,4631718.0000,4618422.0000,4633932.0000,4629152.0000,4622670.0000,4649100.0000,4640834.0000,4626457.0000,4629113.0000,4627509.0000,4640494.0000,4631748.0000,4631827.0000,4639933.0000,4641146.0000,4628711.0000,4632158.0000,4632208.0000,4639693.0000,4645263.0000,4669970.0000,4630655.0000,4631818.0000,4626597.0000,4642107.0000,4633701.0000,4626177.0000,4637658.0000,4634963.0000" -generating large instruction graphs for N devices - 1,chain topology,100,1,60930000,691453.3100,689835.6200,696603.5600,13309.4126,4919.1624,29725.4799,"benchmark,group:instruction-graph","683213.0000,692130.0000,699645.0000,685838.0000,689165.0000,692390.0000,686309.0000,697530.0000,696669.0000,693783.0000,683654.0000,694074.0000,692310.0000,685297.0000,694074.0000,692260.0000,686760.0000,692381.0000,692340.0000,683324.0000,695476.0000,692731.0000,683153.0000,691459.0000,691819.0000,693151.0000,680618.0000,693232.0000,690928.0000,682913.0000,693713.0000,689074.0000,683082.0000,697510.0000,689305.0000,685257.0000,695597.0000,692901.0000,690106.0000,685397.0000,694505.0000,692521.0000,685748.0000,696829.0000,812979.0000,683704.0000,692581.0000,693182.0000,692370.0000,684386.0000,689695.0000,693423.0000,680548.0000,693643.0000,695387.0000,683584.0000,693152.0000,696699.0000,687581.0000,697631.0000,695266.0000,692711.0000,686279.0000,696067.0000,694414.0000,685086.0000,694003.0000,696328.0000,684806.0000,695326.0000,693012.0000,685137.0000,691498.0000,688753.0000,692170.0000,676590.0000,691989.0000,691479.0000,685368.0000,690537.0000,690176.0000,682452.0000,687662.0000,691108.0000,683263.0000,689354.0000,688172.0000,683945.0000,688593.0000,693784.0000,686960.0000,685287.0000,689696.0000,689806.0000,684716.0000,691899.0000,693342.0000,683754.0000,714943.0000,688884.0000" -generating large instruction graphs for N devices - 1,expanding tree topology,100,1,90002900,900250.1700,899285.0400,901792.1200,6134.1001,4084.0628,9433.7925,"benchmark,group:instruction-graph","896999.0000,900966.0000,910724.0000,901216.0000,902539.0000,900405.0000,900936.0000,897549.0000,921404.0000,895526.0000,901397.0000,899543.0000,899323.0000,899193.0000,898802.0000,898882.0000,898220.0000,902488.0000,897318.0000,890956.0000,898771.0000,904422.0000,901968.0000,899934.0000,901727.0000,896788.0000,901457.0000,901647.0000,896658.0000,890275.0000,897168.0000,900275.0000,900555.0000,902589.0000,904022.0000,901587.0000,904472.0000,901146.0000,898110.0000,894874.0000,898010.0000,901176.0000,899372.0000,900655.0000,900735.0000,905043.0000,903100.0000,899704.0000,898822.0000,887490.0000,896939.0000,898842.0000,899172.0000,902608.0000,900454.0000,901076.0000,898120.0000,898511.0000,898170.0000,890876.0000,897378.0000,902639.0000,898711.0000,900204.0000,904783.0000,899543.0000,901647.0000,897710.0000,895706.0000,893061.0000,897479.0000,897779.0000,900775.0000,898561.0000,928748.0000,898812.0000,898682.0000,899042.0000,899634.0000,892710.0000,899483.0000,898271.0000,897610.0000,936052.0000,901056.0000,904112.0000,900505.0000,902288.0000,896848.0000,892029.0000,899643.0000,901016.0000,903030.0000,903040.0000,903751.0000,899162.0000,897199.0000,901647.0000,899213.0000,893752.0000" -generating large instruction graphs for N devices - 1,contracting tree topology,100,1,103781900,1037260.2900,1036744.3100,1038110.3500,3289.3651,2247.8345,5914.4986,"benchmark,group:instruction-graph","1039909.0000,1037515.0000,1045400.0000,1039288.0000,1038978.0000,1035481.0000,1039719.0000,1036352.0000,1039007.0000,1035050.0000,1038005.0000,1035782.0000,1036853.0000,1037825.0000,1036853.0000,1036623.0000,1038176.0000,1038096.0000,1038216.0000,1036663.0000,1036242.0000,1040009.0000,1040901.0000,1038205.0000,1035891.0000,1033957.0000,1041271.0000,1038677.0000,1036182.0000,1032385.0000,1038116.0000,1031634.0000,1040099.0000,1039268.0000,1038917.0000,1033247.0000,1035932.0000,1038877.0000,1035361.0000,1035341.0000,1036062.0000,1035942.0000,1037204.0000,1035902.0000,1037505.0000,1039007.0000,1040279.0000,1038035.0000,1038446.0000,1035781.0000,1036713.0000,1036683.0000,1033718.0000,1040931.0000,1039739.0000,1033237.0000,1036593.0000,1038988.0000,1036102.0000,1037815.0000,1039930.0000,1036713.0000,1038426.0000,1037895.0000,1037986.0000,1035260.0000,1040620.0000,1038807.0000,1035961.0000,1036031.0000,1036823.0000,1037445.0000,1035851.0000,1035621.0000,1038196.0000,1033086.0000,1035841.0000,1034700.0000,1034629.0000,1038136.0000,1043707.0000,1037394.0000,1037223.0000,1033026.0000,1037014.0000,1036543.0000,1036012.0000,1031664.0000,1059977.0000,1031884.0000,1034558.0000,1034258.0000,1037224.0000,1035160.0000,1038346.0000,1033867.0000,1035381.0000,1035712.0000,1037604.0000,1036533.0000" -generating large instruction graphs for N devices - 1,wave_sim topology,100,1,511522300,5776644.8700,5772905.4000,5787013.3600,29138.9568,13175.9230,62243.4157,"benchmark,group:instruction-graph","5783351.0000,5775715.0000,6029457.0000,5845267.0000,5771938.0000,5776738.0000,5778601.0000,5783881.0000,5782669.0000,5778821.0000,5769724.0000,5779312.0000,5771558.0000,5765075.0000,5777088.0000,5755277.0000,5767360.0000,5757661.0000,5802095.0000,5776778.0000,5776077.0000,5762801.0000,5775696.0000,5760717.0000,5754516.0000,5747242.0000,5769825.0000,5751590.0000,5745578.0000,5773711.0000,5788760.0000,5764494.0000,5761008.0000,5777138.0000,5779423.0000,5765025.0000,5772128.0000,5755156.0000,5778841.0000,5764625.0000,5750488.0000,5769173.0000,5763332.0000,5762070.0000,5762200.0000,5778662.0000,5772549.0000,5778931.0000,5763593.0000,5758083.0000,5776617.0000,5777079.0000,5769894.0000,5803318.0000,5761398.0000,5759786.0000,5785234.0000,5771578.0000,5771217.0000,5769053.0000,5781386.0000,5761309.0000,5771918.0000,5775075.0000,5768422.0000,5780725.0000,5766669.0000,5792297.0000,5783421.0000,5769904.0000,5795874.0000,5775415.0000,5775285.0000,5791496.0000,5760266.0000,5755668.0000,5765176.0000,5766989.0000,5791665.0000,5776246.0000,5768162.0000,5771969.0000,5778330.0000,5790163.0000,5774483.0000,5778351.0000,5792598.0000,5768682.0000,5812866.0000,5770055.0000,5770255.0000,5789001.0000,5786957.0000,5759915.0000,5780815.0000,5771939.0000,5772620.0000,5808387.0000,5771768.0000,5784993.0000" -generating large instruction graphs for N devices - 1,jacobi topology,100,1,129492100,1281665.4700,1270454.0300,1289079.0300,45820.8290,32444.9575,58615.4442,"benchmark,group:instruction-graph","1142103.0000,1143766.0000,1301686.0000,1296616.0000,1288761.0000,1298930.0000,1289452.0000,1292277.0000,1301105.0000,1298569.0000,1291136.0000,1293831.0000,1306314.0000,1308749.0000,1294842.0000,1299360.0000,1291566.0000,1292178.0000,1290734.0000,1302777.0000,1293981.0000,1297157.0000,1300764.0000,1292037.0000,1322495.0000,1302136.0000,1293800.0000,1294332.0000,1293690.0000,1299582.0000,1293560.0000,1291386.0000,1300694.0000,1294862.0000,1293430.0000,1303168.0000,1294211.0000,1294622.0000,1290645.0000,1303438.0000,1299661.0000,1296957.0000,1304100.0000,1294833.0000,1293369.0000,1300773.0000,1291907.0000,1292478.0000,1295393.0000,1298980.0000,1293389.0000,1297728.0000,1302216.0000,1290705.0000,1293830.0000,1291065.0000,1297868.0000,1292027.0000,1295684.0000,1305052.0000,1295073.0000,1292999.0000,1296395.0000,1290394.0000,1298269.0000,1289141.0000,1301444.0000,1292227.0000,1291326.0000,1302277.0000,1296666.0000,1293740.0000,1303299.0000,1295935.0000,1289302.0000,1299832.0000,1298329.0000,1289963.0000,1289291.0000,1300433.0000,1292718.0000,1293741.0000,1290694.0000,1299642.0000,1290965.0000,1294622.0000,1293720.0000,1294953.0000,1289813.0000,1301615.0000,1291435.0000,1288149.0000,1287739.0000,1150929.0000,1131212.0000,1127796.0000,1137163.0000,1135710.0000,1130010.0000,1134829.0000" -generating large instruction graphs for N devices - 4,soup topology,100,1,409394300,4517404.3200,4466824.4700,4558934.1500,233052.8229,199780.7015,258242.8454,"benchmark,group:instruction-graph","4687503.0000,4646064.0000,4687303.0000,4655793.0000,4650743.0000,4630795.0000,4648990.0000,4660071.0000,4648288.0000,4651064.0000,4652496.0000,4637378.0000,4635384.0000,4636326.0000,4646325.0000,4649121.0000,4637438.0000,4642578.0000,4656584.0000,4638390.0000,4640884.0000,4637418.0000,4646726.0000,4652567.0000,4674568.0000,4646866.0000,4662565.0000,4647828.0000,4632199.0000,4645553.0000,4631728.0000,4649691.0000,4654882.0000,4646014.0000,4650112.0000,4655433.0000,4642938.0000,4651214.0000,4657165.0000,4633631.0000,4646134.0000,4650252.0000,4644722.0000,4649651.0000,4654410.0000,4657095.0000,4649671.0000,4639151.0000,4444001.0000,4099008.0000,4105840.0000,4091784.0000,4095721.0000,4101532.0000,4102754.0000,4084230.0000,4090231.0000,4094960.0000,4084160.0000,4086263.0000,4094880.0000,4093277.0000,4093818.0000,4093577.0000,4094109.0000,4089269.0000,4085362.0000,4081745.0000,4074210.0000,4122251.0000,4093628.0000,4088878.0000,4603724.0000,4635033.0000,4644963.0000,4650443.0000,4634673.0000,4644010.0000,4649170.0000,4638099.0000,4642307.0000,4640704.0000,4647016.0000,4645754.0000,4644201.0000,4643921.0000,4639782.0000,4642127.0000,4666773.0000,4650282.0000,4643249.0000,4675310.0000,4636666.0000,4633882.0000,4648739.0000,4642277.0000,4633601.0000,4643720.0000,4629433.0000,4655383.0000" -generating large instruction graphs for N devices - 4,chain topology,100,1,66934100,674469.8400,666873.0400,681094.0600,36133.8208,31588.3262,39855.0037,"benchmark,group:instruction-graph","617909.0000,611688.0000,695487.0000,697079.0000,696398.0000,688433.0000,697159.0000,695145.0000,697310.0000,688133.0000,700927.0000,697450.0000,689866.0000,700346.0000,698231.0000,688012.0000,699684.0000,697841.0000,687851.0000,695856.0000,698151.0000,694745.0000,688192.0000,694635.0000,698693.0000,686559.0000,697931.0000,697470.0000,688253.0000,695155.0000,698472.0000,699434.0000,694064.0000,702429.0000,699273.0000,691249.0000,697540.0000,700226.0000,689445.0000,697320.0000,699444.0000,688172.0000,697369.0000,697380.0000,696328.0000,688062.0000,700797.0000,741293.0000,689875.0000,697420.0000,694544.0000,689405.0000,698983.0000,696698.0000,697100.0000,687291.0000,697049.0000,695426.0000,685537.0000,692500.0000,695275.0000,690797.0000,691950.0000,693443.0000,692831.0000,692000.0000,701919.0000,697871.0000,691339.0000,699945.0000,693552.0000,688523.0000,695647.0000,695005.0000,690087.0000,694985.0000,660170.0000,608411.0000,613981.0000,613310.0000,607951.0000,614022.0000,611227.0000,609092.0000,629841.0000,605746.0000,616657.0000,619402.0000,605876.0000,618841.0000,606328.0000,614082.0000,619342.0000,607971.0000,614563.0000,607369.0000,618099.0000,617569.0000,605957.0000,615294.0000" -generating large instruction graphs for N devices - 4,expanding tree topology,100,1,87824900,882325.4100,874016.9600,889497.3400,39197.7741,34228.6662,44190.6558,"benchmark,group:instruction-graph","801678.0000,813710.0000,909832.0000,900865.0000,904253.0000,903270.0000,898341.0000,903110.0000,902880.0000,902198.0000,904493.0000,902328.0000,903330.0000,906577.0000,901837.0000,900626.0000,901226.0000,899624.0000,901076.0000,901607.0000,901878.0000,903982.0000,931473.0000,904091.0000,901376.0000,902378.0000,905244.0000,897239.0000,904553.0000,900525.0000,903781.0000,903410.0000,905735.0000,903361.0000,902408.0000,905464.0000,903701.0000,894253.0000,900605.0000,983372.0000,904312.0000,904863.0000,902148.0000,906276.0000,903851.0000,904212.0000,901337.0000,902950.0000,902258.0000,895085.0000,900615.0000,902148.0000,903230.0000,899694.0000,900575.0000,901367.0000,904553.0000,901346.0000,899073.0000,899162.0000,901977.0000,906105.0000,904944.0000,902418.0000,904903.0000,906967.0000,906486.0000,903150.0000,907649.0000,899753.0000,905384.0000,902128.0000,904182.0000,905093.0000,901658.0000,903751.0000,905264.0000,854298.0000,808601.0000,816536.0000,812047.0000,814552.0000,818520.0000,818961.0000,813269.0000,817518.0000,821496.0000,814221.0000,820033.0000,806386.0000,817447.0000,820604.0000,821315.0000,817658.0000,813410.0000,808581.0000,820223.0000,813791.0000,815033.0000,815484.0000" -generating large instruction graphs for N devices - 4,contracting tree topology,100,1,103465500,950264.2000,943291.1700,959106.9100,39977.0997,32497.7022,46828.2832,"benchmark,group:instruction-graph","934479.0000,932155.0000,1046452.0000,1041322.0000,1037715.0000,1037014.0000,1039348.0000,1042193.0000,1040881.0000,1041262.0000,984935.0000,938287.0000,935512.0000,932405.0000,929831.0000,931965.0000,929690.0000,932386.0000,959006.0000,1040610.0000,1045119.0000,1038456.0000,1064035.0000,1032044.0000,1038877.0000,1039037.0000,1016746.0000,930742.0000,933378.0000,932215.0000,931394.0000,932666.0000,931243.0000,932376.0000,932125.0000,922617.0000,929891.0000,933958.0000,933027.0000,935672.0000,932295.0000,931845.0000,958915.0000,935741.0000,931563.0000,928578.0000,930892.0000,931293.0000,932446.0000,932896.0000,922947.0000,935421.0000,937055.0000,933447.0000,935121.0000,931073.0000,933939.0000,931754.0000,931584.0000,936804.0000,935331.0000,934450.0000,931784.0000,932376.0000,933447.0000,923639.0000,933157.0000,929270.0000,930722.0000,936634.0000,928949.0000,932265.0000,930151.0000,931333.0000,932666.0000,930632.0000,933126.0000,938097.0000,932816.0000,929470.0000,925272.0000,931634.0000,929640.0000,927957.0000,927827.0000,931764.0000,932907.0000,931483.0000,931944.0000,931384.0000,928959.0000,934840.0000,930733.0000,929379.0000,923077.0000,935551.0000,931564.0000,934019.0000,931724.0000,935772.0000" -generating large instruction graphs for N devices - 4,wave_sim topology,100,1,557751500,5629735.2600,5566943.7300,5683517.1300,297118.3806,262114.1220,323802.3118,"benchmark,group:instruction-graph","5132727.0000,5127337.0000,6065675.0000,5879713.0000,5824548.0000,5813306.0000,5815040.0000,5798549.0000,5806775.0000,5805232.0000,5787378.0000,5816112.0000,5812435.0000,5802476.0000,5807085.0000,5809349.0000,5803619.0000,5796345.0000,5786797.0000,5816212.0000,5308490.0000,5237796.0000,5828806.0000,5805112.0000,5797697.0000,5829497.0000,5815111.0000,5795032.0000,5802547.0000,5828826.0000,5803768.0000,5794772.0000,5799851.0000,5808248.0000,5811884.0000,5800623.0000,5812566.0000,5261391.0000,5143948.0000,5157905.0000,5159538.0000,5149038.0000,5127267.0000,5127387.0000,5124431.0000,5136504.0000,5151973.0000,5120334.0000,5127346.0000,5108731.0000,5106648.0000,5135081.0000,5123218.0000,5114833.0000,5109994.0000,5121686.0000,5798188.0000,5808007.0000,5829578.0000,5809400.0000,5784412.0000,5806294.0000,5794451.0000,5799430.0000,5808037.0000,5794391.0000,5791566.0000,5816683.0000,5813958.0000,5815521.0000,5791536.0000,5818897.0000,5809660.0000,5836070.0000,5804671.0000,5784522.0000,5849205.0000,5787739.0000,5797277.0000,5792327.0000,5783400.0000,5803879.0000,5816964.0000,5799100.0000,5808698.0000,5809569.0000,5799200.0000,5794211.0000,5800953.0000,5800753.0000,5826652.0000,5788751.0000,5818166.0000,5823757.0000,5783531.0000,5656590.0000,5124772.0000,5128589.0000,5136194.0000,5133388.0000" -generating large instruction graphs for N devices - 4,jacobi topology,100,1,129502300,1304313.4500,1303192.6900,1306563.8700,7813.5909,4658.9249,15079.7308,"benchmark,group:instruction-graph","1302407.0000,1299170.0000,1307696.0000,1302156.0000,1308348.0000,1302247.0000,1304821.0000,1310071.0000,1304611.0000,1296075.0000,1308468.0000,1303148.0000,1295915.0000,1306485.0000,1300312.0000,1300413.0000,1304360.0000,1308449.0000,1298740.0000,1304340.0000,1311855.0000,1300614.0000,1311053.0000,1313147.0000,1307166.0000,1306665.0000,1305142.0000,1308579.0000,1300463.0000,1302858.0000,1307186.0000,1303639.0000,1303389.0000,1307767.0000,1296986.0000,1298549.0000,1304110.0000,1297768.0000,1302217.0000,1300583.0000,1309771.0000,1298760.0000,1298459.0000,1308177.0000,1299401.0000,1300663.0000,1307537.0000,1299802.0000,1297547.0000,1302757.0000,1307927.0000,1300192.0000,1306555.0000,1308238.0000,1301816.0000,1303218.0000,1305934.0000,1297748.0000,1301465.0000,1299291.0000,1329518.0000,1300443.0000,1302998.0000,1314800.0000,1302387.0000,1307637.0000,1308208.0000,1303769.0000,1298950.0000,1305001.0000,1302638.0000,1300793.0000,1304210.0000,1310602.0000,1300433.0000,1300262.0000,1307637.0000,1296566.0000,1295704.0000,1305844.0000,1293620.0000,1303028.0000,1302708.0000,1306073.0000,1300623.0000,1299030.0000,1308117.0000,1306204.0000,1302878.0000,1363553.0000,1300503.0000,1304301.0000,1311123.0000,1299672.0000,1297498.0000,1298258.0000,1306093.0000,1300823.0000,1303659.0000,1311955.0000" -generating large instruction graphs for N devices - 16,soup topology,100,1,467724300,4540281.7000,4489513.7400,4582053.3600,234057.1597,201259.2261,259128.1732,"benchmark,group:instruction-graph","4667695.0000,4661393.0000,4723983.0000,4670591.0000,4667164.0000,4678375.0000,4665421.0000,4669719.0000,4676282.0000,4661604.0000,4672255.0000,4680109.0000,4663778.0000,4677915.0000,4675561.0000,4658818.0000,4675821.0000,4674087.0000,4665791.0000,4669839.0000,4682684.0000,4664580.0000,4671042.0000,4694336.0000,4665832.0000,4668316.0000,4658208.0000,4666654.0000,4666453.0000,4669249.0000,4664970.0000,4676282.0000,4702131.0000,4660933.0000,4411961.0000,4125207.0000,4110520.0000,4118955.0000,4125628.0000,4113976.0000,4112894.0000,4112032.0000,4111181.0000,4104949.0000,4112553.0000,4103135.0000,4145716.0000,4114467.0000,4114106.0000,4120989.0000,4104789.0000,4115038.0000,4107845.0000,4116370.0000,4110981.0000,4120458.0000,4110580.0000,4114357.0000,4667034.0000,4666293.0000,4668257.0000,4673717.0000,4665461.0000,4660142.0000,4669579.0000,4659260.0000,4657756.0000,4658157.0000,4674028.0000,4692402.0000,4678456.0000,4667616.0000,4655412.0000,4667025.0000,4670971.0000,4674137.0000,4670672.0000,4673997.0000,4661194.0000,4684848.0000,4670441.0000,4666313.0000,4670561.0000,4672735.0000,4654260.0000,4674448.0000,4664209.0000,4671302.0000,4675130.0000,4664770.0000,4705086.0000,4650222.0000,4674077.0000,4668016.0000,4655211.0000,4671903.0000,4670862.0000,4669098.0000,4657386.0000,4679168.0000" -generating large instruction graphs for N devices - 16,chain topology,100,1,69585700,617763.3000,616677.8700,618865.6000,5588.4582,5096.0504,6274.2312,"benchmark,group:instruction-graph","622097.0000,609794.0000,631585.0000,619051.0000,612209.0000,621476.0000,626776.0000,614002.0000,625303.0000,608933.0000,616206.0000,621927.0000,611377.0000,618671.0000,618250.0000,609464.0000,619743.0000,613801.0000,621636.0000,622959.0000,612720.0000,619642.0000,611447.0000,619272.0000,621045.0000,610916.0000,620333.0000,622417.0000,611176.0000,619011.0000,609584.0000,620765.0000,623991.0000,613541.0000,624291.0000,611196.0000,620855.0000,621837.0000,614443.0000,620865.0000,621577.0000,610866.0000,621817.0000,613010.0000,621045.0000,626345.0000,610085.0000,626205.0000,622979.0000,614403.0000,620725.0000,612308.0000,621195.0000,620805.0000,613291.0000,621987.0000,611978.0000,619532.0000,625614.0000,611477.0000,617729.0000,620424.0000,612659.0000,621826.0000,611256.0000,621116.0000,623199.0000,608561.0000,621486.0000,610966.0000,620935.0000,625033.0000,611227.0000,620194.0000,618851.0000,608211.0000,622127.0000,610204.0000,631124.0000,618500.0000,611757.0000,620405.0000,615695.0000,610776.0000,627618.0000,611437.0000,623039.0000,620184.0000,608662.0000,618430.0000,611587.0000,616557.0000,619573.0000,612699.0000,620314.0000,620785.0000,611327.0000,625865.0000,611557.0000,620584.0000" -generating large instruction graphs for N devices - 16,expanding tree topology,100,1,82753400,910133.3400,907603.2100,911207.4200,7965.1804,3490.4495,16612.8243,"benchmark,group:instruction-graph","910414.0000,907949.0000,843206.0000,910865.0000,904102.0000,913079.0000,912668.0000,911997.0000,939549.0000,912087.0000,912769.0000,914551.0000,910924.0000,912818.0000,907999.0000,909262.0000,905835.0000,912698.0000,910924.0000,909381.0000,911706.0000,911596.0000,913149.0000,909262.0000,912748.0000,908521.0000,911646.0000,907829.0000,909903.0000,911596.0000,908671.0000,906797.0000,910023.0000,913309.0000,915152.0000,909371.0000,910744.0000,910013.0000,905435.0000,910834.0000,914731.0000,911826.0000,909883.0000,911486.0000,913369.0000,918539.0000,917096.0000,912908.0000,908440.0000,910063.0000,902559.0000,913950.0000,911656.0000,909722.0000,911515.0000,911075.0000,911315.0000,912698.0000,912007.0000,909872.0000,905444.0000,902599.0000,907108.0000,909993.0000,910464.0000,911987.0000,909101.0000,911285.0000,907689.0000,913780.0000,908450.0000,911024.0000,899282.0000,912718.0000,915203.0000,914381.0000,917127.0000,909001.0000,910805.0000,914111.0000,910073.0000,911776.0000,910133.0000,903982.0000,908871.0000,913469.0000,912197.0000,908159.0000,910684.0000,910514.0000,907108.0000,914221.0000,910093.0000,906707.0000,903441.0000,912087.0000,908159.0000,911215.0000,912257.0000,910544.0000" -generating large instruction graphs for N devices - 16,contracting tree topology,100,1,98439800,1004878.8900,994011.8700,1014982.4100,53463.7003,50235.7737,55291.1534,"benchmark,group:instruction-graph","1069425.0000,1044207.0000,946402.0000,940681.0000,940811.0000,941884.0000,939138.0000,935421.0000,937214.0000,936924.0000,937485.0000,938867.0000,934940.0000,936563.0000,941091.0000,928938.0000,939859.0000,937355.0000,936724.0000,937856.0000,938727.0000,938797.0000,935251.0000,940390.0000,937736.0000,938637.0000,939129.0000,934900.0000,938076.0000,939669.0000,935261.0000,924711.0000,939489.0000,933297.0000,974165.0000,936463.0000,938678.0000,940200.0000,939790.0000,936914.0000,940872.0000,991106.0000,1054306.0000,1051001.0000,1048976.0000,1048366.0000,1046632.0000,1048045.0000,1047724.0000,1051120.0000,1050629.0000,1049808.0000,1047234.0000,1051581.0000,1042815.0000,1049287.0000,1048526.0000,1043616.0000,1045219.0000,1046412.0000,1048645.0000,1047082.0000,1047383.0000,1047093.0000,1045320.0000,1047584.0000,1044939.0000,1046802.0000,1044719.0000,1049387.0000,1046852.0000,1046842.0000,1046843.0000,1047373.0000,1058515.0000,1048566.0000,1045470.0000,1043786.0000,1048224.0000,1047393.0000,1045219.0000,1046772.0000,1050089.0000,1047864.0000,1046622.0000,1047324.0000,1047684.0000,1047584.0000,1046542.0000,1049367.0000,1045831.0000,1051341.0000,1045520.0000,1047834.0000,1045711.0000,1052593.0000,1049267.0000,1046742.0000,1047343.0000,1046482.0000" -generating large instruction graphs for N devices - 16,wave_sim topology,100,1,589490600,5657112.0600,5588266.4600,5718946.1200,331143.8498,306098.6017,346695.7115,"benchmark,group:instruction-graph","5906614.0000,5898719.0000,6126510.0000,5970625.0000,5894460.0000,5886395.0000,5912465.0000,5897637.0000,5898158.0000,5886706.0000,5883961.0000,5882548.0000,5904009.0000,5897056.0000,5914058.0000,5910351.0000,5886055.0000,5905332.0000,5422506.0000,5192801.0000,5195436.0000,5197770.0000,5203941.0000,5206607.0000,5193021.0000,5205936.0000,5200045.0000,5215123.0000,5205024.0000,5209362.0000,5215113.0000,5200575.0000,5233057.0000,5217157.0000,5191979.0000,5201939.0000,5338948.0000,5899560.0000,5873772.0000,5907305.0000,5916031.0000,5890794.0000,5924859.0000,5889201.0000,5890203.0000,5911062.0000,5907345.0000,5884131.0000,5893529.0000,5892086.0000,5921782.0000,5899420.0000,5883129.0000,5905903.0000,5873992.0000,5889381.0000,5884603.0000,5878560.0000,5884913.0000,5892187.0000,5894230.0000,5886555.0000,5885323.0000,5888440.0000,5899861.0000,5922855.0000,5919097.0000,5919469.0000,5901223.0000,5896975.0000,5886235.0000,5912414.0000,5879993.0000,5900232.0000,5886025.0000,5942542.0000,5195306.0000,5199353.0000,5202800.0000,5196017.0000,5233618.0000,5218289.0000,5198922.0000,5221535.0000,5237235.0000,5220764.0000,5195486.0000,5203742.0000,5194714.0000,5199524.0000,5192470.0000,5203811.0000,5304152.0000,5917103.0000,5905282.0000,5897687.0000,5912835.0000,5908978.0000,5927674.0000,5900693.0000" -generating large instruction graphs for N devices - 16,jacobi topology,100,1,127608100,1179683.3200,1178767.5800,1180858.5100,5261.7584,4291.0455,7319.0410,"benchmark,group:instruction-graph","1180245.0000,1179574.0000,1185204.0000,1182760.0000,1193951.0000,1177690.0000,1171638.0000,1176228.0000,1177260.0000,1171128.0000,1181858.0000,1179253.0000,1174304.0000,1174194.0000,1184343.0000,1170817.0000,1182619.0000,1179343.0000,1187469.0000,1174694.0000,1177661.0000,1179744.0000,1177871.0000,1178512.0000,1174344.0000,1175587.0000,1173703.0000,1186507.0000,1179294.0000,1175406.0000,1180245.0000,1180185.0000,1185986.0000,1178492.0000,1181007.0000,1178873.0000,1176989.0000,1177991.0000,1193691.0000,1176278.0000,1173923.0000,1177991.0000,1179214.0000,1183792.0000,1181688.0000,1185906.0000,1181077.0000,1174264.0000,1176618.0000,1185725.0000,1175876.0000,1175496.0000,1183091.0000,1176668.0000,1175827.0000,1184844.0000,1175667.0000,1173543.0000,1178892.0000,1183802.0000,1188791.0000,1180686.0000,1176999.0000,1178582.0000,1180055.0000,1176789.0000,1189803.0000,1175185.0000,1180736.0000,1177670.0000,1181077.0000,1183241.0000,1184173.0000,1179564.0000,1177360.0000,1179013.0000,1177079.0000,1189122.0000,1177249.0000,1183181.0000,1181418.0000,1174434.0000,1190204.0000,1180125.0000,1178321.0000,1172190.0000,1179553.0000,1177720.0000,1183842.0000,1179354.0000,1175887.0000,1175336.0000,1178803.0000,1180315.0000,1177881.0000,1176688.0000,1177009.0000,1174775.0000,1175998.0000,1205282.0000" -generating large instruction graphs for N devices without d2d copy support - 1,soup topology,100,1,464360500,4640248.8900,4638361.7900,4644037.9800,13052.2492,8068.5695,25014.8454,"benchmark,group:instruction-graph","4642338.0000,4630986.0000,4650633.0000,4633911.0000,4738740.0000,4640103.0000,4632519.0000,4645804.0000,4647917.0000,4638199.0000,4649562.0000,4643550.0000,4629022.0000,4635945.0000,4637608.0000,4629804.0000,4647357.0000,4657446.0000,4635265.0000,4644411.0000,4630756.0000,4631838.0000,4640975.0000,4646776.0000,4652296.0000,4644091.0000,4633841.0000,4635865.0000,4647317.0000,4647097.0000,4641015.0000,4635124.0000,4639252.0000,4633681.0000,4639091.0000,4652327.0000,4641756.0000,4636687.0000,4656364.0000,4639181.0000,4624824.0000,4634773.0000,4633030.0000,4632569.0000,4647978.0000,4628822.0000,4650193.0000,4665501.0000,4632279.0000,4650693.0000,4636216.0000,4633251.0000,4632078.0000,4636637.0000,4633030.0000,4648268.0000,4627840.0000,4643580.0000,4634031.0000,4634001.0000,4670681.0000,4645323.0000,4639071.0000,4642438.0000,4637879.0000,4627380.0000,4629092.0000,4630084.0000,4629072.0000,4653268.0000,4631046.0000,4639752.0000,4646996.0000,4622309.0000,4627710.0000,4637689.0000,4636156.0000,4633481.0000,4631787.0000,4642718.0000,4634372.0000,4653659.0000,4630816.0000,4639492.0000,4637539.0000,4641376.0000,4642698.0000,4635965.0000,4641335.0000,4639152.0000,4631146.0000,4642428.0000,4634002.0000,4635945.0000,4654280.0000,4636426.0000,4637118.0000,4637127.0000,4631747.0000,4638290.0000" -generating large instruction graphs for N devices without d2d copy support - 1,chain topology,100,1,68994100,689757.6900,688862.4300,690648.8100,4559.9737,4035.3145,5486.8054,"benchmark,group:instruction-graph","695226.0000,695296.0000,689254.0000,692511.0000,692431.0000,682452.0000,690787.0000,691208.0000,686720.0000,694705.0000,695456.0000,685297.0000,692170.0000,695085.0000,692210.0000,686088.0000,691719.0000,691559.0000,686700.0000,692671.0000,690226.0000,683594.0000,692280.0000,691890.0000,679566.0000,692060.0000,690187.0000,688994.0000,682101.0000,693643.0000,692952.0000,682902.0000,689294.0000,692491.0000,683113.0000,691770.0000,690667.0000,683925.0000,689805.0000,690326.0000,683183.0000,691739.0000,692992.0000,690016.0000,685437.0000,692752.0000,692010.0000,681429.0000,697440.0000,697831.0000,685407.0000,693533.0000,689826.0000,681209.0000,692231.0000,692200.0000,687070.0000,683954.0000,693513.0000,692982.0000,680538.0000,694054.0000,689214.0000,685807.0000,691318.0000,691359.0000,682452.0000,687962.0000,691629.0000,683324.0000,691438.0000,691278.0000,693042.0000,684826.0000,691519.0000,690107.0000,683213.0000,698131.0000,692991.0000,687061.0000,690477.0000,693663.0000,685748.0000,705566.0000,692871.0000,689415.0000,685297.0000,692891.0000,693583.0000,682071.0000,690136.0000,689725.0000,685257.0000,690868.0000,693102.0000,683353.0000,693482.0000,691179.0000,683994.0000,693743.0000" -generating large instruction graphs for N devices without d2d copy support - 1,expanding tree topology,100,1,90124300,834415.7200,827377.1600,842639.5600,38939.5838,34089.5878,42635.2109,"benchmark,group:instruction-graph","804072.0000,810054.0000,910294.0000,904843.0000,900144.0000,894263.0000,902088.0000,903771.0000,901216.0000,900785.0000,899633.0000,900585.0000,902649.0000,901497.0000,898000.0000,896878.0000,901566.0000,903891.0000,900886.0000,899062.0000,900996.0000,902649.0000,897920.0000,898010.0000,897940.0000,895736.0000,906366.0000,864216.0000,814311.0000,812979.0000,811897.0000,802759.0000,811045.0000,811446.0000,814131.0000,812899.0000,814322.0000,805705.0000,814462.0000,827677.0000,810614.0000,810926.0000,805915.0000,814161.0000,814873.0000,811666.0000,812207.0000,801788.0000,809793.0000,812919.0000,808110.0000,814211.0000,807469.0000,807699.0000,816476.0000,812889.0000,816165.0000,809722.0000,806887.0000,812979.0000,815163.0000,809342.0000,810585.0000,803982.0000,812919.0000,813711.0000,817367.0000,816886.0000,806116.0000,810364.0000,814512.0000,814482.0000,815103.0000,812248.0000,804473.0000,811406.0000,815614.0000,813680.0000,813801.0000,803321.0000,812989.0000,814713.0000,813740.0000,815013.0000,802318.0000,811616.0000,814532.0000,814221.0000,812478.0000,811978.0000,806356.0000,809884.0000,812889.0000,812127.0000,810103.0000,800987.0000,816125.0000,815594.0000,813360.0000,814362.0000" -generating large instruction graphs for N devices without d2d copy support - 1,contracting tree topology,100,1,92990300,931559.8300,930422.4900,935466.7300,9571.5571,3196.6506,21482.7753,"benchmark,group:instruction-graph","923078.0000,929830.0000,936844.0000,931503.0000,929479.0000,930972.0000,932235.0000,933006.0000,931924.0000,928929.0000,930121.0000,929399.0000,924550.0000,932406.0000,931494.0000,929830.0000,935101.0000,932867.0000,931363.0000,929480.0000,927616.0000,1020332.0000,931684.0000,928768.0000,932516.0000,930452.0000,932536.0000,930822.0000,921945.0000,929921.0000,929841.0000,929069.0000,933167.0000,933848.0000,931744.0000,930121.0000,928819.0000,930001.0000,930021.0000,933047.0000,931484.0000,934810.0000,927026.0000,926514.0000,931303.0000,929029.0000,929630.0000,930843.0000,932506.0000,928568.0000,934139.0000,931454.0000,930662.0000,929841.0000,930201.0000,928809.0000,932085.0000,922336.0000,932335.0000,934279.0000,932506.0000,929670.0000,931874.0000,931544.0000,927837.0000,932055.0000,932957.0000,930371.0000,931303.0000,932456.0000,933227.0000,919802.0000,926925.0000,928488.0000,931153.0000,930051.0000,935301.0000,929680.0000,931494.0000,931183.0000,928338.0000,928238.0000,946181.0000,929089.0000,932636.0000,928488.0000,919381.0000,927085.0000,931614.0000,930822.0000,939249.0000,931223.0000,933939.0000,934459.0000,929140.0000,932796.0000,935061.0000,928839.0000,929720.0000,931273.0000" -generating large instruction graphs for N devices without d2d copy support - 1,wave_sim topology,100,1,578329100,5474724.6000,5408073.1600,5539710.6700,335757.5720,327473.4630,346529.5625,"benchmark,group:instruction-graph","5761408.0000,5780185.0000,6003798.0000,5847131.0000,5764424.0000,5765437.0000,5773752.0000,5773702.0000,5778050.0000,5775566.0000,5764765.0000,5758994.0000,5787589.0000,5778441.0000,5777769.0000,5778270.0000,5434630.0000,5104804.0000,5121275.0000,5105536.0000,5102189.0000,5106317.0000,5106237.0000,5106638.0000,5108421.0000,5114613.0000,5106938.0000,5110234.0000,5100656.0000,5094985.0000,5097601.0000,5124992.0000,5121496.0000,5117178.0000,5111426.0000,5090587.0000,5091990.0000,5104183.0000,5113380.0000,5094625.0000,5088133.0000,5098111.0000,5099374.0000,5115685.0000,5173805.0000,5090627.0000,5099545.0000,5100926.0000,5099253.0000,5100165.0000,5108621.0000,5112308.0000,5103721.0000,5099193.0000,5081911.0000,5084385.0000,5099163.0000,5121786.0000,5103361.0000,5105726.0000,5109884.0000,5148416.0000,5787648.0000,5782980.0000,5766448.0000,5788250.0000,5774002.0000,5781237.0000,5787318.0000,5820510.0000,5775495.0000,5760787.0000,5775525.0000,5788310.0000,5786366.0000,5788560.0000,5772931.0000,5781426.0000,5781466.0000,5769714.0000,5767190.0000,5777689.0000,5775065.0000,5770446.0000,5777028.0000,5771308.0000,5799751.0000,5767450.0000,5771397.0000,5764124.0000,5776818.0000,5772490.0000,5772109.0000,5757602.0000,5787488.0000,5770746.0000,5780544.0000,5781076.0000,5771207.0000,5787648.0000" -generating large instruction graphs for N devices without d2d copy support - 1,jacobi topology,100,1,129651500,1297124.4100,1295460.5600,1302052.1200,13372.3144,5402.3128,29094.4560,"benchmark,group:instruction-graph","1294031.0000,1297738.0000,1305333.0000,1292227.0000,1294903.0000,1299802.0000,1292889.0000,1300994.0000,1299572.0000,1291807.0000,1293289.0000,1415982.0000,1292137.0000,1291907.0000,1295253.0000,1296024.0000,1294171.0000,1290264.0000,1325440.0000,1290805.0000,1293219.0000,1292618.0000,1300022.0000,1295093.0000,1289081.0000,1296204.0000,1291295.0000,1292017.0000,1301745.0000,1299622.0000,1291616.0000,1294762.0000,1304040.0000,1288611.0000,1287639.0000,1301254.0000,1295043.0000,1295062.0000,1302476.0000,1292608.0000,1295253.0000,1294592.0000,1304420.0000,1293420.0000,1296686.0000,1304190.0000,1288400.0000,1292227.0000,1292447.0000,1296796.0000,1291606.0000,1289582.0000,1301305.0000,1295904.0000,1291566.0000,1300052.0000,1297767.0000,1300503.0000,1291586.0000,1301905.0000,1299672.0000,1296846.0000,1299771.0000,1290133.0000,1294201.0000,1302547.0000,1292758.0000,1293850.0000,1292438.0000,1302948.0000,1291416.0000,1294492.0000,1303890.0000,1293039.0000,1293109.0000,1292337.0000,1300352.0000,1292628.0000,1289402.0000,1300534.0000,1287829.0000,1290755.0000,1299191.0000,1295984.0000,1300453.0000,1295944.0000,1300934.0000,1295664.0000,1288661.0000,1298800.0000,1288019.0000,1294732.0000,1288050.0000,1299260.0000,1292748.0000,1323086.0000,1296726.0000,1288811.0000,1292959.0000,1298670.0000" -generating large instruction graphs for N devices without d2d copy support - 4,soup topology,100,1,464605500,4644086.8600,4641707.9000,4648757.8200,16347.5694,9445.1329,28779.5698,"benchmark,group:instruction-graph","4650513.0000,4633811.0000,4658048.0000,4638490.0000,4656474.0000,4648209.0000,4634683.0000,4640965.0000,4649932.0000,4641456.0000,4679719.0000,4647537.0000,4628532.0000,4638540.0000,4634964.0000,4629443.0000,4636456.0000,4638411.0000,4652046.0000,4647437.0000,4639652.0000,4644282.0000,4640293.0000,4635805.0000,4639472.0000,4650042.0000,4637469.0000,4639472.0000,4633951.0000,4758437.0000,4643450.0000,4662325.0000,4652326.0000,4639592.0000,4639712.0000,4643881.0000,4639111.0000,4626067.0000,4646425.0000,4651696.0000,4634051.0000,4643790.0000,4642398.0000,4639472.0000,4635885.0000,4650994.0000,4641946.0000,4648359.0000,4637388.0000,4645753.0000,4642517.0000,4630034.0000,4640394.0000,4656735.0000,4628912.0000,4645483.0000,4719654.0000,4641325.0000,4647417.0000,4649892.0000,4633701.0000,4641225.0000,4633491.0000,4634703.0000,4639001.0000,4638620.0000,4651495.0000,4648039.0000,4628681.0000,4633892.0000,4650974.0000,4630004.0000,4642097.0000,4636276.0000,4661303.0000,4632329.0000,4633220.0000,4635174.0000,4638881.0000,4636426.0000,4638941.0000,4640544.0000,4634693.0000,4645203.0000,4642999.0000,4632930.0000,4648689.0000,4632579.0000,4647768.0000,4639772.0000,4627800.0000,4646625.0000,4648760.0000,4643971.0000,4649741.0000,4647487.0000,4662646.0000,4648559.0000,4645383.0000,4632539.0000" -generating large instruction graphs for N devices without d2d copy support - 4,chain topology,100,1,69190700,692162.7700,691190.5200,693511.8500,5786.9809,4190.8903,8659.8823,"benchmark,group:instruction-graph","685828.0000,695716.0000,693933.0000,694895.0000,694294.0000,684285.0000,692060.0000,694444.0000,692641.0000,685317.0000,693432.0000,692040.0000,688062.0000,694424.0000,695927.0000,683183.0000,697961.0000,694675.0000,686740.0000,692581.0000,693082.0000,692080.0000,686810.0000,693272.0000,698111.0000,683384.0000,695937.0000,694815.0000,688593.0000,698672.0000,697731.0000,686139.0000,695727.0000,697380.0000,694695.0000,686520.0000,694003.0000,695776.0000,686549.0000,693052.0000,690066.0000,684596.0000,691098.0000,694464.0000,684937.0000,694264.0000,695837.0000,691900.0000,687291.0000,693012.0000,724160.0000,686259.0000,692530.0000,689775.0000,683234.0000,688964.0000,691328.0000,685797.0000,693142.0000,696007.0000,691830.0000,686459.0000,692261.0000,694164.0000,688523.0000,691689.0000,691408.0000,684436.0000,694725.0000,691559.0000,685888.0000,692039.0000,696498.0000,686540.0000,692320.0000,695887.0000,696237.0000,685878.0000,693412.0000,695025.0000,686910.0000,694745.0000,693182.0000,686639.0000,692450.0000,697430.0000,685768.0000,716987.0000,694955.0000,693272.0000,689114.0000,696268.0000,694324.0000,685247.0000,695907.0000,694675.0000,686940.0000,694795.0000,695316.0000,691148.0000" -generating large instruction graphs for N devices without d2d copy support - 4,expanding tree topology,100,1,89778800,903974.6100,903290.3400,904709.2300,3603.6214,3033.9560,4803.1876,"benchmark,group:instruction-graph","908319.0000,903791.0000,910094.0000,906516.0000,902689.0000,902027.0000,905895.0000,902268.0000,896448.0000,904322.0000,902579.0000,902760.0000,903049.0000,904172.0000,904362.0000,901287.0000,919942.0000,905424.0000,902880.0000,895516.0000,904432.0000,903972.0000,909302.0000,907959.0000,907799.0000,901116.0000,907599.0000,907929.0000,900756.0000,898201.0000,905644.0000,903420.0000,900936.0000,901477.0000,906066.0000,904422.0000,902618.0000,905224.0000,899433.0000,900064.0000,898111.0000,902839.0000,902429.0000,904643.0000,907669.0000,904031.0000,911435.0000,905614.0000,908250.0000,903471.0000,896517.0000,906426.0000,907308.0000,903731.0000,908400.0000,905475.0000,908119.0000,904482.0000,904573.0000,905625.0000,900585.0000,896788.0000,901667.0000,904021.0000,903430.0000,902629.0000,905074.0000,904553.0000,902970.0000,903270.0000,905184.0000,896768.0000,901527.0000,905004.0000,899263.0000,902719.0000,904453.0000,902398.0000,902859.0000,903350.0000,902669.0000,896657.0000,903180.0000,906196.0000,902759.0000,904904.0000,905855.0000,902860.0000,906686.0000,910183.0000,904423.0000,903009.0000,896757.0000,907277.0000,907177.0000,902930.0000,903811.0000,908730.0000,905184.0000,905845.0000" -generating large instruction graphs for N devices without d2d copy support - 4,contracting tree topology,100,1,104139600,1041293.1800,1040734.3600,1042225.1000,3616.7593,2478.5266,6408.8189,"benchmark,group:instruction-graph","1038757.0000,1038977.0000,1051121.0000,1043646.0000,1041272.0000,1039679.0000,1038888.0000,1040440.0000,1040290.0000,1040370.0000,1040861.0000,1039729.0000,1039709.0000,1038486.0000,1040851.0000,1039799.0000,1041753.0000,1042284.0000,1042654.0000,1041722.0000,1045119.0000,1040360.0000,1041863.0000,1042213.0000,1049677.0000,1041862.0000,1040219.0000,1040240.0000,1044017.0000,1045560.0000,1044528.0000,1042935.0000,1038827.0000,1041943.0000,1042294.0000,1041492.0000,1039970.0000,1042073.0000,1041012.0000,1041512.0000,1042434.0000,1039930.0000,1040059.0000,1042464.0000,1042684.0000,1042875.0000,1043716.0000,1042645.0000,1046952.0000,1041983.0000,1042674.0000,1043325.0000,1040350.0000,1040841.0000,1039609.0000,1041472.0000,1034980.0000,1039739.0000,1044127.0000,1042213.0000,1041332.0000,1038576.0000,1041082.0000,1047994.0000,1044808.0000,1040771.0000,1040540.0000,1039248.0000,1041563.0000,1037464.0000,1038186.0000,1038436.0000,1044618.0000,1038767.0000,1039498.0000,1038567.0000,1037455.0000,1040060.0000,1036743.0000,1065909.0000,1042484.0000,1038226.0000,1037545.0000,1038577.0000,1039569.0000,1037444.0000,1038857.0000,1038807.0000,1039228.0000,1039458.0000,1041793.0000,1039779.0000,1040911.0000,1040249.0000,1037164.0000,1040831.0000,1046692.0000,1039148.0000,1038196.0000,1038667.0000" -generating large instruction graphs for N devices without d2d copy support - 4,wave_sim topology,100,1,580640000,5701393.7200,5647322.8600,5743034.7200,242401.4146,195853.3038,284776.6269,"benchmark,group:instruction-graph","5127908.0000,5128309.0000,6024297.0000,5878941.0000,5831301.0000,5809650.0000,5812746.0000,5799441.0000,5446883.0000,5136925.0000,5684412.0000,5809970.0000,5806565.0000,5827514.0000,5791706.0000,5796976.0000,5801555.0000,5826182.0000,5805652.0000,5799791.0000,5793930.0000,5802436.0000,5802196.0000,5799421.0000,5807426.0000,5800933.0000,5811724.0000,5842192.0000,5821502.0000,5810551.0000,5791436.0000,5816233.0000,5816383.0000,5818376.0000,5820360.0000,5800864.0000,5807987.0000,5808588.0000,5811794.0000,5797928.0000,5799491.0000,5793400.0000,5814128.0000,5768101.0000,5116236.0000,5610583.0000,5820521.0000,5800482.0000,5807125.0000,5819769.0000,5796806.0000,5793870.0000,5795092.0000,5800974.0000,5786566.0000,5807015.0000,5795643.0000,5797668.0000,5801204.0000,5793830.0000,5801685.0000,5789231.0000,5833776.0000,5796275.0000,5802717.0000,5796736.0000,5801905.0000,5810452.0000,5798449.0000,5788260.0000,5814038.0000,5792648.0000,5798960.0000,5804961.0000,5818827.0000,5806865.0000,5799501.0000,5796576.0000,5812796.0000,5837833.0000,5824247.0000,5807856.0000,5798199.0000,5819609.0000,5807275.0000,5799861.0000,5819629.0000,5810611.0000,5759525.0000,5129020.0000,5172362.0000,5163956.0000,5132646.0000,5134830.0000,5125272.0000,5119201.0000,5141023.0000,5151693.0000,5142195.0000,5130383.0000" -generating large instruction graphs for N devices without d2d copy support - 4,jacobi topology,100,1,114664800,1306044.4100,1304950.4000,1307534.2400,6437.8168,4857.6785,9244.0019,"benchmark,group:instruction-graph","1304310.0000,1299822.0000,1313818.0000,1306986.0000,1315361.0000,1299791.0000,1299962.0000,1305963.0000,1305702.0000,1300994.0000,1300673.0000,1306976.0000,1298780.0000,1338716.0000,1319439.0000,1300343.0000,1301625.0000,1308829.0000,1302417.0000,1303579.0000,1313448.0000,1304420.0000,1303369.0000,1300614.0000,1310372.0000,1305993.0000,1307115.0000,1312276.0000,1304761.0000,1302527.0000,1311253.0000,1303639.0000,1305232.0000,1315070.0000,1306735.0000,1309770.0000,1305442.0000,1314700.0000,1333846.0000,1306294.0000,1310211.0000,1305102.0000,1306925.0000,1310392.0000,1303889.0000,1300253.0000,1307146.0000,1297798.0000,1304581.0000,1303349.0000,1312967.0000,1303429.0000,1303669.0000,1306465.0000,1304040.0000,1301886.0000,1308368.0000,1304230.0000,1298881.0000,1310592.0000,1301425.0000,1301495.0000,1314199.0000,1312876.0000,1301334.0000,1307486.0000,1309370.0000,1300804.0000,1304791.0000,1311203.0000,1303469.0000,1309871.0000,1304942.0000,1303198.0000,1305112.0000,1301175.0000,1313287.0000,1302097.0000,1299170.0000,1306885.0000,1296446.0000,1302978.0000,1306925.0000,1305763.0000,1296966.0000,1301435.0000,1312777.0000,1305092.0000,1303098.0000,1310121.0000,1302677.0000,1297147.0000,1308799.0000,1299972.0000,1300964.0000,1305943.0000,1299842.0000,1301816.0000,1302627.0000,1313729.0000" -generating large instruction graphs for N devices without d2d copy support - 16,soup topology,100,1,412284000,4499998.7500,4446622.0100,4547441.7400,256143.5853,232373.1288,271556.8289,"benchmark,group:instruction-graph","4685529.0000,4686180.0000,4139976.0000,4126449.0000,4115959.0000,4114578.0000,4114777.0000,4119116.0000,4116381.0000,4173699.0000,4123775.0000,4121540.0000,4122441.0000,4114837.0000,4125869.0000,4120499.0000,4134695.0000,4122302.0000,4128273.0000,4117844.0000,4110339.0000,4112593.0000,4121691.0000,4112053.0000,4118715.0000,4131108.0000,4116731.0000,4122111.0000,4116972.0000,4116341.0000,4112854.0000,4157448.0000,4671062.0000,4672986.0000,4699766.0000,4678526.0000,4682373.0000,4672966.0000,4676853.0000,4664800.0000,4669880.0000,4678426.0000,4663939.0000,4673156.0000,4668697.0000,4292845.0000,4108014.0000,4545894.0000,4680018.0000,4683154.0000,4669248.0000,4671413.0000,4674348.0000,4685470.0000,4669258.0000,4681582.0000,4678376.0000,4664911.0000,4676562.0000,4671293.0000,4689266.0000,4678947.0000,4671593.0000,4679178.0000,4679227.0000,4668648.0000,4676492.0000,4677695.0000,4695318.0000,4673527.0000,4669298.0000,4675460.0000,4666874.0000,4663127.0000,4673567.0000,4673366.0000,4664669.0000,4672715.0000,4687513.0000,4668036.0000,4691621.0000,4683476.0000,4678646.0000,4681933.0000,4684507.0000,4660842.0000,4678817.0000,4674689.0000,4661774.0000,4676091.0000,4715847.0000,4675571.0000,4675911.0000,4684397.0000,4686340.0000,4671142.0000,4673085.0000,4680570.0000,4669208.0000,4691401.0000" -generating large instruction graphs for N devices without d2d copy support - 16,chain topology,100,1,61831700,649744.2400,642230.8400,657864.7800,39706.9926,37059.0478,41467.6571,"benchmark,group:instruction-graph","703812.0000,702991.0000,617860.0000,620855.0000,621386.0000,610305.0000,619663.0000,622638.0000,613692.0000,618260.0000,613020.0000,625554.0000,621556.0000,612188.0000,623640.0000,612769.0000,623741.0000,619011.0000,613601.0000,623880.0000,623620.0000,612449.0000,622809.0000,613791.0000,625163.0000,622608.0000,613010.0000,621656.0000,618090.0000,616577.0000,623390.0000,614402.0000,619412.0000,617438.0000,612358.0000,622177.0000,612780.0000,625153.0000,650992.0000,613081.0000,626135.0000,623670.0000,612890.0000,623109.0000,613300.0000,623971.0000,621446.0000,614142.0000,623670.0000,621757.0000,614874.0000,663526.0000,700436.0000,696598.0000,702991.0000,705305.0000,695196.0000,704073.0000,705786.0000,695306.0000,702339.0000,701428.0000,704904.0000,695286.0000,705165.0000,708351.0000,696398.0000,704252.0000,702830.0000,695316.0000,700446.0000,702500.0000,703913.0000,695205.0000,702289.0000,706507.0000,693212.0000,704804.0000,702339.0000,694875.0000,704533.0000,701858.0000,704354.0000,698642.0000,623851.0000,621045.0000,614433.0000,622689.0000,617428.0000,620935.0000,625804.0000,613982.0000,616797.0000,610435.0000,616547.0000,618941.0000,610155.0000,678965.0000,705526.0000,695586.0000" -generating large instruction graphs for N devices without d2d copy support - 16,expanding tree topology,100,1,87721600,822027.2100,821112.0500,823195.4500,5223.7909,4052.6189,7864.5985,"benchmark,group:instruction-graph","821956.0000,821726.0000,836293.0000,826224.0000,815454.0000,826194.0000,828107.0000,822437.0000,825001.0000,815213.0000,819912.0000,826965.0000,822658.0000,821134.0000,820944.0000,813179.0000,821865.0000,822727.0000,821706.0000,825002.0000,818289.0000,813500.0000,820763.0000,823449.0000,825382.0000,822668.0000,815875.0000,820784.0000,823048.0000,820203.0000,824000.0000,819411.0000,813089.0000,820984.0000,825052.0000,822186.0000,823950.0000,813460.0000,824842.0000,837145.0000,824631.0000,826735.0000,821826.0000,817528.0000,825372.0000,824992.0000,823979.0000,824510.0000,823699.0000,815464.0000,822567.0000,822968.0000,823379.0000,829831.0000,816095.0000,820904.0000,821025.0000,819992.0000,820684.0000,819592.0000,813169.0000,822777.0000,824151.0000,825903.0000,822897.0000,818680.0000,824581.0000,820433.0000,822337.0000,822337.0000,823659.0000,813700.0000,850861.0000,823309.0000,823309.0000,822517.0000,819462.0000,814842.0000,820543.0000,822617.0000,819551.0000,824772.0000,811316.0000,822147.0000,822076.0000,821736.0000,826214.0000,824982.0000,815103.0000,823168.0000,822988.0000,827186.0000,821815.0000,822426.0000,814301.0000,822256.0000,822177.0000,822898.0000,820333.0000,814642.0000" -generating large instruction graphs for N devices without d2d copy support - 16,contracting tree topology,100,1,99530800,953831.6900,947861.3900,962126.1300,35620.4649,27922.8550,43487.1935,"benchmark,group:instruction-graph","938247.0000,938236.0000,1054617.0000,1049107.0000,1048906.0000,1048055.0000,1047063.0000,1049818.0000,1049137.0000,1047444.0000,1049517.0000,1047333.0000,1048676.0000,1047584.0000,987099.0000,942845.0000,941332.0000,941302.0000,943406.0000,939790.0000,939729.0000,939259.0000,941863.0000,939640.0000,939509.0000,936844.0000,928768.0000,941442.0000,945621.0000,942434.0000,942634.0000,946893.0000,941783.0000,954077.0000,937725.0000,936022.0000,939659.0000,938968.0000,939900.0000,943016.0000,942374.0000,939518.0000,938246.0000,932114.0000,940802.0000,940371.0000,942174.0000,938196.0000,945179.0000,939670.0000,939499.0000,936192.0000,940090.0000,942975.0000,940080.0000,938927.0000,945490.0000,936353.0000,939940.0000,932055.0000,935541.0000,938657.0000,940160.0000,941552.0000,942224.0000,944708.0000,954036.0000,937726.0000,940400.0000,938777.0000,939650.0000,942564.0000,942845.0000,946773.0000,941022.0000,939048.0000,930522.0000,938437.0000,940972.0000,941393.0000,942104.0000,941553.0000,943747.0000,940050.0000,937645.0000,939479.0000,936433.0000,940971.0000,938246.0000,938467.0000,944598.0000,941543.0000,939810.0000,930091.0000,940381.0000,938266.0000,943266.0000,940190.0000,940421.0000,943356.0000" -generating large instruction graphs for N devices without d2d copy support - 16,wave_sim topology,100,1,521343600,5485769.4200,5420068.5700,5555562.2900,345863.4974,326966.4628,361481.6596,"benchmark,group:instruction-graph","5202920.0000,5204383.0000,6168350.0000,5988670.0000,5905171.0000,5889762.0000,5900743.0000,5910101.0000,5912094.0000,5924618.0000,5898900.0000,5904720.0000,5914128.0000,5932674.0000,5905912.0000,5888379.0000,5895733.0000,5900121.0000,5900913.0000,5911753.0000,5908959.0000,5895903.0000,5896464.0000,5898248.0000,5899720.0000,5903237.0000,5887678.0000,5886897.0000,5900683.0000,5905331.0000,5931281.0000,5911493.0000,5925088.0000,5902596.0000,5906273.0000,5902587.0000,5889261.0000,5902095.0000,5895523.0000,5918666.0000,5890354.0000,5653313.0000,5179776.0000,5188783.0000,5186499.0000,5189625.0000,5209723.0000,5196978.0000,5222416.0000,5203140.0000,5196739.0000,5221064.0000,5194985.0000,5198942.0000,5182261.0000,5211887.0000,5212197.0000,5196007.0000,5206467.0000,5208371.0000,5210013.0000,5196719.0000,5215243.0000,5208370.0000,5209653.0000,5188914.0000,5225322.0000,5232847.0000,5225704.0000,5225653.0000,5227957.0000,5205805.0000,5213570.0000,5202880.0000,5210665.0000,5225302.0000,5202399.0000,5207168.0000,5201116.0000,5206266.0000,5200155.0000,5200836.0000,5180658.0000,5187171.0000,5189565.0000,5207729.0000,5247154.0000,5208010.0000,5195696.0000,5201969.0000,5202769.0000,5196237.0000,5198702.0000,5222647.0000,5192140.0000,5213360.0000,5193933.0000,5199584.0000,5211917.0000,5207589.0000" -generating large instruction graphs for N devices without d2d copy support - 16,jacobi topology,100,1,118386600,1218804.3100,1207184.0900,1233265.4000,66092.5658,55736.4778,74572.3977,"benchmark,group:instruction-graph","1178933.0000,1188250.0000,1352832.0000,1344817.0000,1354786.0000,1341832.0000,1346771.0000,1343705.0000,1350398.0000,1356279.0000,1348615.0000,1348093.0000,1359936.0000,1349326.0000,1346330.0000,1349576.0000,1345558.0000,1342843.0000,1349757.0000,1346671.0000,1351049.0000,1355778.0000,1281407.0000,1188040.0000,1183321.0000,1196566.0000,1184583.0000,1182360.0000,1182159.0000,1187920.0000,1194352.0000,1182379.0000,1181839.0000,1184493.0000,1182229.0000,1184323.0000,1192960.0000,1181327.0000,1182309.0000,1183611.0000,1179383.0000,1190244.0000,1189733.0000,1179634.0000,1185545.0000,1181567.0000,1188981.0000,1182319.0000,1182269.0000,1186347.0000,1182810.0000,1182830.0000,1189883.0000,1182870.0000,1182730.0000,1178391.0000,1185605.0000,1186808.0000,1183902.0000,1183822.0000,1179944.0000,1184844.0000,1181918.0000,1195524.0000,1184964.0000,1184132.0000,1199642.0000,1181988.0000,1188621.0000,1185495.0000,1186176.0000,1182028.0000,1184804.0000,1189243.0000,1184713.0000,1186136.0000,1183451.0000,1185294.0000,1181938.0000,1200845.0000,1185144.0000,1182289.0000,1185295.0000,1192408.0000,1196205.0000,1181958.0000,1186157.0000,1180225.0000,1177841.0000,1180736.0000,1191927.0000,1183031.0000,1178031.0000,1180195.0000,1181768.0000,1185284.0000,1181437.0000,1182600.0000,1182770.0000,1179444.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,88830000,888954.1500,887795.0300,891395.6500,8221.2641,4722.8542,15396.6164,"benchmark,group:scheduler","889835.0000,889323.0000,911726.0000,886108.0000,884966.0000,891097.0000,893842.0000,887050.0000,883643.0000,891498.0000,890466.0000,886038.0000,889945.0000,883833.0000,885917.0000,892229.0000,890326.0000,881218.0000,887731.0000,889995.0000,888723.0000,886879.0000,886589.0000,885887.0000,887701.0000,880487.0000,890476.0000,886298.0000,886339.0000,886137.0000,885977.0000,885607.0000,890696.0000,888001.0000,880437.0000,884955.0000,886439.0000,888121.0000,886549.0000,893281.0000,888472.0000,887470.0000,922507.0000,882430.0000,891117.0000,886188.0000,895655.0000,886448.0000,891768.0000,893903.0000,890676.0000,886509.0000,883002.0000,883322.0000,889484.0000,885466.0000,890646.0000,950320.0000,885066.0000,891217.0000,894854.0000,886478.0000,883843.0000,887359.0000,887871.0000,887690.0000,885516.0000,888232.0000,890776.0000,898350.0000,886318.0000,881829.0000,889384.0000,886317.0000,886698.0000,887961.0000,889744.0000,890556.0000,892710.0000,889995.0000,882531.0000,883122.0000,890345.0000,885757.0000,887340.0000,889824.0000,887840.0000,893191.0000,888111.0000,880858.0000,887931.0000,883663.0000,889123.0000,886138.0000,883503.0000,885476.0000,893462.0000,883182.0000,883904.0000,893602.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,8097200,81048.4400,80787.5700,81449.9000,1630.2271,1177.0469,2129.4313,"benchmark,group:scheduler","80620.0000,80500.0000,85771.0000,81002.0000,80901.0000,80962.0000,80931.0000,81082.0000,80361.0000,80721.0000,80631.0000,80671.0000,80631.0000,86211.0000,80771.0000,80500.0000,80690.0000,80390.0000,80391.0000,80600.0000,80711.0000,80330.0000,81042.0000,80230.0000,80521.0000,86282.0000,80881.0000,80461.0000,80390.0000,80231.0000,80500.0000,80561.0000,80451.0000,80360.0000,80792.0000,80500.0000,80340.0000,85921.0000,81082.0000,80420.0000,80772.0000,80440.0000,80341.0000,80741.0000,80190.0000,80340.0000,80540.0000,80471.0000,80541.0000,80500.0000,85971.0000,80621.0000,80651.0000,80380.0000,80561.0000,80611.0000,80481.0000,80491.0000,80490.0000,80461.0000,80691.0000,80160.0000,87905.0000,80891.0000,80570.0000,80501.0000,80290.0000,80410.0000,80481.0000,80551.0000,80460.0000,80110.0000,80631.0000,80391.0000,85360.0000,81382.0000,80431.0000,80440.0000,80640.0000,80230.0000,80500.0000,80270.0000,80671.0000,80651.0000,80390.0000,80480.0000,80451.0000,86492.0000,80821.0000,80401.0000,80891.0000,80561.0000,80912.0000,80260.0000,80401.0000,80400.0000,80321.0000,80270.0000,79950.0000,85289.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,13253000,150079.5400,149637.3300,150656.2400,2566.4268,2086.3813,3153.9759,"benchmark,group:scheduler","148660.0000,149001.0000,160071.0000,151315.0000,156395.0000,149051.0000,149772.0000,149451.0000,149742.0000,149362.0000,155332.0000,149702.0000,149532.0000,148850.0000,149151.0000,149071.0000,149010.0000,155422.0000,149301.0000,149551.0000,149572.0000,148219.0000,148911.0000,148650.0000,155683.0000,149000.0000,148619.0000,148850.0000,149161.0000,148279.0000,155242.0000,149291.0000,148950.0000,148881.0000,148980.0000,147869.0000,148249.0000,154521.0000,148770.0000,148259.0000,149080.0000,148700.0000,148380.0000,149411.0000,155333.0000,148930.0000,149120.0000,148580.0000,149311.0000,148991.0000,155503.0000,149121.0000,149421.0000,149191.0000,148840.0000,148649.0000,149641.0000,155483.0000,148680.0000,148540.0000,149041.0000,148920.0000,149051.0000,148559.0000,155703.0000,149351.0000,148670.0000,148520.0000,148179.0000,148680.0000,155974.0000,149411.0000,149071.0000,149612.0000,148800.0000,148860.0000,148579.0000,155012.0000,149492.0000,148660.0000,148690.0000,149081.0000,148630.0000,149341.0000,155112.0000,149231.0000,149091.0000,148850.0000,148649.0000,149251.0000,155342.0000,149742.0000,149171.0000,149301.0000,150092.0000,147989.0000,148520.0000,156014.0000,148950.0000,148159.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,13539900,158164.1800,157715.1000,158747.8300,2594.9459,2123.7552,3164.9019,"benchmark,group:scheduler","156745.0000,162837.0000,167746.0000,158368.0000,157577.0000,157597.0000,163779.0000,157236.0000,156545.0000,157286.0000,157317.0000,156354.0000,162637.0000,157236.0000,157256.0000,157086.0000,156505.0000,157156.0000,156836.0000,163458.0000,156885.0000,157006.0000,157627.0000,157016.0000,156204.0000,162877.0000,158379.0000,156875.0000,157166.0000,157347.0000,157506.0000,163148.0000,157326.0000,157557.0000,157817.0000,156034.0000,156846.0000,157346.0000,163378.0000,156375.0000,156264.0000,156886.0000,156985.0000,156355.0000,163288.0000,157286.0000,158368.0000,156795.0000,156705.0000,157516.0000,166303.0000,157286.0000,156815.0000,157246.0000,157567.0000,156504.0000,156725.0000,163598.0000,157016.0000,157186.0000,156294.0000,156916.0000,156785.0000,163438.0000,155954.0000,156625.0000,157336.0000,156554.0000,157106.0000,162497.0000,157947.0000,156495.0000,156635.0000,157236.0000,157487.0000,157046.0000,163277.0000,157146.0000,157637.0000,157457.0000,156555.0000,156665.0000,163779.0000,157005.0000,157015.0000,157507.0000,157266.0000,156755.0000,162876.0000,157116.0000,157727.0000,155783.0000,156184.0000,156254.0000,157086.0000,163528.0000,156905.0000,157296.0000,157738.0000,156544.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,102757600,868372.1500,867618.3400,869381.7500,4416.9389,3431.0227,6838.5766,"benchmark,group:scheduler","875458.0000,870939.0000,864667.0000,867032.0000,864527.0000,864847.0000,863265.0000,868815.0000,861881.0000,867402.0000,867122.0000,866520.0000,867102.0000,869025.0000,868694.0000,862373.0000,868554.0000,873284.0000,865398.0000,867323.0000,867562.0000,865689.0000,867523.0000,860519.0000,865779.0000,865900.0000,870899.0000,865909.0000,893462.0000,867843.0000,863495.0000,860820.0000,862663.0000,866751.0000,863385.0000,870007.0000,866781.0000,869797.0000,861451.0000,869086.0000,869165.0000,868094.0000,869095.0000,866430.0000,872652.0000,868074.0000,862843.0000,868073.0000,866741.0000,865188.0000,868995.0000,867322.0000,867462.0000,861571.0000,872853.0000,870298.0000,867432.0000,869096.0000,871660.0000,869767.0000,872662.0000,863785.0000,864917.0000,875127.0000,869065.0000,870377.0000,870468.0000,871460.0000,874946.0000,866250.0000,870198.0000,871450.0000,874656.0000,868334.0000,869356.0000,870939.0000,864076.0000,866551.0000,866901.0000,867402.0000,870448.0000,873955.0000,870749.0000,871019.0000,863986.0000,870358.0000,870047.0000,868715.0000,869416.0000,869566.0000,875307.0000,863825.0000,864908.0000,869586.0000,881559.0000,868445.0000,871970.0000,868213.0000,870909.0000,862954.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,22052100,265816.2500,265265.7200,266446.4100,3011.4027,2673.4174,3321.5992,"benchmark,group:scheduler","264189.0000,270591.0000,271683.0000,273276.0000,264539.0000,264179.0000,264329.0000,270591.0000,261945.0000,263458.0000,263898.0000,270461.0000,263127.0000,263387.0000,271032.0000,264329.0000,264268.0000,263808.0000,271523.0000,263617.0000,264419.0000,264179.0000,270931.0000,264229.0000,263477.0000,263538.0000,271142.0000,263478.0000,263678.0000,271021.0000,264709.0000,263998.0000,264259.0000,270621.0000,264500.0000,263177.0000,263497.0000,270961.0000,265782.0000,264209.0000,264339.0000,270431.0000,264971.0000,264519.0000,270902.0000,263628.0000,264339.0000,263778.0000,269730.0000,264058.0000,264039.0000,263798.0000,270742.0000,264239.0000,263948.0000,264319.0000,270561.0000,264350.0000,264128.0000,268978.0000,265761.0000,263768.0000,264519.0000,270481.0000,264830.0000,263828.0000,264449.0000,270611.0000,263758.0000,264710.0000,264469.0000,270190.0000,263888.0000,263347.0000,269689.0000,264670.0000,263497.0000,263888.0000,270481.0000,264098.0000,264780.0000,263788.0000,270511.0000,263367.0000,264480.0000,262916.0000,268928.0000,264640.0000,262395.0000,263477.0000,269790.0000,263497.0000,264299.0000,267905.0000,264830.0000,262345.0000,262365.0000,269829.0000,264089.0000,264630.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,203994000,1968325.9400,1947435.4600,1986043.9800,98148.9383,84915.3066,108989.1044,"benchmark,group:scheduler","1811913.0000,1799629.0000,2052759.0000,2004978.0000,2002624.0000,2024265.0000,2054463.0000,2032480.0000,2063891.0000,2030136.0000,2033272.0000,2031880.0000,2033693.0000,2062657.0000,2059922.0000,2031258.0000,2061275.0000,2002253.0000,2004798.0000,2002785.0000,2003586.0000,2034294.0000,2004167.0000,2003475.0000,2002964.0000,2031770.0000,2003816.0000,2002794.0000,2004338.0000,2002483.0000,2003946.0000,2002995.0000,2003215.0000,2032010.0000,2004197.0000,2031689.0000,2003987.0000,2031358.0000,2004889.0000,2003004.0000,2002744.0000,2031859.0000,2004187.0000,2002494.0000,2003917.0000,2032090.0000,2003806.0000,2032130.0000,2003736.0000,2031719.0000,2062007.0000,2003045.0000,2061265.0000,2031599.0000,2004307.0000,2031979.0000,2032832.0000,2032550.0000,2031870.0000,2012953.0000,2047519.0000,2031649.0000,2031378.0000,2031047.0000,2061034.0000,2031990.0000,2032961.0000,2037610.0000,2060454.0000,2004066.0000,2002754.0000,2003215.0000,2003476.0000,2003455.0000,2002924.0000,2003726.0000,2003346.0000,2003726.0000,1951778.0000,1810429.0000,1782948.0000,1809779.0000,1785212.0000,1811491.0000,1781866.0000,1783689.0000,1781986.0000,1787877.0000,1781014.0000,1815429.0000,1777878.0000,1790723.0000,1777487.0000,1810690.0000,1782868.0000,1783589.0000,1784661.0000,1811792.0000,1781234.0000,1782847.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,22461000,232772.3900,232190.9000,234162.6400,4270.3282,1079.7358,7628.6066,"benchmark,group:scheduler","232619.0000,231427.0000,232118.0000,231677.0000,231917.0000,231928.0000,233391.0000,231516.0000,231697.0000,232138.0000,232839.0000,231767.0000,232098.0000,232329.0000,235564.0000,235445.0000,225625.0000,232248.0000,231968.0000,262315.0000,231126.0000,232659.0000,231907.0000,232299.0000,232388.0000,231808.0000,232428.0000,231797.0000,232679.0000,232038.0000,232259.0000,232078.0000,232278.0000,232890.0000,231517.0000,232198.0000,232569.0000,232579.0000,231607.0000,231988.0000,231657.0000,232779.0000,232508.0000,231738.0000,234071.0000,230655.0000,232398.0000,231748.0000,232378.0000,232629.0000,231156.0000,233070.0000,231827.0000,261183.0000,232609.0000,232538.0000,231566.0000,231807.0000,232549.0000,232589.0000,232329.0000,231637.0000,232248.0000,232249.0000,232939.0000,231637.0000,232479.0000,231728.0000,232609.0000,232368.0000,231327.0000,232459.0000,232068.0000,233180.0000,233070.0000,230615.0000,232258.0000,232239.0000,232789.0000,231717.0000,232087.0000,231957.0000,232619.0000,231597.0000,233050.0000,232018.0000,231888.0000,235053.0000,229352.0000,232710.0000,231957.0000,232057.0000,232088.0000,232108.0000,232739.0000,232028.0000,232248.0000,231808.0000,232679.0000,232078.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,34694600,407687.1900,404333.3900,411140.5000,17387.5770,15277.5423,19608.6738,"benchmark,group:scheduler","436927.0000,404795.0000,439200.0000,403102.0000,405947.0000,406078.0000,407791.0000,405347.0000,406468.0000,435524.0000,406098.0000,407060.0000,407680.0000,434121.0000,407009.0000,405236.0000,438048.0000,403763.0000,406548.0000,435975.0000,435343.0000,406298.0000,405938.0000,435985.0000,406338.0000,406208.0000,436456.0000,434722.0000,405416.0000,406749.0000,406428.0000,436526.0000,388664.0000,379377.0000,389166.0000,392131.0000,389216.0000,389536.0000,392573.0000,380800.0000,373025.0000,389206.0000,394726.0000,374348.0000,376071.0000,381251.0000,387242.0000,387192.0000,385088.0000,380780.0000,379828.0000,371552.0000,379477.0000,391109.0000,412651.0000,435503.0000,410507.0000,401880.0000,407680.0000,435103.0000,435454.0000,406849.0000,405086.0000,407360.0000,435233.0000,405827.0000,406489.0000,435593.0000,410786.0000,401730.0000,406058.0000,438549.0000,403904.0000,406328.0000,406008.0000,407190.0000,406358.0000,405677.0000,407260.0000,405717.0000,406559.0000,407159.0000,434802.0000,406408.0000,406438.0000,435584.0000,406949.0000,405407.0000,407079.0000,434882.0000,406108.0000,407220.0000,405587.0000,436085.0000,405857.0000,406419.0000,407310.0000,405497.0000,406278.0000,406829.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,47001800,461560.7000,458294.2300,464933.4100,16869.7776,14716.6725,19305.4735,"benchmark,group:scheduler","449700.0000,443409.0000,464449.0000,463506.0000,465240.0000,463467.0000,468767.0000,460440.0000,463907.0000,465400.0000,463297.0000,466061.0000,463717.0000,465149.0000,463246.0000,464989.0000,464529.0000,493393.0000,464228.0000,464248.0000,464429.0000,495307.0000,462845.0000,464318.0000,464829.0000,494475.0000,463587.0000,464428.0000,493804.0000,463687.0000,464919.0000,493614.0000,464589.0000,464178.0000,494405.0000,463286.0000,465380.0000,493263.0000,463807.0000,464468.0000,468896.0000,490447.0000,463166.0000,464950.0000,464258.0000,495477.0000,462365.0000,464909.0000,493604.0000,464719.0000,463557.0000,494165.0000,464198.0000,464418.0000,494155.0000,463617.0000,464889.0000,493033.0000,464729.0000,467514.0000,441185.0000,453317.0000,454079.0000,444401.0000,446474.0000,425605.0000,433930.0000,477883.0000,447215.0000,427409.0000,453056.0000,479346.0000,433400.0000,457275.0000,443078.0000,453297.0000,441916.0000,476100.0000,451824.0000,450532.0000,428891.0000,445141.0000,481501.0000,430595.0000,458747.0000,442998.0000,453508.0000,439762.0000,458687.0000,452145.0000,440724.0000,460381.0000,451073.0000,455762.0000,443649.0000,452917.0000,431225.0000,434842.0000,443458.0000,446916.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,280327800,2801218.4000,2797087.1200,2805650.5800,21793.3635,18773.2431,26929.5901,"benchmark,group:scheduler","2760180.0000,2785338.0000,2783685.0000,2759008.0000,2777262.0000,2755742.0000,2779466.0000,2762304.0000,2799965.0000,2785718.0000,2818731.0000,2784276.0000,2787852.0000,2818540.0000,2785127.0000,2817789.0000,2785498.0000,2787952.0000,2787793.0000,2816426.0000,2815935.0000,2815946.0000,2786830.0000,2818259.0000,2815464.0000,2816778.0000,2786550.0000,2816156.0000,2813431.0000,2796258.0000,2845863.0000,2815254.0000,2792571.0000,2781510.0000,2786851.0000,2817658.0000,2785357.0000,2816758.0000,2786950.0000,2817910.0000,2785408.0000,2818049.0000,2786049.0000,2818371.0000,2785959.0000,2816346.0000,2785258.0000,2823269.0000,2781220.0000,2876060.0000,2785398.0000,2817689.0000,2788223.0000,2785077.0000,2817509.0000,2786770.0000,2815986.0000,2789486.0000,2813110.0000,2876480.0000,2786109.0000,2817679.0000,2784947.0000,2817428.0000,2815505.0000,2842176.0000,2797651.0000,2817278.0000,2790988.0000,2813792.0000,2785338.0000,2818049.0000,2785448.0000,2818661.0000,2814423.0000,2817358.0000,2785749.0000,2817268.0000,2789195.0000,2784216.0000,2818200.0000,2814282.0000,2818230.0000,2814844.0000,2817699.0000,2785508.0000,2818541.0000,2784376.0000,2817709.0000,2815364.0000,2780609.0000,2787261.0000,2779185.0000,2798783.0000,2818651.0000,2757264.0000,2758126.0000,2817899.0000,2787852.0000,2813541.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,78878900,789595.7800,786372.9600,793591.6000,18265.4517,14997.3484,22039.4033,"benchmark,group:scheduler","778624.0000,785777.0000,840471.0000,781990.0000,784816.0000,782241.0000,784114.0000,815213.0000,811566.0000,783413.0000,783513.0000,783584.0000,813049.0000,843397.0000,781750.0000,784014.0000,784425.0000,843457.0000,782140.0000,783823.0000,783864.0000,785858.0000,782121.0000,842515.0000,782181.0000,784705.0000,784656.0000,782982.0000,841894.0000,783443.0000,784756.0000,783252.0000,784435.0000,783343.0000,784114.0000,784295.0000,813119.0000,783634.0000,783122.0000,783594.0000,784214.0000,813150.0000,813510.0000,782852.0000,784244.0000,784384.0000,783504.0000,785056.0000,784214.0000,782160.0000,819161.0000,779496.0000,810504.0000,787932.0000,780027.0000,785877.0000,783703.0000,781630.0000,783834.0000,784755.0000,813120.0000,812698.0000,783033.0000,784285.0000,785166.0000,813109.0000,783213.0000,812188.0000,783864.0000,784845.0000,783913.0000,841483.0000,782321.0000,783984.0000,814191.0000,783243.0000,812729.0000,783814.0000,783944.0000,779806.0000,800255.0000,761592.0000,761171.0000,780868.0000,772392.0000,772482.0000,790055.0000,771861.0000,770558.0000,770579.0000,772041.0000,762192.0000,771029.0000,781059.0000,779035.0000,768855.0000,779406.0000,768855.0000,771480.0000,801397.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,195756700,2073171.4900,2062600.3900,2078859.5700,38457.2386,22213.8501,56586.3845,"benchmark,group:scheduler","2074179.0000,2072747.0000,2086012.0000,2089118.0000,2081394.0000,2125226.0000,2086884.0000,2078518.0000,2076594.0000,2085962.0000,2079119.0000,1913496.0000,1889109.0000,1884981.0000,1886263.0000,1995320.0000,2081103.0000,2082506.0000,2100720.0000,2091352.0000,2076264.0000,2086052.0000,2086713.0000,2082977.0000,2078788.0000,2075102.0000,2080441.0000,2077957.0000,2085161.0000,2089909.0000,2076595.0000,2078818.0000,2083898.0000,2081604.0000,2081804.0000,2081824.0000,2103726.0000,2075582.0000,2078839.0000,2083748.0000,2081634.0000,2079580.0000,2076854.0000,2086032.0000,2075382.0000,2073298.0000,2083467.0000,2079881.0000,2080622.0000,2071695.0000,2079359.0000,2084039.0000,2075592.0000,2091132.0000,2080331.0000,2081844.0000,2075923.0000,2082265.0000,2078629.0000,2083176.0000,2087906.0000,2073458.0000,2078839.0000,2075693.0000,2078017.0000,2084298.0000,2106931.0000,2072547.0000,2080652.0000,2076183.0000,2076343.0000,2093867.0000,2083437.0000,2078497.0000,2080080.0000,2078577.0000,2082034.0000,2080492.0000,2074791.0000,2080321.0000,2075682.0000,2074880.0000,2075512.0000,2077376.0000,2078768.0000,2080762.0000,2074991.0000,2075983.0000,2075111.0000,2076434.0000,2081704.0000,2085572.0000,2085350.0000,2081974.0000,2084229.0000,2084369.0000,2080141.0000,2078999.0000,2080130.0000,2079079.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,37050300,374148.9100,373697.7200,374809.1800,2747.6793,2145.7126,4073.6643,"benchmark,group:scheduler","373285.0000,372554.0000,377193.0000,377764.0000,372965.0000,372895.0000,377704.0000,372945.0000,372985.0000,372965.0000,372945.0000,372965.0000,373336.0000,372404.0000,382533.0000,372564.0000,372975.0000,378776.0000,372925.0000,373125.0000,372685.0000,372554.0000,379538.0000,372844.0000,372744.0000,378035.0000,373035.0000,377404.0000,372734.0000,372424.0000,373035.0000,372814.0000,372594.0000,375149.0000,372635.0000,375510.0000,372874.0000,372864.0000,378486.0000,372705.0000,372975.0000,373125.0000,372915.0000,372685.0000,373075.0000,372494.0000,377634.0000,372484.0000,372665.0000,373245.0000,372985.0000,389216.0000,374467.0000,372554.0000,374408.0000,372764.0000,372785.0000,378977.0000,372414.0000,375279.0000,373035.0000,372565.0000,379788.0000,372764.0000,372373.0000,379246.0000,372634.0000,376502.0000,372975.0000,372484.0000,378586.0000,372374.0000,372604.0000,373166.0000,372684.0000,378736.0000,372854.0000,372925.0000,372825.0000,372364.0000,372765.0000,378085.0000,372814.0000,372333.0000,373136.0000,372484.0000,373576.0000,372685.0000,372634.0000,378155.0000,373066.0000,372544.0000,373406.0000,372584.0000,373426.0000,372705.0000,372694.0000,377444.0000,372985.0000,372274.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,45093000,450072.4500,448209.9400,451612.6500,8641.5655,7266.5547,9933.8037,"benchmark,group:scheduler","451614.0000,451494.0000,461453.0000,451454.0000,458697.0000,452987.0000,452436.0000,450943.0000,458026.0000,453367.0000,458176.0000,452396.0000,458267.0000,451644.0000,451694.0000,457926.0000,451524.0000,455251.0000,453577.0000,455672.0000,452015.0000,457796.0000,451704.0000,456242.0000,453548.0000,453749.0000,451654.0000,450832.0000,457796.0000,453919.0000,457846.0000,452205.0000,459920.0000,451905.0000,456433.0000,451955.0000,451083.0000,452326.0000,451824.0000,457445.0000,451755.0000,452756.0000,451234.0000,456914.0000,452105.0000,456914.0000,453538.0000,452977.0000,457465.0000,451704.0000,453637.0000,452886.0000,456634.0000,451604.0000,456814.0000,451825.0000,451413.0000,458788.0000,451795.0000,451694.0000,451524.0000,452175.0000,451214.0000,455681.0000,452586.0000,456483.0000,452396.0000,453317.0000,456854.0000,451384.0000,446725.0000,430955.0000,432368.0000,431426.0000,431967.0000,430704.0000,430725.0000,437277.0000,431486.0000,434331.0000,431126.0000,436786.0000,431315.0000,430794.0000,432688.0000,430684.0000,432548.0000,431095.0000,438089.0000,451935.0000,457966.0000,452546.0000,451784.0000,459058.0000,452475.0000,457526.0000,451924.0000,454128.0000,451964.0000,453989.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,46207200,462966.5000,462305.4900,464102.0400,4330.0980,2742.1667,7119.6157,"benchmark,group:scheduler","462756.0000,460120.0000,470210.0000,466071.0000,462435.0000,463236.0000,460531.0000,463377.0000,459980.0000,466512.0000,460441.0000,461062.0000,466563.0000,461913.0000,467094.0000,461513.0000,461042.0000,461032.0000,460361.0000,461553.0000,464899.0000,460892.0000,466182.0000,460651.0000,459829.0000,468416.0000,459869.0000,466812.0000,460401.0000,463136.0000,460050.0000,460852.0000,459850.0000,466462.0000,462014.0000,465681.0000,461503.0000,461312.0000,467805.0000,459239.0000,466462.0000,459730.0000,462755.0000,461663.0000,462335.0000,460390.0000,462174.0000,460511.0000,467925.0000,460521.0000,466492.0000,460932.0000,461252.0000,467644.0000,460852.0000,460591.0000,460010.0000,462254.0000,461072.0000,462564.0000,459338.0000,465701.0000,459970.0000,465911.0000,461803.0000,460942.0000,461613.0000,459780.0000,461523.0000,461422.0000,482774.0000,461733.0000,466172.0000,462064.0000,466071.0000,462245.0000,465390.0000,460281.0000,459489.0000,465811.0000,459559.0000,462214.0000,461303.0000,467735.0000,459729.0000,462074.0000,460130.0000,465219.0000,460390.0000,467014.0000,461402.0000,460131.0000,460090.0000,459679.0000,464238.0000,461102.0000,460821.0000,459900.0000,490538.0000,461563.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,305866700,3032474.2200,3018561.4400,3043906.9200,64274.6693,54859.1751,71787.7044,"benchmark,group:scheduler","3071410.0000,3073604.0000,3067042.0000,3060720.0000,3070087.0000,3069396.0000,3075388.0000,3064436.0000,3061521.0000,3059287.0000,3058475.0000,3059597.0000,3068485.0000,3063404.0000,3072852.0000,3062012.0000,3060820.0000,3088553.0000,3062352.0000,3061301.0000,3058666.0000,3067743.0000,3064196.0000,3060439.0000,3066571.0000,3064757.0000,3061551.0000,3062663.0000,3057243.0000,3066009.0000,3067903.0000,3058816.0000,3061020.0000,3058966.0000,3068874.0000,3065979.0000,3060950.0000,3060550.0000,3057423.0000,3058666.0000,3067693.0000,3063825.0000,3070518.0000,3066291.0000,3073012.0000,3070478.0000,3067733.0000,3065699.0000,3066180.0000,3068013.0000,3095897.0000,3070357.0000,3064166.0000,2938818.0000,2913591.0000,2914693.0000,2914052.0000,2912669.0000,2917247.0000,2905576.0000,2907950.0000,2909824.0000,2912188.0000,2905615.0000,2911096.0000,2914873.0000,2914021.0000,2907109.0000,2909533.0000,2915985.0000,2905786.0000,2906848.0000,2909944.0000,2915815.0000,2904353.0000,3044188.0000,3067563.0000,3066861.0000,3066451.0000,3070648.0000,3065088.0000,3069787.0000,3063655.0000,3079385.0000,3068545.0000,3068835.0000,3074496.0000,3064837.0000,3062643.0000,3063064.0000,3069927.0000,3066691.0000,3065068.0000,3070488.0000,3064286.0000,3082050.0000,3076660.0000,3066110.0000,3067452.0000,3065469.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,74874900,772949.9400,772354.6900,773832.2600,3648.4749,2641.2648,6326.6229,"benchmark,group:scheduler","774687.0000,767282.0000,776771.0000,773033.0000,768966.0000,769957.0000,774906.0000,772533.0000,774175.0000,768664.0000,772772.0000,774656.0000,773895.0000,767783.0000,774606.0000,773354.0000,775909.0000,776540.0000,767903.0000,773985.0000,797109.0000,776119.0000,769396.0000,773824.0000,775498.0000,776070.0000,775958.0000,769636.0000,773003.0000,770398.0000,774557.0000,767342.0000,773675.0000,772582.0000,775037.0000,769877.0000,771971.0000,774727.0000,774827.0000,772712.0000,769416.0000,774085.0000,775197.0000,772202.0000,766952.0000,774666.0000,771711.0000,776049.0000,775107.0000,767102.0000,774626.0000,772843.0000,771992.0000,768765.0000,773584.0000,774687.0000,775027.0000,767683.0000,774947.0000,771992.0000,774806.0000,774126.0000,767352.0000,775137.0000,773414.0000,776660.0000,769036.0000,772563.0000,774456.0000,774396.0000,773564.0000,768805.0000,770348.0000,774456.0000,775498.0000,767343.0000,775207.0000,772763.0000,773674.0000,770488.0000,770909.0000,774726.0000,772923.0000,775909.0000,768815.0000,772081.0000,774657.0000,773694.0000,768034.0000,775689.0000,772933.0000,775287.0000,774005.0000,767763.0000,773284.0000,772993.0000,775047.0000,769277.0000,772732.0000,774816.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,277100100,2763216.7100,2755708.6300,2769822.3900,35767.3621,29947.4753,43387.3596,"benchmark,group:scheduler","2758687.0000,2756162.0000,2695467.0000,2661873.0000,2678706.0000,2645142.0000,2757785.0000,2789816.0000,2784936.0000,2790207.0000,2758136.0000,2726776.0000,2786791.0000,2789956.0000,2785999.0000,2757084.0000,2822248.0000,2751493.0000,2818080.0000,2728169.0000,2822408.0000,2751985.0000,2786850.0000,2766843.0000,2808922.0000,2757686.0000,2763586.0000,2781721.0000,2760741.0000,2756092.0000,2758748.0000,2786810.0000,2760791.0000,2785328.0000,2791599.0000,2754349.0000,2816517.0000,2756744.0000,2737106.0000,2750712.0000,2818120.0000,2759208.0000,2784446.0000,2728961.0000,2792331.0000,2813260.0000,2757385.0000,2794615.0000,2787382.0000,2787181.0000,2729512.0000,2758266.0000,2726797.0000,2774998.0000,2769508.0000,2765590.0000,2762084.0000,2789305.0000,2815294.0000,2757876.0000,2765089.0000,2751754.0000,2817399.0000,2754509.0000,2805866.0000,2749289.0000,2787011.0000,2759909.0000,2727248.0000,2735603.0000,2751824.0000,2760020.0000,2757976.0000,2728099.0000,2758898.0000,2817148.0000,2756613.0000,2794255.0000,2750982.0000,2759960.0000,2756934.0000,2787832.0000,2757144.0000,2765631.0000,2752966.0000,2757555.0000,2758607.0000,2757906.0000,2787782.0000,2756543.0000,2788043.0000,2757866.0000,2817408.0000,2718120.0000,2679547.0000,2660821.0000,2666192.0000,2757495.0000,2759669.0000,2816988.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,38974800,407030.2700,405581.4300,408767.8600,8035.8553,5644.3927,10870.6459,"benchmark,group:scheduler","406479.0000,406609.0000,413432.0000,405837.0000,406449.0000,406308.0000,406549.0000,404044.0000,406248.0000,406298.0000,407190.0000,405657.0000,406459.0000,406358.0000,377584.0000,406408.0000,406318.0000,406589.0000,406248.0000,435293.0000,406509.0000,406308.0000,406519.0000,406288.0000,406629.0000,406328.0000,406339.0000,406568.0000,406329.0000,406428.0000,406369.0000,406418.0000,406429.0000,406308.0000,435403.0000,406498.0000,406358.0000,406418.0000,411839.0000,401259.0000,406158.0000,406428.0000,406559.0000,411288.0000,401359.0000,406328.0000,406719.0000,406208.0000,406138.0000,406579.0000,406468.0000,406598.0000,406208.0000,377414.0000,406298.0000,406379.0000,406518.0000,406339.0000,406609.0000,406578.0000,406329.0000,406458.0000,406439.0000,406168.0000,406358.0000,406379.0000,406548.0000,406338.0000,406268.0000,406479.0000,406458.0000,406689.0000,434963.0000,435714.0000,406569.0000,435073.0000,406428.0000,406328.0000,406559.0000,406629.0000,406278.0000,406238.0000,407229.0000,406017.0000,405958.0000,406469.0000,406729.0000,406348.0000,406779.0000,405988.0000,406459.0000,406308.0000,412189.0000,400507.0000,406708.0000,406258.0000,406128.0000,390698.0000,393213.0000,406278.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,62934300,651755.4300,648543.3000,655434.5100,17579.7788,15608.3611,20195.6572,"benchmark,group:scheduler","637226.0000,639340.0000,683213.0000,662003.0000,668535.0000,639661.0000,695516.0000,638949.0000,638087.0000,638468.0000,668765.0000,637627.0000,640001.0000,638278.0000,638529.0000,638057.0000,638478.0000,668545.0000,638719.0000,638218.0000,639069.0000,667112.0000,667604.0000,638398.0000,668806.0000,638087.0000,638368.0000,668034.0000,667563.0000,638809.0000,640402.0000,665871.0000,668204.0000,639039.0000,638639.0000,638097.0000,670670.0000,635532.0000,639249.0000,668976.0000,636895.0000,639250.0000,641444.0000,694023.0000,638428.0000,669126.0000,637236.0000,639290.0000,638579.0000,638228.0000,669437.0000,665700.0000,639350.0000,639069.0000,638799.0000,637697.0000,688804.0000,636835.0000,638579.0000,669687.0000,665931.0000,638739.0000,667954.0000,639039.0000,637908.0000,669206.0000,637226.0000,638789.0000,668345.0000,638028.0000,639250.0000,638157.0000,667394.0000,645050.0000,661451.0000,639230.0000,640092.0000,666040.0000,697761.0000,638098.0000,638919.0000,666662.0000,669086.0000,637687.0000,667433.0000,669026.0000,637566.0000,638599.0000,641724.0000,693923.0000,638609.0000,669557.0000,636986.0000,638268.0000,668685.0000,637617.0000,669597.0000,665730.0000,697581.0000,639400.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,69283200,699503.1800,697128.5400,702135.3900,12792.7682,10336.1357,15675.9306,"benchmark,group:scheduler","666261.0000,696939.0000,716687.0000,695386.0000,697339.0000,696298.0000,696529.0000,696248.0000,697049.0000,728118.0000,694193.0000,696829.0000,697490.0000,696087.0000,697601.0000,696228.0000,696037.0000,696989.0000,697610.0000,726024.0000,696228.0000,696679.0000,726695.0000,698733.0000,693432.0000,696899.0000,697109.0000,696498.0000,696508.0000,727086.0000,696168.0000,667153.0000,696508.0000,697881.0000,725333.0000,696128.0000,697370.0000,695947.0000,697430.0000,696950.0000,696558.0000,677051.0000,742295.0000,694715.0000,696909.0000,696819.0000,726866.0000,695356.0000,697360.0000,696538.0000,696629.0000,696919.0000,696609.0000,667603.0000,697470.0000,695736.0000,696489.0000,697300.0000,696869.0000,726585.0000,696829.0000,695567.0000,698672.0000,695346.0000,696178.0000,697160.0000,726876.0000,695065.0000,697090.0000,698272.0000,695436.0000,696989.0000,697891.0000,695557.0000,696238.0000,697199.0000,696629.0000,667433.0000,697010.0000,727056.0000,695496.0000,697110.0000,726004.0000,696288.0000,697100.0000,695837.0000,727326.0000,724912.0000,696348.0000,697400.0000,696929.0000,696148.0000,697099.0000,696258.0000,697160.0000,696358.0000,696909.0000,696168.0000,696849.0000,698773.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,256389000,2896582.8100,2893018.1100,2900457.4100,18857.0791,16262.8465,23019.7567,"benchmark,group:scheduler","2874206.0000,2905756.0000,2915865.0000,2899433.0000,2904192.0000,2962232.0000,2901577.0000,2935031.0000,2900776.0000,2903832.0000,2903241.0000,2903652.0000,2932146.0000,2903351.0000,2903592.0000,2898813.0000,2901718.0000,2902079.0000,2872283.0000,2901177.0000,2933618.0000,2899384.0000,2899084.0000,2903241.0000,2901788.0000,2902811.0000,2924601.0000,2926315.0000,2877743.0000,2898903.0000,2875709.0000,2902730.0000,2874577.0000,2873545.0000,2904433.0000,2904233.0000,2902270.0000,2878093.0000,2899895.0000,2873545.0000,2904664.0000,2902730.0000,2903983.0000,2874406.0000,2873926.0000,2904624.0000,2875488.0000,2900917.0000,2874426.0000,2930783.0000,2902620.0000,2903181.0000,2903431.0000,2875498.0000,2875348.0000,2902230.0000,2909102.0000,2888273.0000,2888293.0000,2874045.0000,2897049.0000,2888593.0000,2873735.0000,2874697.0000,2903281.0000,2909222.0000,2898182.0000,2931565.0000,2904614.0000,2873274.0000,2874697.0000,2874226.0000,2905265.0000,2901588.0000,2903592.0000,2908521.0000,2868906.0000,2874257.0000,2875578.0000,2903081.0000,2873996.0000,2903101.0000,2905175.0000,2872543.0000,2874556.0000,2903191.0000,2905064.0000,2873214.0000,2903271.0000,2902770.0000,2906557.0000,2900786.0000,2908952.0000,2958025.0000,2904714.0000,2872182.0000,2873725.0000,2873865.0000,2874366.0000,2874867.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,81834800,842406.2900,839379.4900,845941.9100,16616.4949,13815.8102,20693.9338,"benchmark,group:scheduler","842485.0000,840932.0000,814823.0000,850901.0000,824571.0000,825162.0000,846713.0000,841793.0000,841453.0000,813150.0000,842705.0000,841503.0000,869125.0000,843116.0000,823540.0000,836724.0000,841873.0000,842185.0000,841784.0000,841863.0000,842144.0000,841623.0000,842405.0000,900836.0000,870047.0000,841974.0000,841684.0000,835191.0000,824741.0000,822797.0000,824541.0000,822808.0000,853205.0000,827957.0000,835051.0000,810464.0000,812709.0000,843106.0000,841674.0000,811967.0000,813360.0000,853796.0000,851793.0000,877642.0000,852283.0000,851252.0000,824891.0000,826063.0000,824871.0000,824732.0000,867893.0000,842415.0000,842134.0000,842245.0000,841373.0000,841363.0000,870999.0000,902288.0000,815664.0000,837897.0000,841112.0000,842445.0000,841864.0000,841633.0000,843486.0000,840911.0000,841633.0000,842325.0000,841593.0000,841834.0000,842144.0000,841604.0000,842525.0000,812698.0000,841504.0000,841954.0000,841162.0000,845721.0000,839449.0000,841433.0000,841804.0000,842084.0000,841733.0000,870588.0000,841693.0000,842976.0000,841834.0000,870809.0000,841964.0000,872021.0000,870188.0000,841583.0000,842565.0000,841573.0000,842025.0000,842054.0000,871951.0000,840982.0000,841633.0000,871260.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,145062000,1449168.0200,1448155.6600,1450284.5900,5420.9759,4661.2650,6947.5973,"benchmark,group:scheduler","1444727.0000,1457551.0000,1452942.0000,1452481.0000,1446199.0000,1447512.0000,1442543.0000,1445928.0000,1449886.0000,1445037.0000,1452451.0000,1442362.0000,1453743.0000,1446560.0000,1440649.0000,1448504.0000,1445929.0000,1456850.0000,1441771.0000,1453192.0000,1444076.0000,1453894.0000,1447652.0000,1452151.0000,1443654.0000,1450097.0000,1447261.0000,1448724.0000,1445057.0000,1448113.0000,1449776.0000,1445608.0000,1454044.0000,1440989.0000,1446340.0000,1454124.0000,1443093.0000,1452752.0000,1442021.0000,1445078.0000,1440648.0000,1456809.0000,1471477.0000,1445077.0000,1453794.0000,1440819.0000,1449926.0000,1447302.0000,1455737.0000,1445148.0000,1458903.0000,1448123.0000,1447733.0000,1450036.0000,1445548.0000,1451189.0000,1447733.0000,1449856.0000,1449946.0000,1463682.0000,1445158.0000,1450206.0000,1445448.0000,1438575.0000,1452832.0000,1446890.0000,1456389.0000,1447131.0000,1454445.0000,1449486.0000,1447842.0000,1451970.0000,1449746.0000,1443955.0000,1451490.0000,1453222.0000,1452591.0000,1454776.0000,1440548.0000,1452331.0000,1445888.0000,1455628.0000,1441320.0000,1448013.0000,1451990.0000,1449696.0000,1452712.0000,1447522.0000,1452712.0000,1451098.0000,1448324.0000,1449055.0000,1460376.0000,1445849.0000,1444937.0000,1453513.0000,1437974.0000,1453483.0000,1446149.0000,1454725.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,33699400,337079.5500,336375.2800,338200.9100,4458.2762,3267.4458,7745.9392,"benchmark,group:scheduler","334832.0000,334823.0000,345052.0000,334903.0000,340714.0000,335454.0000,335244.0000,342327.0000,335554.0000,336265.0000,341475.0000,335294.0000,335253.0000,340834.0000,333820.0000,334311.0000,339632.0000,334202.0000,333580.0000,340283.0000,334251.0000,333741.0000,342608.0000,332939.0000,334552.0000,366403.0000,334352.0000,334191.0000,340493.0000,333581.0000,335754.0000,341335.0000,333881.0000,334583.0000,342176.0000,333670.0000,335033.0000,340773.0000,333400.0000,340243.0000,335263.0000,333952.0000,340273.0000,334983.0000,333981.0000,341005.0000,335053.0000,333570.0000,342057.0000,334783.0000,335955.0000,342387.0000,334302.0000,334522.0000,343108.0000,334241.0000,335795.0000,342828.0000,335414.0000,333841.0000,340563.0000,335575.0000,334752.0000,342317.0000,335444.0000,333761.0000,341666.0000,335314.0000,334652.0000,340864.0000,334442.0000,333380.0000,340012.0000,334441.0000,333820.0000,340714.0000,333441.0000,334352.0000,341836.0000,333710.0000,333330.0000,339853.0000,333921.0000,335153.0000,341606.0000,333370.0000,334131.0000,340373.0000,334602.0000,334252.0000,341996.0000,334092.0000,334442.0000,340383.0000,335023.0000,333810.0000,341115.0000,334873.0000,335204.0000,342246.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,34977200,349495.5100,348846.9600,350234.2300,3538.5321,3178.2617,4270.9449,"benchmark,group:scheduler","345614.0000,346965.0000,362134.0000,348178.0000,348058.0000,354891.0000,347026.0000,352436.0000,350282.0000,346054.0000,353498.0000,347286.0000,348239.0000,355361.0000,347877.0000,347126.0000,353629.0000,347727.0000,347437.0000,353919.0000,350302.0000,348318.0000,357155.0000,347207.0000,347346.0000,354801.0000,349491.0000,352466.0000,347076.0000,345643.0000,352757.0000,347307.0000,347166.0000,356424.0000,346414.0000,347606.0000,355171.0000,347517.0000,347386.0000,353828.0000,347247.0000,349220.0000,353929.0000,348138.0000,347817.0000,354871.0000,349872.0000,354500.0000,349661.0000,348027.0000,354630.0000,347537.0000,347987.0000,353848.0000,348408.0000,346515.0000,354510.0000,347307.0000,345713.0000,353108.0000,345773.0000,346135.0000,353909.0000,346495.0000,345953.0000,353548.0000,345623.0000,352727.0000,348138.0000,346114.0000,353298.0000,346375.0000,346886.0000,352506.0000,345784.0000,346274.0000,352436.0000,346195.0000,345864.0000,351223.0000,346534.0000,346104.0000,354640.0000,344972.0000,345714.0000,352576.0000,346144.0000,346805.0000,352106.0000,347206.0000,351534.0000,346965.0000,347146.0000,352457.0000,346074.0000,345944.0000,353157.0000,346686.0000,346194.0000,351374.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,34291900,360103.9100,359326.2000,361267.2700,4770.2931,3583.8480,8025.3261,"benchmark,group:scheduler","358247.0000,365261.0000,371662.0000,358898.0000,390098.0000,354891.0000,357385.0000,364048.0000,357505.0000,356875.0000,365621.0000,356364.0000,356203.0000,363297.0000,356965.0000,364739.0000,356553.0000,354640.0000,362465.0000,355893.0000,357796.0000,362034.0000,356724.0000,355612.0000,362595.0000,356594.0000,362445.0000,358338.0000,357596.0000,365481.0000,355622.0000,357115.0000,364339.0000,356905.0000,358287.0000,366954.0000,356754.0000,358919.0000,364138.0000,357556.0000,363998.0000,357296.0000,356975.0000,365120.0000,356744.0000,356274.0000,364619.0000,357145.0000,356363.0000,364880.0000,357636.0000,362656.0000,358307.0000,355342.0000,364880.0000,355011.0000,357476.0000,364308.0000,356724.0000,356273.0000,365170.0000,356634.0000,358377.0000,363266.0000,358087.0000,363958.0000,356944.0000,358297.0000,363487.0000,355161.0000,357075.0000,362526.0000,356674.0000,359439.0000,365371.0000,359450.0000,357626.0000,365681.0000,357336.0000,364659.0000,359229.0000,356885.0000,364168.0000,357515.0000,357114.0000,363657.0000,357496.0000,357967.0000,364539.0000,357365.0000,363597.0000,357866.0000,357175.0000,363116.0000,357325.0000,357776.0000,363287.0000,357726.0000,357606.0000,366323.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,210011100,1991792.8500,1990315.0400,1993476.4000,8080.1820,6866.9848,9769.8432,"benchmark,group:scheduler","2000991.0000,2001963.0000,2004027.0000,1987515.0000,2004247.0000,2002864.0000,1972928.0000,1997554.0000,1988487.0000,1981223.0000,1988326.0000,1995430.0000,1998095.0000,1989559.0000,1989269.0000,1983528.0000,1978167.0000,1986313.0000,1984159.0000,1983588.0000,1989028.0000,1983137.0000,1984310.0000,1986684.0000,1988487.0000,1985101.0000,1988778.0000,1987225.0000,1979941.0000,1989019.0000,1986473.0000,1986764.0000,1980312.0000,1990391.0000,1981324.0000,1978057.0000,1988928.0000,1993777.0000,1994408.0000,1991373.0000,1996112.0000,1994168.0000,1990561.0000,1986964.0000,2002353.0000,2001713.0000,1990982.0000,1983408.0000,1990631.0000,1989449.0000,1984480.0000,1989720.0000,1990090.0000,1994088.0000,1987455.0000,1988387.0000,1992545.0000,1996091.0000,1988498.0000,2006421.0000,2008605.0000,2004207.0000,1996763.0000,1992264.0000,2018915.0000,1989149.0000,1988307.0000,2009838.0000,1987134.0000,1998086.0000,2011330.0000,2001882.0000,1985161.0000,1992685.0000,1986052.0000,1989269.0000,1993166.0000,1990121.0000,1978859.0000,1986684.0000,1990080.0000,1998927.0000,1988818.0000,1986964.0000,1993837.0000,1998727.0000,1985782.0000,1991463.0000,1991303.0000,2016740.0000,2000469.0000,1998225.0000,1991804.0000,1991753.0000,1992755.0000,1987245.0000,1992014.0000,1993807.0000,1990051.0000,1994178.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,55765000,557886.4400,556856.4200,559099.9400,5663.4096,4663.3788,8432.3307,"benchmark,group:scheduler","558367.0000,548467.0000,562715.0000,557395.0000,563416.0000,556423.0000,554018.0000,561212.0000,555832.0000,557856.0000,550642.0000,561161.0000,553447.0000,560390.0000,562875.0000,550031.0000,587512.0000,555972.0000,562364.0000,551644.0000,562825.0000,555832.0000,554078.0000,566051.0000,548268.0000,562664.0000,555351.0000,562485.0000,555310.0000,557175.0000,563716.0000,555411.0000,563346.0000,549490.0000,557655.0000,550712.0000,560771.0000,555160.0000,563406.0000,556383.0000,555391.0000,560881.0000,556433.0000,559278.0000,553187.0000,563907.0000,551203.0000,562945.0000,562945.0000,556192.0000,563556.0000,557033.0000,556723.0000,556142.0000,563216.0000,553197.0000,562484.0000,564488.0000,554900.0000,563306.0000,550161.0000,562554.0000,555491.0000,557274.0000,563476.0000,555872.0000,559479.0000,548578.0000,554719.0000,546554.0000,561362.0000,548798.0000,561964.0000,562153.0000,548157.0000,562083.0000,553788.0000,561733.0000,554138.0000,561863.0000,557104.0000,557785.0000,562014.0000,555781.0000,561923.0000,557344.0000,562284.0000,547797.0000,557505.0000,555250.0000,564598.0000,564057.0000,554910.0000,555171.0000,553207.0000,554429.0000,551213.0000,562995.0000,555611.0000,562234.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,285405400,2850178.6400,2845859.2800,2854526.6300,22041.1491,20115.8570,24378.8356,"benchmark,group:scheduler","2871812.0000,2843929.0000,2878975.0000,2871621.0000,2874386.0000,2845341.0000,2875539.0000,2843989.0000,2876450.0000,2844119.0000,2875459.0000,2844379.0000,2874848.0000,2818681.0000,2872593.0000,2843518.0000,2874967.0000,2873215.0000,2847756.0000,2872843.0000,2828911.0000,2820424.0000,2822348.0000,2844209.0000,2875559.0000,2844399.0000,2873695.0000,2845421.0000,2876080.0000,2844880.0000,2874727.0000,2844269.0000,2816497.0000,2844690.0000,2816026.0000,2818280.0000,2844019.0000,2875328.0000,2902660.0000,2816056.0000,2815816.0000,2817749.0000,2844069.0000,2875839.0000,2843729.0000,2816436.0000,2815986.0000,2835413.0000,2873745.0000,2862644.0000,2843348.0000,2877101.0000,2842405.0000,2845843.0000,2876550.0000,2843589.0000,2874977.0000,2844550.0000,2874868.0000,2815835.0000,2816066.0000,2877392.0000,2813972.0000,2846524.0000,2843858.0000,2874576.0000,2849189.0000,2871000.0000,2845522.0000,2829271.0000,2824262.0000,2878424.0000,2843788.0000,2845392.0000,2846964.0000,2843388.0000,2876220.0000,2843558.0000,2816347.0000,2816486.0000,2875459.0000,2814894.0000,2876360.0000,2843818.0000,2869386.0000,2845010.0000,2846244.0000,2845281.0000,2875338.0000,2843558.0000,2875599.0000,2843949.0000,2845922.0000,2816257.0000,2817538.0000,2844139.0000,2876190.0000,2842977.0000,2875087.0000,2849269.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,99969800,995012.8800,992556.9600,997840.7700,13442.0915,11917.8630,14624.6096,"benchmark,group:scheduler","987089.0000,1016324.0000,999542.0000,985796.0000,985035.0000,1016685.0000,987009.0000,986658.0000,1016645.0000,987200.0000,986277.0000,987671.0000,987139.0000,986819.0000,1016364.0000,987190.0000,986608.0000,1016445.0000,988882.0000,985436.0000,987210.0000,987239.0000,986789.0000,1016264.0000,987039.0000,986619.0000,1016525.0000,987249.0000,986468.0000,987440.0000,987289.0000,986728.0000,1016675.0000,986678.0000,987830.0000,1016114.0000,986569.0000,986838.0000,987560.0000,987109.0000,986838.0000,987039.0000,1016385.0000,987189.0000,986939.0000,989855.0000,988672.0000,988071.0000,981599.0000,987159.0000,987941.0000,988582.0000,984885.0000,987410.0000,1023548.0000,979324.0000,987029.0000,989343.0000,984684.0000,987830.0000,986508.0000,1016675.0000,986939.0000,1016335.0000,986528.0000,1016635.0000,986739.0000,1016284.0000,986779.0000,1016825.0000,986398.0000,1016726.0000,986668.0000,1016655.0000,986518.0000,1016736.0000,986628.0000,987600.0000,986468.0000,1017226.0000,986057.0000,987079.0000,987099.0000,976008.0000,995756.0000,1016475.0000,986918.0000,1016445.0000,986588.0000,1016294.0000,986959.0000,1016505.0000,986839.0000,1016615.0000,986528.0000,987289.0000,986858.0000,1016505.0000,987039.0000,1016194.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,94584100,1019747.6800,1017024.5800,1022788.3600,14614.8175,12801.7124,16467.3179,"benchmark,group:scheduler","1014011.0000,997188.0000,1029540.0000,1016885.0000,1014471.0000,1045910.0000,1015844.0000,1015523.0000,1045850.0000,1015753.0000,1016755.0000,1015664.0000,1045730.0000,1015323.0000,1045900.0000,1015814.0000,1045750.0000,1015042.0000,1046050.0000,1015653.0000,1045590.0000,1015333.0000,1045590.0000,1015743.0000,1045290.0000,1016054.0000,1045450.0000,1015653.0000,1016665.0000,1016565.0000,1015483.0000,1015954.0000,1019561.0000,1014922.0000,1043195.0000,1017337.0000,1014631.0000,1045801.0000,1015813.0000,1015513.0000,1016826.0000,1016655.0000,1015423.0000,1016334.0000,1016474.0000,1015853.0000,1045430.0000,1015783.0000,1015583.0000,1016865.0000,1015142.0000,1046271.0000,1015793.0000,1045439.0000,1015663.0000,1045870.0000,1015794.0000,1045920.0000,1015063.0000,1045900.0000,1015513.0000,1016385.0000,1016004.0000,1045430.0000,1016124.0000,1010032.0000,997699.0000,1029890.0000,1008810.0000,1007477.0000,1003661.0000,1006526.0000,1001025.0000,1014961.0000,995445.0000,1020472.0000,996307.0000,1029709.0000,1012878.0000,1017066.0000,1004732.0000,1012017.0000,1011144.0000,1009741.0000,1009712.0000,1013348.0000,986868.0000,999854.0000,1011164.0000,1008569.0000,1032606.0000,1006185.0000,1000825.0000,1010203.0000,1039829.0000,1032996.0000,1000224.0000,1022596.0000,1005003.0000,1012858.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,99645000,970014.0900,967100.0400,973469.7500,16210.0529,13764.2621,19488.5238,"benchmark,group:scheduler","956291.0000,958585.0000,1019711.0000,948897.0000,957643.0000,973613.0000,955820.0000,947614.0000,963094.0000,960509.0000,972321.0000,974175.0000,952012.0000,972121.0000,974035.0000,956962.0000,952694.0000,968223.0000,981869.0000,969316.0000,970347.0000,975217.0000,962943.0000,974165.0000,965709.0000,948977.0000,960007.0000,962923.0000,977581.0000,959216.0000,956250.0000,971810.0000,964477.0000,958274.0000,953696.0000,974475.0000,954418.0000,973663.0000,971229.0000,959697.0000,971259.0000,953075.0000,976569.0000,955008.0000,960349.0000,970658.0000,962412.0000,981529.0000,973824.0000,986959.0000,957984.0000,987971.0000,957302.0000,961651.0000,954818.0000,975457.0000,968284.0000,967712.0000,996668.0000,957112.0000,985626.0000,957703.0000,982981.0000,987570.0000,985876.0000,957193.0000,1016685.0000,957684.0000,987930.0000,957273.0000,987881.0000,957473.0000,987500.0000,957783.0000,987370.0000,957703.0000,987670.0000,957673.0000,987340.0000,957212.0000,987559.0000,1016194.0000,986618.0000,988271.0000,1015713.0000,957824.0000,958515.0000,987299.0000,957022.0000,1016765.0000,958254.0000,957102.0000,958775.0000,957453.0000,961681.0000,954878.0000,958124.0000,987209.0000,960379.0000,986468.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,651813100,6178212.5900,6103957.0800,6249131.7600,371533.6861,359635.8072,384389.6077,"benchmark,group:scheduler","5744807.0000,5780535.0000,6743190.0000,6542179.0000,6473498.0000,6505409.0000,6472466.0000,6535005.0000,6501472.0000,6503786.0000,6533101.0000,6505048.0000,6472807.0000,6534925.0000,6530787.0000,6499899.0000,6558670.0000,6497674.0000,6516480.0000,6529505.0000,6531879.0000,6561054.0000,6592324.0000,6532049.0000,6533092.0000,6503265.0000,6509266.0000,6497965.0000,6564952.0000,6500991.0000,6533732.0000,6530887.0000,6534193.0000,6502603.0000,6534084.0000,6507773.0000,6529495.0000,6531338.0000,6544253.0000,6273980.0000,5729348.0000,6443311.0000,6475442.0000,6558560.0000,6501221.0000,6534664.0000,6501892.0000,6592213.0000,6502885.0000,6535055.0000,6065515.0000,6023065.0000,6477706.0000,6506741.0000,6502073.0000,6534634.0000,6472687.0000,6476414.0000,6472827.0000,5890994.0000,5723748.0000,5778781.0000,5720160.0000,5733827.0000,5742663.0000,5723357.0000,5722966.0000,5726582.0000,5722766.0000,5729588.0000,5770556.0000,5753053.0000,5747252.0000,5846500.0000,5723026.0000,5724629.0000,5775606.0000,5780144.0000,5772880.0000,5780144.0000,5790904.0000,5779112.0000,5776848.0000,5776788.0000,5776547.0000,5779252.0000,5800383.0000,5778190.0000,5777859.0000,5777178.0000,5775726.0000,5831482.0000,5751039.0000,5829979.0000,5795934.0000,5831792.0000,5787078.0000,5723386.0000,5776797.0000,5779092.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,163634700,1628849.5400,1624284.8000,1633617.6900,23866.0374,21527.2965,26827.6697,"benchmark,group:scheduler","1653221.0000,1655606.0000,1682137.0000,1656718.0000,1651689.0000,1656899.0000,1623435.0000,1626662.0000,1625389.0000,1596945.0000,1596414.0000,1597637.0000,1624878.0000,1656618.0000,1623907.0000,1656698.0000,1624187.0000,1625840.0000,1655736.0000,1595983.0000,1626651.0000,1625780.0000,1597316.0000,1596274.0000,1597757.0000,1624407.0000,1655296.0000,1596303.0000,1655896.0000,1625839.0000,1597957.0000,1623715.0000,1601303.0000,1592517.0000,1660736.0000,1619738.0000,1628145.0000,1652791.0000,1597285.0000,1596584.0000,1597747.0000,1624507.0000,1628084.0000,1623596.0000,1653873.0000,1655817.0000,1597526.0000,1626211.0000,1596264.0000,1625810.0000,1626551.0000,1595843.0000,1626862.0000,1597947.0000,1623596.0000,1657530.0000,1623415.0000,1626060.0000,1625789.0000,1597236.0000,1625239.0000,1601143.0000,1617384.0000,1677999.0000,1623806.0000,1684511.0000,1654815.0000,1656247.0000,1623936.0000,1655426.0000,1626371.0000,1655566.0000,1652741.0000,1656067.0000,1625039.0000,1656518.0000,1653953.0000,1626321.0000,1624818.0000,1686064.0000,1653422.0000,1656147.0000,1623986.0000,1656879.0000,1653302.0000,1622383.0000,1606293.0000,1637923.0000,1630298.0000,1608107.0000,1645016.0000,1597546.0000,1596043.0000,1626822.0000,1624517.0000,1597406.0000,1625820.0000,1597356.0000,1625559.0000,1627012.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,223783200,2454019.8900,2450886.1400,2457124.1000,15723.7322,9657.4628,25429.6559,"benchmark,group:scheduler","2447798.0000,2447918.0000,2459080.0000,2446395.0000,2445413.0000,2456975.0000,2449230.0000,2539452.0000,2359641.0000,2441967.0000,2448489.0000,2454932.0000,2454731.0000,2453208.0000,2462125.0000,2496861.0000,2453619.0000,2447237.0000,2460462.0000,2443960.0000,2486792.0000,2456134.0000,2450473.0000,2445924.0000,2451034.0000,2465522.0000,2452647.0000,2450854.0000,2452226.0000,2450112.0000,2448029.0000,2454210.0000,2455472.0000,2447928.0000,2455743.0000,2449411.0000,2454631.0000,2448349.0000,2442257.0000,2452857.0000,2460572.0000,2445864.0000,2459029.0000,2460471.0000,2452206.0000,2451715.0000,2459240.0000,2453769.0000,2453489.0000,2462886.0000,2450303.0000,2462796.0000,2454431.0000,2452887.0000,2458669.0000,2450342.0000,2448128.0000,2453749.0000,2460873.0000,2450934.0000,2442317.0000,2477595.0000,2451795.0000,2450674.0000,2449120.0000,2445483.0000,2448950.0000,2462135.0000,2453398.0000,2466664.0000,2452076.0000,2441205.0000,2453939.0000,2451475.0000,2452416.0000,2493123.0000,2451895.0000,2441596.0000,2450393.0000,2447497.0000,2467735.0000,2449441.0000,2455002.0000,2451184.0000,2459590.0000,2454250.0000,2448749.0000,2445894.0000,2446385.0000,2440985.0000,2456023.0000,2463037.0000,2453940.0000,2452266.0000,2459219.0000,2464148.0000,2445855.0000,2451154.0000,2459230.0000,2451705.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,59253000,626997.4000,623654.3800,629201.0400,13616.8457,9645.6486,17885.7954,"benchmark,group:scheduler","578815.0000,579447.0000,637417.0000,626686.0000,633849.0000,633789.0000,627908.0000,633128.0000,633098.0000,626335.0000,628420.0000,633869.0000,627538.0000,629982.0000,626596.0000,628770.0000,635784.0000,626806.0000,631365.0000,634461.0000,627337.0000,630904.0000,626265.0000,627688.0000,635643.0000,625775.0000,629561.0000,634060.0000,627418.0000,633639.0000,626405.0000,627096.0000,633469.0000,627568.0000,630774.0000,627938.0000,627167.0000,632848.0000,630103.0000,627788.0000,628289.0000,627548.0000,634881.0000,631996.0000,628800.0000,635954.0000,628980.0000,628249.0000,634701.0000,628309.0000,630603.0000,633809.0000,627848.0000,632607.0000,634060.0000,627647.0000,643658.0000,632918.0000,627407.0000,627788.0000,628189.0000,633599.0000,628259.0000,626706.0000,629160.0000,633690.0000,626996.0000,631015.0000,627517.0000,627658.0000,635052.0000,627407.0000,627707.0000,626816.0000,627237.0000,634811.0000,627016.0000,630523.0000,634160.0000,627377.0000,633699.0000,658947.0000,628008.0000,628630.0000,633399.0000,626826.0000,635583.0000,626947.0000,628569.0000,634350.0000,628429.0000,628810.0000,633959.0000,627176.0000,623691.0000,577953.0000,579416.0000,585478.0000,578545.0000,580869.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,61222100,652842.5600,652118.3800,653948.9300,4485.1481,3268.7571,7865.7799,"benchmark,group:scheduler","649209.0000,656092.0000,659387.0000,657564.0000,648968.0000,656453.0000,654849.0000,647786.0000,655651.0000,656332.0000,647425.0000,656092.0000,682602.0000,648537.0000,653807.0000,649970.0000,648918.0000,655901.0000,652935.0000,649389.0000,656282.0000,652394.0000,648458.0000,655049.0000,654258.0000,648738.0000,656162.0000,653496.0000,647815.0000,656091.0000,647656.0000,654569.0000,654849.0000,649579.0000,655781.0000,654379.0000,647275.0000,648838.0000,650371.0000,649169.0000,656432.0000,650541.0000,648548.0000,656062.0000,653667.0000,648557.0000,653847.0000,654579.0000,649940.0000,655270.0000,653828.0000,648978.0000,655090.0000,649038.0000,654559.0000,655411.0000,649289.0000,654809.0000,654619.0000,648427.0000,653978.0000,659649.0000,648277.0000,654398.0000,657834.0000,648998.0000,653837.0000,653207.0000,649579.0000,654319.0000,653717.0000,649820.0000,655370.0000,655311.0000,647054.0000,648908.0000,653216.0000,649679.0000,650010.0000,648347.0000,654428.0000,657263.0000,648667.0000,656473.0000,652424.0000,647906.0000,653617.0000,655180.0000,647986.0000,653857.0000,654779.0000,647746.0000,655381.0000,656262.0000,647315.0000,654509.0000,654729.0000,648427.0000,655180.0000,656052.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,66659600,614659.7200,613910.8300,615522.3900,4107.5996,3575.4839,5601.3640,"benchmark,group:scheduler","616988.0000,610606.0000,621316.0000,613481.0000,616767.0000,610295.0000,610556.0000,617609.0000,611938.0000,618881.0000,609784.0000,611648.0000,619462.0000,612840.0000,619903.0000,619382.0000,612940.0000,616837.0000,608652.0000,617438.0000,619934.0000,610405.0000,616867.0000,609564.0000,611457.0000,621136.0000,611377.0000,617809.0000,619011.0000,611276.0000,611858.0000,612299.0000,615866.0000,617508.0000,611877.0000,620795.0000,610456.0000,617368.0000,621095.0000,611477.0000,617118.0000,617979.0000,609855.0000,614252.0000,610796.0000,617358.0000,616576.0000,610334.0000,611877.0000,610585.0000,611698.0000,619783.0000,611206.0000,616236.0000,610074.0000,609233.0000,619803.0000,610516.0000,613491.0000,618641.0000,611838.0000,615815.0000,611197.0000,614893.0000,617688.0000,609733.0000,619161.0000,610926.0000,612739.0000,612139.0000,611437.0000,614923.0000,617689.0000,611437.0000,611868.0000,612248.0000,633268.0000,621967.0000,612169.0000,619091.0000,612038.0000,618160.0000,618420.0000,611848.0000,616046.0000,619252.0000,611157.0000,612549.0000,611076.0000,617268.0000,618791.0000,611878.0000,618350.0000,609894.0000,612119.0000,612028.0000,611247.0000,617188.0000,618891.0000,611377.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,406653200,4362630.7300,4345903.4100,4369873.9800,52771.2958,21598.8944,91112.7924,"benchmark,group:scheduler","4361144.0000,4365423.0000,4414575.0000,4386392.0000,4374009.0000,4392304.0000,4364370.0000,4381463.0000,4361325.0000,4360683.0000,4365532.0000,4357166.0000,4360833.0000,4365582.0000,4360864.0000,4358639.0000,4362136.0000,4363960.0000,4366004.0000,4356826.0000,4382786.0000,4362978.0000,4368409.0000,4349482.0000,4363669.0000,4364771.0000,4359632.0000,4359852.0000,4385070.0000,4362938.0000,4362307.0000,4356546.0000,4381854.0000,4365012.0000,4359061.0000,4383336.0000,4375661.0000,4373518.0000,4357708.0000,4362767.0000,4367085.0000,4354321.0000,4358670.0000,4260925.0000,4009889.0000,4036208.0000,4230206.0000,4380832.0000,4382355.0000,4365653.0000,4361225.0000,4382435.0000,4381843.0000,4386833.0000,4374149.0000,4365844.0000,4383356.0000,4382404.0000,4372687.0000,4373899.0000,4376523.0000,4384859.0000,4372707.0000,4371985.0000,4377285.0000,4370222.0000,4383687.0000,4380081.0000,4372416.0000,4379900.0000,4374149.0000,4386151.0000,4381703.0000,4371915.0000,4372697.0000,4384469.0000,4382825.0000,4380822.0000,4364491.0000,4377816.0000,4384989.0000,4375352.0000,4369690.0000,4383056.0000,4371654.0000,4372927.0000,4359542.0000,4366214.0000,4375622.0000,4398746.0000,4371755.0000,4382205.0000,4377986.0000,4370943.0000,4374610.0000,4366675.0000,4381342.0000,4369921.0000,4368859.0000,4366876.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,96646700,1063242.0100,1062393.4000,1064341.5400,4896.5486,3950.7068,6886.2408,"benchmark,group:scheduler","1056651.0000,1067852.0000,1073362.0000,1063003.0000,1062722.0000,1062282.0000,1064115.0000,1067542.0000,1072471.0000,1071198.0000,1064095.0000,1064316.0000,1066530.0000,1059206.0000,1061720.0000,1065899.0000,1057773.0000,1062642.0000,1060147.0000,1062773.0000,1059396.0000,1070427.0000,1058024.0000,1057703.0000,1072912.0000,1064916.0000,1058575.0000,1062422.0000,1060999.0000,1066851.0000,1058645.0000,1059356.0000,1063143.0000,1063193.0000,1064405.0000,1057333.0000,1067651.0000,1058113.0000,1058525.0000,1066610.0000,1062702.0000,1061721.0000,1062201.0000,1062652.0000,1067992.0000,1059646.0000,1060899.0000,1087410.0000,1057693.0000,1060879.0000,1066239.0000,1058314.0000,1059457.0000,1061710.0000,1060859.0000,1070437.0000,1062512.0000,1061740.0000,1063244.0000,1063995.0000,1062171.0000,1063444.0000,1060719.0000,1062382.0000,1060047.0000,1062622.0000,1060648.0000,1060197.0000,1068734.0000,1057192.0000,1063274.0000,1060077.0000,1071500.0000,1065467.0000,1058785.0000,1060909.0000,1060518.0000,1061169.0000,1066480.0000,1058555.0000,1065538.0000,1079494.0000,1066770.0000,1061450.0000,1063174.0000,1063173.0000,1054427.0000,1069946.0000,1060508.0000,1064737.0000,1063934.0000,1060127.0000,1060158.0000,1063564.0000,1064366.0000,1059736.0000,1061049.0000,1063915.0000,1056280.0000,1069165.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,318328100,3174184.0300,3165529.5500,3181528.1100,40602.8497,33264.7429,49257.0440,"benchmark,group:scheduler","3165939.0000,3193421.0000,3083282.0000,3050491.0000,3087320.0000,3074626.0000,3073714.0000,3048727.0000,3076860.0000,3109502.0000,3138547.0000,3196787.0000,3188482.0000,3223689.0000,3163344.0000,3193852.0000,3193762.0000,3194914.0000,3192569.0000,3224459.0000,3193200.0000,3194233.0000,3191808.0000,3224701.0000,3162983.0000,3230001.0000,3186698.0000,3194463.0000,3189814.0000,3225352.0000,3221153.0000,3224149.0000,3191988.0000,3196057.0000,3191918.0000,3226674.0000,3274505.0000,3165599.0000,3192740.0000,3159837.0000,3079666.0000,3063865.0000,3152774.0000,3193711.0000,3224310.0000,3163044.0000,3192609.0000,3173733.0000,3163204.0000,3224971.0000,3163615.0000,3166500.0000,3162944.0000,3195635.0000,3167512.0000,3248766.0000,3192169.0000,3167252.0000,3165077.0000,3195075.0000,3162332.0000,3166690.0000,3163865.0000,3195274.0000,3163936.0000,3164005.0000,3165559.0000,3194262.0000,3192560.0000,3195144.0000,3163153.0000,3164827.0000,3164236.0000,3166260.0000,3163595.0000,3172130.0000,3156331.0000,3166821.0000,3164286.0000,3165438.0000,3163034.0000,3195074.0000,3163415.0000,3165398.0000,3164837.0000,3193742.0000,3201135.0000,3206365.0000,3192650.0000,3169075.0000,3197048.0000,3195084.0000,3182280.0000,3194312.0000,3175447.0000,3162913.0000,3166600.0000,3164036.0000,3223438.0000,3163224.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,100768100,1003687.1600,1000767.5500,1006776.4900,15429.9015,14020.5195,17822.0252,"benchmark,group:scheduler","1019531.0000,990756.0000,1040330.0000,1013769.0000,1016655.0000,1015463.0000,1045651.0000,1015683.0000,987520.0000,1016014.0000,1045379.0000,1017186.0000,1014631.0000,987550.0000,987540.0000,1015633.0000,1016365.0000,986989.0000,1016024.0000,1016094.0000,987240.0000,986959.0000,1016114.0000,987189.0000,986638.0000,1016215.0000,987289.0000,986989.0000,1016084.0000,1016405.0000,987360.0000,1015974.0000,986818.0000,987380.0000,1016204.0000,1016395.0000,986829.0000,1016414.0000,986879.0000,987390.0000,1015894.0000,987199.0000,986889.0000,987510.0000,987069.0000,1015543.0000,1016364.0000,1016054.0000,987209.0000,1015753.0000,1016686.0000,986939.0000,987069.0000,1016014.0000,1016645.0000,987129.0000,986819.0000,987670.0000,986468.0000,1017607.0000,985957.0000,1016234.0000,986758.0000,987450.0000,989524.0000,1011074.0000,999753.0000,1010554.0000,1011215.0000,1011165.0000,985526.0000,1010874.0000,986739.0000,1011365.0000,987440.0000,1011365.0000,1011585.0000,984625.0000,1011475.0000,1011065.0000,986949.0000,1011635.0000,986859.0000,984755.0000,1011625.0000,1010894.0000,1011425.0000,1008800.0000,1013820.0000,1038296.0000,987059.0000,1008108.0000,1011686.0000,1011235.0000,1011145.0000,1011355.0000,1013770.0000,1011255.0000,987079.0000,985165.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,101917200,1022394.5000,1020231.1300,1025212.8800,12532.7015,10521.5241,15788.4330,"benchmark,group:scheduler","1018018.0000,1014962.0000,1052633.0000,1024029.0000,1037485.0000,1037765.0000,1035471.0000,1016365.0000,1021694.0000,1014480.0000,1012306.0000,1015522.0000,1015993.0000,1015923.0000,1016315.0000,1016735.0000,1015924.0000,1015703.0000,1017016.0000,1015824.0000,1016996.0000,1015713.0000,1015814.0000,1045800.0000,1074275.0000,1015633.0000,1017156.0000,1015092.0000,1045731.0000,1015453.0000,1046071.0000,1015833.0000,1046191.0000,1014942.0000,1045149.0000,1017055.0000,1015573.0000,1015563.0000,1016765.0000,1015563.0000,1016145.0000,1016044.0000,1015973.0000,1016384.0000,1015964.0000,1016325.0000,1016204.0000,1016395.0000,1015463.0000,1016484.0000,1015823.0000,1016174.0000,1016374.0000,1015693.0000,1017316.0000,1015282.0000,1015994.0000,1019901.0000,1015102.0000,1016485.0000,1041653.0000,1016064.0000,1016795.0000,1016225.0000,1016174.0000,1016024.0000,1016284.0000,1018359.0000,1013719.0000,1045890.0000,1016645.0000,1015333.0000,1045840.0000,1016033.0000,1016084.0000,1016464.0000,1015413.0000,1045580.0000,1015664.0000,1045690.0000,1015763.0000,1045440.0000,1015623.0000,1046111.0000,1016314.0000,1015303.0000,1016044.0000,1016264.0000,1015704.0000,1015432.0000,1040991.0000,1045219.0000,1016375.0000,1044628.0000,1045570.0000,1016375.0000,1015883.0000,1015793.0000,1016445.0000,1016184.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,102243100,1020673.2600,1017939.8000,1023821.0700,15050.6734,12787.2965,18198.5788,"benchmark,group:scheduler","1015864.0000,1015583.0000,1033687.0000,1043326.0000,1016114.0000,1015924.0000,1015964.0000,1016435.0000,1016254.0000,1016215.0000,1016224.0000,1015854.0000,1016194.0000,1016234.0000,1015783.0000,1015964.0000,1016545.0000,1016385.0000,1015913.0000,1016305.0000,1015934.0000,1021685.0000,1039298.0000,1016274.0000,1015964.0000,1045770.0000,1015944.0000,1015814.0000,1046051.0000,1015884.0000,1015573.0000,1016565.0000,1074424.0000,1015774.0000,1016375.0000,1015753.0000,1045741.0000,1015322.0000,1045550.0000,1016475.0000,1045229.0000,1015794.0000,1045370.0000,1017897.0000,997198.0000,996677.0000,998080.0000,996928.0000,992539.0000,996317.0000,990836.0000,997048.0000,1060859.0000,1014652.0000,1015873.0000,1045380.0000,1016174.0000,1044889.0000,1016385.0000,1016064.0000,1015813.0000,1016325.0000,1016004.0000,1015894.0000,1016364.0000,1015864.0000,1016415.0000,1016404.0000,1015653.0000,1048034.0000,1016205.0000,1015393.0000,1009712.0000,1010804.0000,1011175.0000,1011655.0000,1038998.0000,1010533.0000,1053175.0000,1016154.0000,1015704.0000,1016324.0000,1016094.0000,1015764.0000,1045379.0000,1016275.0000,1015944.0000,1016785.0000,1015403.0000,1045971.0000,1015372.0000,1045720.0000,1015443.0000,1045630.0000,1016034.0000,1045319.0000,1016995.0000,1015082.0000,1015623.0000,1016765.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,649173000,6374462.0700,6310917.7200,6425560.8400,290491.8175,243818.0179,330021.3448,"benchmark,group:scheduler","5802887.0000,5835348.0000,6715498.0000,6560072.0000,6481384.0000,6496903.0000,6508505.0000,6529905.0000,6523083.0000,6502062.0000,6505068.0000,6472206.0000,6535756.0000,6500980.0000,6561495.0000,6477496.0000,6558730.0000,6502163.0000,6489639.0000,6545625.0000,6503085.0000,6568178.0000,6532189.0000,6550454.0000,6507523.0000,6528673.0000,6536919.0000,6533672.0000,6498766.0000,6532330.0000,6503034.0000,6533943.0000,6513514.0000,6523413.0000,6535717.0000,6529665.0000,6537429.0000,6469902.0000,6538281.0000,6467497.0000,6568919.0000,6533031.0000,6532390.0000,6470062.0000,6536458.0000,6528623.0000,6536377.0000,6519305.0000,6528623.0000,6561515.0000,6503055.0000,6533452.0000,6501792.0000,6535496.0000,6479290.0000,6469381.0000,6474490.0000,6505289.0000,6488847.0000,6534544.0000,6499177.0000,6535456.0000,6506321.0000,6500369.0000,6502223.0000,6505560.0000,6501561.0000,6540074.0000,6496873.0000,6567687.0000,6497695.0000,6563278.0000,6533191.0000,5762842.0000,6258571.0000,6510008.0000,6552037.0000,6503105.0000,6504277.0000,6502573.0000,6505650.0000,6501962.0000,6533923.0000,6141610.0000,5806364.0000,5752412.0000,5810912.0000,5771298.0000,5789812.0000,5805732.0000,5776387.0000,5808908.0000,5749095.0000,5832573.0000,5803448.0000,5784312.0000,5773813.0000,5745919.0000,5766889.0000,5752382.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,162995000,1629411.2500,1626638.4800,1633012.6400,16009.9999,12682.1870,21114.8348,"benchmark,group:scheduler","1627623.0000,1626220.0000,1696974.0000,1623325.0000,1661708.0000,1619167.0000,1656177.0000,1626071.0000,1624577.0000,1597787.0000,1627142.0000,1623315.0000,1655275.0000,1625700.0000,1626000.0000,1626892.0000,1626130.0000,1626911.0000,1654124.0000,1624107.0000,1655295.0000,1625469.0000,1625138.0000,1626521.0000,1656388.0000,1624137.0000,1627884.0000,1624697.0000,1625500.0000,1657099.0000,1623455.0000,1607315.0000,1622934.0000,1623897.0000,1624697.0000,1624257.0000,1629307.0000,1625228.0000,1622633.0000,1660326.0000,1620880.0000,1626100.0000,1625238.0000,1626522.0000,1694399.0000,1617484.0000,1624487.0000,1625489.0000,1625179.0000,1655816.0000,1626230.0000,1624698.0000,1626631.0000,1625218.0000,1626191.0000,1596113.0000,1628435.0000,1623345.0000,1656488.0000,1624107.0000,1627974.0000,1625780.0000,1624167.0000,1627933.0000,1626131.0000,1623746.0000,1626351.0000,1627924.0000,1623715.0000,1625550.0000,1620680.0000,1628445.0000,1623746.0000,1656377.0000,1624176.0000,1628034.0000,1623506.0000,1661077.0000,1619678.0000,1628014.0000,1625279.0000,1624707.0000,1625649.0000,1626110.0000,1628375.0000,1623375.0000,1655617.0000,1610881.0000,1604920.0000,1630007.0000,1605702.0000,1616472.0000,1626251.0000,1628976.0000,1620339.0000,1606434.0000,1646468.0000,1623936.0000,1627343.0000,1624828.0000" -normalizing randomized box sets - 2d,"small, native",100,48,2510400,495.8596,493.2198,501.4567,18.7254,10.3195,30.1411,"benchmark,group:grid","489.4167,488.8125,510.0833,491.2917,490.2708,493.1875,489.2292,492.5417,490.8750,491.5208,587.5417,492.3542,493.1875,493.8125,492.7708,492.3333,492.3542,492.5625,492.3542,492.5625,492.5625,491.7292,492.5625,492.3542,493.6042,492.1458,492.5417,492.1458,492.5625,493.8125,492.5625,491.7292,492.3542,491.9375,492.3542,493.1875,492.1250,492.3333,491.9375,492.5625,491.5208,493.1875,492.5625,492.1458,492.1458,493.1875,492.3333,492.9792,492.9792,491.7292,492.3542,492.3542,595.2500,491.1042,491.5208,491.9375,491.5208,491.0833,491.7292,491.1042,491.3125,490.8958,490.6667,491.5208,492.1458,493.1875,491.5208,491.7292,492.5625,492.5417,492.5417,492.3542,492.3542,491.9375,491.5208,492.5625,492.3542,493.1875,491.9375,492.3333,492.7708,492.1458,492.9792,491.9375,491.9375,492.5625,491.9375,492.3542,491.7083,491.5000,491.7292,493.1875,492.7708,491.9375,610.7083,539.5208,489.0000,490.4792,491.3125,489.4167" -normalizing randomized box sets - 2d,"small, embedded in 3d",100,39,2542800,582.5033,580.3469,588.0169,15.8949,3.5029,28.5702,"benchmark,group:grid","579.0000,580.0256,613.4359,582.8462,581.3077,581.0513,581.8205,582.8718,580.7949,582.0769,579.5128,581.0513,580.7949,580.0256,580.2821,580.5385,578.7436,580.0256,580.0256,581.0513,581.3077,581.0513,580.2821,581.3077,696.9231,580.0256,580.2821,579.4872,580.0000,578.4872,579.5128,579.5128,578.2308,580.2821,580.5385,579.0000,578.7436,580.0256,579.0000,579.7692,580.0256,578.2308,577.1795,579.0000,580.2821,580.2821,578.7436,578.4872,579.5128,578.4872,578.2308,579.5128,579.2308,577.7179,579.5128,578.4872,579.0000,579.0000,580.5385,577.2051,579.0000,578.9744,580.2564,580.2564,579.4872,579.7692,580.7949,684.8462,580.0256,579.7692,581.5641,580.2821,580.7949,580.5385,580.0256,580.2821,581.0513,578.7436,578.7436,580.5385,579.2564,580.5385,579.7692,580.2821,579.2564,580.0256,580.0256,580.2821,580.5385,580.2821,581.3077,579.0000,580.2821,581.0513,581.3077,580.5385,581.3077,580.0256,579.7692,580.0256" -normalizing randomized box sets - 2d,"medium, native",100,5,2923500,6068.2700,6041.8880,6123.1860,183.6267,107.3612,300.6904,"benchmark,group:grid","6047.0000,6005.0000,6766.4000,6125.2000,6103.2000,6051.0000,6061.2000,6077.2000,6057.0000,6075.2000,6059.0000,6067.2000,6904.8000,6041.0000,6057.0000,6019.2000,6043.0000,6035.0000,6021.0000,6021.0000,6017.0000,6059.0000,6035.2000,6015.0000,6019.0000,5975.0000,6043.0000,6041.0000,6037.0000,6033.0000,5993.0000,6039.0000,6031.2000,6039.0000,6029.0000,6001.0000,6031.0000,6045.0000,5997.0000,6023.0000,5991.0000,6029.0000,6035.2000,6027.0000,6015.0000,6808.6000,6019.0000,6029.0000,6037.0000,6027.0000,6011.0000,6041.0000,6007.0000,6047.0000,6035.2000,6081.0000,6017.0000,6033.0000,6021.0000,6027.0000,6029.2000,6013.0000,6015.0000,6021.0000,6047.0000,6027.2000,6027.0000,6011.0000,6049.0000,6053.2000,6047.0000,6033.2000,6021.0000,6031.0000,6015.0000,6011.0000,6043.2000,6017.0000,7277.4000,6031.0000,6019.0000,6023.2000,6031.0000,6071.0000,6029.0000,6029.0000,6017.0000,6021.0000,6031.2000,6027.0000,6025.0000,6015.0000,6009.0000,6027.0000,6027.0000,6035.0000,6007.0000,6011.0000,6013.0000,6063.2000" -normalizing randomized box sets - 2d,"medium, embedded in 3d",100,5,3109500,5962.6300,5939.6340,6008.2360,158.5096,88.5296,247.9547,"benchmark,group:grid","5908.8000,5944.8000,6455.8000,5987.0000,5969.0000,5973.0000,5956.8000,5965.0000,5954.8000,5949.0000,5948.8000,5959.0000,5932.8000,5953.0000,5926.8000,5934.8000,6846.6000,5923.0000,5934.8000,5928.8000,5898.8000,5941.0000,5924.8000,5908.8000,5932.8000,5914.8000,5896.6000,5906.8000,5912.8000,5920.8000,5922.8000,5906.8000,5914.8000,5935.0000,5940.8000,5924.8000,5923.0000,5924.8000,5918.8000,5943.0000,5920.8000,5932.8000,5916.8000,5914.8000,5933.0000,5912.8000,5918.8000,5922.8000,5919.0000,6806.4000,5935.0000,5920.8000,5930.8000,5944.8000,5920.8000,5908.8000,5952.8000,5935.0000,5932.8000,5940.8000,5929.0000,5938.8000,5924.8000,5921.0000,5930.8000,5932.8000,5928.8000,5951.0000,5934.8000,5943.0000,5942.8000,5936.8000,5926.8000,5922.8000,5926.8000,5939.0000,5914.8000,5912.8000,5944.8000,5931.0000,5934.8000,5928.8000,5923.0000,6772.4000,5916.8000,5928.8000,5915.0000,5904.8000,5928.8000,5932.8000,5926.8000,5954.8000,5953.0000,5940.8000,5918.8000,5928.8000,5926.8000,5946.8000,5935.0000,5926.8000" -normalizing randomized box sets - 2d,"large, native",100,1,19421800,196495.3900,196178.8000,196918.5400,1847.5020,1531.6992,2443.9353,"benchmark,group:grid","195579.0000,195459.0000,204896.0000,196560.0000,196250.0000,196591.0000,195579.0000,200017.0000,196090.0000,195509.0000,195378.0000,194797.0000,201359.0000,195830.0000,195919.0000,195449.0000,195729.0000,199466.0000,195529.0000,195488.0000,195369.0000,195639.0000,195909.0000,199777.0000,195439.0000,195117.0000,195318.0000,195248.0000,199276.0000,195278.0000,195819.0000,195619.0000,195429.0000,199747.0000,195598.0000,194897.0000,195649.0000,195799.0000,199647.0000,196380.0000,195669.0000,195910.0000,195468.0000,199306.0000,195589.0000,195899.0000,195349.0000,195749.0000,200037.0000,195389.0000,195548.0000,195319.0000,195779.0000,199276.0000,195879.0000,195439.0000,195568.0000,195418.0000,200077.0000,195639.0000,195960.0000,195699.0000,195829.0000,199587.0000,195949.0000,195759.0000,195729.0000,195648.0000,199106.0000,195929.0000,195740.0000,195118.0000,196200.0000,199225.0000,195729.0000,196310.0000,194957.0000,195549.0000,195218.0000,200048.0000,195608.0000,195268.0000,195128.0000,195268.0000,200157.0000,196170.0000,195900.0000,196220.0000,195529.0000,199676.0000,195439.0000,195729.0000,195739.0000,195128.0000,199416.0000,195679.0000,195529.0000,195619.0000,195118.0000,199195.0000" -normalizing randomized box sets - 2d,"large, embedded in 3d",100,1,21157900,206989.0100,205575.6500,211599.0200,11732.4687,4264.7386,26297.3046,"benchmark,group:grid","213823.0000,213583.0000,213122.0000,203754.0000,202452.0000,203113.0000,203334.0000,207662.0000,203133.0000,203193.0000,202762.0000,202492.0000,207522.0000,202983.0000,202642.0000,203223.0000,202843.0000,207672.0000,203393.0000,202943.0000,203043.0000,202993.0000,208222.0000,202471.0000,202252.0000,202973.0000,203844.0000,207552.0000,203514.0000,202411.0000,202723.0000,202692.0000,207902.0000,202472.0000,202873.0000,202993.0000,202742.0000,207752.0000,203153.0000,203514.0000,203353.0000,207372.0000,204626.0000,202892.0000,202943.0000,202823.0000,207922.0000,202993.0000,202622.0000,203233.0000,202933.0000,314985.0000,203915.0000,203003.0000,202682.0000,202913.0000,208303.0000,203083.0000,203534.0000,203012.0000,203213.0000,210246.0000,203955.0000,203113.0000,203544.0000,207952.0000,203363.0000,202572.0000,203133.0000,203113.0000,209756.0000,203083.0000,202793.0000,203724.0000,203263.0000,208113.0000,203273.0000,202743.0000,202602.0000,203313.0000,209054.0000,203012.0000,203204.0000,203133.0000,203173.0000,214134.0000,213773.0000,213613.0000,213493.0000,213343.0000,218482.0000,213252.0000,213142.0000,213022.0000,219124.0000,213032.0000,213412.0000,213433.0000,213463.0000,218863.0000" -normalizing randomized box sets - 3d,small - native,100,11,2721400,2485.0491,2475.2391,2504.9409,68.4230,38.9036,106.6400,"benchmark,group:grid","2466.2727,2458.1818,2682.1818,2510.0000,2512.8182,2493.6364,2510.9091,2493.6364,2498.2727,2478.0909,2471.8182,2483.6364,2475.4545,2468.0909,2465.4545,2468.0909,2490.0000,2465.4545,2460.8182,2465.4545,2474.5455,2467.1818,2456.2727,2845.1818,2463.5455,2471.8182,2470.0000,2462.6364,2478.1818,2469.9091,2469.0000,2459.0000,2456.2727,2470.8182,2469.9091,2457.1818,2467.1818,2469.0909,2477.1818,2463.6364,2456.2727,2464.5455,2466.2727,2470.9091,2459.9091,2470.9091,2478.1818,2469.9091,2452.7273,2457.1818,2468.1818,2468.0909,2468.1818,2460.8182,2460.9091,2469.0000,2466.3636,2464.4545,2464.5455,2846.0909,2480.0000,2480.0000,2467.1818,2470.9091,2470.0000,2470.8182,2462.7273,2461.7273,2480.0000,2475.4545,2471.7273,2475.4545,2475.4545,2466.2727,2460.9091,2476.2727,2469.0000,2465.4545,2465.3636,2472.7273,2475.3636,2469.0000,2461.7273,2469.0000,2480.9091,2470.9091,2467.1818,2477.2727,2478.1818,2472.6364,2481.8182,2473.6364,2479.0909,2478.0909,2477.1818,2474.5455,2859.8182,2467.1818,2475.4545,2478.1818" -normalizing randomized box sets - 3d,medium - native,100,3,2757600,9342.5200,9297.7667,9428.3967,301.2921,160.3450,463.6429,"benchmark,group:grid","9213.3333,9290.3333,10466.0000,9367.0000,9213.6667,9266.6667,10803.3333,9260.3333,9240.0000,9293.6667,9273.6667,9293.6667,9300.3333,9273.6667,9247.0000,9313.6667,9270.3333,9280.0000,9296.6667,9300.0000,9283.3333,9237.0000,9200.0000,9293.6667,9250.3333,9290.3333,9270.3333,9280.3333,9327.0000,9250.3333,9220.0000,9257.0000,9280.3333,9260.3333,9250.0000,9277.0000,9300.3333,9307.0000,9227.0000,9273.6667,9300.3333,9293.6667,11053.6667,9307.0000,9273.3333,9303.3333,9300.0000,9280.0000,9280.3333,9337.0000,9337.0000,9300.3333,9290.3333,9277.0000,9313.6667,9317.0000,9340.3333,9323.6667,9277.0000,9307.0000,9277.0000,9297.0000,9290.3333,9280.3333,9287.0000,9220.0000,9297.0000,9267.0000,9320.3333,9263.6667,9263.6667,9317.0000,9297.0000,9327.0000,9307.0000,9277.0000,9297.0000,10863.3333,9257.0000,9283.3333,9283.3333,9310.3333,9253.6667,9257.0000,9290.3333,9303.6667,9277.0000,9297.0000,9303.6667,9287.0000,9230.0000,9243.6667,9273.6667,9307.0000,9250.3333,9220.0000,9277.0000,9293.6667,9307.0000,9287.0000" -normalizing randomized box sets - 3d,large - native,100,1,218518000,2203530.5100,2195997.4200,2207865.3000,28453.9161,17287.4642,41528.9310,"benchmark,group:grid","2202583.0000,2213724.0000,2265693.0000,2205809.0000,2208414.0000,2198976.0000,2210779.0000,2206049.0000,2201090.0000,2200459.0000,2207542.0000,2210578.0000,2207884.0000,2212632.0000,2204076.0000,2206250.0000,2209626.0000,2228853.0000,2212943.0000,2201591.0000,2210639.0000,2214315.0000,2212482.0000,2211780.0000,2199367.0000,2204818.0000,2268638.0000,2213294.0000,2210428.0000,2201881.0000,2202453.0000,2208374.0000,2212803.0000,2201230.0000,2212001.0000,2205559.0000,2203234.0000,2212101.0000,2210718.0000,2209637.0000,2231327.0000,2204667.0000,2213845.0000,2202904.0000,2199958.0000,2209596.0000,2209526.0000,2203866.0000,2201681.0000,2208966.0000,2211690.0000,2197864.0000,2208575.0000,2202723.0000,2210989.0000,2214496.0000,2201250.0000,2200188.0000,2200179.0000,2202132.0000,2213373.0000,2211850.0000,2205829.0000,2210508.0000,2205909.0000,2200990.0000,2199698.0000,2209967.0000,2201230.0000,2207412.0000,2207843.0000,2205098.0000,2208424.0000,2212221.0000,2213383.0000,2212482.0000,2204537.0000,2202282.0000,2210498.0000,2205869.0000,2211410.0000,2207262.0000,2206701.0000,2205068.0000,2201521.0000,2224194.0000,2210448.0000,2215627.0000,2082445.0000,2078157.0000,2063038.0000,2070292.0000,2214997.0000,2213895.0000,2202362.0000,2198736.0000,2205589.0000,2205028.0000,2205518.0000,2203635.0000" -normalizing a fully mergeable tiling of boxes - 1,"small, native",100,847,2456300,29.4020,29.3089,29.5978,0.6558,0.2990,1.1228,"benchmark,group:grid","29.4156,29.0968,30.3625,29.0968,29.8654,29.2385,28.9551,29.7698,29.1440,29.1795,29.7946,29.0142,29.1440,29.4864,29.1677,29.5466,29.5809,29.1665,29.1913,28.9669,29.1795,29.4156,29.1322,33.8642,29.3093,29.7355,29.0248,29.5466,28.9669,29.5218,29.6529,29.4156,29.2739,28.8253,29.3093,29.2385,29.1558,29.5336,29.1795,30.0071,29.5100,29.0142,29.0602,29.0012,29.2857,29.2149,29.4876,29.5809,29.1086,29.2503,29.2149,29.6529,29.2267,29.4038,29.1204,29.0024,29.0968,29.1322,29.2385,29.6753,29.0378,28.9787,29.1440,33.1299,29.4038,29.7237,29.0496,29.2031,29.8064,28.9894,28.9067,29.1558,29.1322,29.3329,29.2031,29.8182,29.2621,28.8961,29.5691,29.0850,29.3211,29.8418,29.1086,29.5112,29.0720,29.1440,29.5348,29.5573,29.2385,29.5466,28.9787,29.0838,29.8772,29.4274,29.0968,29.2857,29.8300,29.0614,29.9362,29.1677" -normalizing a fully mergeable tiling of boxes - 1,"small, embedded in 3d",100,549,2470500,35.6235,35.4768,36.0000,1.0543,0.1316,1.9090,"benchmark,group:grid","35.3807,35.3443,36.6958,35.4918,35.4918,35.4372,35.4554,35.4736,35.5100,35.5100,35.5282,35.4554,35.4918,35.4736,35.5464,35.4918,35.4736,35.4736,35.5282,35.5829,35.4918,35.4554,35.4554,35.4736,35.4189,35.4918,35.4554,35.4554,35.5100,35.5282,35.4372,35.5100,35.5100,35.4554,35.4372,35.5464,35.4554,35.5100,35.4189,35.4918,35.5100,35.4718,35.5100,35.4171,35.4918,35.4554,35.4918,42.8816,35.4554,35.4918,35.4554,35.4736,35.4189,35.4554,35.3825,35.4372,35.3279,35.4554,35.4007,35.4736,35.5100,35.4189,35.4554,35.4736,35.4554,35.3825,35.4007,35.5647,35.3643,35.4918,35.4007,35.4554,35.4372,35.4918,35.4372,35.4189,35.4189,35.4372,35.4736,35.4918,35.4372,35.4007,35.4736,35.4736,35.3825,35.4189,35.4554,35.4918,35.4372,35.4736,35.4736,35.4007,35.4554,35.5282,35.5282,35.4189,35.4736,35.4007,35.4372,43.0109" -normalizing a fully mergeable tiling of boxes - 1,"medium, native",100,82,2492800,309.8583,308.7527,312.1291,7.7534,4.4841,12.4038,"benchmark,group:grid","303.9634,301.8902,357.0000,313.8537,312.8780,312.7683,314.4756,311.7927,310.6829,308.7317,309.7073,312.0366,309.8293,306.5366,309.5854,308.9756,308.3659,308.1220,308.6098,309.8293,309.5854,306.5366,309.4634,309.5854,309.8293,309.3537,310.1951,311.1707,308.7439,306.5244,308.6098,309.2317,309.2195,308.6098,308.7317,308.4878,308.7317,306.7805,309.2195,308.6098,308.6098,308.7317,351.0122,309.3415,309.7073,309.0976,307.1341,309.5854,309.9512,308.6098,310.9268,310.5610,309.9512,310.0732,308.6098,309.3415,310.1951,309.8293,309.5976,309.4634,309.9512,309.8293,307.8780,308.8537,310.8171,309.8293,309.9512,309.2317,309.3415,309.2195,307.8780,309.2195,310.9268,309.7073,309.2195,309.0976,309.5854,309.4634,308.2317,311.1707,310.5610,347.2195,307.1463,306.5366,306.5366,303.9634,302.8659,303.2439,306.4024,304.9512,304.8171,305.0732,306.1707,304.4512,303.7195,306.5366,305.0732,304.6951,304.7073,304.5732" -normalizing a fully mergeable tiling of boxes - 1,"medium, embedded in 3d",100,52,2496000,479.9115,477.8917,484.4315,14.9111,7.5356,24.2772,"benchmark,group:grid","476.0577,475.2885,482.2308,476.2500,479.7115,479.9231,480.8654,479.7115,478.1731,479.3269,478.3654,479.3462,480.0962,480.6923,481.0577,479.5385,479.7115,478.7500,567.3846,478.9615,475.6731,473.7308,476.0577,477.8077,472.5769,471.4423,474.3269,474.3269,472.7692,472.7885,473.1731,473.1731,472.1923,479.1538,479.7115,478.9423,478.7692,478.9423,478.9423,476.8269,478.5769,477.2115,477.0192,479.1346,479.9231,477.4038,476.8269,478.3654,479.1538,479.3269,478.3654,479.3462,480.0962,475.4808,478.5577,478.1923,478.7500,479.5192,550.2500,477.9808,478.1731,475.4808,478.9423,477.4231,477.7885,477.4038,477.0192,478.1731,475.4808,477.5962,477.0192,477.0192,475.6731,473.5385,477.8077,475.2885,477.5962,478.1731,476.6346,477.0192,476.4423,476.8269,475.8654,476.8462,477.7885,477.5962,477.2115,477.2115,476.0577,475.8654,476.2500,476.6346,477.0385,476.8269,477.7885,474.3269,477.5962,476.8269,572.4038,476.2500" -normalizing a fully mergeable tiling of boxes - 1,"large, native",100,4,2954000,6739.9150,6696.2150,6837.7825,323.9239,154.4456,538.3019,"benchmark,group:grid","6672.0000,6672.2500,8696.0000,8773.5000,6637.2500,6642.0000,6632.2500,6632.0000,6627.0000,6637.2500,6637.0000,6642.2500,6617.0000,6689.7500,6679.5000,6684.7500,6677.2500,6684.7500,6677.0000,6674.7500,6699.7500,6667.2500,6662.0000,6667.2500,6667.2500,6674.5000,6662.2500,6679.7500,6687.0000,6649.7500,6667.2500,6672.0000,6674.7500,6674.7500,6672.0000,6667.2500,6657.2500,6679.5000,6692.2500,7811.7500,6662.0000,6707.2500,6697.2500,6677.2500,6669.5000,6679.7500,6679.7500,6677.2500,6679.5000,6669.7500,6682.2500,6697.2500,6709.7500,6694.5000,6689.5000,6697.2500,6692.2500,6699.7500,6699.7500,6697.2500,6692.2500,6679.5000,6689.7500,6687.2500,6672.2500,6682.0000,6689.7500,6699.7500,6692.2500,6697.2500,6694.7500,6687.0000,6689.5000,6679.7500,6692.2500,6699.7500,7724.2500,6662.0000,6692.2500,6699.7500,6672.2500,6669.5000,6684.7500,6694.7500,6672.2500,6692.0000,6684.5000,6694.7500,6682.2500,6667.2500,6679.5000,6689.7500,6669.7500,6672.0000,6672.2500,6667.2500,6667.0000,6684.7500,6677.2500,6664.7500" -normalizing a fully mergeable tiling of boxes - 1,"large, embedded in 3d",100,3,3623700,12106.6800,12069.8700,12177.6600,251.4555,135.7414,384.1463,"benchmark,group:grid","12122.3333,12105.6667,12312.6667,12012.3333,12008.6667,12025.3333,12048.6667,11968.6667,12022.3333,11968.6667,12079.0000,11982.0000,12079.0000,12022.0000,12082.3333,13171.0000,11955.3333,12109.0000,12032.3333,11998.6667,12002.0000,12075.6667,12065.6667,12002.0000,11999.0000,12045.3333,12069.0000,12008.6667,11985.6667,12042.0000,12045.6667,12052.3333,12032.0000,12015.6667,12085.3333,11975.6667,12012.0000,11982.0000,12082.3333,12059.0000,12069.0000,11998.6667,12095.6667,13555.0000,12149.0000,12085.6667,12152.3333,12202.6667,12015.3333,12082.3333,12025.3333,12165.6667,12042.0000,12085.6667,12062.3333,12072.3333,12015.3333,12089.0000,12139.0000,12276.0000,12169.0000,12176.0000,12028.6667,12042.3333,12002.0000,12065.6667,11988.6667,12042.3333,12005.3333,12099.0000,13251.0000,12022.3333,12022.0000,12099.0000,12019.0000,12028.6667,12009.0000,12085.6667,12018.6667,12089.0000,12018.6667,12092.3333,12009.0000,12065.3333,12039.0000,12069.0000,12058.6667,12055.6667,11995.3333,12125.6667,12042.3333,12082.3333,12038.6667,12176.0000,12008.6667,12039.0000,12045.3333,12119.0000,13194.6667,12008.6667" -normalizing a fully mergeable tiling of boxes - 2,"small, native",100,237,2488500,105.3289,105.0223,106.1002,2.2129,0.3426,4.0023,"benchmark,group:grid","105.0042,105.1266,106.6076,104.8734,104.9620,105.0844,105.0422,105.0422,105.1688,105.1266,104.8312,105.4262,105.5907,105.0042,105.0422,104.2827,105.0844,105.0464,105.0422,105.1266,105.0886,105.0000,120.7257,104.3249,104.9578,105.0886,104.9578,105.0422,104.9620,104.7890,104.3249,104.9578,105.1266,105.0886,105.0844,104.8312,105.1730,104.1941,105.0844,105.0422,105.0844,105.0886,105.2954,105.0844,105.7173,104.4093,104.9578,105.0464,105.1266,104.8734,105.1308,105.1266,104.4093,105.0844,105.0042,105.1688,104.9156,104.8734,105.1688,104.3671,105.1266,105.2152,120.5570,105.0000,105.0422,105.1730,105.0422,104.3671,105.1688,105.1730,105.0844,105.3376,105.5907,105.1266,104.4093,104.8354,105.0000,105.5063,105.5105,105.0844,105.0000,104.3629,105.0844,104.9156,104.9156,104.9620,105.1688,105.1688,104.2827,105.0000,104.9156,105.1266,105.0422,105.0464,104.9156,104.4093,105.6751,105.1688,105.0422,105.0422" -normalizing a fully mergeable tiling of boxes - 2,"small, embedded in 3d",100,201,2492400,124.3299,123.8946,125.2760,3.1729,1.8802,5.0187,"benchmark,group:grid","124.4577,123.8060,125.3532,123.8060,123.6567,123.7065,122.6617,123.6070,123.1095,123.9104,123.9552,142.1493,123.5124,124.1045,123.3582,123.8557,123.9602,124.0050,124.1045,123.8557,124.0050,123.2090,123.0100,124.4080,122.7114,123.1592,124.1045,124.2040,123.3632,123.6070,124.0050,122.8607,123.9552,123.8109,124.2040,123.5572,122.1642,123.8557,124.0597,124.1045,124.2040,124.1542,124.0547,121.8657,124.7015,124.2040,123.8557,123.2090,124.0100,124.1045,123.1095,142.0000,123.9104,123.3085,123.4577,124.0050,124.0597,124.3035,123.0100,122.9104,124.7562,123.0100,124.0050,123.9552,124.2090,123.8060,123.9552,123.8607,124.0547,124.1542,123.9602,124.1045,123.1095,123.8060,124.6070,123.9552,123.4577,123.9552,123.7065,123.2090,124.6070,123.0597,124.1542,124.1045,122.9552,124.0050,123.5075,123.6567,123.6070,123.3085,124.2040,142.1990,124.1095,123.7562,123.7562,123.9055,124.5025,124.0547,123.8607,124.3035" -normalizing a fully mergeable tiling of boxes - 2,"medium, native",100,29,2520100,832.6438,829.1431,841.6576,25.2979,3.4508,45.9618,"benchmark,group:grid","828.3793,828.7586,858.1034,834.6207,829.4483,828.3793,829.4483,829.4483,828.3793,828.4138,828.4138,828.0345,828.0690,828.3793,828.3793,828.7586,828.7241,828.7586,827.7241,828.7241,828.7586,828.4138,828.0345,829.1034,827.6897,1012.8621,825.6552,829.7586,826.3448,830.1379,825.2759,829.7931,826.6552,830.8276,826.6897,831.1724,827.0000,831.1724,825.9655,830.7931,824.9655,830.1034,826.3448,830.4828,826.3103,830.4828,827.0345,829.7586,825.3103,830.4483,824.9310,829.7931,825.9655,831.5172,826.6552,831.4828,826.6897,830.4828,825.9655,830.8276,826.6552,830.1379,826.0000,830.4483,825.3103,830.8276,1003.2069,830.1379,833.2414,833.8966,830.7931,829.1034,828.7586,828.3793,829.1034,829.1034,828.3793,828.4138,829.4138,829.0690,828.7586,828.3793,828.7241,829.4483,828.0345,829.7931,829.7931,828.7241,829.0690,829.1034,829.1034,828.7241,828.4138,829.0690,828.3793,828.0690,830.1379,829.0690,828.7586,829.4483" -normalizing a fully mergeable tiling of boxes - 2,"medium, embedded in 3d",100,26,2587000,1040.2185,1037.3885,1047.4046,20.2776,2.6238,36.7663,"benchmark,group:grid","1032.6154,1040.3462,1051.1538,1039.1923,1036.8846,1038.0769,1035.7308,1038.0385,1039.1923,1031.8462,1037.6538,1037.6538,1039.9615,1038.4615,1039.1923,1039.1923,1040.0000,1038.4231,1038.0385,1039.2308,1039.1923,1037.6538,1040.3846,1039.9615,1031.8846,1039.5769,1036.5000,1038.0769,1035.7308,1034.1923,1034.5769,1034.9615,1036.5000,1034.1923,1180.6538,1037.6538,1036.8846,1038.0385,1041.5000,1033.8077,1035.3462,1039.5769,1036.8846,1037.2692,1036.8846,1041.9231,1039.9615,1038.4231,1036.8846,1036.5385,1036.8846,1038.4231,1039.9615,1037.2692,1038.8077,1033.8077,1038.4231,1036.1538,1039.1923,1038.0385,1038.4231,1037.6923,1035.3462,1038.0385,1038.0385,1036.5000,1033.8077,1034.1923,1036.5000,1029.1923,1035.7308,1181.3846,1036.5000,1038.8462,1038.4231,1037.2692,1039.2308,1038.0385,1036.8846,1037.2692,1035.7308,1036.1538,1035.7308,1035.3462,1037.2692,1031.1154,1036.1154,1036.1154,1036.9231,1038.8077,1038.8077,1036.1154,1039.1923,1038.0385,1036.1154,1036.8846,1037.2692,1039.5769,1037.2692,1036.5000" -normalizing a fully mergeable tiling of boxes - 2,"large, native",100,1,3526500,37012.3200,36866.1100,37287.9100,990.4233,597.7993,1523.1615,"benchmark,group:grid","36878.0000,36588.0000,39242.0000,37179.0000,37018.0000,36818.0000,36898.0000,36808.0000,36778.0000,36737.0000,36777.0000,36758.0000,36828.0000,40846.0000,36547.0000,36768.0000,36918.0000,36577.0000,36698.0000,36557.0000,36948.0000,36717.0000,36678.0000,36898.0000,36998.0000,36798.0000,36658.0000,36888.0000,36888.0000,36828.0000,37799.0000,36929.0000,36687.0000,37039.0000,36747.0000,36888.0000,36478.0000,36747.0000,36728.0000,36918.0000,40385.0000,36888.0000,36888.0000,36888.0000,36838.0000,36918.0000,36788.0000,36727.0000,36757.0000,36948.0000,36658.0000,36738.0000,36617.0000,36828.0000,36668.0000,36677.0000,36817.0000,36798.0000,36558.0000,36958.0000,36758.0000,36888.0000,37729.0000,36788.0000,36948.0000,36678.0000,36738.0000,42699.0000,37118.0000,36798.0000,36397.0000,36738.0000,36677.0000,36678.0000,36658.0000,36697.0000,36558.0000,36647.0000,36598.0000,36567.0000,36668.0000,36908.0000,36868.0000,36788.0000,37529.0000,36748.0000,36637.0000,36768.0000,36658.0000,36908.0000,36587.0000,36808.0000,36507.0000,36958.0000,42118.0000,36777.0000,36808.0000,36548.0000,36657.0000,36808.0000" -normalizing a fully mergeable tiling of boxes - 2,"large, embedded in 3d",100,1,4115800,40981.2400,40818.1400,41275.3200,1088.2178,695.9499,1655.5203,"benchmark,group:grid","43480.0000,40464.0000,41828.0000,40905.0000,40796.0000,41036.0000,40685.0000,40665.0000,40876.0000,40625.0000,40685.0000,40435.0000,40585.0000,40815.0000,40555.0000,47368.0000,40545.0000,40816.0000,40715.0000,40755.0000,40505.0000,40525.0000,40816.0000,40515.0000,40645.0000,40755.0000,44793.0000,40796.0000,40384.0000,40846.0000,40615.0000,40745.0000,40635.0000,40545.0000,40956.0000,40635.0000,40846.0000,40805.0000,40755.0000,40865.0000,40355.0000,40605.0000,40765.0000,40805.0000,40815.0000,40705.0000,40916.0000,40475.0000,40905.0000,40826.0000,45584.0000,40636.0000,40424.0000,40886.0000,40455.0000,40585.0000,40805.0000,40736.0000,40745.0000,40515.0000,40815.0000,40886.0000,40645.0000,40675.0000,40685.0000,40424.0000,40836.0000,40775.0000,40806.0000,40605.0000,40525.0000,40875.0000,40615.0000,40736.0000,44432.0000,40795.0000,40736.0000,40755.0000,40956.0000,40755.0000,40765.0000,40665.0000,40715.0000,41036.0000,40775.0000,40846.0000,40615.0000,40785.0000,40836.0000,40525.0000,40815.0000,40565.0000,40505.0000,40886.0000,40785.0000,40966.0000,40505.0000,40605.0000,40715.0000,44723.0000" -normalizing a fully mergeable tiling of boxes - 3,"small, native",100,114,2496600,257.1304,256.3185,259.0930,6.2046,3.2194,10.3802,"benchmark,group:grid","255.1140,257.3158,259.4211,255.4649,255.1140,256.0789,255.1140,255.9035,256.7018,255.3772,256.7895,257.6579,256.0877,256.8684,255.5526,256.0789,256.7895,256.5175,299.0526,255.8246,256.0789,256.9649,255.9035,256.1754,255.4649,255.3772,255.3772,255.5614,255.9912,257.3158,256.0789,255.8246,256.6053,256.0877,255.8158,256.2632,256.0789,256.0789,255.9912,256.3421,256.5263,256.2544,256.8684,255.9035,256.8684,256.2632,256.3421,255.8158,255.9912,255.9912,255.9123,256.5175,287.6404,255.9035,255.6404,255.9123,256.0789,257.8421,256.2632,255.5526,254.9386,255.0263,255.0263,256.1667,256.5263,256.5175,256.7018,256.4298,256.4386,257.1316,256.0000,255.3772,255.2018,256.5263,255.8158,255.5614,255.6404,256.4386,256.3421,255.5526,255.7368,255.2895,255.7281,256.0000,255.7281,255.3860,288.7719,257.2281,255.9912,255.4649,255.0263,255.1140,256.4298,255.9035,254.9386,255.7281,255.1140,255.4649,256.7895,255.5526" -normalizing a fully mergeable tiling of boxes - 3,"medium, native",100,17,2527900,1493.4641,1488.0076,1507.6324,39.9066,6.6453,80.2670,"benchmark,group:grid","1492.1176,1480.8824,1525.7059,1486.2353,1479.1765,1489.7647,1483.8824,1490.3529,1487.4118,1492.7059,1489.7647,1488.0000,1479.1765,1487.4118,1485.0588,1490.9412,1486.2353,1492.1176,1485.0588,1483.2941,1480.3529,1489.1765,1492.1176,1486.2353,1488.5882,1486.1765,1491.5294,1485.0588,1476.1765,1492.1176,1487.3529,1492.1176,1486.8235,1490.9412,1490.3529,1483.8824,1478.5882,1711.3529,1488.5882,1489.1765,1488.0000,1486.2353,1492.1176,1485.6471,1479.7647,1490.9412,1485.6471,1488.5882,1485.0000,1490.3529,1486.8235,1489.1765,1480.2941,1485.5882,1491.5294,1485.6471,1491.5294,1487.4118,1490.3529,1486.2353,1481.5294,1492.1176,1492.7059,1491.5294,1492.7059,1485.0588,1492.7059,1484.4706,1475.5882,1490.3529,1484.4706,1487.4118,1482.0588,1488.5882,1483.8824,1488.5882,1818.5882,1483.2941,1492.1176,1488.0000,1492.1176,1485.6471,1485.0588,1486.2353,1490.3529,1481.5294,1488.0000,1490.9412,1489.7647,1490.3529,1488.0000,1490.9412,1485.0588,1485.0588,1491.5294,1492.7059,1490.9412,1494.4706,1489.7647,1493.2941" -normalizing a fully mergeable tiling of boxes - 3,"large, native",100,1,4395000,42616.9100,42404.3500,42966.5500,1360.5164,891.1638,1865.5111,"benchmark,group:grid","42338.0000,42319.0000,47839.0000,44212.0000,43420.0000,48079.0000,42669.0000,42498.0000,42469.0000,42018.0000,42198.0000,42128.0000,41927.0000,41547.0000,41777.0000,41897.0000,41867.0000,41987.0000,41697.0000,41988.0000,41948.0000,41977.0000,41828.0000,42218.0000,42278.0000,41948.0000,42208.0000,42048.0000,42208.0000,47247.0000,42108.0000,42008.0000,41837.0000,41968.0000,42388.0000,42428.0000,42188.0000,42298.0000,42158.0000,42529.0000,42258.0000,42339.0000,42198.0000,42498.0000,42138.0000,42509.0000,42268.0000,42168.0000,42128.0000,42479.0000,42268.0000,42308.0000,48410.0000,42659.0000,42238.0000,42248.0000,42668.0000,42388.0000,42388.0000,42409.0000,42228.0000,42429.0000,42168.0000,42518.0000,42499.0000,42348.0000,42158.0000,42279.0000,42378.0000,42218.0000,42349.0000,42258.0000,42438.0000,42238.0000,42579.0000,47338.0000,42459.0000,42258.0000,42228.0000,42348.0000,42489.0000,42228.0000,42268.0000,42479.0000,42348.0000,42249.0000,42388.0000,42398.0000,42279.0000,42298.0000,42549.0000,42228.0000,42428.0000,42218.0000,42318.0000,42038.0000,42178.0000,42338.0000,42428.0000,48169.0000" -performing set operations between randomized regions - 2d,"union, small, native",100,33,2531100,890.2715,880.5027,932.2848,88.1694,13.4660,206.9944,"benchmark,group:grid","877.9697,879.7879,937.4848,894.9697,892.8485,886.1515,882.5152,883.1212,885.2727,882.5152,881.6061,995.1818,881.3030,881.6061,877.0606,878.8788,879.4848,877.0606,878.5758,877.9697,873.7273,876.7576,879.4848,877.3636,880.0909,875.2424,880.0909,880.7273,880.6970,878.8788,877.0606,876.1515,876.4545,879.7879,875.8485,877.3636,877.9697,876.1515,877.9697,878.2727,878.2727,876.4545,878.2727,877.3636,877.3636,995.7576,877.3636,878.2727,877.0606,877.3636,878.8788,879.4848,878.8788,874.3030,877.9697,878.2727,877.3636,875.8485,876.1515,878.2727,877.3636,873.4242,875.8485,874.3333,879.1818,877.3636,877.0606,877.3636,875.5455,877.6667,877.3636,877.6667,875.2424,876.1515,877.0606,876.7273,875.5152,875.8485,877.0606,1749.9394,879.1818,881.6061,879.4848,877.6667,878.8788,878.5758,880.3939,878.8788,877.9697,877.3636,877.3636,876.4545,880.3939,884.6364,877.9697,877.9697,879.8182,880.0909,882.8182,879.4848" -performing set operations between randomized regions - 2d,"union, small, embedded in 3d",100,28,2514400,899.3696,896.0575,906.6579,23.8411,10.7045,40.5073,"benchmark,group:grid","894.1429,896.6071,951.3571,901.2857,888.0714,890.5357,893.3929,888.3929,890.1786,886.9643,886.2500,887.7143,888.7500,886.2500,888.3929,888.7857,888.0357,885.8929,889.1071,886.2500,888.0714,887.3214,886.2500,886.2500,889.4643,887.0000,887.6786,887.6786,889.1071,885.8929,887.3214,887.6786,888.7500,888.0357,888.4286,887.3214,889.1071,1045.5000,900.2143,899.1071,898.3929,901.6429,898.4286,899.1429,902.0000,898.7857,898.3929,898.7857,900.5714,900.5714,901.6429,900.9286,898.7857,900.5357,901.6071,900.9286,900.5714,899.1429,899.5000,899.8571,899.1429,900.1786,900.2143,900.2143,901.6429,902.7143,900.2143,901.2857,900.5714,899.5000,900.9286,898.0357,899.8571,901.2857,898.4286,899.8571,1054.4286,901.6429,899.5000,903.7857,899.1429,901.6071,899.8214,901.2857,961.7500,895.8929,893.7857,894.1071,895.9286,895.5357,894.4643,895.2143,893.3929,894.5000,893.7500,894.8571,894.1071,894.8214,893.7857,893.0357" -performing set operations between randomized regions - 2d,"intersection, small, native",100,115,2495500,202.5809,201.7697,204.6230,5.8066,0.6412,11.1424,"benchmark,group:grid","201.6696,201.5826,207.7652,201.3217,202.0174,202.3652,202.4522,201.6696,201.8435,201.4957,201.8435,201.5826,201.9304,201.6696,201.7565,201.6696,201.6696,201.8435,201.7565,201.6696,201.7565,201.7565,201.4957,201.8435,201.4957,201.6696,201.8435,201.6696,201.5826,201.6696,201.8522,201.7565,201.6696,201.6696,201.6696,201.9304,201.4957,236.7826,201.4957,202.1913,201.4087,201.5826,201.6696,201.8435,201.6696,201.4087,201.7565,201.6696,201.8435,201.4087,201.8435,201.4087,202.0174,201.4087,201.8435,201.4087,201.8435,201.5826,201.6696,201.5826,201.9304,201.6696,201.4087,201.8435,201.4957,201.8435,201.6696,201.6696,201.5826,201.9304,201.5826,201.6696,201.4957,201.9304,201.6696,201.5826,201.4087,201.7565,201.4957,201.8435,248.3652,201.7565,201.9304,201.6696,201.6696,201.4957,202.1913,201.4957,201.9304,201.4087,201.8435,201.6696,201.8435,201.4087,201.8435,201.5826,201.6696,201.5826,201.6696,201.8435" -performing set operations between randomized regions - 2d,"intersection, small, embedded in 3d",100,107,2493100,234.5293,233.5506,236.7755,7.4303,4.2251,11.9985,"benchmark,group:grid","232.2991,232.0093,236.8785,232.7570,233.7009,234.1589,234.1682,234.2523,234.6262,234.1682,233.9720,234.4486,234.2617,234.4393,234.4486,234.0654,234.5327,234.0748,234.5327,274.6168,232.1963,232.2991,232.1963,232.1963,232.2897,232.6729,231.9159,232.1028,232.2897,232.1028,232.3832,232.0187,232.2897,232.1963,231.9159,232.2897,232.2056,232.1963,232.1963,232.3832,231.9159,232.1121,232.2897,232.2897,232.2897,231.9159,232.3925,232.0093,232.1028,232.2897,232.2897,232.0187,232.1963,232.3832,232.1028,232.1028,232.3925,231.9159,232.3832,275.8318,234.0748,233.9720,233.6075,233.9720,233.8879,233.7850,233.9813,234.0654,233.5140,233.7850,233.8879,233.7850,233.8879,233.5981,234.0748,233.7009,233.6916,234.0748,233.9720,233.7944,233.9720,233.9813,233.4112,233.9813,233.8785,233.6075,234.0654,233.6075,234.0654,233.8879,233.5981,234.0654,233.9813,233.5047,234.1682,234.0654,233.5140,233.8785,233.8879,278.7290" -performing set operations between randomized regions - 2d,"difference, small, native",100,26,2550600,918.9608,913.8088,929.6200,36.0886,20.1836,60.4247,"benchmark,group:grid","1082.3846,902.3846,979.4615,929.0000,922.4231,916.2692,926.6923,924.3462,926.3077,921.2692,924.0000,917.4231,920.5385,923.9615,930.5000,917.0385,1159.0385,982.5769,910.0769,906.2308,914.7308,907.4231,907.0385,909.3462,907.0385,910.8846,907.4231,917.4231,916.2692,913.5769,916.6923,916.6538,916.2692,913.5769,915.9231,912.8077,912.8077,908.9615,912.4231,915.5000,913.9615,908.5769,919.3462,916.3077,908.9615,905.8462,916.3077,912.4231,918.5769,915.5000,905.8846,921.6538,913.5769,920.8846,913.1923,916.6538,914.7308,916.6538,1085.8462,918.1923,898.9231,907.4231,909.3462,913.1923,905.1154,913.5769,899.7308,900.0769,898.1538,920.1538,899.6923,908.1923,909.3462,907.0385,903.1538,901.2308,910.1154,903.9615,908.5385,907.0000,907.8077,907.4231,920.1154,903.9615,902.4231,908.5385,908.9231,912.8077,900.4615,906.2692,900.4615,900.1154,906.6154,896.2308,907.0385,899.6923,915.8846,910.5000,913.5769,905.5000" -performing set operations between randomized regions - 2d,"difference, small, embedded in 3d",100,24,2570400,1197.9100,1193.2283,1207.6988,32.7209,18.0284,52.5993,"benchmark,group:grid","1187.1667,1193.0000,1289.0417,1215.1250,1201.7917,1198.0000,1199.7083,1195.9583,1202.1667,1201.3750,1191.7917,1188.0000,1196.3333,1193.8750,1190.9167,1190.0833,1346.6667,1188.8333,1185.9167,1193.8333,1194.2500,1183.8333,1191.3333,1194.2917,1192.1667,1191.7500,1194.2917,1198.4167,1189.2917,1195.0833,1187.5833,1192.6250,1190.9167,1187.5833,1191.3333,1193.8750,1190.0833,1189.2500,1190.1250,1194.2500,1190.0833,1191.3750,1187.5833,1191.3333,1193.8333,1189.6667,1188.4167,1191.7500,1190.9167,1193.8333,1190.9167,1367.9583,1198.8333,1192.6250,1192.5833,1194.2500,1192.2083,1197.1667,1187.1667,1191.7500,1185.0833,1190.5000,1192.1667,1190.5000,1194.2500,1188.0000,1191.3750,1188.4167,1189.2500,1191.7500,1188.8750,1186.7500,1188.4167,1193.8333,1190.1250,1192.5833,1194.2500,1188.8750,1195.0833,1192.1667,1189.2500,1185.9167,1188.4167,1190.0833,1190.0833,1190.5417,1402.5833,1191.3333,1188.8333,1187.5833,1190.5000,1189.2500,1189.2500,1187.1667,1189.6667,1185.5000,1190.5417,1185.5000,1187.1667,1183.4167" -performing set operations between randomized regions - 2d,"union, medium, native",100,2,2648000,12256.3150,12167.1600,12435.9400,616.2708,335.0321,970.2173,"benchmark,group:grid","12102.0000,12087.0000,14125.5000,12558.0000,12387.5000,12232.0000,15829.0000,12187.0000,12202.0000,12122.0000,12172.5000,12182.0000,12132.0000,12187.0000,12177.5000,12187.0000,12217.0000,12122.0000,12102.0000,12142.0000,12172.5000,12177.0000,12122.0000,12162.0000,12107.0000,12092.0000,12162.0000,12172.5000,12187.0000,12122.0000,12167.0000,12102.0000,12077.0000,12207.0000,12137.5000,12122.0000,12107.0000,12107.0000,12192.0000,12117.0000,12137.0000,12087.0000,12097.0000,12107.0000,12062.0000,12072.0000,12097.0000,15443.0000,12137.0000,12047.0000,12117.0000,12152.0000,12147.0000,12157.5000,12127.0000,12132.0000,12097.0000,12152.0000,12117.0000,12132.0000,12077.0000,12072.0000,12077.0000,12107.0000,12127.0000,12137.0000,12162.0000,12087.0000,12152.0000,12182.0000,12127.0000,12132.0000,12132.0000,12187.0000,12142.0000,12157.0000,12097.0000,12107.0000,12062.0000,12142.0000,12152.0000,12087.0000,12102.0000,12022.0000,12087.0000,12082.0000,12026.5000,12027.0000,15373.0000,12152.0000,12157.0000,12097.0000,12102.0000,12097.0000,12117.0000,12127.0000,12127.0000,12132.0000,12117.0000,12102.0000" -performing set operations between randomized regions - 2d,"union, medium, embedded in 3d",100,2,2672000,14876.1750,14822.1200,14983.5900,371.4097,207.0677,575.4650,"benchmark,group:grid","14832.0000,14817.0000,16184.5000,14952.5000,14922.5000,14897.0000,14927.5000,16640.5000,14842.5000,14732.0000,14807.0000,14847.0000,14767.0000,14822.5000,14847.0000,14852.0000,14762.0000,14837.0000,14837.0000,14792.0000,14827.0000,14732.0000,14812.0000,14752.0000,14827.0000,14722.0000,14747.0000,14822.5000,14777.0000,14712.0000,14722.0000,14757.0000,14737.0000,14782.0000,14687.0000,14797.0000,14807.0000,14792.0000,14827.5000,14797.0000,14802.0000,16971.0000,14832.0000,14797.0000,14782.0000,14872.5000,14772.0000,14702.0000,14712.0000,14742.0000,14661.5000,14717.0000,14817.0000,14777.5000,14762.0000,14882.0000,14762.0000,14767.0000,14832.5000,14752.0000,14792.0000,14782.0000,14852.0000,14837.5000,14927.0000,14857.0000,14852.0000,14822.5000,14817.0000,14877.0000,14817.5000,14777.0000,14852.0000,14797.0000,14802.5000,16815.5000,14862.0000,14862.0000,14802.5000,14802.0000,14882.0000,14842.5000,14807.0000,14822.0000,14852.5000,14802.0000,14737.0000,14747.0000,14817.0000,14767.0000,14837.5000,14807.0000,14837.0000,14792.5000,14777.0000,14822.0000,14812.0000,14672.0000,14762.0000,14747.0000" -performing set operations between randomized regions - 2d,"intersection, medium, native",100,11,2610300,2304.5245,2296.6727,2324.4536,55.9514,5.2581,103.4052,"benchmark,group:grid","2294.1818,2292.3636,2336.0000,2296.9091,2297.8182,2296.0000,2296.0000,2296.9091,2296.0000,2296.0000,2299.6364,2296.0000,2299.6364,2296.9091,2300.5455,2297.8182,2300.5455,2297.7273,2298.7273,2296.8182,2297.8182,2292.2727,2296.9091,2296.9091,2296.9091,2297.8182,2299.6364,2297.7273,2296.8182,2297.7273,2307.8182,2295.0909,2297.8182,2296.9091,2296.9091,2300.5455,2294.1818,2296.0000,2731.3636,2300.5455,2293.2727,2295.0909,2299.6364,2294.1818,2296.0000,2297.8182,2296.0000,2295.0909,2301.4545,2293.2727,2298.7273,2296.0000,2295.0909,2299.6364,2296.9091,2301.4545,2299.6364,2300.5455,2298.7273,2299.6364,2296.0000,2298.7273,2290.5455,2298.7273,2294.1818,2296.0000,2300.5455,2295.0909,2295.0909,2293.2727,2297.8182,2297.8182,2298.7273,2299.6364,2297.8182,2304.1818,2293.2727,2653.9091,2292.3636,2296.0000,2298.7273,2295.0909,2291.4545,2293.2727,2293.2727,2292.3636,2288.7273,2290.4545,2292.2727,2290.5455,2291.4545,2291.4545,2291.4545,2288.7273,2292.3636,2292.3636,2292.2727,2294.1818,2292.3636,2291.4545" -performing set operations between randomized regions - 2d,"intersection, medium, embedded in 3d",100,11,2537700,2070.4164,2062.7391,2089.9227,54.6648,5.3968,99.2893,"benchmark,group:grid","2063.7273,2065.5455,2093.8182,2066.4545,2058.2727,2065.5455,2058.2727,2061.0000,2063.7273,2058.2727,2063.7273,2061.9091,2062.8182,2068.2727,2069.1818,2073.7273,2070.1818,2057.3636,2063.7273,2065.5455,2069.1818,2070.0909,2062.8182,2061.0000,2065.5455,2066.4545,2069.1818,2068.2727,2067.3636,2064.6364,2072.8182,2061.0000,2059.1818,2066.4545,2074.7273,2068.2727,2068.2727,2451.7273,2059.0909,2063.7273,2066.4545,2062.8182,2053.7273,2063.7273,2060.0909,2060.0909,2058.2727,2060.0909,2061.9091,2060.0909,2060.0909,2062.0000,2061.0000,2062.8182,2062.8182,2062.8182,2062.8182,2054.6364,2060.0909,2057.3636,2065.5455,2061.0000,2057.3636,2057.3636,2061.0000,2059.1818,2056.4545,2059.1818,2058.2727,2053.7273,2056.4545,2065.5455,2059.1818,2055.4545,2061.0000,2061.0000,2060.0909,2060.0909,2058.2727,2056.4545,2056.4545,2450.8182,2061.9091,2065.5455,2060.0909,2061.0000,2061.9091,2055.5455,2061.0000,2060.0909,2061.9091,2067.3636,2066.4545,2058.2727,2060.0909,2061.9091,2061.0000,2062.8182,2065.5455,2064.6364" -performing set operations between randomized regions - 2d,"difference, medium, native",100,4,2920800,7990.5825,7957.4325,8060.3750,233.4282,125.1132,377.1587,"benchmark,group:grid","7949.5000,7962.0000,8631.0000,8029.7500,7994.7500,7989.5000,7972.2500,7937.0000,7979.7500,7954.5000,7899.5000,7919.5000,7952.2500,7927.0000,7939.5000,7889.5000,7947.2500,7947.0000,7884.5000,7909.5000,7972.0000,7934.5000,7947.0000,7947.0000,8004.7500,7902.0000,7967.2500,7987.0000,8954.0000,7944.5000,7992.2500,7937.0000,7914.5000,8014.7500,7874.5000,7962.0000,7979.7500,7897.0000,7959.5000,7972.2500,7904.5000,7984.5000,7937.0000,7977.0000,7914.5000,7934.5000,7957.0000,7879.5000,7934.5000,7949.7500,7942.0000,8029.7500,7917.0000,7932.2500,7947.0000,7889.5000,7907.0000,7929.5000,7912.0000,7922.0000,9337.2500,7944.7500,7964.5000,7917.0000,7984.7500,7987.2500,7949.5000,7929.5000,7954.7500,7909.5000,7937.0000,7974.7500,7962.0000,7972.2500,7919.5000,7969.5000,7947.2500,7919.5000,7937.0000,7897.0000,7947.2500,7959.5000,7929.5000,8037.2500,7914.7500,7949.5000,7972.0000,7912.0000,7964.5000,7992.2500,7927.0000,9402.2500,7907.0000,7937.0000,7932.0000,7947.0000,7919.7500,7952.0000,7919.5000,7942.0000" -performing set operations between randomized regions - 2d,"difference, medium, embedded in 3d",100,4,3150400,7614.0850,7578.6900,7682.0825,242.2918,139.6110,363.9374,"benchmark,group:grid","7564.0000,7561.2500,8600.7500,7611.2500,7614.0000,7574.0000,7588.7500,7561.5000,7573.7500,7574.0000,7541.2500,7503.7500,7538.7500,7546.5000,7526.2500,7558.7500,7599.0000,8736.0000,7579.0000,7599.0000,7593.7500,7544.0000,7573.7500,7564.0000,7563.7500,7601.5000,7553.7500,7589.0000,7568.7500,7551.5000,7541.2500,7558.7500,7564.0000,7563.7500,7548.7500,7531.2500,7566.2500,7609.0000,7526.2500,7576.5000,7561.2500,7536.2500,7579.0000,7546.2500,7526.2500,7561.5000,7548.7500,7586.5000,7576.2500,7566.5000,8946.5000,7538.7500,7548.7500,7526.2500,7529.0000,7568.7500,7564.0000,7581.2500,7508.7500,7548.7500,7553.7500,7548.7500,7549.0000,7578.7500,7553.7500,7583.7500,7581.5000,7546.2500,7576.2500,7563.7500,7523.7500,7564.0000,7576.2500,7556.2500,7561.2500,7578.7500,7563.7500,7571.2500,7561.5000,7546.2500,7546.2500,7563.7500,8723.5000,8172.5000,7554.0000,7578.7500,7541.2500,7533.7500,7541.2500,7536.2500,7549.0000,7581.2500,7528.7500,7559.0000,7553.7500,7574.0000,7536.2500,7538.7500,7576.5000,7591.2500" -performing set operations between randomized regions - 2d,"union, large, native",100,1,15522900,159200.5300,158544.4700,160303.6700,4216.7607,2723.7404,7098.9466,"benchmark,group:grid","150874.0000,150313.0000,164480.0000,158769.0000,158589.0000,158348.0000,158809.0000,158178.0000,163147.0000,158599.0000,157747.0000,158328.0000,158279.0000,158127.0000,164280.0000,158719.0000,158378.0000,158238.0000,158318.0000,157947.0000,163268.0000,158188.0000,158458.0000,158308.0000,158168.0000,158268.0000,158068.0000,163318.0000,157957.0000,158629.0000,158238.0000,158338.0000,158309.0000,177304.0000,158579.0000,158147.0000,158138.0000,158088.0000,158619.0000,165562.0000,158358.0000,158789.0000,158579.0000,158218.0000,158328.0000,166033.0000,158468.0000,158488.0000,158719.0000,158148.0000,157987.0000,158228.0000,163007.0000,158488.0000,158038.0000,158318.0000,158018.0000,158468.0000,162677.0000,158468.0000,158479.0000,158468.0000,158258.0000,158399.0000,163157.0000,158378.0000,158559.0000,158278.0000,158278.0000,158248.0000,158499.0000,163287.0000,158618.0000,158399.0000,158648.0000,158538.0000,158138.0000,186902.0000,158479.0000,158308.0000,158148.0000,158418.0000,158369.0000,163247.0000,158779.0000,157838.0000,158178.0000,158057.0000,157577.0000,162887.0000,158549.0000,158568.0000,157968.0000,158759.0000,158218.0000,158258.0000,162677.0000,154200.0000,150163.0000,150633.0000" -performing set operations between randomized regions - 2d,"union, large, embedded in 3d",100,1,16267700,171689.3200,171233.3800,172906.4500,3519.5035,1737.2438,7363.6978,"benchmark,group:grid","174389.0000,170271.0000,178547.0000,171513.0000,171143.0000,171082.0000,171423.0000,175130.0000,170652.0000,170431.0000,170732.0000,170671.0000,170812.0000,175100.0000,171043.0000,170942.0000,170852.0000,170451.0000,170972.0000,176222.0000,170482.0000,170411.0000,171052.0000,171313.0000,175521.0000,170852.0000,170892.0000,170030.0000,171083.0000,170351.0000,175580.0000,170481.0000,170241.0000,170491.0000,170321.0000,171012.0000,175321.0000,170691.0000,170391.0000,170762.0000,170201.0000,170762.0000,174569.0000,170872.0000,170852.0000,170391.0000,170361.0000,170732.0000,175050.0000,170521.0000,170611.0000,170140.0000,169800.0000,170121.0000,174799.0000,170351.0000,170441.0000,170351.0000,170371.0000,175702.0000,170691.0000,170512.0000,170120.0000,170632.0000,170160.0000,201520.0000,170992.0000,170912.0000,170411.0000,170792.0000,170701.0000,175742.0000,170271.0000,170521.0000,170662.0000,171132.0000,170582.0000,174969.0000,171323.0000,170682.0000,169429.0000,170101.0000,169649.0000,174569.0000,171392.0000,170531.0000,170601.0000,170482.0000,173697.0000,170481.0000,170592.0000,171022.0000,170091.0000,170751.0000,174710.0000,170361.0000,170421.0000,169770.0000,169960.0000,170341.0000" -performing set operations between randomized regions - 2d,"intersection, large, native",100,2,4165200,21421.0700,21344.2400,21561.6250,515.4773,318.8865,746.4757,"benchmark,group:grid","21454.5000,21239.5000,24064.5000,21439.5000,21239.5000,21454.5000,21299.0000,21410.0000,21174.0000,21364.5000,21239.5000,21304.5000,21349.5000,21269.0000,21359.5000,21309.0000,21409.5000,21239.0000,21405.0000,21249.0000,21369.5000,21239.5000,21334.5000,21324.5000,21414.5000,23358.5000,21394.5000,21269.5000,21334.5000,21239.5000,21379.5000,21244.0000,21349.5000,21254.5000,21324.5000,21244.5000,21760.0000,21289.5000,21299.5000,21429.5000,21314.5000,21354.5000,21234.5000,21334.5000,21179.0000,21364.5000,21324.5000,21410.0000,23343.0000,21379.5000,21289.5000,21374.5000,21189.5000,21309.5000,21234.0000,21344.5000,21244.5000,21374.5000,21304.5000,21189.0000,21359.5000,21234.0000,21319.5000,21159.0000,21374.5000,21224.0000,21339.5000,21249.5000,21364.5000,21184.0000,21304.5000,21204.5000,23623.5000,21229.5000,21284.5000,21289.5000,21284.0000,21224.5000,21239.5000,21389.5000,21259.5000,21359.5000,21209.0000,21399.5000,21234.5000,21384.5000,21179.0000,21469.5000,21174.0000,21244.5000,21204.5000,21349.5000,21274.0000,21384.5000,21224.0000,23714.0000,21234.5000,21274.0000,21234.0000,21199.5000" -performing set operations between randomized regions - 2d,"intersection, large, embedded in 3d",100,2,4261000,19319.1100,19242.5600,19474.5550,534.7217,308.4426,889.7900,"benchmark,group:grid","19235.5000,19280.5000,20628.0000,19331.0000,19300.5000,19260.5000,19185.5000,19205.5000,19330.5000,19200.5000,19215.5000,19185.5000,19150.5000,21354.5000,19185.5000,19145.0000,19155.5000,19220.5000,19125.0000,19150.0000,19245.5000,19240.5000,19175.5000,19220.5000,19165.5000,19250.5000,19225.5000,19210.5000,19130.0000,19195.0000,19160.5000,19130.5000,19245.5000,19150.0000,19185.0000,19155.5000,19195.5000,19140.5000,19165.0000,22897.5000,19190.5000,19195.5000,19205.5000,19195.5000,19220.5000,19180.0000,19205.0000,19230.5000,19245.5000,19175.5000,19215.5000,19245.5000,19220.5000,19255.5000,19150.5000,19165.5000,19230.5000,19145.0000,19190.5000,19170.5000,19185.5000,19165.5000,19160.0000,19180.5000,21304.5000,19255.5000,19170.5000,19190.5000,19165.0000,19180.0000,19170.5000,19140.5000,19235.5000,19180.5000,19150.0000,19230.5000,19326.0000,19220.5000,19195.0000,19230.0000,19240.0000,19235.5000,19220.0000,19245.5000,19250.5000,19155.0000,19260.5000,19150.0000,19160.5000,19235.5000,21444.5000,19275.5000,19195.0000,19265.5000,19190.0000,19165.5000,19220.5000,19170.5000,19195.5000,19235.5000" -performing set operations between randomized regions - 2d,"difference, large, native",100,1,60927000,609167.9000,608563.3000,610147.0800,3841.0317,2681.6848,6900.8092,"benchmark,group:grid","613040.0000,611948.0000,613060.0000,609113.0000,609664.0000,605045.0000,610806.0000,606147.0000,611527.0000,610976.0000,605966.0000,608482.0000,607068.0000,612178.0000,609834.0000,608191.0000,611858.0000,605386.0000,608281.0000,611186.0000,604184.0000,609233.0000,604874.0000,609133.0000,608972.0000,606598.0000,609654.0000,610545.0000,604493.0000,611817.0000,605055.0000,611538.0000,609182.0000,605736.0000,609563.0000,606107.0000,610165.0000,608502.0000,604584.0000,610174.0000,606177.0000,609383.0000,610205.0000,607189.0000,614713.0000,605566.0000,609533.0000,611477.0000,606838.0000,611177.0000,610375.0000,605936.0000,635884.0000,604193.0000,609173.0000,611588.0000,604784.0000,612639.0000,605045.0000,610856.0000,608802.0000,606437.0000,611247.0000,608091.0000,610405.0000,611557.0000,605386.0000,608201.0000,609593.0000,605717.0000,612348.0000,604163.0000,611697.0000,610716.0000,604654.0000,611027.0000,606006.0000,613611.0000,611257.0000,605375.0000,612700.0000,606618.0000,610325.0000,610916.0000,605836.0000,611537.0000,604453.0000,611908.0000,611618.0000,606267.0000,610836.0000,613231.0000,606588.0000,610505.0000,608161.0000,611086.0000,611347.0000,606498.0000,612379.0000,605095.0000" -performing set operations between randomized regions - 2d,"difference, large, embedded in 3d",100,1,64426800,646067.0500,645352.4100,647425.5300,4864.6834,3021.5066,9363.8243,"benchmark,group:grid","647316.0000,645411.0000,651303.0000,645572.0000,649058.0000,644790.0000,644980.0000,646945.0000,641143.0000,643488.0000,646553.0000,645161.0000,646703.0000,645371.0000,640582.0000,653287.0000,648898.0000,645021.0000,645030.0000,646644.0000,643077.0000,644500.0000,640943.0000,645612.0000,646644.0000,640873.0000,650070.0000,646313.0000,640763.0000,649289.0000,646353.0000,646033.0000,648307.0000,648277.0000,639670.0000,645081.0000,645652.0000,645101.0000,646143.0000,641694.0000,646202.0000,645241.0000,645591.0000,683103.0000,646043.0000,641294.0000,646634.0000,649860.0000,640572.0000,646854.0000,648858.0000,641364.0000,649028.0000,646072.0000,642566.0000,645642.0000,641184.0000,645051.0000,646774.0000,641774.0000,647967.0000,647204.0000,643888.0000,648518.0000,649839.0000,640893.0000,647486.0000,649238.0000,640632.0000,650060.0000,645272.0000,640812.0000,646173.0000,642035.0000,648387.0000,645030.0000,641494.0000,652655.0000,646944.0000,639931.0000,650211.0000,649960.0000,647976.0000,648127.0000,650261.0000,642896.0000,650261.0000,648968.0000,642657.0000,646012.0000,641595.0000,645391.0000,646734.0000,646494.0000,648517.0000,647055.0000,637857.0000,645562.0000,647154.0000,645201.0000" -performing set operations between randomized regions - 3d,"union, small, native",100,7,2688700,3864.6614,3847.9043,3896.5657,113.2044,60.5297,169.4590,"benchmark,group:grid","3837.0000,3845.5714,4378.0000,3895.7143,3869.8571,3862.8571,3881.2857,3874.2857,3884.1429,3867.0000,3854.1429,3849.8571,3868.5714,3854.1429,3852.7143,4449.5714,3878.4286,3854.1429,3862.8571,3851.2857,3841.2857,3822.7143,3854.1429,3812.7143,3835.5714,3839.8571,3831.2857,3872.7143,3824.1429,3871.4286,3834.1429,3848.4286,3844.1429,3827.0000,3848.4286,3829.8571,3848.4286,3808.4286,3835.5714,3845.5714,3829.8571,3844.1429,3848.4286,3844.1429,3835.5714,3860.0000,3855.5714,3857.0000,3841.2857,3848.4286,3855.5714,3812.5714,4426.5714,3804.1429,3825.5714,3851.2857,3831.2857,3835.5714,3834.1429,3824.1429,3837.0000,3845.5714,3859.8571,3821.2857,3831.2857,3842.7143,3821.2857,3844.1429,3839.8571,3834.1429,3829.8571,3829.8571,3851.2857,3829.8571,3851.2857,3832.7143,3852.7143,3831.1429,3828.4286,3837.0000,3835.5714,3834.1429,3838.4286,3829.8571,3841.2857,3818.4286,3831.2857,3837.0000,3851.2857,4395.2857,3838.4286,3825.5714,3821.1429,3841.2857,3812.5714,3811.2857,3827.0000,3839.8571,3842.7143,3829.8571" -performing set operations between randomized regions - 3d,"intersection, small, native",100,176,2481600,142.3839,141.9685,143.3864,3.0494,0.8766,5.4697,"benchmark,group:grid","142.1932,142.6477,146.1193,142.7045,142.0170,141.6193,141.6193,141.5057,141.2216,140.8864,141.5625,141.6761,141.5682,141.5057,141.8466,141.6250,143.3864,144.4091,143.4432,143.8977,143.1023,141.7330,141.7386,140.4830,142.3011,142.4205,142.0170,142.1932,142.3636,142.1875,142.1932,142.7557,141.7955,141.5057,141.8523,141.5057,141.6193,141.5682,140.6534,164.1023,142.5284,141.7386,141.6193,141.5057,141.7386,141.6193,142.1932,141.7330,141.7330,141.6250,141.6193,141.7898,141.6250,140.4261,141.6761,141.4489,141.5057,142.3011,143.3295,143.0455,140.5966,142.5341,142.9886,141.9602,142.3068,141.5625,141.6193,141.9034,140.7670,142.3068,141.5625,142.2500,142.2443,142.8182,141.7330,140.4261,141.6250,142.7557,143.3295,161.6023,142.3068,143.0455,141.7898,140.5966,141.6761,141.5625,141.5057,142.5341,142.2443,141.6250,140.4830,141.7330,142.9318,141.5057,141.7386,141.5625,141.5057,141.7955,140.4830,142.5284" -performing set operations between randomized regions - 3d,"difference, small, native",100,19,2582100,1366.1384,1361.9368,1376.6737,31.1626,8.2630,55.5146,"benchmark,group:grid","1362.4737,1361.4211,1419.4211,1368.2632,1370.4211,1371.4211,1370.4211,1368.7895,1363.5263,1359.3158,1363.5263,1365.1053,1365.1053,1370.9474,1366.6842,1363.0000,1369.8947,1369.8421,1360.3684,1374.6316,1371.9474,1368.2632,1369.8421,1368.3158,1368.2632,1366.6842,1361.4737,1364.0526,1357.2105,1357.7368,1357.2105,1350.8947,1355.5789,1573.8947,1358.2632,1354.5789,1349.3158,1353.0000,1349.2632,1361.9474,1356.6842,1363.5263,1366.6842,1363.5263,1363.5789,1372.4737,1366.6842,1352.9474,1356.6842,1363.0000,1363.0000,1360.8947,1356.6842,1365.1053,1367.7368,1359.8421,1356.6842,1350.3158,1357.7368,1360.3684,1359.3158,1360.3684,1357.7368,1356.6842,1365.6316,1361.4211,1351.4211,1357.7368,1365.6316,1357.2105,1360.3684,1579.7368,1365.6842,1363.5263,1358.7895,1361.4211,1358.7895,1357.7368,1357.2105,1358.7895,1366.1579,1365.1579,1357.7368,1360.8947,1360.8947,1354.5789,1349.3158,1358.2632,1360.3684,1355.1053,1357.2105,1359.3158,1354.5789,1361.9474,1356.6842,1352.4737,1360.8947,1364.5789,1360.3684,1355.6316" -performing set operations between randomized regions - 3d,"union, medium, native",100,2,4295600,19735.9450,19649.1900,19894.5200,585.1122,357.0917,854.2129,"benchmark,group:grid","19526.0000,19591.0000,22782.0000,20067.0000,20142.5000,19836.5000,19706.5000,19701.5000,19681.0000,19601.5000,19551.0000,19696.5000,19586.0000,19541.0000,19656.5000,19581.0000,19561.0000,19646.0000,22011.0000,19491.0000,19546.0000,19536.0000,19586.0000,19696.5000,19596.0000,19586.5000,19581.0000,19606.5000,19681.0000,19581.5000,19536.0000,19456.0000,19551.0000,19531.0000,19546.0000,19526.0000,19581.5000,19611.0000,19801.5000,19626.5000,19771.5000,19681.0000,19601.5000,21955.5000,19681.5000,19536.0000,19611.0000,19616.0000,19591.0000,19591.5000,19591.0000,19581.0000,19601.5000,19561.0000,19621.5000,19611.0000,19476.0000,19596.0000,19671.5000,19616.5000,19536.0000,19546.0000,19496.0000,19621.0000,19686.5000,19661.5000,19676.0000,19656.5000,19576.0000,22086.0000,19586.5000,19541.0000,19556.0000,19441.0000,19551.0000,19471.0000,19646.0000,19551.5000,19651.0000,19501.0000,19506.0000,19601.5000,19541.0000,19551.0000,19571.0000,19591.5000,19651.0000,19571.5000,19591.0000,19546.0000,19511.0000,19586.5000,19616.0000,19581.0000,22331.5000,19591.5000,19531.0000,19626.0000,19601.5000,19576.0000" -performing set operations between randomized regions - 3d,"intersection, medium, native",100,10,2533000,2590.7930,2583.9490,2607.3610,50.3803,12.9839,90.7195,"benchmark,group:grid","2584.7000,2587.7000,2621.8000,2595.7000,2593.8000,2589.7000,2573.7000,2571.6000,2586.7000,2587.7000,2591.7000,2551.6000,2590.7000,2592.7000,2594.7000,2596.8000,2594.7000,2589.7000,2572.7000,2596.7000,2577.7000,2593.8000,2597.7000,2591.7000,2597.7000,2582.7000,2576.7000,2593.7000,2592.7000,2548.6000,2574.6000,2572.7000,2570.7000,2586.7000,2955.4000,2581.7000,2571.6000,2566.7000,2588.7000,2556.7000,2590.7000,2586.7000,2590.7000,2590.8000,2592.7000,2591.7000,2589.7000,2596.8000,2591.7000,2567.7000,2590.7000,2592.7000,2592.7000,2593.8000,2571.6000,2570.6000,2586.7000,2563.6000,2537.6000,2591.8000,2565.6000,2585.7000,2591.7000,2591.7000,2579.7000,2563.7000,2591.7000,2570.7000,2590.7000,2591.7000,2586.7000,2576.7000,2561.7000,2907.3000,2592.7000,2587.7000,2585.7000,2547.6000,2572.7000,2583.7000,2589.7000,2576.7000,2583.7000,2591.8000,2591.7000,2588.7000,2586.7000,2576.7000,2589.7000,2590.8000,2591.7000,2579.7000,2583.7000,2590.7000,2587.7000,2587.7000,2567.7000,2594.8000,2590.7000,2588.7000" -performing set operations between randomized regions - 3d,"difference, medium, native",100,3,3481500,11808.5067,11768.3467,11883.7767,272.6738,153.9569,405.5211,"benchmark,group:grid","11674.6667,11731.6667,13147.6667,11915.3333,11962.0000,11915.3333,11901.6667,11918.6667,11968.6667,11728.3333,11761.6667,11822.0000,11835.0000,11778.3333,11721.6667,11765.0000,11728.3333,11775.0000,11651.3333,11788.3333,13234.6667,11698.0000,11705.0000,11721.6667,11718.3333,11671.3333,11741.6667,11718.3333,11848.3333,11895.3333,11705.0000,11761.6667,11754.6667,11741.3333,11715.0000,11768.3333,11675.0000,11714.6667,11645.0000,11648.0000,11751.6667,11648.0000,11761.6667,11845.3333,11755.0000,11798.3333,11778.3333,11721.6667,12917.0000,11761.6667,11778.3333,11721.3333,11748.3333,11715.0000,11688.0000,11724.6667,11718.3333,11651.3333,11718.3333,11758.3333,11748.3333,11768.3333,11735.0000,11721.6667,11701.3333,11755.0000,11725.0000,11781.6667,11832.0000,11718.0000,11715.0000,11681.6667,11708.0000,11701.6667,11718.3333,11848.3333,11832.0000,13090.6667,11758.3333,11852.0000,11745.0000,11694.6667,11678.3333,11765.0000,11735.0000,11654.6667,11721.6667,11711.3333,11775.0000,11744.6667,11815.3333,11738.3333,11808.3333,11905.3333,11741.6667,11724.6667,11758.3333,11731.6667,11695.0000,11781.6667" -performing set operations between randomized regions - 3d,"union, large, native",100,1,215738900,2143032.2400,2132181.3200,2151172.3600,47776.8249,38993.7510,55633.2793,"benchmark,group:grid","2034324.0000,2028794.0000,2165303.0000,2164872.0000,2165753.0000,2157999.0000,2166564.0000,2169540.0000,2165493.0000,2165683.0000,2167206.0000,2159963.0000,2164320.0000,2165984.0000,2165603.0000,2163970.0000,2164822.0000,2169169.0000,2165864.0000,2166204.0000,2167517.0000,2165713.0000,2164862.0000,2171624.0000,2163339.0000,2166855.0000,2167246.0000,2157718.0000,2166675.0000,2169350.0000,2156516.0000,2167837.0000,2179750.0000,2164641.0000,2154712.0000,2168398.0000,2154321.0000,2161645.0000,2167386.0000,2162146.0000,2167116.0000,2172606.0000,2158560.0000,2161084.0000,2164682.0000,2158529.0000,2164221.0000,2157978.0000,2163489.0000,2167267.0000,2165232.0000,2166334.0000,2164381.0000,2168459.0000,2160112.0000,2165583.0000,2164401.0000,2164591.0000,2162617.0000,2163118.0000,2166775.0000,2154412.0000,2166124.0000,2166344.0000,2165392.0000,2166084.0000,2170092.0000,2164160.0000,2165723.0000,2156336.0000,2155844.0000,2163419.0000,2170482.0000,2167596.0000,2153951.0000,2164682.0000,2156195.0000,2161054.0000,2191843.0000,2164571.0000,2156796.0000,2155022.0000,2162957.0000,2158218.0000,2169630.0000,2085281.0000,2035256.0000,2033312.0000,2035125.0000,2038833.0000,2036328.0000,2037641.0000,2033713.0000,2039774.0000,2036859.0000,2035717.0000,2035496.0000,2037640.0000,2036949.0000,2035557.0000" -performing set operations between randomized regions - 3d,"intersection, large, native",100,2,3065600,15669.3150,15554.5050,16051.6400,950.0020,310.8329,2110.9526,"benchmark,group:grid","15568.5000,15463.5000,15964.5000,15428.0000,15453.5000,15649.0000,15508.0000,15583.5000,15513.5000,15548.5000,15483.0000,15423.5000,15498.5000,15493.5000,15513.5000,15513.5000,15428.0000,15443.5000,15523.5000,15538.5000,15618.5000,15443.5000,15508.5000,15643.5000,15428.5000,15518.5000,15518.5000,15483.0000,15438.5000,15438.5000,15573.5000,17332.0000,15513.5000,15718.5000,15493.5000,15568.5000,15518.5000,15588.5000,15563.5000,15513.5000,15503.0000,15493.5000,15413.5000,15483.5000,15513.5000,15518.0000,15453.0000,15583.5000,15594.0000,15899.0000,15433.5000,15483.0000,15528.0000,15418.5000,15543.5000,15453.5000,15483.5000,15473.0000,15483.5000,15388.5000,15498.0000,15578.5000,15488.0000,17817.5000,15608.5000,15589.0000,15623.5000,15488.5000,24325.0000,15403.5000,15543.5000,15403.0000,15558.5000,15448.5000,15463.5000,15548.5000,15468.5000,15408.0000,15558.5000,15583.5000,15413.5000,15468.5000,15498.0000,15573.5000,15488.0000,15518.0000,15473.5000,15523.5000,15659.0000,15608.5000,15493.5000,15393.0000,15548.5000,15619.0000,15503.0000,17887.5000,15493.5000,15453.5000,15423.5000,15383.0000" -performing set operations between randomized regions - 3d,"difference, large, native",100,1,695646900,6832657.0400,6779569.7900,6884142.4800,265482.4998,234607.1953,340611.0469,"benchmark,group:grid","6999846.0000,6947487.0000,7180499.0000,7899331.0000,7002621.0000,6985599.0000,6984688.0000,6993154.0000,6948179.0000,6965912.0000,6957606.0000,6987823.0000,6944491.0000,6974358.0000,7023411.0000,6967505.0000,6996520.0000,6987553.0000,6425938.0000,6466445.0000,6398647.0000,6436869.0000,6430817.0000,6413365.0000,6452138.0000,6404468.0000,6476134.0000,6430036.0000,6487615.0000,6456626.0000,6430037.0000,6685220.0000,6930795.0000,6989978.0000,6949521.0000,6982072.0000,6968167.0000,6975901.0000,7000567.0000,6981011.0000,6969770.0000,6961824.0000,6939853.0000,6986250.0000,7023401.0000,6967034.0000,6954090.0000,6982564.0000,6951515.0000,6990107.0000,7000427.0000,6991150.0000,6979067.0000,6949551.0000,6953468.0000,6971433.0000,6949731.0000,6974799.0000,6988876.0000,7000798.0000,6983615.0000,6971753.0000,6978916.0000,7029012.0000,7044621.0000,6959530.0000,6459642.0000,6466195.0000,6459282.0000,6410769.0000,6429926.0000,6430096.0000,6476905.0000,6444815.0000,6415208.0000,6429184.0000,6409657.0000,6448651.0000,6409607.0000,6489859.0000,6418144.0000,6927870.0000,6966042.0000,6970551.0000,6982613.0000,6923712.0000,6920296.0000,6961764.0000,6978446.0000,6976031.0000,7014153.0000,6979387.0000,7021788.0000,6996229.0000,6923863.0000,6946355.0000,6943479.0000,6954621.0000,6972564.0000,6935895.0000" -"normalizing a fully mergeable, complex tiling of boxes - 2d","small, native",100,12,2624400,2202.8342,2193.4050,2222.4183,66.3547,35.6780,107.3386,"benchmark,group:grid","2193.1667,2177.2500,2382.6667,2209.0000,2215.6667,2195.6667,2180.6667,2201.5000,2208.2500,2200.6667,2539.6667,2183.0833,2187.2500,2197.3333,2203.2500,2188.1667,2197.3333,2191.5000,2194.8333,2192.3333,2197.3333,2197.3333,2184.0000,2181.4167,2195.6667,2195.5833,2189.7500,2193.1667,2190.6667,2192.3333,2188.1667,2183.1667,2191.5000,2193.1667,2177.3333,2195.6667,2188.1667,2188.9167,2191.4167,2192.2500,2188.0833,2184.0000,2192.3333,2187.3333,2179.8333,2188.1667,2194.8333,2191.5000,2514.5833,2194.0000,2181.5000,2188.1667,2189.7500,2188.9167,2186.5000,2184.8333,2186.5000,2179.0000,2194.0000,2185.5833,2186.4167,2188.1667,2190.6667,2188.1667,2180.6667,2189.8333,2187.3333,2167.2500,2181.5000,2197.3333,2193.1667,2187.3333,2194.0000,2189.8333,2183.9167,2191.5000,2180.6667,2181.5000,2173.0833,2190.6667,2185.6667,2184.0000,2190.6667,2195.6667,2194.0000,2181.5000,2621.4167,2208.2500,2193.1667,2190.6667,2183.0833,2191.4167,2184.7500,2174.8333,2201.5000,2199.8333,2187.3333,2176.5000,2198.1667,2192.3333" -"normalizing a fully mergeable, complex tiling of boxes - 2d","small, embedded in 3d",100,10,2536000,2615.3750,2605.1220,2637.3170,73.3738,42.3001,116.7515,"benchmark,group:grid","2602.7000,2598.8000,2768.0000,2620.8000,2613.8000,2621.8000,2611.7000,2623.8000,2600.7000,2619.7000,2611.8000,2578.7000,2618.8000,2607.7000,2602.8000,2599.7000,2606.8000,2612.7000,2604.8000,2602.7000,2606.8000,2582.7000,3047.6000,2583.7000,2606.7000,2604.8000,2612.7000,2603.8000,2592.7000,2600.7000,2607.7000,2605.8000,2584.7000,2599.7000,2618.8000,2612.7000,2590.8000,2600.7000,2596.7000,2602.8000,2600.7000,2607.8000,2590.7000,2596.7000,2598.8000,2589.7000,2604.7000,2600.8000,2604.7000,2611.8000,2604.7000,2605.8000,2580.7000,2593.7000,2598.8000,2606.7000,2607.8000,2604.7000,2600.7000,2596.7000,3017.5000,2608.8000,2604.7000,2585.7000,2604.8000,2590.7000,2594.7000,2595.8000,2605.7000,2606.8000,2604.7000,2598.8000,2598.7000,2583.7000,2589.7000,2603.8000,2600.7000,2609.8000,2604.7000,2608.8000,2583.7000,2591.7000,2601.8000,2588.7000,2592.7000,2599.7000,2600.8000,2601.7000,2582.7000,2606.8000,2606.7000,2602.8000,2580.7000,2606.7000,2605.8000,2590.7000,2590.7000,2600.8000,2987.4000,2598.7000" -"normalizing a fully mergeable, complex tiling of boxes - 2d","large, native",100,1,152788900,1484234.2500,1479133.0500,1490337.9100,28205.2650,24362.8988,31554.8630,"benchmark,group:grid","1535528.0000,1531311.0000,1470706.0000,1473231.0000,1465356.0000,1470736.0000,1467028.0000,1469293.0000,1464053.0000,1468612.0000,1465706.0000,1471648.0000,1466408.0000,1467961.0000,1465295.0000,1469424.0000,1465616.0000,1466648.0000,1470035.0000,1466137.0000,1470956.0000,1464675.0000,1469283.0000,1464735.0000,1483199.0000,1476637.0000,1471067.0000,1466087.0000,1471848.0000,1466768.0000,1469253.0000,1465866.0000,1470466.0000,1466117.0000,1466969.0000,1469884.0000,1464274.0000,1469243.0000,1465185.0000,1474062.0000,1464604.0000,1467109.0000,1464214.0000,1470706.0000,1467660.0000,1469543.0000,1465236.0000,1471357.0000,1467129.0000,1465787.0000,1469874.0000,1465496.0000,1470485.0000,1465055.0000,1472118.0000,1465216.0000,1471136.0000,1464874.0000,1469143.0000,1465947.0000,1471067.0000,1465285.0000,1469664.0000,1464554.0000,1466828.0000,1470205.0000,1465877.0000,1470986.0000,1465927.0000,1469554.0000,1466488.0000,1472178.0000,1479813.0000,1483711.0000,1466448.0000,1473852.0000,1465987.0000,1474453.0000,1490593.0000,1537342.0000,1532142.0000,1537342.0000,1534106.0000,1536711.0000,1531682.0000,1537121.0000,1532403.0000,1535399.0000,1531511.0000,1537612.0000,1536380.0000,1533194.0000,1557831.0000,1531391.0000,1534437.0000,1530579.0000,1535258.0000,1529898.0000,1534597.0000,1533024.0000" -"normalizing a fully mergeable, complex tiling of boxes - 2d","large, embedded in 3d",100,1,174434000,1743444.6100,1741939.9800,1747264.4600,11356.9271,4968.3680,22785.0743,"benchmark,group:grid","1744334.0000,1744755.0000,1835247.0000,1767268.0000,1741910.0000,1738333.0000,1741880.0000,1744325.0000,1744424.0000,1740006.0000,1744364.0000,1743542.0000,1743923.0000,1737652.0000,1742902.0000,1743222.0000,1742891.0000,1738864.0000,1742681.0000,1741539.0000,1739926.0000,1738162.0000,1743543.0000,1744545.0000,1742050.0000,1738503.0000,1741639.0000,1741750.0000,1742531.0000,1736059.0000,1741559.0000,1744835.0000,1743292.0000,1736800.0000,1742030.0000,1740718.0000,1737792.0000,1741499.0000,1741028.0000,1743082.0000,1737873.0000,1742541.0000,1743062.0000,1743423.0000,1738684.0000,1741228.0000,1746448.0000,1745026.0000,1737401.0000,1741189.0000,1742812.0000,1741348.0000,1737601.0000,1745126.0000,1742281.0000,1740217.0000,1737702.0000,1741108.0000,1741780.0000,1739686.0000,1761497.0000,1741479.0000,1740607.0000,1741489.0000,1738934.0000,1744835.0000,1743704.0000,1737672.0000,1740497.0000,1741128.0000,1743303.0000,1741178.0000,1744324.0000,1742962.0000,1743092.0000,1736981.0000,1745447.0000,1743442.0000,1744685.0000,1738143.0000,1742230.0000,1740858.0000,1743814.0000,1738343.0000,1745116.0000,1740928.0000,1795051.0000,1738313.0000,1741469.0000,1743262.0000,1740928.0000,1738413.0000,1743282.0000,1739916.0000,1740537.0000,1737552.0000,1743262.0000,1742481.0000,1742912.0000,1738454.0000" -benchmark independent task pattern with 100 tasks,task generation,100,1,833731100,7694733.0300,7592250.6300,7805528.3700,543973.7539,506919.8823,580708.3103,"benchmark,group:system,indep-tasks","7292621.0000,7248257.0000,8703496.0000,8385573.0000,8494089.0000,8435537.0000,8552549.0000,8445096.0000,8519928.0000,8386975.0000,8519406.0000,8384782.0000,8496754.0000,8361557.0000,8542150.0000,8408917.0000,8515870.0000,8363642.0000,8353362.0000,8210291.0000,8388578.0000,8231592.0000,8339415.0000,8282778.0000,8284141.0000,8269784.0000,8346629.0000,8206103.0000,8374061.0000,8266738.0000,8300441.0000,8236591.0000,8350917.0000,8227784.0000,8344485.0000,8269303.0000,8377578.0000,8247732.0000,8071036.0000,7189186.0000,7270459.0000,7167614.0000,7271801.0000,7184577.0000,7278795.0000,7188785.0000,7353777.0000,7186550.0000,7322077.0000,7207520.0000,7298782.0000,7215314.0000,7278475.0000,7185348.0000,7320113.0000,7207049.0000,7280227.0000,7205596.0000,7310615.0000,7228921.0000,7279106.0000,7286269.0000,7323690.0000,7235002.0000,7302540.0000,7225083.0000,7278524.0000,7213281.0000,7320945.0000,7305546.0000,7413741.0000,7305396.0000,7383944.0000,7334441.0000,7362544.0000,7323319.0000,7355070.0000,7262955.0000,7430603.0000,7283724.0000,7353065.0000,7301619.0000,7316346.0000,7231986.0000,7281029.0000,7183905.0000,7322999.0000,7225414.0000,7322148.0000,7228880.0000,7300246.0000,8857618.0000,7324512.0000,7234922.0000,7317698.0000,7236094.0000,7282061.0000,7227046.0000,7272533.0000,7239340.0000" -benchmark independent task pattern with 500 tasks,task generation,100,1,5048057500,47426503.4400,46850894.4900,48021523.6000,2973686.1475,2847603.1499,3098762.0479,"benchmark,group:system,indep-tasks","50575825.0000,50789399.0000,47377842.0000,44265483.0000,44278147.0000,44264291.0000,44465492.0000,44317351.0000,44315448.0000,44311991.0000,44278197.0000,46093007.0000,50396995.0000,50625038.0000,50356419.0000,50580233.0000,51782271.0000,50870343.0000,50549905.0000,50543243.0000,46861664.0000,44326509.0000,50525208.0000,49388504.0000,50649414.0000,50544766.0000,48339796.0000,44874097.0000,44693825.0000,44330587.0000,45798129.0000,44331508.0000,44319356.0000,47203342.0000,51488124.0000,51396751.0000,49344250.0000,44410718.0000,44290410.0000,46235377.0000,50831619.0000,51525084.0000,51017431.0000,50164375.0000,44290591.0000,44359632.0000,44270613.0000,44540124.0000,44653879.0000,44286794.0000,44336698.0000,44423893.0000,44281974.0000,44391753.0000,44824633.0000,44901840.0000,44782342.0000,44490139.0000,44331438.0000,44425807.0000,44527820.0000,46897943.0000,50877597.0000,50540057.0000,50682287.0000,49465921.0000,44326018.0000,44560473.0000,44398205.0000,44335045.0000,44431418.0000,44517220.0000,44329124.0000,44255394.0000,44307072.0000,46463980.0000,51129164.0000,50577859.0000,50680764.0000,50549365.0000,46728803.0000,44433381.0000,44330977.0000,46096263.0000,51441746.0000,50797274.0000,50628013.0000,45533617.0000,48935806.0000,50766276.0000,51491520.0000,51101351.0000,50559413.0000,50569543.0000,50561377.0000,50598367.0000,50876194.0000,50569081.0000,50692105.0000,50566597.0000" -benchmark independent task pattern with 2500 tasks,task generation,100,1,22420990100,234107477.5900,231471572.0000,236712061.0700,13434891.1311,12723767.7479,14162627.2601,"benchmark,group:system,indep-tasks","249212954.0000,249904855.0000,250436220.0000,249275690.0000,238856841.0000,216855888.0000,218264138.0000,240972963.0000,245464326.0000,217960863.0000,220187995.0000,217182247.0000,232434197.0000,243750698.0000,248015733.0000,247995814.0000,224603183.0000,232722033.0000,249411488.0000,251776672.0000,249765850.0000,248036071.0000,250227515.0000,246816470.0000,245761250.0000,245879614.0000,249211599.0000,234200205.0000,218034303.0000,243573202.0000,247545071.0000,251803402.0000,250055700.0000,244116291.0000,217122475.0000,221449928.0000,219120972.0000,230811743.0000,231435244.0000,216601027.0000,216204044.0000,219827803.0000,243042857.0000,218196381.0000,219788719.0000,231107984.0000,246996331.0000,247748307.0000,249541395.0000,248782026.0000,249684646.0000,226032053.0000,220091663.0000,247243109.0000,231645804.0000,233115329.0000,217968568.0000,218272265.0000,218376041.0000,243530451.0000,217236041.0000,220314916.0000,220306030.0000,225485407.0000,246874040.0000,248223668.0000,251768587.0000,224737760.0000,238246385.0000,250207198.0000,252184616.0000,249510517.0000,241171280.0000,216514523.0000,216223171.0000,215882374.0000,242194961.0000,221486698.0000,220308865.0000,220700728.0000,227903181.0000,246180816.0000,249508143.0000,251369030.0000,248678952.0000,236669226.0000,218669418.0000,218325186.0000,216322599.0000,244435678.0000,217598639.0000,218138692.0000,217967528.0000,230563423.0000,230516775.0000,218472775.0000,220330426.0000,218012232.0000,241319752.0000,246139017.0000" -benchmark stencil: 1D 50 iters oversub 1,iterations,100,1,287319600,3026920.8300,3022506.4200,3031379.6600,22696.6726,20598.6967,26319.6995,"benchmark,group:system,stencil","3048697.0000,3021806.0000,3031564.0000,3005845.0000,2996187.0000,3002830.0000,2999334.0000,3050751.0000,2998652.0000,2973675.0000,3003421.0000,2996958.0000,3002830.0000,3045851.0000,2987621.0000,2993663.0000,3051793.0000,3037916.0000,3072672.0000,3023940.0000,3029951.0000,3031314.0000,3048317.0000,2996357.0000,3052645.0000,3022818.0000,3000847.0000,2998171.0000,3050951.0000,3000175.0000,3048537.0000,3020834.0000,3050931.0000,3024431.0000,3050119.0000,2997761.0000,3047946.0000,3026905.0000,3000496.0000,2995797.0000,3001768.0000,3026174.0000,3048857.0000,3029400.0000,3030132.0000,3027707.0000,3030141.0000,3024221.0000,3026315.0000,3029530.0000,3036945.0000,3009894.0000,3004333.0000,3034510.0000,3027778.0000,3052103.0000,3050931.0000,3026184.0000,3028849.0000,3056592.0000,3021866.0000,3002930.0000,3020434.0000,3052153.0000,3022918.0000,3001447.0000,2995867.0000,3052664.0000,3023659.0000,3030142.0000,3033197.0000,3051442.0000,3048576.0000,3048747.0000,3047725.0000,3051272.0000,3047705.0000,3049909.0000,3019642.0000,3006607.0000,3020643.0000,3055059.0000,3018019.0000,3051753.0000,3048737.0000,3022788.0000,3050431.0000,2999924.0000,3095897.0000,3021696.0000,3051993.0000,3047465.0000,3049238.0000,3048547.0000,2988182.0000,3000335.0000,3047434.0000,2997881.0000,3004233.0000,2999253.0000" -benchmark stencil: 1D 500 iters oversub 1,iterations,100,1,2953266700,29419664.1100,29098496.3400,29724708.6600,1595885.0865,1488856.1231,1713679.4451,"benchmark,group:system,stencil","30629497.0000,32422034.0000,30799258.0000,30658611.0000,30631821.0000,30704689.0000,29121619.0000,27751281.0000,27682921.0000,26970251.0000,26828882.0000,27558796.0000,27397490.0000,27340492.0000,28328505.0000,30669894.0000,30578890.0000,30583499.0000,30564965.0000,30665705.0000,30690592.0000,28718144.0000,27508361.0000,26475783.0000,26865401.0000,26785760.0000,26791732.0000,26821248.0000,26823252.0000,27268045.0000,27409392.0000,27522868.0000,27095428.0000,27648727.0000,27658134.0000,28099881.0000,27766009.0000,28705981.0000,30700892.0000,30617624.0000,30685001.0000,30529647.0000,30680193.0000,30691383.0000,28679220.0000,27658024.0000,27530983.0000,27647274.0000,27532476.0000,27806165.0000,30159295.0000,30707335.0000,30728304.0000,30552591.0000,30635468.0000,30605862.0000,29152898.0000,29751904.0000,30690973.0000,30637282.0000,30777657.0000,30652931.0000,30682677.0000,30657369.0000,30681436.0000,30734195.0000,30634717.0000,30653292.0000,30632963.0000,30655455.0000,30612605.0000,30839294.0000,30915348.0000,30955495.0000,31001462.0000,30910950.0000,30808195.0000,30577879.0000,30250929.0000,27749457.0000,27534419.0000,27716916.0000,27577010.0000,27622427.0000,27630853.0000,27173446.0000,27651251.0000,28829845.0000,30850134.0000,30308047.0000,30354826.0000,31006622.0000,30930377.0000,31065283.0000,31103095.0000,31002453.0000,31030397.0000,30858190.0000,30792585.0000,30619297.0000" -benchmark stencil: 1D 50 iters oversub 3,iterations,100,1,614808100,6581025.2600,6551246.3200,6592683.4700,88680.7090,44384.3815,186529.6026,"benchmark,group:system,stencil","6589408.0000,6576304.0000,6599798.0000,6681503.0000,6634143.0000,6665563.0000,6642989.0000,6625366.0000,6613124.0000,6667456.0000,6632971.0000,6658249.0000,6607332.0000,6671624.0000,6635887.0000,6601100.0000,6656836.0000,6575602.0000,6547258.0000,6533242.0000,6575843.0000,6656235.0000,6574981.0000,6550425.0000,6604116.0000,6558049.0000,6588236.0000,6502664.0000,6560334.0000,6570272.0000,6570573.0000,6541227.0000,6585030.0000,6587254.0000,6533503.0000,6619215.0000,6511881.0000,6476635.0000,5826021.0000,6472046.0000,6539955.0000,6631919.0000,6541027.0000,6617732.0000,6527080.0000,6634935.0000,6552388.0000,6637260.0000,6521399.0000,6578577.0000,6600970.0000,6628773.0000,6599347.0000,6558480.0000,6588707.0000,6549753.0000,6543281.0000,6642850.0000,6525828.0000,6614145.0000,6537079.0000,6620247.0000,6526299.0000,6574400.0000,6620156.0000,6567447.0000,6647819.0000,6588316.0000,6584489.0000,6614646.0000,6523794.0000,6572366.0000,6545735.0000,6591021.0000,6550946.0000,6607112.0000,6537801.0000,6579339.0000,6607653.0000,6561245.0000,6532401.0000,6597273.0000,6552328.0000,6652377.0000,6643440.0000,6666965.0000,6574120.0000,6663369.0000,6593907.0000,6650705.0000,6617602.0000,6672696.0000,6587705.0000,6605048.0000,6574379.0000,6570743.0000,6588918.0000,6562307.0000,6600079.0000,6523553.0000" -benchmark stencil: 1D 500 iters oversub 3,iterations,100,1,5988102000,63289155.1900,62549620.5900,64048377.5100,3819094.8895,3661575.7080,3999558.8917,"benchmark,group:system,stencil","60645613.0000,58708691.0000,66924334.0000,67935029.0000,68331741.0000,67259419.0000,66525488.0000,67957292.0000,68015572.0000,66559763.0000,66519226.0000,67211038.0000,66907331.0000,66748120.0000,67065071.0000,67999381.0000,68124630.0000,66521210.0000,66945785.0000,68719106.0000,68480764.0000,66617142.0000,66513926.0000,67962882.0000,68219569.0000,66500581.0000,58596950.0000,60067668.0000,59902825.0000,59197548.0000,59122355.0000,59814116.0000,61509800.0000,58746613.0000,58890626.0000,60680719.0000,60080050.0000,58626836.0000,58690556.0000,62351807.0000,68187980.0000,66503106.0000,65633377.0000,60622228.0000,60081233.0000,59290103.0000,59059486.0000,59783148.0000,59968890.0000,58854217.0000,58768134.0000,60084249.0000,59987184.0000,58582452.0000,58738297.0000,64190823.0000,68087549.0000,66592956.0000,64611470.0000,60090731.0000,59959172.0000,59105764.0000,59194181.0000,60005459.0000,59871875.0000,60149192.0000,58812338.0000,60532047.0000,60341917.0000,58573385.0000,58672924.0000,60006871.0000,67200247.0000,66683568.0000,66446348.0000,64211461.0000,67212390.0000,67021127.0000,67174779.0000,66948389.0000,68023588.0000,65614331.0000,67160632.0000,68403498.0000,67968183.0000,66613314.0000,66441288.0000,68100554.0000,68014982.0000,66576255.0000,59334567.0000,59902233.0000,60451856.0000,59255598.0000,58709192.0000,59873820.0000,61535199.0000,59044148.0000,59102657.0000,60751404.0000" -benchmark stencil: 2D 30 iters oversub 1,iterations,100,1,449141200,4795160.3500,4789814.8600,4800558.5800,27271.7733,23970.9641,31621.8662,"benchmark,group:system,stencil","4797722.0000,4828200.0000,4807230.0000,4769249.0000,4802992.0000,4806399.0000,4816197.0000,4798755.0000,4778646.0000,4786090.0000,4793054.0000,4816939.0000,4812620.0000,4755412.0000,4769989.0000,4745874.0000,4791691.0000,4778786.0000,4792212.0000,4761624.0000,4823351.0000,4840193.0000,4791029.0000,4808081.0000,4751224.0000,4765992.0000,4793735.0000,4770911.0000,4785359.0000,4775220.0000,4819393.0000,4795498.0000,4837026.0000,4813673.0000,4758498.0000,4770250.0000,4799475.0000,4822930.0000,4791200.0000,4794606.0000,4750563.0000,4818842.0000,4803513.0000,4724203.0000,4797331.0000,4774088.0000,4783866.0000,4782634.0000,4812190.0000,4753648.0000,4728180.0000,4755793.0000,4821097.0000,4779147.0000,4771893.0000,4814775.0000,4774218.0000,4766613.0000,4766052.0000,4802160.0000,4792062.0000,4748098.0000,4820556.0000,4814053.0000,4815907.0000,4785639.0000,4822178.0000,4790147.0000,4814434.0000,4789877.0000,4781973.0000,4792823.0000,4774117.0000,4816908.0000,4821748.0000,4856404.0000,4801740.0000,4817069.0000,4809104.0000,4822740.0000,4812510.0000,4860030.0000,4803333.0000,4814123.0000,4804955.0000,4813802.0000,4859079.0000,4839502.0000,4852356.0000,4809144.0000,4809194.0000,4807761.0000,4785068.0000,4784147.0000,4756905.0000,4795027.0000,4758137.0000,4757266.0000,4807080.0000,4800908.0000" -benchmark stencil: 2D 300 iters oversub 1,iterations,100,1,4408019400,46945754.2700,46428633.3200,47435461.1300,2571680.2611,2434670.7972,2708413.6877,"benchmark,group:system,stencil","49222860.0000,49720644.0000,48789288.0000,49324434.0000,48963939.0000,49456985.0000,49432378.0000,49418091.0000,48828122.0000,48309038.0000,47999442.0000,49259861.0000,48437642.0000,49742025.0000,49414023.0000,49647416.0000,49052758.0000,49414825.0000,48891883.0000,49329343.0000,48946537.0000,49162106.0000,49333230.0000,49774426.0000,48732802.0000,44238763.0000,43896544.0000,44343231.0000,43470197.0000,43749226.0000,43488691.0000,47768744.0000,48300953.0000,49646333.0000,49215787.0000,49397602.0000,48876595.0000,49337288.0000,48833994.0000,49293905.0000,50808206.0000,49272875.0000,48728864.0000,46287777.0000,43347925.0000,43749976.0000,43596837.0000,44163741.0000,44133273.0000,49256455.0000,49124645.0000,49339272.0000,47922667.0000,47637246.0000,43488141.0000,43785233.0000,43491106.0000,44314427.0000,43764203.0000,43806354.0000,43498961.0000,43856028.0000,43392048.0000,43790033.0000,43397529.0000,43880053.0000,43369776.0000,43759135.0000,43330672.0000,43805773.0000,45021267.0000,49253840.0000,49072926.0000,49285670.0000,48896041.0000,45184425.0000,43917093.0000,44328093.0000,43924437.0000,44198256.0000,43839757.0000,44272127.0000,44171396.0000,51053641.0000,49085751.0000,49445664.0000,48828023.0000,47244000.0000,43868552.0000,44383398.0000,43869914.0000,44265934.0000,46673869.0000,49633920.0000,48789720.0000,49351835.0000,47872191.0000,48582306.0000,49148931.0000,48551268.0000" -benchmark stencil: 2D 30 iters oversub 3,iterations,100,1,1518784600,14153889.9900,14052622.6400,14276670.2800,567539.7978,489450.9521,632497.1915,"benchmark,group:system,stencil","13844451.0000,13843759.0000,15269071.0000,15148141.0000,15150917.0000,15225638.0000,15191353.0000,15173750.0000,15188428.0000,15139135.0000,13880839.0000,13818831.0000,13807310.0000,13801449.0000,13901559.0000,13800217.0000,13908843.0000,13837347.0000,13884096.0000,13904264.0000,13893974.0000,13808823.0000,13880639.0000,13826256.0000,13883044.0000,13767655.0000,13863958.0000,13848989.0000,13814905.0000,13833230.0000,13821527.0000,13763096.0000,13849220.0000,13869228.0000,13868155.0000,13808733.0000,15448952.0000,13799615.0000,13863226.0000,13756814.0000,13845883.0000,13744140.0000,13845091.0000,13786440.0000,13899695.0000,13797391.0000,13855972.0000,13763708.0000,13924452.0000,13796620.0000,13816247.0000,13892782.0000,13833239.0000,13806378.0000,13874678.0000,13793724.0000,13872313.0000,13775540.0000,13863257.0000,13840292.0000,13860051.0000,13781521.0000,13859298.0000,13795969.0000,13856554.0000,13793464.0000,13855592.0000,13821477.0000,13842106.0000,13765221.0000,13885879.0000,14743795.0000,15140136.0000,15140607.0000,15200471.0000,15150135.0000,15206573.0000,15161858.0000,15239876.0000,15175975.0000,15157089.0000,14417687.0000,15274911.0000,15161988.0000,15253041.0000,15179501.0000,14029712.0000,13751504.0000,13874257.0000,13814453.0000,13913230.0000,13787542.0000,13866933.0000,13830073.0000,13897070.0000,13814774.0000,13874787.0000,13840823.0000,13899404.0000,13856383.0000" -benchmark stencil: 2D 300 iters oversub 3,iterations,100,1,13601537000,146586347.9400,145305567.4600,147870856.9700,6515744.4299,6215678.9147,6834106.3177,"benchmark,group:system,stencil","139862802.0000,141034041.0000,151256538.0000,142735386.0000,139471539.0000,139053837.0000,141061693.0000,139183283.0000,139277171.0000,150692578.0000,152457033.0000,154448689.0000,153893997.0000,154024735.0000,154649369.0000,154040795.0000,150545861.0000,139539608.0000,140066627.0000,141194575.0000,139408129.0000,139625391.0000,142820377.0000,152524070.0000,141097271.0000,139257534.0000,137210102.0000,138901338.0000,139586467.0000,147523582.0000,149527250.0000,139102891.0000,140022544.0000,141456492.0000,139391898.0000,139777029.0000,146244637.0000,153432042.0000,153535748.0000,154036287.0000,153921720.0000,154134823.0000,145673495.0000,139297379.0000,148462392.0000,154295608.0000,155903095.0000,154192093.0000,154125837.0000,154037019.0000,153889178.0000,148186959.0000,154123683.0000,153944403.0000,153927832.0000,154339201.0000,154064240.0000,147947316.0000,139448936.0000,140180153.0000,141300867.0000,139356581.0000,139940247.0000,146911983.0000,152637315.0000,153891763.0000,154255893.0000,154173006.0000,153927101.0000,153735356.0000,153986653.0000,140955813.0000,139709370.0000,141712026.0000,139435792.0000,139451521.0000,138378298.0000,153248784.0000,144894398.0000,139615142.0000,139283913.0000,139317778.0000,137123449.0000,142384080.0000,153926289.0000,142178961.0000,139604722.0000,139418058.0000,144874220.0000,153809878.0000,140752568.0000,148931040.0000,152141866.0000,154310738.0000,153671657.0000,151576765.0000,153576446.0000,154675239.0000,149147210.0000,139345410.0000" -benchmark rsim: 64 tris 50 iters,iterations,100,1,1066011000,10406915.9600,10312620.5400,10488146.6100,444305.4252,389630.6152,484823.4100,"benchmark,group:system,rsim","9651262.0000,9674506.0000,10859362.0000,10627453.0000,10689640.0000,10676756.0000,10670424.0000,10713366.0000,10699299.0000,10700761.0000,10653211.0000,10683269.0000,10651167.0000,10695371.0000,10669893.0000,10641299.0000,10697516.0000,10630208.0000,10629366.0000,10736639.0000,10643674.0000,10646268.0000,10684792.0000,10674862.0000,10645687.0000,10714187.0000,10658321.0000,10649134.0000,10652150.0000,10696253.0000,10697175.0000,10657149.0000,10640598.0000,10671185.0000,10649845.0000,10692756.0000,10668831.0000,10637241.0000,10652059.0000,10698878.0000,10618446.0000,10688529.0000,10628585.0000,10774431.0000,10688018.0000,10711502.0000,10693698.0000,10634556.0000,10645066.0000,10627783.0000,10619488.0000,10724136.0000,10602796.0000,10656858.0000,10682136.0000,10658602.0000,10661647.0000,10643303.0000,10678369.0000,10677578.0000,10642461.0000,10701744.0000,10743994.0000,10682817.0000,10690882.0000,10629055.0000,10659222.0000,10635848.0000,10653132.0000,10680172.0000,10656617.0000,10648272.0000,10654844.0000,10694560.0000,10650797.0000,10528445.0000,9639179.0000,9610776.0000,9680097.0000,9666271.0000,9661452.0000,9680467.0000,9668746.0000,9607660.0000,9654057.0000,9621336.0000,9611878.0000,9648998.0000,9633989.0000,9674736.0000,9692731.0000,9636965.0000,9657564.0000,9680227.0000,9697831.0000,9693512.0000,9700896.0000,9623891.0000,9732706.0000,9665429.0000" -benchmark rsim: 1024 tris 50 iters,iterations,100,1,1075934400,10423343.1200,10324721.4400,10512831.2200,479179.1682,433394.8942,512801.4885,"benchmark,group:system,rsim","10744815.0000,10715239.0000,11092294.0000,9910473.0000,10754834.0000,10712404.0000,10761787.0000,10735748.0000,10126103.0000,10685332.0000,10738223.0000,10792105.0000,10729376.0000,10820579.0000,10816852.0000,10414329.0000,10285634.0000,10731800.0000,10757610.0000,10747821.0000,10684140.0000,10813195.0000,10750886.0000,10802885.0000,10670624.0000,10753090.0000,10750236.0000,10784340.0000,10713085.0000,10773169.0000,10831390.0000,10736709.0000,10726209.0000,10776214.0000,10732202.0000,10782937.0000,10768420.0000,10670545.0000,10806522.0000,10744735.0000,10747300.0000,10815229.0000,10732562.0000,10815719.0000,10716501.0000,10732632.0000,10734436.0000,10766065.0000,10734786.0000,10703957.0000,10751507.0000,10732251.0000,10733103.0000,10699279.0000,10757058.0000,10743523.0000,10722062.0000,10738203.0000,10766035.0000,10796843.0000,10739805.0000,10742591.0000,10752690.0000,10762299.0000,10761957.0000,10738363.0000,10836479.0000,10048735.0000,9693102.0000,9688653.0000,9696949.0000,9701278.0000,9676199.0000,9713901.0000,9664718.0000,9717337.0000,9707388.0000,9684155.0000,9714352.0000,9674907.0000,9734290.0000,9675638.0000,9669767.0000,9653196.0000,9679316.0000,9669456.0000,9654418.0000,9672974.0000,9642074.0000,9698932.0000,9712559.0000,9720564.0000,9702339.0000,9730022.0000,9698512.0000,10218567.0000,10731730.0000,10690763.0000,10783148.0000,9796247.0000" -benchmark rsim: 64 tris 500 iters,iterations,100,1,11448174300,106426465.0300,105488424.2700,107377813.6800,4831493.3570,4610279.9705,5070581.4992,"benchmark,group:system,rsim","110287441.0000,111870081.0000,113114960.0000,112897328.0000,110737524.0000,102559112.0000,102135919.0000,102508175.0000,100788826.0000,101137327.0000,111137291.0000,112834649.0000,110693350.0000,111424896.0000,107713021.0000,102610809.0000,100775581.0000,101112760.0000,103956981.0000,112084808.0000,111164603.0000,111492494.0000,108842211.0000,112074528.0000,110685415.0000,111397455.0000,112942784.0000,112914169.0000,111081346.0000,111877304.0000,112822836.0000,112810464.0000,108970204.0000,101073285.0000,102078671.0000,102309729.0000,102576074.0000,101089576.0000,102330147.0000,110822886.0000,111332272.0000,110632755.0000,111451908.0000,102316762.0000,100837028.0000,101203132.0000,102204489.0000,102001294.0000,100600288.0000,100896890.0000,112751171.0000,111844943.0000,100942216.0000,101261943.0000,102080665.0000,102466897.0000,102627792.0000,101109664.0000,102284030.0000,102359153.0000,110758483.0000,107725024.0000,103541544.0000,106574773.0000,111186455.0000,111957226.0000,112995394.0000,113024870.0000,111061719.0000,111755875.0000,109382386.0000,102533854.0000,100609466.0000,101375628.0000,112591318.0000,113397075.0000,103856190.0000,101039942.0000,108709951.0000,113057541.0000,104676936.0000,101329080.0000,102297987.0000,102368170.0000,100930875.0000,101098614.0000,102140438.0000,105219535.0000,111229627.0000,108597858.0000,102313947.0000,102187047.0000,100553029.0000,102893455.0000,102415519.0000,102572287.0000,100785109.0000,101037357.0000,111754271.0000,112168336.0000" -benchmark rsim: 1024 tris 500 iters,iterations,100,1,11602547000,106272639.7300,105297825.8200,107285491.8000,5076558.2162,4815876.8304,5340317.6443,"benchmark,group:system,rsim","102739534.0000,100201043.0000,112546213.0000,113083922.0000,111808214.0000,110870656.0000,114442908.0000,113104351.0000,111894607.0000,111100191.0000,113128907.0000,112560289.0000,104889820.0000,100025228.0000,101608851.0000,102246890.0000,101150782.0000,100271776.0000,101766860.0000,109463008.0000,111993195.0000,103200348.0000,101995003.0000,102343222.0000,101056123.0000,101900323.0000,101987248.0000,102380523.0000,101461581.0000,106878349.0000,111837359.0000,111369262.0000,111948900.0000,111322363.0000,112659828.0000,113328205.0000,112248769.0000,111125500.0000,112938436.0000,111700299.0000,101171241.0000,100419697.0000,101722836.0000,103529031.0000,101163716.0000,100083380.0000,101685737.0000,104155708.0000,112155041.0000,109050446.0000,101938536.0000,102399099.0000,101444779.0000,100741266.0000,102192948.0000,102336180.0000,101322167.0000,108612305.0000,112866200.0000,103892769.0000,101524571.0000,100401071.0000,103634671.0000,102048584.0000,111290513.0000,111104831.0000,112802879.0000,113172971.0000,111390873.0000,110339600.0000,112959196.0000,113387227.0000,111979559.0000,111048384.0000,113024529.0000,113574562.0000,112113022.0000,105189618.0000,102171137.0000,102661306.0000,101767121.0000,101860237.0000,102186856.0000,102258973.0000,101612928.0000,103641264.0000,112972721.0000,109835354.0000,100943209.0000,100346588.0000,101730501.0000,102197868.0000,101454479.0000,100393918.0000,104521091.0000,113184423.0000,108830710.0000,100051108.0000,102071538.0000,102122014.0000" +benchmark intrusive graph dependency handling with N nodes - 1,creating nodes,100,6134,2453600,4.4945,4.4801,4.5307,0.1014,0.0017,0.1845,"benchmark,group:graph-nodes","4.4799,4.4785,4.4816,4.4897,4.4816,4.4816,4.4816,4.4799,4.4783,4.4799,4.4799,4.4799,4.4799,4.4816,4.4783,4.4817,4.4799,4.4799,4.4799,4.4783,4.4817,4.4799,4.4799,4.4799,4.4799,4.4816,4.4799,4.4799,4.4799,4.4799,4.4816,4.4816,5.2167,4.4799,4.4799,4.4783,4.4801,4.4799,4.4799,4.4799,4.4799,4.4801,4.4799,4.4799,4.4799,4.4799,4.4799,4.4799,4.4816,4.4783,4.4801,4.4799,4.4783,4.4799,4.4801,4.4799,4.4799,4.4799,4.4799,4.4801,4.4816,4.4799,4.4799,4.4799,4.4799,4.4799,4.4799,4.4799,5.1922,4.4816,4.4799,4.4799,4.4801,4.4799,4.4816,4.4799,4.4783,4.4799,4.4799,4.4799,4.4799,4.4801,4.4799,4.4799,4.4799,4.4799,4.4801,4.4767,4.4702,4.4799,4.4816,4.4783,4.4799,4.4816,4.4799,4.4799,4.4799,4.4799,4.4799,4.4799" +benchmark intrusive graph dependency handling with N nodes - 1,creating and adding dependencies,100,1133,2492600,21.0882,20.8040,22.3075,2.5409,0.3800,5.9676,"benchmark,group:graph-nodes","20.6911,23.9982,21.0000,20.7793,20.8411,20.7696,20.7696,20.7352,20.7705,20.8402,20.8402,20.7705,20.7176,20.7255,20.6470,20.8058,20.7696,45.8844,20.8323,20.6461,20.7264,20.7970,20.7873,20.7167,20.6558,20.8226,20.7529,20.7176,20.7167,20.6470,20.8323,20.8314,20.7793,20.7264,20.7255,20.6470,20.7255,20.7079,20.7617,20.8323,20.7696,20.8411,20.8323,20.7882,20.7440,20.6549,20.8235,20.7520,20.7167,20.7264,20.7079,20.7705,20.8323,20.8411,20.7970,20.7343,20.7705,20.7352,24.5455,20.7617,20.7264,20.7255,20.6470,20.8323,20.7608,20.7705,20.8323,20.7882,20.6990,20.8058,20.7793,20.7529,20.7255,20.7705,20.8411,20.8323,20.7961,20.7264,20.7793,20.8500,20.7520,20.7793,20.8323,20.7882,20.8147,20.8314,20.7793,20.7176,20.7343,20.7705,20.8411,20.8323,20.7882,20.7432,20.6470,20.7167,20.7970,20.7793,20.7529,20.7961" +benchmark intrusive graph dependency handling with N nodes - 1,adding and removing dependencies,100,1613,2419500,15.5314,15.4796,15.6619,0.3645,0.0108,0.6663,"benchmark,group:graph-nodes","15.4836,15.4532,15.4966,15.4836,15.4526,15.4836,15.4836,15.4904,15.4898,15.4780,15.4836,15.4842,15.4526,15.4836,15.4898,15.4836,15.4836,15.4836,15.4780,15.4588,15.4780,15.4836,15.4842,15.4836,15.4898,15.4774,15.4588,15.4904,15.4774,18.1550,15.4774,15.4780,15.4774,15.4842,15.4526,15.4836,15.4836,15.4836,15.4718,15.4836,15.4842,15.4898,15.4594,15.4836,15.4842,15.4898,15.4898,15.4836,15.4774,15.4532,15.4836,15.4842,15.4774,15.4842,15.4836,15.4842,15.4526,15.4774,15.4842,15.4774,15.4842,15.4774,15.4842,15.4588,15.4904,15.4836,15.4898,15.4774,15.4836,18.0062,15.4836,15.4774,15.4588,15.4898,15.4780,15.4836,15.4842,15.4774,15.4842,15.4588,15.4836,15.4842,15.4836,15.4780,15.4836,15.4842,15.4526,15.4842,15.4836,15.4898,15.4836,15.4774,15.4904,15.4526,15.4842,15.4774,15.4842,15.4898,15.4836,15.4836" +benchmark intrusive graph dependency handling with N nodes - 1,checking for dependencies,100,14704,1470400,1.7113,1.7054,1.7254,0.0448,0.0229,0.0749,"benchmark,group:graph-nodes","1.7054,1.7053,1.7081,1.7053,1.7054,1.7054,1.7053,1.6904,1.7053,1.7054,1.7053,1.7054,1.7054,1.7053,1.9282,1.6904,1.7053,1.7061,1.7053,1.7054,1.7054,1.7053,1.7054,1.6904,1.7054,1.7054,1.7053,1.7054,1.7054,1.7053,1.6904,1.7053,1.7054,1.7053,1.7061,1.7061,1.7053,1.6999,1.6944,1.7054,1.7054,1.7053,1.7061,1.7053,1.7053,1.6904,1.7054,1.7054,1.7053,1.7054,1.7061,1.7053,1.6904,1.7053,1.9445,1.7067,1.7061,1.7053,1.7053,1.7054,1.7053,1.6904,1.7053,1.7054,1.7054,1.7053,1.7054,1.7054,1.6904,1.7053,1.7053,1.7054,1.7053,1.7054,1.7054,1.6904,1.7054,1.7053,1.7054,1.7054,1.7053,1.7054,1.7053,1.6904,1.7053,1.7054,1.7054,1.7053,1.7054,1.7054,1.6904,1.7053,1.7060,2.0133,1.7067,1.7054,1.7156,1.7053,1.7054,1.6904" +benchmark intrusive graph dependency handling with N nodes - 10,creating nodes,100,642,2503800,30.3723,30.3093,30.6835,0.6205,0.0076,1.4806,"benchmark,group:graph-nodes","30.3022,30.3193,30.3972,30.3193,30.3037,30.3193,30.3037,30.3037,30.3193,30.3037,30.3193,30.3037,30.3037,30.3193,30.3037,30.3037,30.3037,30.3037,30.3193,30.3037,30.3037,30.3193,30.3037,30.3193,30.3037,30.3037,30.3193,30.3037,30.3193,30.3037,30.3193,30.3037,30.3037,30.3193,30.3037,30.3193,30.3193,30.3037,30.3193,30.3037,30.3037,30.3037,30.3037,30.3193,30.3022,30.3178,30.3178,30.3022,30.3178,30.3022,30.3178,30.3022,36.5452,30.3193,30.3193,30.3037,30.3193,30.3037,30.3193,30.3037,30.3037,30.3037,30.3037,30.3193,30.3037,30.3193,30.3037,30.3193,30.3037,30.3037,30.3037,30.3037,30.3193,30.3037,30.3193,30.3037,30.3037,30.3037,30.3037,30.3037,30.3037,30.3193,30.3037,30.3193,30.3037,30.3037,30.3037,30.3037,30.3037,30.3037,30.3193,30.3037,30.3193,30.3037,30.3037,30.3022,30.3022,30.3022,30.3022,30.3178" +benchmark intrusive graph dependency handling with N nodes - 10,creating and adding dependencies,100,116,2517200,226.7905,226.0723,228.5714,5.1741,0.8447,9.6226,"benchmark,group:graph-nodes","226.5345,225.8362,233.0948,226.6207,226.3621,225.7586,226.1034,225.9224,225.9224,226.2759,225.7586,226.1034,226.5345,226.4483,226.1810,225.8448,225.5862,226.0172,226.0172,225.8362,227.2241,227.3103,226.4397,226.3621,226.3621,225.5862,225.5000,225.2328,225.4138,225.7586,225.9224,225.7500,226.1034,258.0603,226.4483,226.6207,227.0517,225.9310,226.6207,226.0086,226.6207,226.4483,226.1897,226.1034,226.4483,226.1034,225.5776,225.7586,226.1034,225.6724,226.1034,226.0948,225.9310,226.1034,226.7931,226.6207,226.3621,226.4483,226.4483,225.6638,224.8966,226.0172,226.2759,226.0948,226.0086,225.8448,225.8448,226.0172,226.0086,225.8362,224.9828,266.5259,225.3190,226.2759,225.6724,225.9310,226.0948,226.1810,225.7586,226.0172,225.8448,225.8362,224.9741,225.7586,225.7586,225.7500,225.8448,225.5862,225.8448,225.4914,225.2414,225.6724,225.6638,224.9741,225.5000,225.9310,225.8362,225.8448,226.1034,225.9310" +benchmark intrusive graph dependency handling with N nodes - 10,adding and removing dependencies,100,121,2528900,209.7211,209.1531,211.1585,4.0525,0.4477,7.3860,"benchmark,group:graph-nodes","207.8182,208.7273,210.5537,209.0579,209.2231,209.2231,209.3058,209.2231,209.2231,209.0579,208.4793,209.3884,209.2231,209.2314,209.3058,209.1405,209.0579,208.9752,208.6446,209.3058,209.3884,209.3058,209.3058,209.3884,209.3058,209.3058,208.6446,209.1405,209.2231,209.1405,209.0579,237.0496,209.3058,209.3058,209.1405,208.7273,209.1405,209.2231,209.1405,209.2231,209.3058,209.0579,209.0579,208.3967,209.3058,209.4793,210.1322,209.9669,209.1405,209.3058,209.3884,208.6364,209.1405,209.3058,209.3884,209.2231,209.2231,209.3058,209.0579,208.3967,209.3058,210.6364,209.6364,209.3058,209.1405,209.0579,209.3058,208.6446,209.3884,209.1405,238.7769,209.3884,209.3058,209.3058,209.1405,209.0579,208.3967,209.3058,209.1405,209.0579,209.0579,209.0579,209.3058,209.9752,208.7273,209.4711,209.2231,209.0579,209.1405,209.2231,209.3058,208.7273,209.0579,209.0579,209.0579,209.1405,209.1405,208.8099,208.0579,207.2314" +benchmark intrusive graph dependency handling with N nodes - 10,checking for dependencies,100,1225,2450000,23.1707,23.0424,23.3966,0.8506,0.5551,1.3052,"benchmark,group:graph-nodes","22.9233,22.8090,22.8253,22.5886,22.7102,22.6939,22.6376,22.6294,22.6204,22.6131,22.5967,22.5878,22.5804,22.8498,27.4057,23.5771,23.5282,23.5371,23.5290,23.5363,23.5363,23.5698,23.5698,23.5371,23.5282,23.5282,23.5371,23.5698,23.5371,23.5282,23.5535,23.5535,23.5208,23.5282,23.5290,23.5371,23.5453,23.5282,23.5290,23.5290,23.5127,23.5853,23.5282,23.5371,23.5371,23.5290,24.0269,23.5290,23.7167,27.9616,22.7029,22.5804,22.8171,22.7110,22.6784,22.6449,22.6131,22.7029,22.7600,22.8580,22.6947,22.6694,22.6294,22.7110,22.7763,22.8580,22.7110,22.6784,22.6449,22.6122,22.8988,22.7518,22.8171,22.8090,22.8090,22.8090,22.9233,22.8090,22.8090,22.7029,22.8090,22.8090,22.8580,22.6531,26.8824,23.7331,23.1118,22.7273,22.7682,22.8171,22.8171,22.6865,22.7429,22.8090,22.7102,22.7510,22.7192,22.8171,22.8090,22.8090" +benchmark intrusive graph dependency handling with N nodes - 100,creating nodes,100,64,2515200,346.1900,344.6527,350.0692,11.3492,3.4058,21.1771,"benchmark,group:graph-nodes","344.2188,344.2188,349.5312,344.0625,344.2188,344.0625,344.2031,344.0625,344.2188,344.0625,344.0625,344.0625,344.0469,343.8906,344.0625,344.0625,344.0625,343.9062,344.0469,344.0625,344.0625,343.9062,344.0625,344.0625,410.5938,344.2031,344.3750,344.2188,344.3750,344.2188,344.3750,344.2188,344.3750,344.2031,344.3750,344.2188,344.3750,344.2188,344.3750,344.2188,344.3750,344.2031,344.3750,344.2188,344.3750,344.2188,344.3750,344.2188,344.3594,344.2031,344.3750,344.2188,344.3750,344.2188,344.3750,344.2188,344.3594,344.2031,344.3750,344.2188,344.3750,344.2188,344.3750,344.2188,344.3594,344.2188,344.3750,344.2188,344.3750,432.0312,377.7188,344.3750,344.3750,344.2188,344.3750,344.3750,344.3750,344.3594,344.3594,344.3750,344.3750,344.3750,344.3750,344.3750,344.3750,344.3750,344.2031,344.3750,344.3750,344.3750,344.3750,344.3750,344.3750,344.3750,344.3594,344.3750,344.3750,344.3750,344.3750,344.3750" +benchmark intrusive graph dependency handling with N nodes - 100,creating and adding dependencies,100,7,2802800,3731.5071,3715.0314,3770.4386,124.5219,65.3053,205.5054,"benchmark,group:graph-nodes","3712.4286,3708.1429,3799.7143,3726.8571,3706.7143,3711.0000,3716.8571,3701.0000,3705.2857,4406.7143,3716.7143,3706.8571,3715.2857,3715.2857,3714.0000,3711.0000,3713.8571,3724.0000,3709.5714,3709.7143,3701.0000,3716.7143,3732.5714,3726.7143,3709.7143,3711.0000,3721.1429,3721.0000,3709.5714,3714.0000,3713.8571,3716.8571,3723.8571,3706.7143,3715.4286,3715.2857,3712.5714,3702.4286,3708.1429,3711.0000,3711.1429,3715.2857,3708.1429,3709.5714,3716.7143,3708.1429,3713.8571,4534.0000,3841.2857,3689.5714,3705.4286,3699.5714,3691.0000,3705.2857,3712.4286,3696.7143,3693.8571,3691.0000,3701.0000,3698.1429,3708.2857,3699.5714,3711.0000,3713.8571,3701.0000,3699.5714,3699.5714,3703.8571,3705.4286,3699.5714,3706.7143,3721.1429,3698.1429,3705.2857,3709.5714,3705.4286,3698.1429,3702.4286,3708.1429,3688.1429,3712.5714,3692.4286,3703.8571,3696.7143,3699.5714,4342.1429,3699.5714,3695.4286,3706.7143,3708.1429,3703.8571,3706.8571,3711.0000,3709.5714,3704.0000,3702.4286,3703.8571,3692.4286,3711.0000,3701.0000" +benchmark intrusive graph dependency handling with N nodes - 100,adding and removing dependencies,100,6,2794200,4551.9200,4540.5583,4578.9083,83.3324,21.9542,148.2481,"benchmark,group:graph-nodes","4544.8333,4565.0000,4550.0000,4504.8333,4509.8333,4528.3333,4513.1667,4516.6667,4518.1667,4521.6667,4533.3333,4508.1667,4508.1667,4516.6667,4506.5000,4530.0000,4503.1667,4500.0000,4508.1667,4528.3333,4506.5000,4496.5000,4511.6667,4513.1667,4498.1667,4496.6667,4519.8333,4530.0000,4536.5000,4533.1667,4530.0000,4524.8333,4523.3333,4538.3333,4499.8333,4526.6667,5107.6667,4565.0000,4566.6667,4550.0000,4541.6667,4536.5000,4536.6667,4543.3333,4571.6667,4555.0000,4550.0000,4553.3333,4553.1667,4553.3333,4551.6667,4548.3333,4563.3333,4546.6667,4535.0000,4551.5000,4568.3333,4529.8333,4531.6667,4538.3333,4554.8333,4554.8333,4543.3333,4541.6667,4551.6667,4551.6667,4538.1667,4558.3333,4545.0000,4561.6667,4558.3333,4553.3333,4583.3333,5122.8333,4549.8333,4566.6667,4548.1667,4511.6667,4575.0000,4551.6667,4565.0000,4581.6667,4571.6667,4573.3333,4578.5000,4554.8333,4544.8333,4558.3333,4538.3333,4553.3333,4555.0000,4534.8333,4549.8333,4528.3333,4531.6667,4566.6667,4580.0000,4543.3333,4565.0000,4546.6667" +benchmark intrusive graph dependency handling with N nodes - 100,checking for dependencies,100,17,2633300,1626.5576,1620.6712,1639.7547,43.2862,22.0808,70.0701,"benchmark,group:graph-nodes","1615.2941,1607.0588,1609.4118,1610.0000,1617.0588,1614.7059,1620.0000,1618.8235,1620.0000,1618.8235,1621.8235,1619.4118,1620.5882,1618.8824,1621.7647,1615.8824,1622.4118,1625.2941,1623.0000,1627.0588,1627.1176,1620.5882,1622.3529,1624.1765,1622.3529,1624.7647,1626.4706,1831.0000,1624.7647,1624.7059,1621.8235,1634.1176,1626.4706,1627.1176,1624.7059,1621.7647,1620.6471,1631.7647,1627.1176,1628.2941,1622.3529,1623.5294,1624.1765,1615.2941,1625.2941,1624.7059,1612.9412,1616.4706,1621.8235,1624.7059,1625.9412,1630.0000,1625.9412,1624.7059,1625.3529,1624.7059,1624.1765,1622.3529,1633.5882,1624.1176,1621.8235,1621.1765,1622.9412,1887.5882,1624.7647,1611.7647,1616.4706,1615.2941,1614.1176,1612.3529,1607.5882,1621.2353,1608.8235,1612.3529,1610.5882,1615.8824,1615.2941,1615.2941,1617.7059,1630.5882,1613.5294,1612.3529,1608.7647,1606.4706,1605.8824,1608.8235,1619.4118,1604.7059,1610.5882,1612.9412,1614.7647,1610.0000,1612.3529,1615.8824,1615.8824,1604.7059,1610.5882,1612.3529,1614.1176,1886.4118" +benchmark task handling,generating and deleting tasks,100,1,588286900,5531151.7600,5436728.6100,5619410.6600,464219.0539,434858.5192,484793.4858,"benchmark,group:task-graph","5885866.0000,5896255.0000,4928401.0000,4932839.0000,4933340.0000,4937658.0000,4926758.0000,4937908.0000,4924243.0000,4938410.0000,4934112.0000,4936426.0000,4940263.0000,4931186.0000,4938159.0000,4948239.0000,4931076.0000,4944070.0000,4940895.0000,4945834.0000,4951244.0000,4996840.0000,4933741.0000,4942327.0000,4934793.0000,4941015.0000,4936767.0000,4939712.0000,4939582.0000,4937548.0000,4932669.0000,4945002.0000,4934042.0000,5026236.0000,4939452.0000,4939091.0000,4933330.0000,4940183.0000,4936005.0000,4938310.0000,5804652.0000,5875065.0000,5869725.0000,5873683.0000,5869936.0000,5866619.0000,5870226.0000,5870647.0000,5868353.0000,5871378.0000,5866910.0000,5871138.0000,5873062.0000,5878732.0000,5868223.0000,5870957.0000,5863714.0000,5899882.0000,5875265.0000,5873282.0000,5869335.0000,5877630.0000,5877670.0000,5884944.0000,5877540.0000,5877840.0000,5875046.0000,5871288.0000,6326481.0000,5901676.0000,5894111.0000,5892328.0000,5897167.0000,5902116.0000,5924209.0000,5910643.0000,5899331.0000,5903679.0000,5888230.0000,5904732.0000,5892348.0000,5898339.0000,5894482.0000,5901345.0000,5895504.0000,5903820.0000,5895995.0000,5899331.0000,5887298.0000,5897658.0000,5887288.0000,5919239.0000,5896927.0000,5897819.0000,5887779.0000,5893461.0000,5891556.0000,5900083.0000,5884453.0000,5903179.0000" +generating large task graphs,soup topology,100,1,31393000,370863.2900,370189.2000,372024.4800,4387.4215,3000.3143,7911.2006,"benchmark,group:task-graph","368467.0000,367865.0000,382022.0000,370881.0000,370610.0000,375450.0000,367675.0000,367856.0000,375920.0000,367185.0000,374688.0000,368196.0000,366533.0000,370991.0000,365881.0000,366703.0000,374128.0000,366523.0000,368697.0000,373436.0000,367875.0000,372605.0000,369689.0000,367024.0000,372594.0000,368497.0000,367314.0000,372795.0000,368807.0000,372605.0000,371252.0000,367434.0000,375450.0000,369469.0000,369218.0000,375490.0000,370069.0000,372434.0000,368918.0000,368667.0000,375029.0000,368246.0000,370000.0000,372514.0000,367555.0000,371362.0000,366904.0000,370390.0000,376011.0000,366773.0000,369529.0000,374568.0000,368507.0000,366753.0000,374298.0000,368366.0000,373105.0000,370480.0000,367905.0000,372123.0000,368717.0000,368286.0000,373677.0000,370370.0000,373757.0000,368236.0000,368186.0000,373656.0000,367825.0000,369068.0000,374508.0000,369659.0000,376281.0000,370250.0000,366493.0000,373817.0000,370751.0000,367875.0000,376662.0000,368788.0000,368005.0000,374679.0000,369568.0000,401470.0000,369769.0000,368296.0000,374127.0000,367736.0000,368286.0000,374899.0000,366973.0000,374197.0000,367996.0000,368857.0000,373877.0000,369108.0000,369569.0000,375499.0000,367013.0000,371212.0000" +generating large task graphs,chain topology,100,1,3767400,31235.4000,31082.0900,31527.7700,1057.5922,632.5497,1578.8811,"benchmark,group:task-graph","31077.0000,31057.0000,33852.0000,31277.0000,31147.0000,31066.0000,30936.0000,31187.0000,30986.0000,31037.0000,30987.0000,31057.0000,30997.0000,31037.0000,30967.0000,30976.0000,30986.0000,31027.0000,35215.0000,31097.0000,30987.0000,31057.0000,30927.0000,30957.0000,30906.0000,31027.0000,30887.0000,30936.0000,30986.0000,31047.0000,30897.0000,31067.0000,30997.0000,30977.0000,30996.0000,31056.0000,30946.0000,31047.0000,30937.0000,30997.0000,31007.0000,31007.0000,30936.0000,31027.0000,31017.0000,30947.0000,30937.0000,31016.0000,31056.0000,31026.0000,36688.0000,36137.0000,30987.0000,31006.0000,30847.0000,31067.0000,30947.0000,30987.0000,30956.0000,31027.0000,30907.0000,31057.0000,30937.0000,30967.0000,30976.0000,31057.0000,30937.0000,31057.0000,31007.0000,31007.0000,30967.0000,31087.0000,30956.0000,31037.0000,30917.0000,31007.0000,30997.0000,31037.0000,30896.0000,31037.0000,30997.0000,31057.0000,36688.0000,31077.0000,30947.0000,31027.0000,30966.0000,30987.0000,31017.0000,30977.0000,30867.0000,31016.0000,30966.0000,31027.0000,30937.0000,30997.0000,30937.0000,31046.0000,30936.0000,30997.0000" +generating large task graphs,expanding tree topology,100,1,5381200,57912.6600,57696.6400,58263.5300,1377.2420,938.8667,1847.4921,"benchmark,group:task-graph","57978.0000,57397.0000,63438.0000,58479.0000,58209.0000,57878.0000,57757.0000,57287.0000,57617.0000,62216.0000,57627.0000,57447.0000,57717.0000,57588.0000,57467.0000,57457.0000,57647.0000,57557.0000,57367.0000,57167.0000,57457.0000,57697.0000,57317.0000,57257.0000,57787.0000,57768.0000,57256.0000,62907.0000,57828.0000,57557.0000,57637.0000,57237.0000,57858.0000,57477.0000,57537.0000,57327.0000,57687.0000,57547.0000,57578.0000,57357.0000,57797.0000,57718.0000,57367.0000,57407.0000,63057.0000,57728.0000,57367.0000,57377.0000,58258.0000,57728.0000,56916.0000,57276.0000,57698.0000,57557.0000,57667.0000,57297.0000,57958.0000,57567.0000,57678.0000,57056.0000,57587.0000,63118.0000,57748.0000,57377.0000,57968.0000,57527.0000,57417.0000,57357.0000,57777.0000,57487.0000,57487.0000,57487.0000,57717.0000,57668.0000,57296.0000,57357.0000,57668.0000,57356.0000,62347.0000,57537.0000,57597.0000,57197.0000,57317.0000,57326.0000,57477.0000,57668.0000,57307.0000,57226.0000,57628.0000,57587.0000,57297.0000,57246.0000,57617.0000,57667.0000,57337.0000,57176.0000,62767.0000,57988.0000,57247.0000,57467.0000" +generating large task graphs,contracting tree topology,100,1,6019500,51274.7100,51047.2200,51706.4500,1553.4897,969.0749,2526.5899,"benchmark,group:task-graph","50594.0000,50944.0000,55313.0000,51436.0000,56124.0000,51676.0000,51065.0000,51205.0000,51065.0000,51065.0000,50775.0000,50704.0000,50834.0000,51266.0000,50944.0000,51155.0000,50945.0000,50955.0000,51105.0000,51105.0000,51014.0000,50964.0000,51125.0000,51406.0000,56735.0000,51064.0000,51005.0000,51195.0000,51055.0000,50835.0000,51185.0000,51045.0000,50924.0000,51015.0000,50734.0000,50935.0000,50674.0000,51095.0000,50945.0000,51015.0000,51034.0000,50674.0000,50483.0000,56626.0000,50864.0000,51205.0000,50884.0000,51155.0000,50875.0000,50704.0000,50784.0000,50915.0000,51075.0000,50844.0000,50845.0000,50914.0000,50805.0000,50754.0000,50664.0000,50875.0000,50854.0000,50825.0000,50784.0000,61375.0000,51075.0000,50914.0000,51015.0000,50754.0000,50885.0000,50904.0000,50614.0000,50894.0000,50784.0000,50624.0000,50644.0000,50744.0000,50594.0000,50824.0000,50684.0000,50984.0000,50795.0000,50844.0000,56215.0000,50724.0000,50674.0000,51055.0000,50774.0000,50995.0000,50855.0000,50604.0000,50764.0000,50724.0000,50705.0000,50964.0000,50684.0000,50824.0000,51045.0000,50684.0000,50834.0000,50714.0000" +generating large task graphs,wave_sim topology,100,1,45052600,451014.1700,450383.4700,451674.5600,3285.8527,3066.7450,3585.8595,"benchmark,group:task-graph","454590.0000,447937.0000,458497.0000,446975.0000,454540.0000,445813.0000,447446.0000,452946.0000,446795.0000,453607.0000,448037.0000,452997.0000,449340.0000,453678.0000,447997.0000,452475.0000,447507.0000,446885.0000,453398.0000,447406.0000,453017.0000,447316.0000,454479.0000,447727.0000,453388.0000,447556.0000,447206.0000,452216.0000,447476.0000,453298.0000,447636.0000,453207.0000,448218.0000,454379.0000,448138.0000,453468.0000,448779.0000,447316.0000,453658.0000,447917.0000,453508.0000,446815.0000,453538.0000,448108.0000,453989.0000,448658.0000,455481.0000,449060.0000,447857.0000,453918.0000,447406.0000,454680.0000,449190.0000,454129.0000,448017.0000,455231.0000,449250.0000,448468.0000,456182.0000,448337.0000,456102.0000,449030.0000,454540.0000,447776.0000,455201.0000,448017.0000,457015.0000,449480.0000,448258.0000,457295.0000,450051.0000,454891.0000,448698.0000,455932.0000,449831.0000,454410.0000,449219.0000,452957.0000,449350.0000,448458.0000,453798.0000,448548.0000,453999.0000,448218.0000,455271.0000,448949.0000,454670.0000,448839.0000,448458.0000,455942.0000,449860.0000,455943.0000,447026.0000,454289.0000,448538.0000,454670.0000,448267.0000,454469.0000,449621.0000,448448.0000" +generating large task graphs,jacobi topology,100,1,9813400,116704.4700,116304.0200,117255.3000,2383.7736,1857.9389,2940.3269,"benchmark,group:task-graph","116459.0000,116138.0000,125495.0000,116589.0000,116439.0000,121648.0000,116469.0000,115798.0000,115587.0000,115046.0000,115377.0000,115547.0000,115667.0000,121749.0000,116429.0000,115918.0000,116008.0000,115376.0000,115557.0000,115066.0000,115307.0000,115076.0000,122991.0000,116088.0000,115878.0000,115658.0000,115637.0000,115227.0000,116008.0000,115166.0000,115497.0000,123001.0000,115987.0000,115637.0000,115387.0000,115637.0000,115567.0000,115587.0000,115807.0000,122951.0000,116920.0000,116038.0000,115898.0000,115587.0000,115968.0000,115778.0000,115838.0000,115457.0000,121879.0000,115828.0000,115597.0000,115727.0000,115868.0000,115507.0000,115638.0000,115286.0000,121829.0000,116459.0000,115858.0000,115277.0000,116078.0000,115497.0000,115377.0000,115968.0000,115998.0000,123462.0000,116489.0000,116299.0000,116098.0000,116138.0000,115808.0000,116198.0000,116078.0000,122992.0000,116639.0000,115838.0000,115968.0000,115096.0000,115848.0000,115757.0000,116038.0000,115326.0000,122130.0000,116058.0000,115657.0000,115577.0000,115367.0000,115697.0000,115888.0000,115126.0000,115497.0000,122070.0000,116308.0000,115667.0000,116178.0000,116229.0000,115877.0000,116048.0000,116178.0000,123212.0000" +generating large command graphs for N nodes - 1,soup topology,100,1,106130300,897667.3800,896650.4100,899972.7600,7416.8182,4051.2438,15083.5751,"benchmark,group:command-graph","894614.0000,900997.0000,894493.0000,897860.0000,893221.0000,894895.0000,892089.0000,894083.0000,897158.0000,898621.0000,885848.0000,893251.0000,893863.0000,898391.0000,892430.0000,893893.0000,894714.0000,893893.0000,892029.0000,893152.0000,886398.0000,894905.0000,896026.0000,892429.0000,894233.0000,895285.0000,894594.0000,911036.0000,891257.0000,889825.0000,902659.0000,895926.0000,898752.0000,899193.0000,897951.0000,898862.0000,896728.0000,902329.0000,903420.0000,893582.0000,901016.0000,899082.0000,905113.0000,900905.0000,901707.0000,897660.0000,895666.0000,903190.0000,893381.0000,890587.0000,896287.0000,899814.0000,901657.0000,905023.0000,902970.0000,958195.0000,902098.0000,894274.0000,902158.0000,897750.0000,889875.0000,895876.0000,895856.0000,896337.0000,898641.0000,904102.0000,899473.0000,900696.0000,896587.0000,890486.0000,895215.0000,897600.0000,897540.0000,896918.0000,902709.0000,898822.0000,897629.0000,897248.0000,896958.0000,890496.0000,897088.0000,898191.0000,896908.0000,907107.0000,895827.0000,897319.0000,897299.0000,898692.0000,900054.0000,890045.0000,894344.0000,899212.0000,903010.0000,897068.0000,897049.0000,900335.0000,895776.0000,899243.0000,897830.0000,891859.0000" +generating large command graphs for N nodes - 1,chain topology,100,1,7818900,78504.9300,78164.7000,79056.2000,2168.9858,1544.9444,3120.4492,"benchmark,group:command-graph","78136.0000,77635.0000,83606.0000,78577.0000,78286.0000,78497.0000,78066.0000,77616.0000,85901.0000,78356.0000,77656.0000,77565.0000,78096.0000,77776.0000,77545.0000,77976.0000,78016.0000,78086.0000,77224.0000,78056.0000,83626.0000,78477.0000,77936.0000,77916.0000,78246.0000,78167.0000,77966.0000,77785.0000,78076.0000,77875.0000,77575.0000,77686.0000,78076.0000,84809.0000,78106.0000,77936.0000,77926.0000,77595.0000,77826.0000,77755.0000,77455.0000,77365.0000,77605.0000,77756.0000,77254.0000,77334.0000,84639.0000,78206.0000,77575.0000,78107.0000,77675.0000,77405.0000,77825.0000,77565.0000,77875.0000,77935.0000,77966.0000,78116.0000,77615.0000,84648.0000,78387.0000,77726.0000,77354.0000,77925.0000,77856.0000,77455.0000,77505.0000,77906.0000,77986.0000,78126.0000,77255.0000,90219.0000,78176.0000,77956.0000,78156.0000,77695.0000,77826.0000,77545.0000,77885.0000,77815.0000,77796.0000,77745.0000,77686.0000,77915.0000,84317.0000,78246.0000,78036.0000,78146.0000,77936.0000,77706.0000,77775.0000,77626.0000,77475.0000,77725.0000,77645.0000,77945.0000,78087.0000,84087.0000,77916.0000,77976.0000" +generating large command graphs for N nodes - 1,expanding tree topology,100,1,14874800,148342.5300,147919.3900,148892.6100,2441.7823,1976.7499,2877.0829,"benchmark,group:command-graph","147307.0000,153058.0000,153549.0000,147698.0000,147147.0000,147107.0000,154561.0000,147378.0000,146917.0000,147087.0000,147537.0000,147227.0000,147337.0000,154281.0000,147367.0000,147648.0000,147297.0000,147057.0000,147417.0000,147517.0000,153620.0000,146716.0000,147428.0000,146896.0000,147167.0000,146886.0000,153379.0000,148640.0000,147838.0000,147828.0000,147087.0000,147327.0000,147788.0000,155793.0000,148089.0000,147829.0000,148409.0000,148620.0000,147588.0000,147388.0000,154330.0000,147408.0000,147107.0000,147137.0000,146736.0000,147076.0000,147217.0000,153659.0000,147518.0000,147257.0000,147248.0000,147397.0000,146937.0000,153188.0000,147457.0000,147248.0000,146876.0000,146566.0000,147007.0000,147027.0000,153750.0000,147778.0000,147528.0000,147417.0000,147547.0000,146416.0000,147227.0000,153329.0000,148299.0000,146525.0000,147919.0000,147267.0000,147308.0000,147167.0000,153269.0000,147668.0000,147588.0000,146516.0000,146686.0000,147397.0000,154060.0000,146626.0000,146967.0000,147287.0000,146767.0000,147597.0000,147006.0000,153910.0000,147989.0000,146265.0000,146586.0000,146766.0000,146446.0000,147267.0000,153299.0000,147437.0000,147988.0000,147388.0000,147688.0000,147107.0000" +generating large command graphs for N nodes - 1,contracting tree topology,100,1,14035800,136231.1300,135746.7400,137071.0200,3170.4958,2195.2545,5428.9768,"benchmark,group:command-graph","134924.0000,134974.0000,141477.0000,136527.0000,135054.0000,135074.0000,135375.0000,141807.0000,135595.0000,135976.0000,135144.0000,135374.0000,134934.0000,135405.0000,141306.0000,135916.0000,134994.0000,135585.0000,134934.0000,135315.0000,134473.0000,135084.0000,145244.0000,135795.0000,135284.0000,135124.0000,135225.0000,134563.0000,134072.0000,140714.0000,135055.0000,135455.0000,135044.0000,135354.0000,134863.0000,135095.0000,140504.0000,135706.0000,134603.0000,135385.0000,135144.0000,135114.0000,134874.0000,135856.0000,141386.0000,135756.0000,135184.0000,135555.0000,135385.0000,134774.0000,134593.0000,142037.0000,135565.0000,134403.0000,134974.0000,134793.0000,134493.0000,134743.0000,141396.0000,136146.0000,134723.0000,135255.0000,134974.0000,134403.0000,134072.0000,135325.0000,141576.0000,134774.0000,134934.0000,134894.0000,134313.0000,135214.0000,134343.0000,142027.0000,135606.0000,135835.0000,135185.0000,135134.0000,134653.0000,135324.0000,143370.0000,137960.0000,134804.0000,134713.0000,134483.0000,134834.0000,135255.0000,135044.0000,141576.0000,135936.0000,134443.0000,135485.0000,134854.0000,134533.0000,134383.0000,157246.0000,134953.0000,135214.0000,135265.0000,135695.0000" +generating large command graphs for N nodes - 1,wave_sim topology,100,1,102721700,927499.8100,914215.8500,942088.6500,71108.5867,65200.3570,74583.4784,"benchmark,group:command-graph","879445.0000,888492.0000,1031434.0000,1029500.0000,1025923.0000,1022095.0000,1025703.0000,1025592.0000,1022567.0000,1024951.0000,1024290.0000,1027185.0000,1032375.0000,1027796.0000,1023268.0000,1025012.0000,1028017.0000,1026384.0000,1026564.0000,1025362.0000,1024650.0000,1026004.0000,1024870.0000,1034158.0000,1024691.0000,1027366.0000,1021985.0000,1028208.0000,1021935.0000,1025703.0000,1026363.0000,1029910.0000,1029650.0000,1026955.0000,1025933.0000,1022006.0000,882711.0000,880818.0000,873304.0000,873093.0000,873805.0000,872322.0000,870167.0000,879836.0000,886017.0000,872141.0000,863194.0000,879435.0000,879515.0000,873564.0000,871930.0000,873734.0000,871440.0000,885056.0000,861702.0000,872622.0000,867894.0000,874165.0000,872322.0000,875598.0000,876279.0000,870008.0000,875678.0000,884445.0000,876800.0000,870298.0000,873704.0000,878633.0000,871771.0000,880738.0000,867553.0000,875558.0000,887089.0000,871690.0000,873634.0000,876950.0000,882531.0000,880518.0000,869436.0000,880307.0000,872933.0000,887701.0000,875618.0000,883553.0000,879335.0000,882221.0000,867242.0000,879836.0000,880578.0000,876039.0000,875047.0000,876619.0000,878052.0000,879165.0000,882090.0000,868846.0000,879766.0000,895055.0000,877692.0000,880246.0000" +generating large command graphs for N nodes - 1,jacobi topology,100,1,22127500,260008.8700,259240.5900,260871.0700,4153.6555,3671.2777,4777.7666,"benchmark,group:command-graph","254411.0000,260231.0000,265771.0000,270941.0000,263959.0000,258408.0000,269719.0000,258979.0000,255592.0000,263207.0000,270160.0000,259400.0000,257045.0000,258058.0000,263918.0000,262085.0000,255503.0000,263638.0000,263898.0000,260542.0000,256975.0000,256394.0000,263487.0000,257496.0000,258227.0000,256385.0000,270841.0000,256595.0000,255923.0000,263949.0000,257947.0000,256975.0000,257026.0000,265321.0000,260802.0000,261483.0000,262135.0000,264168.0000,257726.0000,255422.0000,261042.0000,265040.0000,257046.0000,255873.0000,256665.0000,264459.0000,256835.0000,261424.0000,255793.0000,263167.0000,255202.0000,255964.0000,260952.0000,257105.0000,255963.0000,263106.0000,268357.0000,262216.0000,261624.0000,255612.0000,265952.0000,260692.0000,257627.0000,256604.0000,269529.0000,259269.0000,256164.0000,255863.0000,265662.0000,256985.0000,261223.0000,258919.0000,266984.0000,262276.0000,256594.0000,264179.0000,257336.0000,257206.0000,256825.0000,264149.0000,260021.0000,254881.0000,258257.0000,262215.0000,255201.0000,256153.0000,258779.0000,260762.0000,253719.0000,255131.0000,255442.0000,264720.0000,255863.0000,261694.0000,256935.0000,261514.0000,262065.0000,254460.0000,257657.0000,261193.0000" +generating large command graphs for N nodes - 4,soup topology,100,1,121519500,1228430.9400,1220381.3000,1242703.1500,53132.1729,33109.1774,76430.3027,"benchmark,group:command-graph","1438786.0000,1444115.0000,1210753.0000,1210744.0000,1223527.0000,1212868.0000,1225681.0000,1210122.0000,1218889.0000,1215392.0000,1216324.0000,1214390.0000,1210443.0000,1216454.0000,1212096.0000,1210523.0000,1216044.0000,1209410.0000,1217636.0000,1210924.0000,1211504.0000,1217205.0000,1220522.0000,1272541.0000,1216905.0000,1210062.0000,1209301.0000,1217085.0000,1211164.0000,1215362.0000,1210031.0000,1215281.0000,1216975.0000,1213308.0000,1219740.0000,1213167.0000,1215572.0000,1217386.0000,1209211.0000,1211705.0000,1217155.0000,1220011.0000,1213379.0000,1216354.0000,1213859.0000,1215953.0000,1219290.0000,1213759.0000,1212697.0000,1212697.0000,1226734.0000,1215643.0000,1217827.0000,1212106.0000,1210462.0000,1218588.0000,1219419.0000,1216764.0000,1213038.0000,1212086.0000,1220933.0000,1219800.0000,1212908.0000,1208479.0000,1221504.0000,1216254.0000,1209992.0000,1213648.0000,1211895.0000,1220562.0000,1217576.0000,1204391.0000,1207467.0000,1219009.0000,1216585.0000,1207827.0000,1500903.0000,1218718.0000,1218538.0000,1210402.0000,1212646.0000,1219539.0000,1220852.0000,1214691.0000,1214120.0000,1218618.0000,1214651.0000,1213248.0000,1228447.0000,1211996.0000,1218087.0000,1212827.0000,1214921.0000,1212907.0000,1214831.0000,1212787.0000,1213198.0000,1307927.0000,1444727.0000,1437714.0000" +generating large command graphs for N nodes - 4,chain topology,100,1,33807300,292968.5900,292300.6000,293739.0600,3649.3393,3208.9506,4204.9286,"benchmark,group:command-graph","290639.0000,298805.0000,302772.0000,292513.0000,292402.0000,298234.0000,292543.0000,291210.0000,292573.0000,298183.0000,289136.0000,289237.0000,297241.0000,291500.0000,290559.0000,299516.0000,290319.0000,291310.0000,291040.0000,300247.0000,291680.0000,291089.0000,302691.0000,290047.0000,288444.0000,289687.0000,295849.0000,289236.0000,289868.0000,296400.0000,288916.0000,288886.0000,288294.0000,296730.0000,290669.0000,290960.0000,295408.0000,291681.0000,288596.0000,296510.0000,290108.0000,291000.0000,290729.0000,296520.0000,291100.0000,289417.0000,297362.0000,288746.0000,287663.0000,290439.0000,302732.0000,291931.0000,291581.0000,298564.0000,292161.0000,292191.0000,296780.0000,292122.0000,289637.0000,290358.0000,295899.0000,290128.0000,290239.0000,297241.0000,290499.0000,290158.0000,290359.0000,297662.0000,292332.0000,289066.0000,295969.0000,290118.0000,291010.0000,290329.0000,296199.0000,292151.0000,291320.0000,300608.0000,290479.0000,289767.0000,297112.0000,292432.0000,292533.0000,293244.0000,298003.0000,293474.0000,291050.0000,298785.0000,290699.0000,289818.0000,292382.0000,296080.0000,291751.0000,290228.0000,297051.0000,292803.0000,291911.0000,299156.0000,291470.0000,292583.0000" +generating large command graphs for N nodes - 4,expanding tree topology,100,1,34590800,351291.4600,350644.7200,351984.3000,3418.2940,3151.3960,3705.9401,"benchmark,group:command-graph","354440.0000,348950.0000,355452.0000,348900.0000,356063.0000,348018.0000,355392.0000,352537.0000,349601.0000,356473.0000,348839.0000,350072.0000,354510.0000,350272.0000,349591.0000,356294.0000,349701.0000,347567.0000,354079.0000,350712.0000,349190.0000,354410.0000,347697.0000,347757.0000,355151.0000,350102.0000,355171.0000,349782.0000,348138.0000,355502.0000,347868.0000,350182.0000,355201.0000,349100.0000,349531.0000,357796.0000,349951.0000,347737.0000,354931.0000,349049.0000,349159.0000,355321.0000,348689.0000,354720.0000,349080.0000,348389.0000,356444.0000,350843.0000,347176.0000,356835.0000,348469.0000,349280.0000,355141.0000,349701.0000,350101.0000,356043.0000,349230.0000,349310.0000,354510.0000,350161.0000,349270.0000,356364.0000,347356.0000,355272.0000,348869.0000,348508.0000,355392.0000,348098.0000,349260.0000,354450.0000,348599.0000,349440.0000,356203.0000,349130.0000,350202.0000,355813.0000,347316.0000,346955.0000,356064.0000,348098.0000,356323.0000,347847.0000,349681.0000,356133.0000,348279.0000,348909.0000,353959.0000,348729.0000,346986.0000,357887.0000,348018.0000,348959.0000,355713.0000,347256.0000,346295.0000,358548.0000,348228.0000,349451.0000,353879.0000,347096.0000" +generating large command graphs for N nodes - 4,contracting tree topology,100,1,31185900,362690.0500,361989.8400,363486.9400,3811.4935,3429.7641,4597.2662,"benchmark,group:command-graph","362084.0000,367525.0000,376232.0000,359029.0000,359820.0000,366072.0000,358488.0000,357977.0000,365240.0000,357636.0000,366041.0000,360110.0000,360131.0000,367726.0000,359549.0000,359029.0000,366092.0000,360071.0000,359269.0000,365871.0000,360642.0000,367665.0000,360412.0000,359169.0000,365901.0000,359800.0000,360191.0000,364489.0000,359640.0000,360391.0000,366864.0000,360451.0000,366824.0000,360261.0000,360592.0000,365641.0000,358889.0000,360401.0000,370781.0000,361063.0000,361153.0000,368947.0000,360712.0000,365892.0000,360221.0000,359480.0000,369829.0000,360021.0000,360070.0000,366252.0000,360792.0000,358909.0000,366623.0000,359099.0000,364910.0000,358618.0000,360081.0000,366964.0000,360912.0000,359189.0000,368336.0000,360341.0000,358628.0000,366343.0000,361463.0000,359389.0000,366032.0000,359309.0000,366834.0000,360621.0000,361222.0000,366082.0000,360832.0000,360171.0000,368787.0000,359350.0000,359800.0000,367555.0000,361303.0000,369148.0000,361273.0000,360782.0000,367405.0000,360872.0000,360782.0000,368637.0000,361013.0000,358878.0000,366413.0000,359941.0000,367645.0000,359830.0000,358047.0000,365691.0000,360632.0000,359460.0000,369158.0000,360111.0000,360662.0000,367494.0000" +generating large command graphs for N nodes - 4,wave_sim topology,100,1,226038100,2054060.2300,2050062.4000,2068366.3500,34344.4460,9985.1659,78724.2456,"benchmark,group:command-graph","2071134.0000,2052068.0000,2060093.0000,2061787.0000,2060464.0000,2052900.0000,2039775.0000,2048842.0000,2065233.0000,2057138.0000,2036869.0000,2043842.0000,2044314.0000,2056046.0000,2047439.0000,2044053.0000,2039875.0000,2036579.0000,2056357.0000,2036649.0000,2045475.0000,2042289.0000,2058641.0000,2061185.0000,2055685.0000,2045275.0000,2068369.0000,2060695.0000,2065674.0000,2059021.0000,2057669.0000,2048632.0000,2053010.0000,2060394.0000,2045405.0000,2038823.0000,2051306.0000,2074891.0000,2066476.0000,2078658.0000,2068820.0000,2054893.0000,2066926.0000,2054763.0000,2050716.0000,2041177.0000,2055325.0000,2043081.0000,2046568.0000,2039755.0000,2054172.0000,2041268.0000,2047329.0000,2057999.0000,2043942.0000,2044724.0000,2058290.0000,2045275.0000,2042260.0000,2053020.0000,2043071.0000,2060074.0000,2033152.0000,2037080.0000,2039424.0000,2054303.0000,2038753.0000,2032311.0000,2052328.0000,2046027.0000,2032301.0000,2039474.0000,2037080.0000,2043833.0000,2049864.0000,2037020.0000,2036038.0000,2037130.0000,2046617.0000,2037470.0000,2051247.0000,2073659.0000,2052589.0000,2049634.0000,2379960.0000,2046748.0000,2060614.0000,2043351.0000,2057849.0000,2047941.0000,2044684.0000,2058340.0000,2067227.0000,2058501.0000,2057188.0000,2041939.0000,2064221.0000,2056537.0000,2045045.0000,2056066.0000" +generating large command graphs for N nodes - 4,jacobi topology,100,1,56153600,472754.3400,471232.6500,474491.2200,8280.3209,7162.0378,9698.0281,"benchmark,group:command-graph","473655.0000,473796.0000,472042.0000,485839.0000,488815.0000,483685.0000,467905.0000,475219.0000,464519.0000,471071.0000,485869.0000,464138.0000,468466.0000,463878.0000,478245.0000,461282.0000,467234.0000,461654.0000,474768.0000,465230.0000,471011.0000,476772.0000,492452.0000,473345.0000,469689.0000,488103.0000,473356.0000,465791.0000,463747.0000,468216.0000,474828.0000,477483.0000,467424.0000,477022.0000,466001.0000,487052.0000,464739.0000,472123.0000,476742.0000,478275.0000,463657.0000,470710.0000,462976.0000,478135.0000,462274.0000,467976.0000,460972.0000,463667.0000,469258.0000,488353.0000,475219.0000,470279.0000,469639.0000,473215.0000,471983.0000,470099.0000,496019.0000,464248.0000,476141.0000,461433.0000,472163.0000,462826.0000,487732.0000,468968.0000,463667.0000,470931.0000,462675.0000,474327.0000,468757.0000,472694.0000,473114.0000,472042.0000,466732.0000,486861.0000,469227.0000,473065.0000,463156.0000,493493.0000,465340.0000,475559.0000,469318.0000,470450.0000,465461.0000,465841.0000,475670.0000,478345.0000,481080.0000,460010.0000,477864.0000,472314.0000,479427.0000,470600.0000,474197.0000,470240.0000,496509.0000,482933.0000,481250.0000,465751.0000,474798.0000,472313.0000" +generating large command graphs for N nodes - 16,soup topology,100,1,161192500,1931742.2600,1913370.8000,1941539.9800,66586.7507,39102.3617,98776.5065,"benchmark,group:command-graph","1954723.0000,1944073.0000,1950195.0000,1951838.0000,1949634.0000,1936770.0000,1954814.0000,1947660.0000,1948451.0000,1945717.0000,1955195.0000,1959492.0000,1946588.0000,1950666.0000,1958010.0000,1945446.0000,1950005.0000,1942871.0000,1929636.0000,1944233.0000,1937691.0000,1950095.0000,1948622.0000,1946268.0000,1934085.0000,1972106.0000,1942700.0000,1937771.0000,1937782.0000,1951007.0000,1946047.0000,1947119.0000,1945937.0000,1949824.0000,1935688.0000,1937150.0000,1932712.0000,1940938.0000,1946969.0000,1934966.0000,1957509.0000,1946759.0000,1942040.0000,1927582.0000,1960915.0000,1951437.0000,1953772.0000,1950766.0000,1935097.0000,1946658.0000,1942310.0000,1944203.0000,1946027.0000,1945857.0000,1941899.0000,1945717.0000,1931199.0000,1952079.0000,1951017.0000,1944093.0000,1956588.0000,1946428.0000,1949343.0000,1934796.0000,1947440.0000,1944064.0000,1947400.0000,1954513.0000,1935467.0000,1938333.0000,1939765.0000,1932140.0000,1946568.0000,1929556.0000,1931439.0000,1935577.0000,1975223.0000,1681606.0000,1601394.0000,1599430.0000,1603468.0000,1770965.0000,1946779.0000,1951608.0000,1955185.0000,1941208.0000,1950686.0000,1956888.0000,1953351.0000,1955585.0000,1957498.0000,1938382.0000,1954223.0000,1955586.0000,1947530.0000,1949744.0000,1948352.0000,1947640.0000,1950306.0000,1953742.0000" +generating large command graphs for N nodes - 16,chain topology,100,1,94370500,953163.0300,946814.7800,963560.3600,40356.1043,27088.2033,53971.2211,"benchmark,group:command-graph","1100955.0000,1097579.0000,952904.0000,944618.0000,941252.0000,940661.0000,933598.0000,940712.0000,939799.0000,942615.0000,941082.0000,941152.0000,939058.0000,939068.0000,942795.0000,940911.0000,944108.0000,947234.0000,938758.0000,940952.0000,939459.0000,941994.0000,945801.0000,935251.0000,942255.0000,935982.0000,940742.0000,940511.0000,940541.0000,937505.0000,938538.0000,937575.0000,939209.0000,943777.0000,950811.0000,943607.0000,942725.0000,942645.0000,942816.0000,944158.0000,936984.0000,935863.0000,939288.0000,939880.0000,943627.0000,939890.0000,939479.0000,941432.0000,942375.0000,942044.0000,937806.0000,946332.0000,942585.0000,942435.0000,938267.0000,943727.0000,945300.0000,945531.0000,933397.0000,937284.0000,941483.0000,938807.0000,952143.0000,940150.0000,941853.0000,942725.0000,943166.0000,953516.0000,950319.0000,941883.0000,943918.0000,944498.0000,945861.0000,943166.0000,946152.0000,935501.0000,941122.0000,944749.0000,941943.0000,937846.0000,944378.0000,942846.0000,942274.0000,941533.0000,942635.0000,946372.0000,945159.0000,945470.0000,942535.0000,946482.0000,943808.0000,944488.0000,944910.0000,937555.0000,947815.0000,1085256.0000,1107708.0000,1099602.0000,1104872.0000,1100565.0000" +generating large command graphs for N nodes - 16,expanding tree topology,100,1,65560100,598692.5300,597874.7900,599569.6300,4305.9708,3872.9715,4931.2603,"benchmark,group:command-graph","593052.0000,602470.0000,600296.0000,594566.0000,598502.0000,594925.0000,600377.0000,600737.0000,594725.0000,601359.0000,593753.0000,600526.0000,603111.0000,594084.0000,597821.0000,594845.0000,601379.0000,599063.0000,595036.0000,603071.0000,593564.0000,601889.0000,603772.0000,594084.0000,608091.0000,594926.0000,596649.0000,601749.0000,592762.0000,602701.0000,594214.0000,603772.0000,602060.0000,595727.0000,602921.0000,590216.0000,594545.0000,606959.0000,596749.0000,599916.0000,591169.0000,603502.0000,601438.0000,595076.0000,599484.0000,595838.0000,602741.0000,603201.0000,593893.0000,602530.0000,596389.0000,608020.0000,597921.0000,594215.0000,597861.0000,595537.0000,602650.0000,601849.0000,594334.0000,599725.0000,594966.0000,593683.0000,601659.0000,595006.0000,602210.0000,595196.0000,597651.0000,601268.0000,597771.0000,599154.0000,596619.0000,594745.0000,603743.0000,596048.0000,599204.0000,594034.0000,602421.0000,607580.0000,596278.0000,602921.0000,594786.0000,593183.0000,604163.0000,592231.0000,601859.0000,593823.0000,600036.0000,601098.0000,594665.0000,601228.0000,595307.0000,607229.0000,602250.0000,595156.0000,610926.0000,595367.0000,601378.0000,601508.0000,594525.0000,598041.0000" +generating large command graphs for N nodes - 16,contracting tree topology,100,1,76979600,646776.2200,645902.9100,647656.5100,4457.0626,3969.2718,5247.4979,"benchmark,group:command-graph","644460.0000,655050.0000,660861.0000,645131.0000,649960.0000,651293.0000,646043.0000,648166.0000,650451.0000,639410.0000,645732.0000,642887.0000,642787.0000,650060.0000,642035.0000,655330.0000,650602.0000,637176.0000,646393.0000,651573.0000,642676.0000,647395.0000,651934.0000,642336.0000,650962.0000,642707.0000,635463.0000,653827.0000,642436.0000,643628.0000,650040.0000,644069.0000,650501.0000,650511.0000,645001.0000,647616.0000,650782.0000,643047.0000,644660.0000,650582.0000,639180.0000,647525.0000,645100.0000,649970.0000,646694.0000,642827.0000,644550.0000,651203.0000,644069.0000,645061.0000,645622.0000,642626.0000,652576.0000,651533.0000,641504.0000,647035.0000,649159.0000,642686.0000,648518.0000,640843.0000,648477.0000,651893.0000,644920.0000,643849.0000,653607.0000,642797.0000,649008.0000,649860.0000,640191.0000,644229.0000,645301.0000,643669.0000,649169.0000,649709.0000,641995.0000,649008.0000,638248.0000,649470.0000,652715.0000,642577.0000,644870.0000,650552.0000,642897.0000,645722.0000,648407.0000,642425.0000,648327.0000,650321.0000,641654.0000,654359.0000,649489.0000,644549.0000,652725.0000,644791.0000,641033.0000,650381.0000,642466.0000,650752.0000,650451.0000,646905.0000" +generating large command graphs for N nodes - 16,wave_sim topology,100,1,429716800,4663343.5700,4587673.5700,4737827.9000,382701.1869,375885.5802,387951.7219,"benchmark,group:command-graph","4266146.0000,4273429.0000,5041796.0000,5034401.0000,5038519.0000,5063708.0000,5015255.0000,5030084.0000,5048769.0000,5033570.0000,5022810.0000,5045523.0000,5036486.0000,5036987.0000,5044310.0000,5036926.0000,5030675.0000,5047517.0000,5038029.0000,5052125.0000,5072634.0000,5051774.0000,5049661.0000,5038590.0000,5050041.0000,5071572.0000,5086811.0000,5045944.0000,5062675.0000,5048990.0000,5066793.0000,5044030.0000,5049030.0000,5059148.0000,5027799.0000,5049971.0000,5040654.0000,5033109.0000,5051204.0000,5044371.0000,5043168.0000,5043449.0000,5047046.0000,5052626.0000,5036165.0000,5058868.0000,5049099.0000,4420478.0000,4256617.0000,4977263.0000,5029823.0000,5027298.0000,5038530.0000,5022920.0000,4674860.0000,4277908.0000,4257409.0000,4254042.0000,4286634.0000,4286434.0000,4264051.0000,4279491.0000,4264642.0000,4264993.0000,4259092.0000,4286484.0000,4249464.0000,4292425.0000,4308826.0000,4260434.0000,4287396.0000,4258491.0000,4243021.0000,4284219.0000,4273730.0000,4280002.0000,4269952.0000,4269331.0000,4251808.0000,4279842.0000,4257118.0000,4252690.0000,4253912.0000,4260665.0000,4270363.0000,4269031.0000,4310169.0000,4257048.0000,4282587.0000,4278849.0000,4283638.0000,4265995.0000,4267117.0000,4281945.0000,4290532.0000,4298326.0000,4252188.0000,4289850.0000,4257519.0000,4304618.0000" +generating large command graphs for N nodes - 16,jacobi topology,100,1,110943600,1294569.6600,1282033.7600,1305000.4700,58114.7123,45769.7871,75631.0524,"benchmark,group:command-graph","1285946.0000,1428256.0000,1290254.0000,1305262.0000,1285846.0000,1385525.0000,1278141.0000,1307136.0000,1292959.0000,1280856.0000,1327324.0000,1286266.0000,1287759.0000,1275897.0000,1302467.0000,1287338.0000,1344146.0000,1286898.0000,1295443.0000,1288852.0000,1290905.0000,1302658.0000,1292107.0000,1275405.0000,1302437.0000,1282088.0000,1274084.0000,1274804.0000,1336742.0000,1274804.0000,1277800.0000,1355277.0000,1278110.0000,1297898.0000,1304221.0000,1400873.0000,1272670.0000,1273763.0000,1281928.0000,1275907.0000,1278742.0000,1274614.0000,1289402.0000,1347953.0000,1396385.0000,1285355.0000,1277019.0000,1279824.0000,1279945.0000,1241171.0000,1163854.0000,1161720.0000,1076669.0000,1063314.0000,1102658.0000,1167642.0000,1395864.0000,1323858.0000,1301866.0000,1291537.0000,1291526.0000,1302337.0000,1282359.0000,1376938.0000,1365176.0000,1279914.0000,1339828.0000,1328827.0000,1323126.0000,1279344.0000,1286737.0000,1362221.0000,1301706.0000,1276588.0000,1288490.0000,1365376.0000,1289422.0000,1290735.0000,1367390.0000,1280515.0000,1291666.0000,1289783.0000,1283501.0000,1354225.0000,1377980.0000,1332874.0000,1277280.0000,1284774.0000,1277530.0000,1278762.0000,1362220.0000,1275375.0000,1274755.0000,1404340.0000,1363282.0000,1278562.0000,1273823.0000,1284734.0000,1289953.0000,1276548.0000" +generating large instruction graphs for N devices - 1,soup topology,100,1,464398000,4555815.0400,4508154.2000,4591598.8900,208751.3065,168066.6580,245417.9325,"benchmark,group:instruction-graph","4066247.0000,4077337.0000,4645725.0000,4636718.0000,4639744.0000,4639233.0000,4645524.0000,4639443.0000,4645915.0000,4640335.0000,4638972.0000,4672696.0000,4649051.0000,4646056.0000,4646646.0000,4648480.0000,4635806.0000,4651095.0000,4642018.0000,4647008.0000,4644082.0000,4641717.0000,4641347.0000,4640806.0000,4646146.0000,4692774.0000,4651225.0000,4636116.0000,4648039.0000,4658739.0000,4637659.0000,4655232.0000,4635936.0000,4667466.0000,4653831.0000,4656305.0000,4641296.0000,4644011.0000,4656516.0000,4641918.0000,4647508.0000,4643962.0000,4632149.0000,4651146.0000,4630937.0000,4660172.0000,4652809.0000,4637028.0000,4650144.0000,4642368.0000,4651035.0000,4653279.0000,4634564.0000,4634143.0000,4666384.0000,4639423.0000,4638882.0000,4639152.0000,4632450.0000,4646226.0000,4641347.0000,4639814.0000,4647528.0000,4651045.0000,4631808.0000,4643210.0000,4635956.0000,4720587.0000,4648510.0000,4647048.0000,4638652.0000,4648179.0000,4643190.0000,4645174.0000,4653189.0000,4639754.0000,4664971.0000,4633392.0000,4632520.0000,4630647.0000,4646306.0000,4636367.0000,4636748.0000,4649542.0000,4632069.0000,4642298.0000,4341579.0000,4062659.0000,4068080.0000,4058812.0000,4065124.0000,4072438.0000,4059684.0000,4057259.0000,4064403.0000,4062739.0000,4065264.0000,4059915.0000,4061046.0000,4073680.0000" +generating large instruction graphs for N devices - 1,chain topology,100,1,61465900,699246.2500,698325.0100,700336.3300,5077.6497,4159.5852,7577.9927,"benchmark,group:instruction-graph","701658.0000,696158.0000,709513.0000,703322.0000,690347.0000,701037.0000,700907.0000,691599.0000,699244.0000,704373.0000,700906.0000,690957.0000,700736.0000,700406.0000,692471.0000,700426.0000,698863.0000,693313.0000,701067.0000,704774.0000,697280.0000,693042.0000,700266.0000,706227.0000,691369.0000,702019.0000,700807.0000,693593.0000,698592.0000,702439.0000,700667.0000,693132.0000,699925.0000,698492.0000,693212.0000,700376.0000,700897.0000,691489.0000,699925.0000,700566.0000,702871.0000,692932.0000,700005.0000,700556.0000,693323.0000,698422.0000,701408.0000,692781.0000,700846.0000,703252.0000,700125.0000,692010.0000,701749.0000,702209.0000,693483.0000,699554.0000,726255.0000,694865.0000,702710.0000,700807.0000,701067.0000,694173.0000,703271.0000,703863.0000,693052.0000,703421.0000,700396.0000,692511.0000,701909.0000,703111.0000,700827.0000,693693.0000,702860.0000,701708.0000,692621.0000,702981.0000,703461.0000,695237.0000,702900.0000,702821.0000,700446.0000,692561.0000,702410.0000,701127.0000,691028.0000,698232.0000,701669.0000,693823.0000,698232.0000,703201.0000,704313.0000,692942.0000,700756.0000,701588.0000,693072.0000,703411.0000,701558.0000,696328.0000,702600.0000,702890.0000" +generating large instruction graphs for N devices - 1,expanding tree topology,100,1,81694700,817142.8400,816248.2800,817977.4600,4405.1726,3712.4877,5364.8159,"benchmark,group:instruction-graph","818239.0000,817939.0000,832016.0000,820473.0000,820303.0000,820854.0000,810224.0000,818138.0000,815544.0000,817728.0000,820454.0000,806046.0000,816907.0000,818199.0000,820954.0000,818750.0000,816166.0000,812218.0000,819952.0000,816315.0000,820754.0000,820544.0000,811767.0000,816947.0000,818310.0000,818499.0000,818700.0000,817858.0000,813480.0000,819862.0000,824341.0000,823870.0000,818058.0000,805094.0000,817347.0000,817668.0000,817438.0000,819461.0000,816986.0000,810835.0000,821766.0000,819131.0000,817869.0000,811386.0000,810445.0000,815273.0000,818209.0000,817047.0000,817728.0000,817347.0000,810034.0000,817979.0000,820744.0000,816486.0000,819001.0000,813280.0000,816215.0000,819892.0000,819001.0000,824601.0000,816545.0000,809663.0000,817127.0000,819812.0000,820374.0000,816796.0000,804834.0000,816786.0000,818079.0000,824141.0000,817658.0000,815133.0000,808069.0000,816866.0000,816125.0000,820543.0000,817477.0000,811296.0000,818690.0000,826455.0000,815474.0000,817658.0000,808811.0000,816786.0000,819641.0000,821766.0000,820844.0000,818440.0000,811847.0000,823900.0000,819031.0000,817518.0000,817207.0000,807148.0000,817177.0000,816276.0000,815684.0000,816375.0000,818771.0000,812789.0000" +generating large instruction graphs for N devices - 1,contracting tree topology,100,1,102707000,916955.8300,916248.4100,917695.2100,3701.9852,3020.4645,4749.4529,"benchmark,group:instruction-graph","917968.0000,917648.0000,929730.0000,920854.0000,914732.0000,918459.0000,919752.0000,918108.0000,914302.0000,909823.0000,915794.0000,914191.0000,916716.0000,915644.0000,931454.0000,919641.0000,920894.0000,914031.0000,915744.0000,915052.0000,915423.0000,911065.0000,915994.0000,916776.0000,915133.0000,919532.0000,917487.0000,914071.0000,918188.0000,914332.0000,917097.0000,914832.0000,911366.0000,908360.0000,921836.0000,918770.0000,918019.0000,917848.0000,918499.0000,918510.0000,913981.0000,917998.0000,923449.0000,917257.0000,913290.0000,911887.0000,916696.0000,918699.0000,916094.0000,916515.0000,918690.0000,920864.0000,914041.0000,917307.0000,916896.0000,918198.0000,915333.0000,910314.0000,919551.0000,918610.0000,919651.0000,916896.0000,914301.0000,918008.0000,918489.0000,920683.0000,916185.0000,919000.0000,917046.0000,906377.0000,917557.0000,917978.0000,918670.0000,919180.0000,915573.0000,917067.0000,914893.0000,922537.0000,914682.0000,915053.0000,915884.0000,906857.0000,913500.0000,921996.0000,918349.0000,918520.0000,918028.0000,920243.0000,921685.0000,916275.0000,918329.0000,917227.0000,915524.0000,908961.0000,920102.0000,919200.0000,915414.0000,915704.0000,917237.0000,917377.0000" +generating large instruction graphs for N devices - 1,wave_sim topology,100,1,541323800,5381245.7500,5318531.0200,5452897.1600,344601.9933,312536.8328,369349.9960,"benchmark,group:instruction-graph","5161943.0000,5160741.0000,6149406.0000,5954957.0000,5885575.0000,5857853.0000,5898831.0000,5880766.0000,5875717.0000,5848705.0000,5155482.0000,5682901.0000,5881708.0000,5881668.0000,5879494.0000,5881478.0000,5875456.0000,5883942.0000,5891727.0000,5884252.0000,5884894.0000,5897969.0000,5873803.0000,5864265.0000,5880025.0000,5904321.0000,5909330.0000,5876889.0000,5872821.0000,5858814.0000,5869696.0000,5867290.0000,5880645.0000,5870947.0000,5772391.0000,5125575.0000,5146374.0000,5160130.0000,5146034.0000,5158307.0000,5148217.0000,5146394.0000,5149950.0000,5147105.0000,5163807.0000,5161744.0000,5151303.0000,5127729.0000,5141665.0000,5144471.0000,5142156.0000,5157094.0000,5153266.0000,5140713.0000,5139992.0000,5148719.0000,5146955.0000,5132558.0000,5168586.0000,5153057.0000,5148338.0000,5145963.0000,5130835.0000,5125354.0000,5149170.0000,5164729.0000,5139270.0000,5134952.0000,5158527.0000,5142677.0000,5135133.0000,5132658.0000,5144371.0000,5139881.0000,5139260.0000,5132368.0000,5145162.0000,5137146.0000,5138459.0000,5157766.0000,5126126.0000,5156233.0000,5135644.0000,5127899.0000,5167494.0000,5137096.0000,5152505.0000,5138269.0000,5136495.0000,5151383.0000,5137027.0000,5132407.0000,5150792.0000,5158768.0000,5153647.0000,5159188.0000,5149340.0000,5154680.0000,5155271.0000,5143689.0000" +generating large instruction graphs for N devices - 1,jacobi topology,100,1,114102600,1145631.1500,1134049.5200,1159739.6800,65181.9299,55366.8733,73350.3279,"benchmark,group:instruction-graph","1103740.0000,1115773.0000,1274434.0000,1274864.0000,1269314.0000,1262892.0000,1267571.0000,1278782.0000,1273512.0000,1265037.0000,1266439.0000,1272831.0000,1267841.0000,1271578.0000,1266479.0000,1296215.0000,1263173.0000,1275756.0000,1274484.0000,1265928.0000,1263333.0000,1264635.0000,1275526.0000,1179314.0000,1109351.0000,1104241.0000,1110593.0000,1106486.0000,1112958.0000,1113008.0000,1123618.0000,1110693.0000,1108088.0000,1107778.0000,1113489.0000,1113128.0000,1113339.0000,1119460.0000,1116434.0000,1111415.0000,1109051.0000,1113178.0000,1111035.0000,1109070.0000,1117005.0000,1110924.0000,1115232.0000,1120372.0000,1112277.0000,1111144.0000,1109481.0000,1115062.0000,1114671.0000,1116865.0000,1112938.0000,1109632.0000,1115452.0000,1107878.0000,1115974.0000,1113328.0000,1107788.0000,1111405.0000,1105524.0000,1110343.0000,1108560.0000,1120622.0000,1112396.0000,1105674.0000,1109130.0000,1105704.0000,1107758.0000,1122336.0000,1113619.0000,1111305.0000,1119380.0000,1109190.0000,1108359.0000,1113048.0000,1108019.0000,1104873.0000,1115753.0000,1104773.0000,1111284.0000,1115633.0000,1115342.0000,1109131.0000,1106285.0000,1111134.0000,1110624.0000,1105384.0000,1107618.0000,1111254.0000,1116654.0000,1105904.0000,1111556.0000,1106335.0000,1112297.0000,1105965.0000,1107397.0000,1113660.0000" +generating large instruction graphs for N devices - 4,soup topology,100,1,409337900,4556520.3700,4508102.4000,4594134.6400,216218.0130,177266.0003,249957.4636,"benchmark,group:instruction-graph","4660613.0000,4655683.0000,4665733.0000,4646476.0000,4653560.0000,4653560.0000,4647759.0000,4724454.0000,4652077.0000,4648881.0000,4644863.0000,4646817.0000,4653921.0000,4653780.0000,4650685.0000,4665983.0000,4678878.0000,4651045.0000,4648551.0000,4654932.0000,4662096.0000,4671934.0000,4652638.0000,4657206.0000,4654952.0000,4664961.0000,4656806.0000,4649241.0000,4661195.0000,4660333.0000,4653229.0000,4664130.0000,4659932.0000,4657026.0000,4676813.0000,4662416.0000,4659291.0000,4661495.0000,4692313.0000,4645144.0000,4650655.0000,4633993.0000,4649041.0000,4650244.0000,4645995.0000,4652047.0000,4650334.0000,4655524.0000,4627931.0000,4076165.0000,4075884.0000,4070694.0000,4063932.0000,4081926.0000,4071126.0000,4079081.0000,4057490.0000,4084561.0000,4107064.0000,4092256.0000,4089721.0000,4084431.0000,4088929.0000,4081234.0000,4194509.0000,4660463.0000,4654512.0000,4649652.0000,4653599.0000,4659150.0000,4655774.0000,4579289.0000,4071847.0000,4311621.0000,4649092.0000,4661535.0000,4659391.0000,4670331.0000,4669980.0000,4651075.0000,4662617.0000,4656004.0000,4653219.0000,4684298.0000,4670712.0000,4661715.0000,4661204.0000,4653210.0000,4664921.0000,4648881.0000,4647248.0000,4652308.0000,4659010.0000,4652217.0000,4671695.0000,4666644.0000,4658288.0000,4662507.0000,4654312.0000,4657547.0000" +generating large instruction graphs for N devices - 4,chain topology,100,1,69972900,700770.8200,699869.4000,701712.4200,4698.7032,4094.7694,6155.3948,"benchmark,group:instruction-graph","704734.0000,696829.0000,709973.0000,707559.0000,695046.0000,720624.0000,705766.0000,693363.0000,701288.0000,704523.0000,702640.0000,694003.0000,703321.0000,704033.0000,694915.0000,705055.0000,703272.0000,696087.0000,700376.0000,699935.0000,703902.0000,695907.0000,704012.0000,703622.0000,692621.0000,700445.0000,705305.0000,695887.0000,701248.0000,703492.0000,701217.0000,695376.0000,701828.0000,704153.0000,691650.0000,702900.0000,703793.0000,695206.0000,702339.0000,702209.0000,703401.0000,695566.0000,703622.0000,702580.0000,694474.0000,703241.0000,703211.0000,693543.0000,703852.0000,703391.0000,701959.0000,693553.0000,701829.0000,702820.0000,692641.0000,707479.0000,703492.0000,694675.0000,700155.0000,704243.0000,706106.0000,694234.0000,701137.0000,701047.0000,695707.0000,702209.0000,701457.0000,691228.0000,699645.0000,703061.0000,702029.0000,695616.0000,704333.0000,703592.0000,693583.0000,703932.0000,704433.0000,702791.0000,696969.0000,701849.0000,703973.0000,693853.0000,704263.0000,703501.0000,694194.0000,700335.0000,705225.0000,700516.0000,695787.0000,702770.0000,704023.0000,694114.0000,702801.0000,703091.0000,696909.0000,702891.0000,704012.0000,700997.0000,695476.0000,703212.0000" +generating large instruction graphs for N devices - 4,expanding tree topology,100,1,91781400,917847.4500,917101.6400,918686.5900,4009.0197,3190.3856,5678.6134,"benchmark,group:instruction-graph","917107.0000,915574.0000,926905.0000,919000.0000,917066.0000,919421.0000,921805.0000,922217.0000,916555.0000,919170.0000,918159.0000,916826.0000,916254.0000,912808.0000,916726.0000,915724.0000,916696.0000,914602.0000,913419.0000,914832.0000,917087.0000,918259.0000,920834.0000,915413.0000,915384.0000,908701.0000,919471.0000,917548.0000,913079.0000,919852.0000,915935.0000,918980.0000,918620.0000,921455.0000,916956.0000,916175.0000,938026.0000,910454.0000,915504.0000,918279.0000,918630.0000,919401.0000,917908.0000,920524.0000,917497.0000,919151.0000,915053.0000,915534.0000,914872.0000,906186.0000,916224.0000,915283.0000,918379.0000,918790.0000,919221.0000,918539.0000,919310.0000,919140.0000,922397.0000,918630.0000,917898.0000,907338.0000,915043.0000,918229.0000,918309.0000,921274.0000,923118.0000,920283.0000,917057.0000,918910.0000,920323.0000,917908.0000,916795.0000,913179.0000,918800.0000,914532.0000,919171.0000,918920.0000,917087.0000,921585.0000,920684.0000,917547.0000,918318.0000,918559.0000,916426.0000,908290.0000,920263.0000,914001.0000,917307.0000,918579.0000,920052.0000,918960.0000,922918.0000,923649.0000,926084.0000,921786.0000,918660.0000,919060.0000,909873.0000,920423.0000" +generating large instruction graphs for N devices - 4,contracting tree topology,100,1,102369100,1036812.0300,1036353.4600,1037673.1600,3109.6907,1955.2730,5878.5743,"benchmark,group:instruction-graph","1040370.0000,1037234.0000,1042154.0000,1037826.0000,1037114.0000,1035581.0000,1037134.0000,1036954.0000,1034058.0000,1036844.0000,1035822.0000,1034389.0000,1036513.0000,1035360.0000,1042053.0000,1037675.0000,1032735.0000,1059917.0000,1037465.0000,1034529.0000,1033928.0000,1034990.0000,1036333.0000,1031574.0000,1036964.0000,1031514.0000,1036593.0000,1038307.0000,1035902.0000,1035972.0000,1036302.0000,1036513.0000,1035541.0000,1036523.0000,1038105.0000,1038436.0000,1035320.0000,1036684.0000,1036232.0000,1035571.0000,1042785.0000,1035842.0000,1040941.0000,1037595.0000,1035511.0000,1036533.0000,1034740.0000,1039118.0000,1036293.0000,1036293.0000,1035761.0000,1038496.0000,1039188.0000,1036292.0000,1039037.0000,1034899.0000,1036683.0000,1037335.0000,1035361.0000,1036363.0000,1039358.0000,1035401.0000,1035150.0000,1036333.0000,1035421.0000,1037615.0000,1035420.0000,1040911.0000,1035641.0000,1033958.0000,1036673.0000,1033787.0000,1036482.0000,1037955.0000,1035060.0000,1037525.0000,1037275.0000,1038687.0000,1034940.0000,1038948.0000,1034419.0000,1037976.0000,1037355.0000,1034018.0000,1034799.0000,1035121.0000,1036222.0000,1036713.0000,1036273.0000,1035210.0000,1037154.0000,1035681.0000,1033236.0000,1037194.0000,1037485.0000,1042985.0000,1036583.0000,1035221.0000,1035841.0000,1035080.0000" +generating large instruction graphs for N devices - 4,wave_sim topology,100,1,590814500,5911839.8700,5907780.1700,5920412.3200,28742.7208,16650.3279,55789.7540,"benchmark,group:instruction-graph","5902317.0000,5881958.0000,6132413.0000,5967871.0000,5906224.0000,5917826.0000,5941051.0000,5910983.0000,5918417.0000,5894152.0000,5899341.0000,5901685.0000,5924769.0000,5905594.0000,5890995.0000,5925211.0000,5892388.0000,5901957.0000,5905633.0000,5915152.0000,5897107.0000,5890946.0000,5889162.0000,5908639.0000,5908309.0000,5916173.0000,5892489.0000,5886587.0000,5899402.0000,5890505.0000,5886567.0000,5904932.0000,5932374.0000,5904571.0000,5899932.0000,5901285.0000,5898820.0000,5895454.0000,5899221.0000,5930921.0000,5896907.0000,5913649.0000,5906856.0000,5905713.0000,5887969.0000,5901595.0000,5910713.0000,5900032.0000,5897598.0000,5935239.0000,5911495.0000,5892869.0000,5906906.0000,5904121.0000,5914289.0000,5904661.0000,5894713.0000,5911615.0000,5912426.0000,5914561.0000,6006524.0000,5933777.0000,5907788.0000,5881728.0000,5916524.0000,5918939.0000,5934287.0000,5909490.0000,5917206.0000,5915382.0000,5923687.0000,5954175.0000,5918388.0000,5912115.0000,5910714.0000,5905022.0000,5898820.0000,5924038.0000,5926984.0000,5908679.0000,5909130.0000,5928036.0000,5945930.0000,5922385.0000,5911745.0000,5916705.0000,5918067.0000,5897358.0000,5910502.0000,5894703.0000,5895775.0000,5923107.0000,5908368.0000,5887770.0000,5897899.0000,5874213.0000,5893751.0000,5906404.0000,5897057.0000,5927555.0000" +generating large instruction graphs for N devices - 4,jacobi topology,100,1,127192600,1282581.8600,1280894.0800,1286930.3800,12861.3145,6134.8445,26696.6010,"benchmark,group:instruction-graph","1273161.0000,1278402.0000,1284593.0000,1317235.0000,1288250.0000,1279364.0000,1272961.0000,1292990.0000,1277089.0000,1281457.0000,1287769.0000,1278442.0000,1273031.0000,1276929.0000,1284012.0000,1279894.0000,1279554.0000,1284503.0000,1275707.0000,1275256.0000,1277119.0000,1283762.0000,1273783.0000,1275536.0000,1286457.0000,1274605.0000,1280866.0000,1280906.0000,1291726.0000,1282960.0000,1279684.0000,1284072.0000,1287649.0000,1289232.0000,1278071.0000,1285305.0000,1280075.0000,1274785.0000,1278031.0000,1282289.0000,1278131.0000,1278161.0000,1287419.0000,1270667.0000,1281908.0000,1274444.0000,1283902.0000,1276107.0000,1278793.0000,1285154.0000,1277791.0000,1280526.0000,1276247.0000,1285946.0000,1279774.0000,1273732.0000,1285855.0000,1281177.0000,1283331.0000,1279954.0000,1283612.0000,1274574.0000,1276789.0000,1274524.0000,1284724.0000,1278922.0000,1282389.0000,1285625.0000,1277881.0000,1285034.0000,1277600.0000,1288340.0000,1274695.0000,1283772.0000,1295664.0000,1390604.0000,1279483.0000,1283582.0000,1279884.0000,1277499.0000,1285284.0000,1313559.0000,1286156.0000,1279654.0000,1289132.0000,1278773.0000,1274534.0000,1290485.0000,1283371.0000,1279574.0000,1277580.0000,1280946.0000,1276007.0000,1279664.0000,1280585.0000,1286747.0000,1277791.0000,1273692.0000,1279293.0000,1283631.0000" +generating large instruction graphs for N devices - 16,soup topology,100,1,468897200,4683865.8000,4682046.7100,4686426.5400,10928.1415,8323.7184,17002.7585,"benchmark,group:instruction-graph","4677655.0000,4681453.0000,4698364.0000,4686192.0000,4688266.0000,4709285.0000,4687133.0000,4678207.0000,4681603.0000,4690660.0000,4689769.0000,4679559.0000,4679710.0000,4694387.0000,4677655.0000,4683987.0000,4683206.0000,4675772.0000,4677696.0000,4680010.0000,4672756.0000,4686051.0000,4679900.0000,4674640.0000,4682384.0000,4693465.0000,4708945.0000,4673307.0000,4682655.0000,4665803.0000,4676463.0000,4684358.0000,4682124.0000,4672015.0000,4687274.0000,4693015.0000,4677666.0000,4680230.0000,4687775.0000,4668067.0000,4678166.0000,4681914.0000,4679569.0000,4682314.0000,4678437.0000,4674068.0000,4688766.0000,4684188.0000,4701822.0000,4669710.0000,4670963.0000,4675502.0000,4672636.0000,4680230.0000,4678217.0000,4681613.0000,4692103.0000,4682104.0000,4673758.0000,4747619.0000,4686422.0000,4679589.0000,4674019.0000,4674229.0000,4670332.0000,4689718.0000,4685720.0000,4686022.0000,4682464.0000,4713784.0000,4680060.0000,4671794.0000,4684369.0000,4674209.0000,4684408.0000,4694898.0000,4687664.0000,4685360.0000,4696641.0000,4685440.0000,4682855.0000,4679789.0000,4690740.0000,4686582.0000,4683616.0000,4689247.0000,4690360.0000,4684769.0000,4692193.0000,4682685.0000,4707252.0000,4674490.0000,4686382.0000,4678397.0000,4684248.0000,4678617.0000,4672034.0000,4694988.0000,4684528.0000,4672505.0000" +generating large instruction graphs for N devices - 16,chain topology,100,1,70328200,707677.6500,706820.3000,708774.2500,4925.9878,3868.2337,7629.8252,"benchmark,group:instruction-graph","708482.0000,709012.0000,721747.0000,702430.0000,709383.0000,711948.0000,711166.0000,703392.0000,710034.0000,711567.0000,701488.0000,709654.0000,709042.0000,708581.0000,701337.0000,707700.0000,709633.0000,702339.0000,707480.0000,712438.0000,701117.0000,708341.0000,710234.0000,711046.0000,702429.0000,708471.0000,711326.0000,703522.0000,708592.0000,709533.0000,707800.0000,701518.0000,709033.0000,710605.0000,700977.0000,711858.0000,712889.0000,708721.0000,702711.0000,735542.0000,710535.0000,702120.0000,709423.0000,708792.0000,701678.0000,711227.0000,712458.0000,710735.0000,703201.0000,710054.0000,709383.0000,701137.0000,707580.0000,708541.0000,709333.0000,698973.0000,709674.0000,708541.0000,703682.0000,708831.0000,710735.0000,707269.0000,705185.0000,707810.0000,704995.0000,700516.0000,708712.0000,708030.0000,700366.0000,705556.0000,708090.0000,709703.0000,700396.0000,710555.0000,707860.0000,700876.0000,709133.0000,710004.0000,708241.0000,702750.0000,709864.0000,710074.0000,701959.0000,708030.0000,707980.0000,701888.0000,707971.0000,712919.0000,711127.0000,701067.0000,709834.0000,712839.0000,701909.0000,709263.0000,710345.0000,709944.0000,700867.0000,710545.0000,710575.0000,700967.0000" +generating large instruction graphs for N devices - 16,expanding tree topology,100,1,92770200,916924.5900,909723.6300,921763.7900,29549.2506,21853.5519,37131.2202,"benchmark,group:instruction-graph","928518.0000,922156.0000,936473.0000,928088.0000,925933.0000,918379.0000,927707.0000,834159.0000,824612.0000,827487.0000,825192.0000,825203.0000,823910.0000,826715.0000,826194.0000,830963.0000,848566.0000,927697.0000,926825.0000,920513.0000,926094.0000,928378.0000,926454.0000,928638.0000,925743.0000,930693.0000,926885.0000,927156.0000,927206.0000,929861.0000,926384.0000,929460.0000,928167.0000,920182.0000,924010.0000,925222.0000,926355.0000,927697.0000,926224.0000,929801.0000,923438.0000,925893.0000,928078.0000,925492.0000,928147.0000,925693.0000,921355.0000,918179.0000,929460.0000,925313.0000,927566.0000,927296.0000,927957.0000,929410.0000,926655.0000,926324.0000,925443.0000,925883.0000,924982.0000,922878.0000,918629.0000,927947.0000,923399.0000,930041.0000,928829.0000,952404.0000,928518.0000,927106.0000,924761.0000,925232.0000,928508.0000,929340.0000,927687.0000,926474.0000,919391.0000,926765.0000,924751.0000,927016.0000,930913.0000,926344.0000,923489.0000,925934.0000,927446.0000,929230.0000,928428.0000,928909.0000,929480.0000,924861.0000,917428.0000,923649.0000,926244.0000,925292.0000,925051.0000,927466.0000,930001.0000,927336.0000,928347.0000,927536.0000,925172.0000,925763.0000" +generating large instruction graphs for N devices - 16,contracting tree topology,100,1,104633500,1045819.6100,1045316.2000,1046710.8700,3337.6212,2222.7509,6090.3679,"benchmark,group:instruction-graph","1045981.0000,1046592.0000,1052052.0000,1044959.0000,1045650.0000,1049598.0000,1043927.0000,1041613.0000,1048015.0000,1045941.0000,1044859.0000,1042374.0000,1046872.0000,1046452.0000,1048446.0000,1044148.0000,1043957.0000,1044859.0000,1044288.0000,1050860.0000,1048014.0000,1043817.0000,1043416.0000,1044478.0000,1044478.0000,1041632.0000,1047194.0000,1043376.0000,1046211.0000,1044718.0000,1044478.0000,1045460.0000,1046321.0000,1044247.0000,1045440.0000,1045330.0000,1045180.0000,1043496.0000,1069596.0000,1047073.0000,1048185.0000,1052122.0000,1045309.0000,1049127.0000,1045660.0000,1046973.0000,1045019.0000,1050510.0000,1045110.0000,1045760.0000,1049819.0000,1046973.0000,1047684.0000,1044959.0000,1043867.0000,1048305.0000,1047875.0000,1046071.0000,1044769.0000,1043156.0000,1047684.0000,1046432.0000,1049297.0000,1043506.0000,1046993.0000,1044629.0000,1041472.0000,1044158.0000,1041933.0000,1043386.0000,1043586.0000,1041372.0000,1042945.0000,1045059.0000,1042985.0000,1045330.0000,1043947.0000,1045230.0000,1043556.0000,1046552.0000,1043175.0000,1046011.0000,1043335.0000,1046432.0000,1052804.0000,1046923.0000,1044317.0000,1043075.0000,1044949.0000,1045831.0000,1044739.0000,1047955.0000,1044899.0000,1042184.0000,1047293.0000,1042885.0000,1046963.0000,1044137.0000,1044578.0000,1046773.0000" +generating large instruction graphs for N devices - 16,wave_sim topology,100,1,599356900,5963657.5500,5923738.9400,5986200.4700,149126.4566,92664.7636,217689.2829,"benchmark,group:instruction-graph","6013498.0000,5999351.0000,6238054.0000,6063132.0000,6011183.0000,6000383.0000,6000192.0000,5997838.0000,5990484.0000,5969795.0000,6001986.0000,6001766.0000,5991296.0000,5995263.0000,5991246.0000,5994492.0000,5990053.0000,6011343.0000,6025090.0000,5986838.0000,5991887.0000,5972820.0000,5970055.0000,5970717.0000,5977470.0000,5986046.0000,5981527.0000,6004120.0000,6011054.0000,6009179.0000,5984613.0000,5980284.0000,6071197.0000,5985435.0000,5975986.0000,6015682.0000,5977369.0000,5989953.0000,5988750.0000,5985284.0000,5996586.0000,5998670.0000,5986086.0000,5991306.0000,5992328.0000,5989933.0000,5989252.0000,5994482.0000,5986436.0000,5989251.0000,5989632.0000,6003379.0000,5991647.0000,6022234.0000,5992548.0000,6005914.0000,6004341.0000,5993279.0000,6005022.0000,6011374.0000,5985395.0000,5988570.0000,5995914.0000,5975827.0000,6056579.0000,5976778.0000,5986777.0000,6025671.0000,6030851.0000,5988601.0000,5578293.0000,5283504.0000,5995634.0000,6012476.0000,6011173.0000,5999511.0000,5699964.0000,5230924.0000,5224102.0000,5456882.0000,5981989.0000,5982930.0000,6000273.0000,5991085.0000,5988501.0000,5998559.0000,5982760.0000,6002377.0000,5997598.0000,5992588.0000,5983902.0000,5988460.0000,5989393.0000,5972650.0000,6003499.0000,5991617.0000,5998239.0000,5988410.0000,5999912.0000,5991176.0000" +generating large instruction graphs for N devices - 16,jacobi topology,100,1,132575100,1316188.5200,1306104.7700,1322310.9100,39130.6731,25605.4898,53591.6044,"benchmark,group:instruction-graph","1322976.0000,1324309.0000,1328637.0000,1319940.0000,1351991.0000,1327484.0000,1321313.0000,1329638.0000,1323267.0000,1326252.0000,1330249.0000,1327103.0000,1318507.0000,1332023.0000,1326522.0000,1324178.0000,1334148.0000,1323657.0000,1323798.0000,1332945.0000,1319319.0000,1319951.0000,1326563.0000,1323487.0000,1316384.0000,1335049.0000,1318628.0000,1322255.0000,1326402.0000,1289632.0000,1164947.0000,1154397.0000,1159105.0000,1162642.0000,1160267.0000,1198439.0000,1318327.0000,1321163.0000,1325551.0000,1324749.0000,1321583.0000,1331542.0000,1321925.0000,1320982.0000,1331412.0000,1321614.0000,1318187.0000,1329719.0000,1326373.0000,1321693.0000,1326632.0000,1323457.0000,1315031.0000,1329759.0000,1322616.0000,1321333.0000,1329989.0000,1320742.0000,1315422.0000,1334919.0000,1324719.0000,1321543.0000,1328907.0000,1333726.0000,1321403.0000,1333527.0000,1320140.0000,1329678.0000,1332204.0000,1321083.0000,1318377.0000,1328938.0000,1319940.0000,1329409.0000,1332764.0000,1324338.0000,1325040.0000,1337083.0000,1387739.0000,1321343.0000,1356579.0000,1321863.0000,1318908.0000,1331643.0000,1323928.0000,1318628.0000,1327695.0000,1320221.0000,1323427.0000,1325852.0000,1325470.0000,1319559.0000,1325241.0000,1326042.0000,1320201.0000,1322515.0000,1326252.0000,1320200.0000,1322004.0000,1329599.0000" +generating large instruction graphs for N devices without d2d copy support - 1,soup topology,100,1,465772800,4563230.6200,4516318.2700,4599016.0000,207901.6687,167834.4314,244293.2959,"benchmark,group:instruction-graph","4646406.0000,4646116.0000,4669981.0000,4665442.0000,4651205.0000,4666424.0000,4663058.0000,4679669.0000,4665483.0000,4661865.0000,4640384.0000,4651365.0000,4656756.0000,4642098.0000,4651005.0000,4642629.0000,4655624.0000,4652337.0000,4646706.0000,4654631.0000,4662396.0000,4683757.0000,4646467.0000,4645645.0000,4653399.0000,4649021.0000,4659842.0000,4657016.0000,4662737.0000,4646867.0000,4632480.0000,4649983.0000,4655955.0000,4654962.0000,4644974.0000,4646787.0000,4644723.0000,4663970.0000,4656245.0000,4641327.0000,4646627.0000,4652858.0000,4641567.0000,4657256.0000,4659350.0000,4647098.0000,4651877.0000,4655163.0000,4654962.0000,4658248.0000,4678276.0000,4646537.0000,4641116.0000,4651035.0000,4648972.0000,4651235.0000,4648561.0000,4649582.0000,4656596.0000,4650704.0000,4651055.0000,4640465.0000,4642689.0000,4664140.0000,4656816.0000,4646948.0000,4651916.0000,4654391.0000,4637860.0000,4646786.0000,4651185.0000,4670602.0000,4659301.0000,4641758.0000,4647658.0000,4654392.0000,4716179.0000,4649011.0000,4659481.0000,4642449.0000,4652057.0000,4634594.0000,4067730.0000,4084761.0000,4082718.0000,4084571.0000,4080854.0000,4075824.0000,4073279.0000,4071998.0000,4068491.0000,4097525.0000,4065365.0000,4074402.0000,4076095.0000,4073801.0000,4071827.0000,4289159.0000,4657307.0000,4640265.0000" +generating large instruction graphs for N devices without d2d copy support - 1,chain topology,100,1,69812800,695454.9300,691046.6500,697821.3700,15991.3110,9775.6984,24534.2024,"benchmark,group:instruction-graph","607560.0000,614694.0000,705184.0000,700836.0000,692401.0000,700737.0000,704113.0000,688934.0000,699394.0000,700867.0000,699494.0000,691209.0000,700576.0000,698663.0000,690547.0000,700156.0000,701378.0000,691819.0000,699904.0000,699614.0000,697961.0000,691258.0000,698773.0000,699795.0000,690387.0000,698392.0000,698592.0000,692662.0000,699033.0000,697861.0000,694976.0000,702590.0000,706007.0000,706096.0000,695286.0000,702099.0000,700937.0000,692912.0000,704834.0000,703832.0000,694605.0000,698652.0000,702680.0000,704694.0000,691379.0000,698482.0000,701137.0000,692211.0000,698232.0000,705014.0000,694945.0000,702039.0000,702210.0000,700235.0000,692902.0000,700797.0000,700536.0000,693954.0000,701508.0000,699584.0000,693573.0000,698753.0000,700396.0000,700476.0000,691900.0000,703682.0000,703853.0000,691629.0000,700626.0000,700165.0000,691269.0000,699684.0000,701858.0000,726446.0000,694705.0000,698091.0000,701227.0000,691549.0000,700867.0000,700065.0000,689324.0000,701708.0000,699624.0000,698231.0000,692251.0000,697931.0000,696579.0000,692501.0000,699725.0000,701197.0000,692962.0000,700015.0000,701508.0000,698321.0000,692831.0000,699594.0000,700125.0000,691649.0000,652905.0000,617539.0000" +generating large instruction graphs for N devices without d2d copy support - 1,expanding tree topology,100,1,91698900,915419.9600,914796.8600,915971.4000,2996.3898,2473.4219,3675.4398,"benchmark,group:instruction-graph","917918.0000,918278.0000,925001.0000,919181.0000,914091.0000,915333.0000,913509.0000,914211.0000,917868.0000,917989.0000,916305.0000,915383.0000,911125.0000,908691.0000,913199.0000,915073.0000,913881.0000,915844.0000,915603.0000,914222.0000,915584.0000,916946.0000,918029.0000,915193.0000,909112.0000,916134.0000,916786.0000,917187.0000,913359.0000,916515.0000,918199.0000,915694.0000,916546.0000,917377.0000,919481.0000,916445.0000,911316.0000,921425.0000,915674.0000,917838.0000,917557.0000,920864.0000,915123.0000,915344.0000,917317.0000,915383.0000,916265.0000,912498.0000,906436.0000,915764.0000,915664.0000,914291.0000,916275.0000,917918.0000,916495.0000,916235.0000,914311.0000,914292.0000,918629.0000,917707.0000,908059.0000,916716.0000,916275.0000,913079.0000,916014.0000,917146.0000,916605.0000,914833.0000,914872.0000,914621.0000,918078.0000,913760.0000,906376.0000,914732.0000,912959.0000,915624.0000,915875.0000,917377.0000,915133.0000,919171.0000,915113.0000,915354.0000,912037.0000,910775.0000,907398.0000,914612.0000,914732.0000,917407.0000,915083.0000,915914.0000,915433.0000,916947.0000,914521.0000,917116.0000,912858.0000,908020.0000,918519.0000,915414.0000,919140.0000,916385.0000" +generating large instruction graphs for N devices without d2d copy support - 1,contracting tree topology,100,1,103410300,1035234.2000,1034662.7200,1036450.7500,4086.0896,2347.2766,8103.2155,"benchmark,group:instruction-graph","1038426.0000,1037214.0000,1045329.0000,1034910.0000,1034289.0000,1034920.0000,1033648.0000,1035611.0000,1032896.0000,1034298.0000,1036282.0000,1035101.0000,1035110.0000,1034169.0000,1035702.0000,1031122.0000,1031052.0000,1035140.0000,1032996.0000,1034729.0000,1034209.0000,1036774.0000,1035190.0000,1032856.0000,1033758.0000,1039218.0000,1039068.0000,1038948.0000,1034339.0000,1035982.0000,1033077.0000,1036242.0000,1033437.0000,1035050.0000,1034990.0000,1035130.0000,1032776.0000,1033187.0000,1037545.0000,1035992.0000,1035892.0000,1033588.0000,1032005.0000,1036152.0000,1035812.0000,1037956.0000,1040921.0000,1037655.0000,1034188.0000,1034238.0000,1035441.0000,1035000.0000,1033467.0000,1041273.0000,1039328.0000,1033498.0000,1033216.0000,1034248.0000,1034228.0000,1032987.0000,1030672.0000,1029269.0000,1033176.0000,1032205.0000,1035331.0000,1038267.0000,1036232.0000,1034679.0000,1035311.0000,1032195.0000,1031995.0000,1037114.0000,1038988.0000,1034780.0000,1035030.0000,1035692.0000,1033136.0000,1033787.0000,1033437.0000,1033527.0000,1030882.0000,1067432.0000,1035711.0000,1033787.0000,1037545.0000,1036402.0000,1038607.0000,1036092.0000,1035101.0000,1031333.0000,1033768.0000,1031363.0000,1036954.0000,1032906.0000,1034188.0000,1032625.0000,1030913.0000,1033497.0000,1035331.0000,1032355.0000" +generating large instruction graphs for N devices without d2d copy support - 1,wave_sim topology,100,1,587607800,5704273.3200,5637791.2700,5759738.7900,308519.1146,268394.3685,339201.4373,"benchmark,group:instruction-graph","5872862.0000,5879864.0000,5388102.0000,5245672.0000,5144861.0000,5135905.0000,5169498.0000,5151213.0000,5145773.0000,5235583.0000,5167645.0000,5164779.0000,5166773.0000,5150462.0000,5157916.0000,5149830.0000,5161693.0000,5154650.0000,5164238.0000,5145482.0000,5154600.0000,5170470.0000,5150482.0000,5175148.0000,5170920.0000,5153999.0000,5144300.0000,5728648.0000,5899462.0000,5932153.0000,5908839.0000,5884814.0000,5881368.0000,5880806.0000,5893841.0000,5913008.0000,5901616.0000,5884994.0000,5885004.0000,5901135.0000,5898900.0000,5894463.0000,5879864.0000,5894903.0000,5905613.0000,5889793.0000,5914890.0000,5879714.0000,5868743.0000,5867752.0000,5865908.0000,5869475.0000,5876108.0000,5877350.0000,5866218.0000,5877530.0000,5880255.0000,5887369.0000,5859015.0000,5873463.0000,5886076.0000,5877450.0000,5875547.0000,5909310.0000,5872892.0000,5891797.0000,5896135.0000,5875286.0000,5877760.0000,5898179.0000,5868372.0000,5884975.0000,5900253.0000,5880636.0000,5869305.0000,5869525.0000,5866038.0000,5891166.0000,5875016.0000,5874725.0000,5907086.0000,5877149.0000,5890033.0000,5866669.0000,5887058.0000,5867602.0000,5863744.0000,5881107.0000,5868272.0000,5867841.0000,5888130.0000,5860708.0000,5867471.0000,5882350.0000,5884423.0000,5883942.0000,5883310.0000,5905012.0000,5868012.0000,5891236.0000" +generating large instruction graphs for N devices without d2d copy support - 1,jacobi topology,100,1,124003800,1271304.2000,1270260.8500,1272486.8800,5647.6208,4823.4438,7036.9765,"benchmark,group:instruction-graph","1275056.0000,1276037.0000,1277420.0000,1271538.0000,1280245.0000,1272330.0000,1265998.0000,1271960.0000,1279483.0000,1269955.0000,1268894.0000,1272540.0000,1273061.0000,1266669.0000,1267290.0000,1275056.0000,1270506.0000,1268112.0000,1264114.0000,1273292.0000,1264475.0000,1268342.0000,1269876.0000,1274855.0000,1270306.0000,1277189.0000,1266769.0000,1272971.0000,1271228.0000,1269064.0000,1273081.0000,1271288.0000,1268753.0000,1266078.0000,1276888.0000,1264636.0000,1268152.0000,1267070.0000,1276779.0000,1264906.0000,1268002.0000,1276388.0000,1269916.0000,1271759.0000,1265748.0000,1273342.0000,1272400.0000,1262061.0000,1267170.0000,1274124.0000,1267260.0000,1270085.0000,1270125.0000,1269866.0000,1270827.0000,1278652.0000,1281828.0000,1272009.0000,1270967.0000,1282920.0000,1285435.0000,1269765.0000,1269915.0000,1285826.0000,1276258.0000,1271939.0000,1263363.0000,1279643.0000,1277399.0000,1267370.0000,1272350.0000,1272730.0000,1269093.0000,1267851.0000,1271749.0000,1261149.0000,1267581.0000,1293249.0000,1274804.0000,1280505.0000,1267882.0000,1264335.0000,1274043.0000,1264615.0000,1268383.0000,1281728.0000,1264996.0000,1265257.0000,1271388.0000,1271398.0000,1269084.0000,1264074.0000,1263513.0000,1271148.0000,1267190.0000,1271689.0000,1259807.0000,1276668.0000,1269195.0000,1268342.0000" +generating large instruction graphs for N devices without d2d copy support - 4,soup topology,100,1,466402700,4459682.9500,4403468.9800,4511474.9400,275897.2188,254598.9162,287896.7472,"benchmark,group:instruction-graph","4678146.0000,4663528.0000,4094640.0000,4090933.0000,4080753.0000,4087055.0000,4078299.0000,4083068.0000,4080543.0000,4088238.0000,4077347.0000,4086705.0000,4074772.0000,4083489.0000,4085583.0000,4158902.0000,4067669.0000,4084381.0000,4088900.0000,4086755.0000,4078330.0000,4085753.0000,4070314.0000,4074301.0000,4082837.0000,4088879.0000,4094310.0000,4082167.0000,4077207.0000,4107865.0000,4095361.0000,4075234.0000,4076035.0000,4099530.0000,4084320.0000,4080062.0000,4082457.0000,4374190.0000,4663709.0000,4671705.0000,4666714.0000,4673317.0000,4677826.0000,4665933.0000,4673558.0000,4658069.0000,4663949.0000,4662126.0000,4667967.0000,4661986.0000,4657377.0000,4670983.0000,4686723.0000,4661895.0000,4664641.0000,4662396.0000,4648130.0000,4660543.0000,4651957.0000,4653019.0000,4678737.0000,4669129.0000,4666525.0000,4658038.0000,4666605.0000,4654201.0000,4665232.0000,4658469.0000,4659672.0000,4667757.0000,4657126.0000,4657968.0000,4668268.0000,4677134.0000,4665162.0000,4664711.0000,4663088.0000,4660854.0000,4675171.0000,4660433.0000,4664821.0000,4663729.0000,4670281.0000,4650544.0000,4669660.0000,4663949.0000,4696180.0000,4664149.0000,4660863.0000,4659451.0000,4667797.0000,4660022.0000,4665662.0000,4672906.0000,4689789.0000,4659371.0000,4660843.0000,4657648.0000,4647979.0000,4674990.0000" +generating large instruction graphs for N devices without d2d copy support - 4,chain topology,100,1,69585200,689636.7800,683013.6000,694339.2300,28338.8409,21876.4278,34621.6074,"benchmark,group:instruction-graph","694505.0000,700776.0000,628730.0000,607629.0000,619141.0000,617959.0000,608822.0000,616035.0000,607249.0000,614914.0000,616627.0000,609043.0000,616326.0000,607790.0000,690657.0000,701739.0000,701037.0000,694084.0000,700556.0000,705275.0000,692801.0000,703782.0000,702419.0000,696519.0000,701438.0000,702380.0000,701919.0000,694715.0000,700897.0000,702019.0000,696709.0000,704413.0000,707138.0000,694755.0000,703992.0000,704053.0000,704083.0000,693122.0000,703903.0000,704794.0000,692882.0000,702800.0000,700876.0000,692260.0000,697751.0000,699304.0000,701809.0000,693462.0000,698803.0000,701759.0000,692220.0000,703191.0000,700806.0000,692570.0000,701708.0000,700586.0000,699443.0000,694334.0000,702530.0000,700676.0000,694645.0000,701718.0000,702099.0000,693022.0000,699925.0000,700586.0000,698723.0000,694604.0000,701848.0000,702430.0000,695827.0000,702930.0000,698713.0000,691820.0000,701848.0000,702650.0000,691779.0000,725813.0000,703521.0000,705164.0000,694264.0000,701788.0000,705245.0000,695015.0000,702139.0000,703311.0000,703632.0000,695717.0000,701758.0000,702710.0000,694886.0000,702390.0000,700686.0000,692631.0000,704203.0000,705215.0000,702019.0000,695216.0000,704474.0000,702199.0000" +generating large instruction graphs for N devices without d2d copy support - 4,expanding tree topology,100,1,91722200,869486.7700,859589.3300,879365.8500,50408.1043,49646.1762,51443.4110,"benchmark,group:instruction-graph","920162.0000,922156.0000,923248.0000,919962.0000,917187.0000,919320.0000,918459.0000,919421.0000,919652.0000,922446.0000,921595.0000,918599.0000,909572.0000,917347.0000,914661.0000,916275.0000,919180.0000,917838.0000,916816.0000,923068.0000,918069.0000,921625.0000,921535.0000,928227.0000,814411.0000,817447.0000,821645.0000,816667.0000,820413.0000,808200.0000,818730.0000,818440.0000,820563.0000,821084.0000,815554.0000,811516.0000,817608.0000,818960.0000,819392.0000,821906.0000,811677.0000,820033.0000,822858.0000,818330.0000,819271.0000,815364.0000,809192.0000,819301.0000,820353.0000,818640.0000,820143.0000,811717.0000,819161.0000,821045.0000,821315.0000,817889.0000,817428.0000,811186.0000,819682.0000,822437.0000,818720.0000,821074.0000,811417.0000,820523.0000,817578.0000,819071.0000,820223.0000,817788.0000,813621.0000,817868.0000,821405.0000,819772.0000,833939.0000,915002.0000,910985.0000,916635.0000,914362.0000,917808.0000,922106.0000,920002.0000,920563.0000,915855.0000,919591.0000,920904.0000,916616.0000,916676.0000,911075.0000,916365.0000,917397.0000,914502.0000,920684.0000,917227.0000,918569.0000,918228.0000,921405.0000,924792.0000,924871.0000,924941.0000,918519.0000,914020.0000" +generating large instruction graphs for N devices without d2d copy support - 4,contracting tree topology,100,1,103761700,1037451.6500,1036949.2000,1038302.6000,3251.3505,2232.7219,5786.8240,"benchmark,group:instruction-graph","1037935.0000,1037104.0000,1045490.0000,1039408.0000,1037294.0000,1038737.0000,1034910.0000,1041542.0000,1038556.0000,1038045.0000,1038436.0000,1039048.0000,1041843.0000,1035902.0000,1035401.0000,1035852.0000,1037575.0000,1034028.0000,1043245.0000,1036462.0000,1039128.0000,1038036.0000,1042194.0000,1038857.0000,1038006.0000,1037114.0000,1038436.0000,1037935.0000,1036754.0000,1035822.0000,1037845.0000,1039979.0000,1040321.0000,1036022.0000,1035702.0000,1036352.0000,1032385.0000,1035721.0000,1038557.0000,1041592.0000,1035741.0000,1036533.0000,1036213.0000,1036453.0000,1039579.0000,1039248.0000,1035591.0000,1036042.0000,1035451.0000,1037324.0000,1034720.0000,1035902.0000,1033628.0000,1035180.0000,1035511.0000,1034759.0000,1035561.0000,1037034.0000,1033297.0000,1034580.0000,1034990.0000,1034549.0000,1036763.0000,1038126.0000,1036362.0000,1038377.0000,1035862.0000,1035722.0000,1035381.0000,1037855.0000,1036442.0000,1039198.0000,1043256.0000,1036302.0000,1059827.0000,1038677.0000,1039128.0000,1035602.0000,1036944.0000,1034128.0000,1036733.0000,1035722.0000,1037294.0000,1042284.0000,1035932.0000,1033888.0000,1036363.0000,1041462.0000,1038015.0000,1036593.0000,1034880.0000,1035291.0000,1039398.0000,1034539.0000,1034990.0000,1035802.0000,1035992.0000,1036633.0000,1037645.0000,1040300.0000" +generating large instruction graphs for N devices without d2d copy support - 4,wave_sim topology,100,1,518102500,5903162.6100,5876332.2000,5949827.3900,174904.6596,88530.5041,338967.7295,"benchmark,group:instruction-graph","5880366.0000,5895404.0000,6125070.0000,5974674.0000,5918418.0000,5918247.0000,5923347.0000,5940179.0000,5909080.0000,5881047.0000,5899923.0000,5911755.0000,5960528.0000,5923577.0000,5904852.0000,5920111.0000,5887629.0000,5906164.0000,5951200.0000,5910483.0000,5907406.0000,5879493.0000,5894862.0000,5890044.0000,5925891.0000,5914229.0000,5908439.0000,5898209.0000,5893169.0000,5941882.0000,5917506.0000,5911584.0000,5918016.0000,5918527.0000,5921122.0000,5907167.0000,5910693.0000,5909130.0000,5911004.0000,5902547.0000,5896817.0000,5899602.0000,5888611.0000,5894371.0000,5911284.0000,5896366.0000,5919870.0000,5910924.0000,5910212.0000,5910984.0000,5910081.0000,5915041.0000,5896626.0000,5893410.0000,5900503.0000,5911324.0000,5904812.0000,5890995.0000,5901766.0000,5894542.0000,5909571.0000,5897769.0000,5911655.0000,5917185.0000,5896316.0000,5886157.0000,5882599.0000,5889893.0000,5895464.0000,5904512.0000,5908088.0000,5912186.0000,5884213.0000,5879955.0000,5897077.0000,5908308.0000,5903288.0000,5895504.0000,5901766.0000,5915502.0000,5942343.0000,5903800.0000,5893751.0000,5302560.0000,5539058.0000,5895484.0000,5917856.0000,5928727.0000,5904301.0000,5895494.0000,5919740.0000,5904361.0000,5923427.0000,7269439.0000,5198653.0000,5551152.0000,5919229.0000,5948976.0000,5893681.0000,5886106.0000" +generating large instruction graphs for N devices without d2d copy support - 4,jacobi topology,100,1,123297700,1282183.0900,1281298.0500,1283386.7100,5235.0074,4133.5657,8143.7329,"benchmark,group:instruction-graph","1276919.0000,1278672.0000,1287699.0000,1292278.0000,1280736.0000,1281968.0000,1278422.0000,1289863.0000,1281908.0000,1288039.0000,1284022.0000,1280495.0000,1277900.0000,1282860.0000,1282609.0000,1286016.0000,1277440.0000,1289773.0000,1281247.0000,1278722.0000,1280516.0000,1283962.0000,1275075.0000,1277039.0000,1312085.0000,1279073.0000,1278702.0000,1286536.0000,1285966.0000,1280525.0000,1280996.0000,1288671.0000,1279153.0000,1277029.0000,1277469.0000,1286076.0000,1279934.0000,1279393.0000,1286838.0000,1286226.0000,1277440.0000,1282570.0000,1291566.0000,1278632.0000,1280465.0000,1283582.0000,1281658.0000,1282409.0000,1280526.0000,1289102.0000,1279774.0000,1286547.0000,1281767.0000,1287629.0000,1279634.0000,1278381.0000,1289823.0000,1277610.0000,1274995.0000,1281196.0000,1287358.0000,1276368.0000,1274855.0000,1287689.0000,1286758.0000,1282199.0000,1278602.0000,1284122.0000,1280896.0000,1281958.0000,1284513.0000,1282409.0000,1281027.0000,1278171.0000,1286808.0000,1279764.0000,1278061.0000,1283211.0000,1280395.0000,1277479.0000,1280044.0000,1285915.0000,1277310.0000,1281918.0000,1285254.0000,1281327.0000,1279693.0000,1279483.0000,1285495.0000,1279423.0000,1278262.0000,1282369.0000,1293180.0000,1277820.0000,1275196.0000,1283010.0000,1276238.0000,1277209.0000,1273842.0000,1288520.0000" +generating large instruction graphs for N devices without d2d copy support - 16,soup topology,100,1,411781900,4694760.2200,4692593.1400,4699262.3200,15264.7212,9012.5183,29708.6087,"benchmark,group:instruction-graph","4697202.0000,4692603.0000,4812992.0000,4689297.0000,4687033.0000,4696671.0000,4695439.0000,4685029.0000,4705538.0000,4689999.0000,4677816.0000,4694407.0000,4691642.0000,4698945.0000,4681683.0000,4695289.0000,4726758.0000,4675962.0000,4678447.0000,4693856.0000,4686081.0000,4674640.0000,4693496.0000,4686492.0000,4687254.0000,4695549.0000,4699657.0000,4688075.0000,4691843.0000,4692043.0000,4683877.0000,4692754.0000,4687564.0000,4682284.0000,4707923.0000,4690460.0000,4689889.0000,4682956.0000,4720516.0000,4696771.0000,4721238.0000,4688626.0000,4688266.0000,4693395.0000,4698615.0000,4700078.0000,4691031.0000,4692444.0000,4683566.0000,4684598.0000,4699628.0000,4698304.0000,4686001.0000,4688125.0000,4696442.0000,4695880.0000,4688486.0000,4693686.0000,4690270.0000,4722230.0000,4698365.0000,4693445.0000,4695229.0000,4691242.0000,4699266.0000,4698585.0000,4697423.0000,4692844.0000,4692824.0000,4694397.0000,4696030.0000,4697182.0000,4691812.0000,4704356.0000,4703404.0000,4695880.0000,4696280.0000,4697093.0000,4695369.0000,4681403.0000,4721018.0000,4698335.0000,4685600.0000,4693105.0000,4702793.0000,4700108.0000,4677886.0000,4686442.0000,4691121.0000,4681423.0000,4703605.0000,4685721.0000,4695339.0000,4698164.0000,4675852.0000,4687764.0000,4702923.0000,4698024.0000,4700158.0000,4680571.0000" +generating large instruction graphs for N devices without d2d copy support - 16,chain topology,100,1,62284800,709671.5400,708617.4500,710939.9400,5869.7537,4786.5521,8745.7238,"benchmark,group:instruction-graph","712589.0000,704774.0000,718190.0000,712459.0000,701638.0000,708391.0000,709834.0000,708902.0000,701538.0000,711987.0000,713881.0000,700376.0000,708421.0000,711798.0000,705655.0000,704644.0000,709853.0000,711056.0000,703682.0000,708581.0000,708492.0000,701117.0000,706367.0000,709714.0000,708832.0000,704113.0000,711066.0000,711517.0000,702280.0000,714422.0000,711117.0000,714953.0000,704534.0000,720965.0000,717819.0000,706026.0000,717257.0000,715434.0000,712880.0000,702620.0000,712539.0000,740933.0000,705936.0000,711177.0000,712569.0000,711757.0000,699645.0000,711707.0000,718631.0000,700806.0000,713069.0000,711166.0000,708942.0000,700987.0000,714012.0000,712779.0000,703551.0000,716537.0000,715104.0000,706758.0000,715985.0000,715444.0000,715515.0000,702480.0000,714492.0000,711738.0000,704393.0000,713020.0000,713040.0000,714683.0000,704133.0000,710105.0000,712569.0000,698572.0000,710475.0000,710135.0000,711547.0000,702510.0000,709353.0000,710395.0000,703261.0000,709203.0000,712308.0000,709123.0000,704954.0000,711668.0000,713931.0000,700856.0000,710375.0000,712399.0000,702029.0000,710405.0000,708080.0000,707870.0000,702890.0000,712880.0000,713531.0000,701318.0000,711988.0000,709122.0000" +generating large instruction graphs for N devices without d2d copy support - 16,expanding tree topology,100,1,92784800,828847.0900,827790.7100,831044.9600,7446.4005,4258.7959,14724.3582,"benchmark,group:instruction-graph","830041.0000,825012.0000,842886.0000,828359.0000,824060.0000,822107.0000,826445.0000,828208.0000,828198.0000,828839.0000,819021.0000,828238.0000,831194.0000,827006.0000,831224.0000,827828.0000,819071.0000,827136.0000,831034.0000,831033.0000,827437.0000,828729.0000,817678.0000,831504.0000,831554.0000,828369.0000,827977.0000,824671.0000,825854.0000,830683.0000,830172.0000,834240.0000,833778.0000,825503.0000,820413.0000,827828.0000,829420.0000,830834.0000,829470.0000,818820.0000,824401.0000,832106.0000,827537.0000,830352.0000,829651.0000,821546.0000,827236.0000,828258.0000,827226.0000,829471.0000,834460.0000,821094.0000,832416.0000,829951.0000,828097.0000,827677.0000,825373.0000,822507.0000,828990.0000,830152.0000,831324.0000,829431.0000,824862.0000,823218.0000,824060.0000,830102.0000,830512.0000,829971.0000,824361.0000,828990.0000,836854.0000,830021.0000,831794.0000,828979.0000,820935.0000,830111.0000,847084.0000,832446.0000,830432.0000,830342.0000,819612.0000,826284.0000,832636.0000,828679.0000,828299.0000,829731.0000,821836.0000,887451.0000,831474.0000,832947.0000,830773.0000,828669.0000,821165.0000,829771.0000,829300.0000,830353.0000,829570.0000,828699.0000,819662.0000,831594.0000" +generating large instruction graphs for N devices without d2d copy support - 16,contracting tree topology,100,1,104402900,1038142.8800,1030702.5600,1042852.9700,29615.1535,20349.0223,39261.3154,"benchmark,group:instruction-graph","1047223.0000,1047333.0000,1050950.0000,1050640.0000,1045831.0000,1045861.0000,1046893.0000,1043997.0000,1045801.0000,1044067.0000,1046822.0000,1046923.0000,1040781.0000,1045259.0000,1046232.0000,1046512.0000,1051472.0000,987360.0000,932315.0000,933628.0000,928618.0000,932215.0000,927396.0000,930903.0000,948837.0000,1045770.0000,1047463.0000,1045500.0000,1048265.0000,1045450.0000,1047433.0000,1046562.0000,1046441.0000,1045530.0000,1046041.0000,1044869.0000,1043697.0000,1048846.0000,1045460.0000,1045941.0000,1044939.0000,1044368.0000,1043256.0000,1052804.0000,1052704.0000,1046342.0000,1047614.0000,1048105.0000,1045821.0000,1045871.0000,1045430.0000,1046873.0000,1049678.0000,1043947.0000,1042885.0000,1043716.0000,1048896.0000,1043246.0000,1045390.0000,1047053.0000,1045531.0000,1046973.0000,1048395.0000,1046902.0000,1054708.0000,1047404.0000,1074305.0000,1050169.0000,1046482.0000,1047113.0000,1044508.0000,1044778.0000,1040962.0000,1044879.0000,1043967.0000,1044198.0000,1045230.0000,1042013.0000,1047313.0000,1045450.0000,1045500.0000,1045109.0000,1043426.0000,1049588.0000,1050850.0000,1053996.0000,1046232.0000,1046121.0000,1046322.0000,1043236.0000,1047824.0000,1046192.0000,1047564.0000,1047444.0000,1045650.0000,1042885.0000,1045630.0000,1045260.0000,1044608.0000,1043496.0000" +generating large instruction graphs for N devices without d2d copy support - 16,wave_sim topology,100,1,549751300,5654294.4000,5579530.1500,5727697.6100,377226.2344,369146.9240,388462.6257,"benchmark,group:instruction-graph","5245582.0000,5255872.0000,6232944.0000,6044086.0000,5981117.0000,6020441.0000,6002527.0000,5991015.0000,6046279.0000,5986316.0000,5995674.0000,5999041.0000,5995093.0000,5987038.0000,6001776.0000,6024498.0000,6010031.0000,6014359.0000,5991325.0000,5997858.0000,5998980.0000,6000824.0000,6005433.0000,5996626.0000,5999020.0000,5995744.0000,6011845.0000,5995173.0000,5987419.0000,6003128.0000,5987158.0000,6002657.0000,6020280.0000,6006765.0000,5982479.0000,6005593.0000,6004430.0000,6003759.0000,6010803.0000,5999742.0000,6021884.0000,6006995.0000,6000372.0000,5999311.0000,5995373.0000,5994833.0000,5989723.0000,6000734.0000,6006384.0000,6023527.0000,5923137.0000,5239130.0000,5702719.0000,5996375.0000,6003329.0000,6012536.0000,6000514.0000,5350531.0000,5245151.0000,5250422.0000,5234080.0000,5258246.0000,5243327.0000,5233739.0000,5245192.0000,5249219.0000,5260110.0000,5273024.0000,5257986.0000,5255521.0000,5248387.0000,5238699.0000,5218320.0000,5260230.0000,5238469.0000,5238439.0000,5246634.0000,5260731.0000,5265971.0000,5235804.0000,5250692.0000,5229982.0000,5253327.0000,5230694.0000,5239431.0000,5243638.0000,5271882.0000,5244911.0000,5228850.0000,5230013.0000,5245332.0000,5241725.0000,5236725.0000,5241495.0000,5241444.0000,5240883.0000,5239010.0000,5240352.0000,5264277.0000,5248939.0000" +generating large instruction graphs for N devices without d2d copy support - 16,jacobi topology,100,1,132682900,1279199.7600,1263587.3500,1292808.5200,74374.1808,66258.0279,80182.6624,"benchmark,group:instruction-graph","1162271.0000,1157232.0000,1349857.0000,1327926.0000,1326853.0000,1332615.0000,1326573.0000,1324138.0000,1330871.0000,1318568.0000,1320411.0000,1333225.0000,1325601.0000,1324869.0000,1324740.0000,1324308.0000,1320681.0000,1325510.0000,1329668.0000,1325981.0000,1319479.0000,1327445.0000,1320120.0000,1326282.0000,1330871.0000,1324018.0000,1322114.0000,1329719.0000,1326393.0000,1333596.0000,1326373.0000,1319319.0000,1321273.0000,1334167.0000,1328456.0000,1331613.0000,1333135.0000,1353745.0000,1326994.0000,1333245.0000,1320361.0000,1319118.0000,1333866.0000,1321473.0000,1321804.0000,1327294.0000,1319911.0000,1329338.0000,1328066.0000,1319650.0000,1326322.0000,1323256.0000,1321013.0000,1320361.0000,1332895.0000,1322074.0000,1321964.0000,1329989.0000,1325110.0000,1320060.0000,1339267.0000,1320882.0000,1318888.0000,1327134.0000,1323787.0000,1324930.0000,1327324.0000,1328055.0000,1320792.0000,1320861.0000,1331903.0000,1321824.0000,1320110.0000,1233957.0000,1158374.0000,1159076.0000,1157212.0000,1156360.0000,1157793.0000,1168924.0000,1161840.0000,1160588.0000,1158374.0000,1156721.0000,1156821.0000,1165427.0000,1167731.0000,1157783.0000,1162141.0000,1158414.0000,1159126.0000,1166690.0000,1157041.0000,1162251.0000,1158314.0000,1161640.0000,1185195.0000,1166520.0000,1159346.0000,1156380.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,90662700,1103499.7500,1102871.3700,1104428.4200,3835.6934,2822.4920,6278.5874,"benchmark,group:scheduler","1100834.0000,1107427.0000,1107999.0000,1104131.0000,1099653.0000,1104211.0000,1106535.0000,1101506.0000,1096136.0000,1103380.0000,1102117.0000,1099001.0000,1102388.0000,1099903.0000,1102187.0000,1103280.0000,1098551.0000,1101897.0000,1098921.0000,1109452.0000,1103390.0000,1105634.0000,1103470.0000,1105233.0000,1102909.0000,1103330.0000,1102298.0000,1101657.0000,1109772.0000,1100424.0000,1100965.0000,1103630.0000,1100845.0000,1104091.0000,1103240.0000,1107477.0000,1104401.0000,1103570.0000,1105995.0000,1106094.0000,1101316.0000,1107317.0000,1100044.0000,1105634.0000,1102999.0000,1102699.0000,1127455.0000,1113780.0000,1106265.0000,1105063.0000,1102128.0000,1102438.0000,1102508.0000,1103299.0000,1101677.0000,1105734.0000,1098962.0000,1103911.0000,1100113.0000,1100373.0000,1105033.0000,1102929.0000,1097138.0000,1102238.0000,1100274.0000,1100915.0000,1103690.0000,1110974.0000,1101606.0000,1104642.0000,1101706.0000,1100164.0000,1103560.0000,1102458.0000,1101386.0000,1100825.0000,1108249.0000,1100484.0000,1103551.0000,1105083.0000,1103780.0000,1106645.0000,1100915.0000,1102378.0000,1099783.0000,1105354.0000,1111164.0000,1101085.0000,1099753.0000,1102899.0000,1102127.0000,1102678.0000,1101707.0000,1103630.0000,1101076.0000,1105023.0000,1106556.0000,1104983.0000,1107217.0000,1102668.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,6694100,66704.4900,66424.4400,67148.9300,1763.9493,1234.3917,2358.0728,"benchmark,group:scheduler","66574.0000,66174.0000,71193.0000,66074.0000,66524.0000,66154.0000,74379.0000,66534.0000,66234.0000,65692.0000,66434.0000,66264.0000,66354.0000,65953.0000,65843.0000,65983.0000,66324.0000,65933.0000,66154.0000,66263.0000,66073.0000,71634.0000,66334.0000,66574.0000,66544.0000,65723.0000,65793.0000,66153.0000,66163.0000,66013.0000,65943.0000,66554.0000,66243.0000,65973.0000,65953.0000,66574.0000,72446.0000,66103.0000,66344.0000,65953.0000,66454.0000,66324.0000,66003.0000,66114.0000,66173.0000,65833.0000,66464.0000,65763.0000,65833.0000,66043.0000,66213.0000,72716.0000,66614.0000,66273.0000,66294.0000,65913.0000,66384.0000,65853.0000,66494.0000,66074.0000,66243.0000,66054.0000,66344.0000,65943.0000,66344.0000,65873.0000,72565.0000,66013.0000,66153.0000,66424.0000,66504.0000,66113.0000,66234.0000,66173.0000,66414.0000,66274.0000,66494.0000,66234.0000,66214.0000,66333.0000,66434.0000,72826.0000,66574.0000,65893.0000,66194.0000,65763.0000,66434.0000,66514.0000,66093.0000,66244.0000,65843.0000,66404.0000,65863.0000,66113.0000,65873.0000,66474.0000,72836.0000,66384.0000,66404.0000,66384.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,15098600,151101.7300,150664.5300,151684.4500,2569.1479,2086.1022,3094.0896,"benchmark,group:scheduler","156195.0000,149952.0000,160172.0000,151405.0000,150434.0000,150583.0000,149662.0000,157828.0000,151375.0000,149862.0000,149952.0000,150072.0000,150504.0000,149531.0000,155904.0000,149381.0000,150163.0000,149281.0000,149601.0000,149943.0000,156725.0000,151195.0000,149461.0000,150333.0000,150443.0000,149241.0000,149411.0000,156555.0000,150213.0000,149522.0000,148890.0000,149732.0000,149973.0000,150243.0000,155994.0000,150283.0000,150774.0000,150143.0000,149651.0000,150543.0000,157286.0000,150733.0000,150353.0000,150343.0000,151064.0000,150073.0000,149782.0000,157367.0000,150463.0000,149962.0000,149261.0000,149351.0000,150764.0000,149942.0000,155983.0000,149943.0000,150393.0000,149371.0000,150053.0000,148710.0000,155733.0000,149762.0000,150062.0000,149662.0000,150283.0000,149963.0000,149792.0000,156825.0000,150584.0000,149542.0000,149411.0000,150003.0000,150052.0000,156034.0000,150283.0000,150684.0000,150213.0000,150243.0000,148911.0000,150112.0000,156755.0000,150153.0000,149581.0000,150173.0000,150123.0000,149702.0000,149862.0000,157717.0000,150754.0000,149853.0000,149832.0000,150393.0000,150393.0000,155694.0000,149992.0000,150203.0000,149792.0000,149562.0000,149592.0000,149571.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,15968400,161107.1600,160543.5300,162353.1700,4059.4156,2344.3548,8025.9431,"benchmark,group:scheduler","160762.0000,159530.0000,166403.0000,160742.0000,167436.0000,160813.0000,159961.0000,159982.0000,160502.0000,160372.0000,165783.0000,160272.0000,158929.0000,160463.0000,159210.0000,159300.0000,167155.0000,160192.0000,158719.0000,159320.0000,159320.0000,159310.0000,159270.0000,165983.0000,159891.0000,159831.0000,159230.0000,160001.0000,160162.0000,168698.0000,159631.0000,159580.0000,160141.0000,160753.0000,159511.0000,165552.0000,160252.0000,160222.0000,159861.0000,159480.0000,159340.0000,166343.0000,159921.0000,159992.0000,160582.0000,160081.0000,160052.0000,164890.0000,161394.0000,160632.0000,159591.0000,159350.0000,160122.0000,159400.0000,164911.0000,159841.0000,159581.0000,161985.0000,159030.0000,159540.0000,166313.0000,159490.0000,159190.0000,159290.0000,160122.0000,159721.0000,165221.0000,159321.0000,159630.0000,159441.0000,159791.0000,158418.0000,165441.0000,160733.0000,158499.0000,159290.0000,159190.0000,159540.0000,158809.0000,165552.0000,159430.0000,159010.0000,158699.0000,158468.0000,159200.0000,167115.0000,159030.0000,159290.0000,159911.0000,159972.0000,159340.0000,166804.0000,160332.0000,160082.0000,159761.0000,159450.0000,160191.0000,193095.0000,159700.0000,159731.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,102871600,1039558.3400,1038048.5900,1042993.3000,11003.9264,4811.7072,19467.5530,"benchmark,group:scheduler","1034309.0000,1033157.0000,1051000.0000,1044338.0000,1038747.0000,1039860.0000,1043075.0000,1043486.0000,1039609.0000,1036312.0000,1041302.0000,1038857.0000,1039389.0000,1040240.0000,1040440.0000,1036032.0000,1037465.0000,1043716.0000,1040451.0000,1037976.0000,1039108.0000,1041653.0000,1037004.0000,1037424.0000,1035671.0000,1037826.0000,1034389.0000,1034519.0000,1037475.0000,1041202.0000,1037465.0000,1034680.0000,1035591.0000,1038046.0000,1036002.0000,1118228.0000,1035621.0000,1034189.0000,1034770.0000,1038387.0000,1041672.0000,1039348.0000,1036443.0000,1037124.0000,1038898.0000,1038476.0000,1036623.0000,1034409.0000,1037605.0000,1036573.0000,1035341.0000,1036854.0000,1038256.0000,1034189.0000,1042685.0000,1040520.0000,1036713.0000,1038346.0000,1036853.0000,1037525.0000,1034429.0000,1038236.0000,1035872.0000,1040260.0000,1039809.0000,1038868.0000,1037164.0000,1039639.0000,1036904.0000,1039739.0000,1038146.0000,1036393.0000,1037816.0000,1035822.0000,1039218.0000,1033517.0000,1033197.0000,1037675.0000,1037585.0000,1044377.0000,1073793.0000,1037245.0000,1035491.0000,1038196.0000,1038156.0000,1037765.0000,1034409.0000,1035381.0000,1037976.0000,1036864.0000,1036473.0000,1034749.0000,1033127.0000,1033036.0000,1035521.0000,1039358.0000,1037495.0000,1099803.0000,1034740.0000,1038126.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,26144900,261763.1100,260997.9500,262623.7300,4165.0054,3643.0573,4902.5887,"benchmark,group:scheduler","261844.0000,265601.0000,273747.0000,258608.0000,262015.0000,257276.0000,265151.0000,257907.0000,258328.0000,265772.0000,258438.0000,257336.0000,257627.0000,269489.0000,258047.0000,258128.0000,266433.0000,266062.0000,258007.0000,264820.0000,256845.0000,264049.0000,264670.0000,264850.0000,258128.0000,264269.0000,258067.0000,260262.0000,257857.0000,263217.0000,256895.0000,259320.0000,267595.0000,262365.0000,258789.0000,257626.0000,268426.0000,264830.0000,258979.0000,259520.0000,268617.0000,257617.0000,257606.0000,258668.0000,265992.0000,258227.0000,260552.0000,264490.0000,266734.0000,258809.0000,260051.0000,264059.0000,259991.0000,262345.0000,261063.0000,267896.0000,259500.0000,263878.0000,259791.0000,270030.0000,259620.0000,258709.0000,256895.0000,270701.0000,259080.0000,259650.0000,257847.0000,274699.0000,258679.0000,262395.0000,258719.0000,266834.0000,259009.0000,259620.0000,264138.0000,258027.0000,258137.0000,258469.0000,265381.0000,258799.0000,258949.0000,259450.0000,266433.0000,259911.0000,258698.0000,263648.0000,269028.0000,260953.0000,262596.0000,259570.0000,266383.0000,258739.0000,260562.0000,262686.0000,258458.0000,258268.0000,258689.0000,272384.0000,258188.0000,264199.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,205082600,2057430.6200,2054388.2300,2060376.8000,15236.2800,13017.5943,17782.7197,"benchmark,group:scheduler","2031690.0000,2031058.0000,2067267.0000,2025118.0000,2026750.0000,2073749.0000,2091153.0000,2061235.0000,2068119.0000,2054803.0000,2061686.0000,2060875.0000,2091904.0000,2062508.0000,2066095.0000,2054132.0000,2061656.0000,2060955.0000,2061957.0000,2061376.0000,2061627.0000,2031749.0000,2062048.0000,2061676.0000,2067698.0000,2026009.0000,2090010.0000,2061356.0000,2061646.0000,2061196.0000,2063510.0000,2059402.0000,2033002.0000,2060895.0000,2031269.0000,2062187.0000,2032481.0000,2062508.0000,2059472.0000,2063580.0000,2059352.0000,2062057.0000,2060925.0000,2067157.0000,2056146.0000,2091784.0000,2030938.0000,2032892.0000,2062488.0000,2031299.0000,2031038.0000,2061236.0000,2064882.0000,2058299.0000,2061856.0000,2060895.0000,2062208.0000,2061265.0000,2061586.0000,2061576.0000,2063229.0000,2058941.0000,2096552.0000,2055224.0000,2062077.0000,2064892.0000,2058501.0000,2059793.0000,2062368.0000,2060594.0000,2061656.0000,2060795.0000,2062308.0000,2061326.0000,2061556.0000,2061306.0000,2090912.0000,2060684.0000,2033674.0000,2031198.0000,2032782.0000,2060905.0000,2063299.0000,2060414.0000,2052859.0000,2076264.0000,2049473.0000,2044834.0000,2060263.0000,2062188.0000,2060384.0000,2062478.0000,2060835.0000,2068789.0000,2053961.0000,2067147.0000,2031690.0000,2054994.0000,2031980.0000,2032651.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,23299000,240213.2800,237307.3300,244097.0000,17060.5572,13586.8765,20860.8023,"benchmark,group:scheduler","260733.0000,232919.0000,249551.0000,231416.0000,240443.0000,224263.0000,231717.0000,232369.0000,232178.0000,262596.0000,231066.0000,232078.0000,231768.0000,292011.0000,230565.0000,232459.0000,231857.0000,290569.0000,231708.0000,232238.0000,233290.0000,289947.0000,231677.0000,232208.0000,232789.0000,260983.0000,232359.0000,231757.0000,232179.0000,290559.0000,231817.0000,232569.0000,232028.0000,261374.0000,231717.0000,232409.0000,232549.0000,290238.0000,232178.0000,232068.0000,232158.0000,236847.0000,229323.0000,230895.0000,231837.0000,232168.0000,262936.0000,230916.0000,231787.0000,232068.0000,291190.0000,231767.0000,231828.0000,232018.0000,261724.0000,232699.0000,231708.0000,231927.0000,261023.0000,233191.0000,231887.0000,231868.0000,235986.0000,229783.0000,231327.0000,232148.0000,231718.0000,261333.0000,232559.0000,232128.0000,232249.0000,261483.0000,231887.0000,232088.0000,232569.0000,260753.0000,232128.0000,232579.0000,232218.0000,260532.0000,232599.0000,232949.0000,231637.0000,289977.0000,232760.0000,232288.0000,231447.0000,236056.0000,228992.0000,232188.0000,232289.0000,231847.0000,261715.0000,231988.0000,232649.0000,231587.0000,261003.0000,232889.0000,231768.0000,232268.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,39445800,403295.1300,400621.7100,405850.0700,13274.8475,10998.5899,16071.2159,"benchmark,group:scheduler","404465.0000,407561.0000,385128.0000,425073.0000,392482.0000,379006.0000,392573.0000,369929.0000,408142.0000,370320.0000,373206.0000,377664.0000,392863.0000,384937.0000,388734.0000,368556.0000,397101.0000,387443.0000,399555.0000,388935.0000,389326.0000,380730.0000,378065.0000,380479.0000,386190.0000,406087.0000,406730.0000,406458.0000,407481.0000,376492.0000,406008.0000,408452.0000,434341.0000,405486.0000,407150.0000,405748.0000,407160.0000,406368.0000,405637.0000,406228.0000,406869.0000,406959.0000,406358.0000,406068.0000,406258.0000,406639.0000,406058.0000,407400.0000,405496.0000,406429.0000,407420.0000,406990.0000,405286.0000,440883.0000,429994.0000,408041.0000,404746.0000,406118.0000,406779.0000,405968.0000,406188.0000,406960.0000,406458.0000,405988.0000,406439.0000,407130.0000,405897.0000,406359.0000,406759.0000,406438.0000,406248.0000,406378.0000,406629.0000,406589.0000,406078.0000,441525.0000,429563.0000,406679.0000,406839.0000,405246.0000,406839.0000,406258.0000,406429.0000,406659.0000,405958.0000,406228.0000,408102.0000,404855.0000,406589.0000,406930.0000,405577.0000,399645.0000,408032.0000,434462.0000,405567.0000,406208.0000,407110.0000,406989.0000,405476.0000,408162.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,47182000,468461.8500,464931.7600,471974.8400,17929.2829,15842.4109,20201.9777,"benchmark,group:scheduler","460842.0000,436505.0000,502370.0000,495367.0000,491200.0000,467314.0000,461282.0000,464810.0000,493473.0000,464589.0000,464028.0000,464719.0000,493544.0000,464138.0000,464909.0000,493384.0000,464639.0000,463807.0000,494546.0000,463396.0000,464879.0000,493764.0000,464088.0000,464409.0000,468576.0000,460431.0000,494085.0000,464368.0000,463908.0000,470269.0000,458928.0000,466272.0000,492081.0000,464047.0000,464548.0000,493825.0000,464258.0000,464178.0000,494225.0000,464088.0000,464198.0000,467454.0000,491440.0000,463397.0000,464468.0000,464418.0000,494566.0000,493043.0000,464318.0000,494275.0000,463637.0000,464599.0000,493464.0000,464709.0000,463957.0000,493965.0000,464459.0000,464188.0000,494094.0000,463678.0000,478605.0000,463467.0000,494405.0000,433881.0000,435293.0000,435935.0000,435053.0000,466081.0000,462786.0000,435934.0000,464309.0000,438148.0000,461653.0000,435684.0000,464809.0000,463777.0000,465441.0000,492812.0000,464779.0000,464178.0000,493844.0000,464278.0000,464248.0000,436085.0000,463888.0000,435854.0000,463878.0000,495457.0000,462325.0000,436055.0000,464609.0000,493964.0000,463637.0000,464759.0000,493805.0000,464118.0000,434962.0000,493905.0000,464288.0000,438780.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,284326600,2822107.1100,2819656.7400,2825631.9100,14893.8219,11228.0705,19249.5545,"benchmark,group:scheduler","2815766.0000,2816598.0000,2847736.0000,2811337.0000,2813923.0000,2830684.0000,2821647.0000,2829031.0000,2810997.0000,2816217.0000,2876381.0000,2815095.0000,2816607.0000,2818211.0000,2872874.0000,2844921.0000,2815525.0000,2816117.0000,2818341.0000,2818461.0000,2872002.0000,2816287.0000,2816037.0000,2815035.0000,2817288.0000,2815326.0000,2849580.0000,2819453.0000,2817339.0000,2814734.0000,2816998.0000,2815836.0000,2843178.0000,2816848.0000,2815926.0000,2815907.0000,2821957.0000,2811397.0000,2817409.0000,2814504.0000,2817970.0000,2814704.0000,2816508.0000,2827618.0000,2815015.0000,2816838.0000,2814613.0000,2822739.0000,2810626.0000,2876241.0000,2831265.0000,2822439.0000,2814483.0000,2852376.0000,2810706.0000,2816858.0000,2814614.0000,2817239.0000,2815255.0000,2817098.0000,2817570.0000,2814433.0000,2818481.0000,2813862.0000,2823030.0000,2810025.0000,2817840.0000,2841535.0000,2817078.0000,2815155.0000,2817710.0000,2817148.0000,2814344.0000,2822939.0000,2809574.0000,2822518.0000,2809845.0000,2817940.0000,2814834.0000,2817278.0000,2815204.0000,2816547.0000,2818020.0000,2814444.0000,2817519.0000,2844240.0000,2821827.0000,2811157.0000,2817469.0000,2814884.0000,2816889.0000,2815295.0000,2816848.0000,2817970.0000,2843639.0000,2875579.0000,2814373.0000,2816988.0000,2816106.0000,2817859.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,78285200,782389.6300,780191.2200,784504.9500,10976.2704,8720.7383,13711.4398,"benchmark,group:scheduler","784786.0000,784315.0000,798802.0000,777622.0000,784695.0000,783744.0000,812709.0000,784004.0000,783063.0000,784676.0000,784425.0000,781670.0000,784415.0000,785167.0000,783613.0000,783743.0000,782190.0000,784646.0000,783834.0000,784525.0000,782591.0000,784736.0000,784055.0000,783493.0000,784014.0000,782792.0000,784645.0000,783282.0000,784505.0000,784024.0000,754228.0000,784155.0000,783614.0000,819251.0000,777943.0000,782872.0000,784616.0000,771961.0000,798932.0000,770188.0000,772041.0000,767644.0000,784164.0000,782382.0000,784194.0000,784846.0000,784355.0000,782431.0000,783544.0000,784425.0000,783854.0000,784085.0000,784445.0000,754078.0000,784245.0000,783523.0000,784155.0000,783273.0000,779115.0000,771080.0000,800255.0000,789866.0000,785016.0000,783133.0000,784816.0000,811867.0000,782983.0000,754839.0000,784786.0000,783313.0000,783784.0000,782662.0000,756602.0000,783173.0000,784155.0000,782491.0000,784615.0000,784375.0000,784245.0000,811807.0000,784015.0000,754919.0000,790827.0000,777301.0000,783564.0000,783022.0000,754980.0000,784385.0000,783934.0000,783003.0000,755109.0000,784334.0000,783864.0000,783583.0000,782422.0000,784986.0000,783944.0000,784305.0000,778685.0000,754578.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,209382400,2074761.0000,2058176.0100,2087279.0100,73263.2853,59217.8474,85846.4069,"benchmark,group:scheduler","1902144.0000,1910931.0000,2110999.0000,2108916.0000,2115158.0000,2100089.0000,2102584.0000,2098497.0000,2111310.0000,2108986.0000,2105279.0000,2110038.0000,2109086.0000,2103565.0000,2106822.0000,2103706.0000,2103766.0000,2108295.0000,2108996.0000,2101511.0000,2104447.0000,2108666.0000,2107473.0000,2105239.0000,2112102.0000,2105760.0000,2112793.0000,2112613.0000,2106933.0000,2105770.0000,2099478.0000,2099659.0000,2105650.0000,2109377.0000,2109126.0000,2104778.0000,2098576.0000,2107724.0000,2100189.0000,2102553.0000,2110769.0000,2097164.0000,2116090.0000,2141758.0000,2112363.0000,2105810.0000,2117863.0000,2108235.0000,2101983.0000,2103406.0000,2111320.0000,2105049.0000,2105900.0000,2102644.0000,2112533.0000,2107804.0000,2110749.0000,2104288.0000,2099067.0000,2100771.0000,2112212.0000,2102374.0000,2102514.0000,2096322.0000,2113675.0000,2098706.0000,2106682.0000,2097995.0000,2103365.0000,2100881.0000,2110299.0000,2110960.0000,2104067.0000,2108976.0000,2109978.0000,2106151.0000,2108565.0000,2102323.0000,2102193.0000,2111250.0000,2103626.0000,2099959.0000,2110259.0000,2104107.0000,2114487.0000,2098336.0000,1944584.0000,1897616.0000,1906552.0000,1901092.0000,1913535.0000,1918626.0000,1899479.0000,1900100.0000,1902044.0000,1899419.0000,1897104.0000,1904107.0000,1916661.0000,1909769.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,37264500,359881.9700,358972.3300,363388.3800,8102.3127,1741.7043,18913.7521,"benchmark,group:scheduler","359279.0000,357756.0000,362415.0000,358468.0000,358648.0000,358377.0000,364139.0000,358046.0000,363637.0000,358027.0000,357997.0000,359930.0000,358448.0000,358197.0000,363337.0000,358337.0000,358308.0000,358387.0000,358177.0000,361464.0000,358477.0000,358137.0000,358838.0000,358207.0000,358197.0000,363558.0000,358537.0000,357996.0000,358328.0000,358367.0000,357927.0000,358518.0000,357846.0000,361083.0000,358488.0000,358107.0000,358337.0000,358548.0000,358327.0000,363047.0000,358317.0000,358307.0000,358698.0000,358167.0000,360802.0000,358568.0000,358177.0000,358578.0000,358327.0000,358278.0000,438339.0000,358297.0000,358227.0000,358227.0000,357996.0000,363978.0000,358597.0000,358398.0000,364800.0000,358337.0000,358287.0000,358427.0000,358247.0000,358428.0000,363567.0000,358258.0000,358117.0000,358337.0000,358197.0000,362626.0000,357896.0000,357756.0000,358367.0000,358157.0000,358127.0000,358739.0000,358618.0000,357996.0000,366473.0000,358017.0000,360331.0000,357786.0000,358107.0000,358508.0000,357986.0000,358117.0000,358517.0000,358217.0000,358107.0000,363357.0000,358398.0000,358037.0000,358728.0000,358337.0000,360332.0000,358457.0000,357937.0000,358277.0000,358398.0000,357967.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,43417600,455825.2400,455333.0100,456382.8400,2668.8687,2383.7736,2965.4694,"benchmark,group:scheduler","453829.0000,459449.0000,460862.0000,455361.0000,455571.0000,453408.0000,454109.0000,455391.0000,452425.0000,460341.0000,453187.0000,460922.0000,454099.0000,457405.0000,454269.0000,456473.0000,455471.0000,453798.0000,453959.0000,454370.0000,459409.0000,454349.0000,460191.0000,454620.0000,457525.0000,453067.0000,457526.0000,453989.0000,459449.0000,454199.0000,453418.0000,456603.0000,452966.0000,460852.0000,453458.0000,457595.0000,454900.0000,455552.0000,452937.0000,462014.0000,454309.0000,454189.0000,454049.0000,452767.0000,461673.0000,452746.0000,459138.0000,453297.0000,458346.0000,453998.0000,457726.0000,454931.0000,453928.0000,453728.0000,454730.0000,458297.0000,455331.0000,459059.0000,454039.0000,456062.0000,453447.0000,459249.0000,453357.0000,453277.0000,456423.0000,453067.0000,461623.0000,454640.0000,460581.0000,453478.0000,456784.0000,454179.0000,456363.0000,455923.0000,452927.0000,453317.0000,453398.0000,460311.0000,453608.0000,460130.0000,453748.0000,458237.0000,453057.0000,459029.0000,454039.0000,453518.0000,454038.0000,454510.0000,460391.0000,454420.0000,459910.0000,453808.0000,458718.0000,454820.0000,455332.0000,453898.0000,460020.0000,454770.0000,454580.0000,453938.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,44099800,441071.7300,440527.6200,441844.9000,3268.2240,2569.9893,4899.9972,"benchmark,group:scheduler","439642.0000,445583.0000,451324.0000,438359.0000,444871.0000,439141.0000,442447.0000,438650.0000,439912.0000,439100.0000,438510.0000,439822.0000,438900.0000,440363.0000,439120.0000,442687.0000,440363.0000,443969.0000,440553.0000,438810.0000,440784.0000,439641.0000,440634.0000,438399.0000,446164.0000,439561.0000,439081.0000,441405.0000,440343.0000,442276.0000,438349.0000,443479.0000,439752.0000,439541.0000,438960.0000,438790.0000,440323.0000,439751.0000,438930.0000,438760.0000,444601.0000,439050.0000,445613.0000,440022.0000,438370.0000,441495.0000,438980.0000,439080.0000,439331.0000,445292.0000,439421.0000,438579.0000,444171.0000,439150.0000,442297.0000,438640.0000,445312.0000,437979.0000,440653.0000,438860.0000,438550.0000,445943.0000,439091.0000,446595.0000,438679.0000,445232.0000,438820.0000,445342.0000,438610.0000,439130.0000,443189.0000,438309.0000,441304.0000,438709.0000,446405.0000,439040.0000,441235.0000,439591.0000,438450.0000,446294.0000,438569.0000,440773.0000,439401.0000,459139.0000,439652.0000,446354.0000,442066.0000,437788.0000,440243.0000,438840.0000,440704.0000,439441.0000,445603.0000,439681.0000,438440.0000,443929.0000,439071.0000,442196.0000,438981.0000,443839.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,308499500,3044196.9200,3028093.1300,3057841.6800,75404.6465,66156.8841,82495.8143,"benchmark,group:scheduler","2917869.0000,2911817.0000,2920254.0000,2922779.0000,2916066.0000,2957986.0000,3090447.0000,3088523.0000,3087651.0000,3088522.0000,3089925.0000,3088904.0000,3092531.0000,3087251.0000,3089795.0000,3090297.0000,3088503.0000,3092009.0000,3091328.0000,3088804.0000,3096057.0000,3089515.0000,3091869.0000,3080628.0000,3102509.0000,3086459.0000,3088223.0000,3093042.0000,3089945.0000,3091168.0000,3089444.0000,3100495.0000,3084506.0000,3083644.0000,3085216.0000,3080207.0000,3083804.0000,3090106.0000,3090607.0000,3089976.0000,3079797.0000,3087831.0000,3094183.0000,3092089.0000,3080658.0000,3081880.0000,3084014.0000,3087010.0000,3085938.0000,3087842.0000,3093382.0000,3081029.0000,3080518.0000,3090898.0000,3085056.0000,3088113.0000,3115013.0000,3083183.0000,3080848.0000,3083724.0000,3087200.0000,3089916.0000,3080668.0000,3076000.0000,3089885.0000,3085658.0000,3086379.0000,3090016.0000,3088573.0000,3080167.0000,3083623.0000,3088093.0000,3090907.0000,3091659.0000,3087071.0000,3081570.0000,3085998.0000,3087241.0000,3086178.0000,3133108.0000,2906739.0000,2914733.0000,2915395.0000,2916517.0000,2906438.0000,2913461.0000,2916526.0000,2918321.0000,2912078.0000,2954048.0000,2917719.0000,2915305.0000,2913862.0000,2915605.0000,2913341.0000,2921747.0000,2903913.0000,2913150.0000,2917138.0000,2912059.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,77026500,727071.9900,726382.1000,727797.6500,3609.4535,3215.1584,4421.3253,"benchmark,group:scheduler","723800.0000,722357.0000,728699.0000,726766.0000,729852.0000,723499.0000,727016.0000,724251.0000,728730.0000,722167.0000,728389.0000,731234.0000,731525.0000,725654.0000,727006.0000,728740.0000,723550.0000,726846.0000,722908.0000,728710.0000,721386.0000,721916.0000,727468.0000,727607.0000,721756.0000,722598.0000,728749.0000,728159.0000,725834.0000,730252.0000,730343.0000,721336.0000,727827.0000,724601.0000,727428.0000,722307.0000,727668.0000,734109.0000,721736.0000,729661.0000,735082.0000,729180.0000,722548.0000,727317.0000,730303.0000,733338.0000,721135.0000,729962.0000,727958.0000,723990.0000,723340.0000,726535.0000,728659.0000,724581.0000,727718.0000,722838.0000,740251.0000,724672.0000,726716.0000,729711.0000,724291.0000,722258.0000,728088.0000,729962.0000,728950.0000,723099.0000,728409.0000,731174.0000,725334.0000,730402.0000,729842.0000,724401.0000,731404.0000,729381.0000,730623.0000,723791.0000,730523.0000,728138.0000,730052.0000,721887.0000,729631.0000,724131.0000,722358.0000,726074.0000,729672.0000,732817.0000,722718.0000,730864.0000,732256.0000,728900.0000,722949.0000,728329.0000,728028.0000,722398.0000,723309.0000,727918.0000,731044.0000,723850.0000,728800.0000,728870.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,268452800,2767301.1800,2759101.5400,2774170.4900,38192.2079,31476.8787,46674.7686,"benchmark,group:scheduler","2765991.0000,2815556.0000,2788945.0000,2759329.0000,2785007.0000,2764208.0000,2780909.0000,2759178.0000,2787382.0000,2792882.0000,2751815.0000,2822158.0000,2685219.0000,2664519.0000,2656203.0000,2686420.0000,2649140.0000,2685358.0000,2638741.0000,2682564.0000,2685899.0000,2760181.0000,2756253.0000,2817469.0000,2757095.0000,2818030.0000,2756894.0000,2792973.0000,2751885.0000,2818201.0000,2787963.0000,2755882.0000,2760661.0000,2756033.0000,2822178.0000,2782162.0000,2763717.0000,2751955.0000,2817670.0000,2760531.0000,2790088.0000,2751915.0000,2758487.0000,2817359.0000,2756704.0000,2734712.0000,2752615.0000,2818962.0000,2786160.0000,2757235.0000,2758637.0000,2821777.0000,2805967.0000,2764389.0000,2785448.0000,2764057.0000,2809644.0000,2790798.0000,2755202.0000,2758898.0000,2786741.0000,2793223.0000,2751905.0000,2778876.0000,2740483.0000,2793092.0000,2749700.0000,2788965.0000,2780569.0000,2813091.0000,2816367.0000,2756844.0000,2758838.0000,2766904.0000,2771632.0000,2767284.0000,2741225.0000,2769949.0000,2769729.0000,2742968.0000,2794606.0000,2767294.0000,2802681.0000,2787943.0000,2824002.0000,2767384.0000,2769038.0000,2794536.0000,2824733.0000,2763567.0000,2774217.0000,2763918.0000,2769057.0000,2767064.0000,2749881.0000,2761693.0000,2769949.0000,2770380.0000,2765991.0000,2769589.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,39935400,402996.3100,400807.8200,404613.2700,9485.3540,7410.2673,11611.8945,"benchmark,group:scheduler","406268.0000,406659.0000,413412.0000,405317.0000,406599.0000,406298.0000,406308.0000,406809.0000,405938.0000,406709.0000,406508.0000,406439.0000,406599.0000,405797.0000,406740.0000,377593.0000,377072.0000,406469.0000,406459.0000,406328.0000,406930.0000,405797.0000,406789.0000,377303.0000,406398.0000,406349.0000,406489.0000,406518.0000,406098.0000,406659.0000,377634.0000,377013.0000,406759.0000,405927.0000,377744.0000,406178.0000,377554.0000,406519.0000,406128.0000,377624.0000,406018.0000,406609.0000,406759.0000,406168.0000,406449.0000,406278.0000,406519.0000,406529.0000,406378.0000,377394.0000,406458.0000,406087.0000,406538.0000,406459.0000,406268.0000,406529.0000,410987.0000,401790.0000,406659.0000,406248.0000,406729.0000,406358.0000,406439.0000,406098.0000,406709.0000,406048.0000,377694.0000,406789.0000,405868.0000,406438.0000,406800.0000,406088.0000,406288.0000,406148.0000,406809.0000,406389.0000,406358.0000,406649.0000,406319.0000,406609.0000,406328.0000,406028.0000,377654.0000,406218.0000,406549.0000,406509.0000,406569.0000,405937.0000,406639.0000,406539.0000,406469.0000,406368.0000,406379.0000,406308.0000,406819.0000,405997.0000,406749.0000,377133.0000,406448.0000,406509.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,64325000,644714.4000,642483.5200,647491.9700,12626.6344,10657.1839,15123.1973,"benchmark,group:scheduler","638348.0000,668175.0000,690597.0000,638629.0000,637577.0000,638959.0000,639911.0000,636875.0000,638769.0000,668115.0000,667944.0000,638769.0000,641033.0000,635673.0000,669768.0000,637346.0000,638880.0000,638228.0000,638759.0000,668615.0000,638028.0000,638258.0000,638930.0000,668866.0000,637767.0000,638138.0000,669006.0000,638188.0000,638579.0000,642596.0000,633959.0000,638819.0000,669047.0000,637607.0000,638078.0000,668745.0000,638959.0000,638428.0000,637746.0000,639790.0000,639690.0000,637116.0000,638970.0000,642446.0000,634731.0000,638619.0000,638128.0000,639190.0000,639971.0000,637436.0000,638879.0000,637727.0000,668946.0000,667724.0000,638709.0000,638128.0000,638518.0000,667483.0000,639060.0000,639119.0000,638018.0000,638789.0000,641003.0000,636435.0000,638769.0000,639270.0000,667463.0000,638158.0000,638920.0000,637957.0000,640102.0000,666632.0000,638899.0000,638889.0000,638619.0000,667924.0000,639780.0000,637146.0000,638919.0000,669537.0000,637035.0000,638889.0000,667934.0000,638288.0000,638989.0000,637957.0000,638950.0000,638638.0000,639110.0000,638789.0000,638068.0000,638398.0000,638709.0000,669237.0000,637657.0000,638518.0000,667874.0000,638428.0000,638288.0000,639361.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,69298700,701954.4100,699290.5700,705367.5400,15253.5628,12006.7574,19246.6672,"benchmark,group:scheduler","696999.0000,695787.0000,704253.0000,696799.0000,696669.0000,696308.0000,668556.0000,725042.0000,696679.0000,697571.0000,696308.0000,695917.0000,697260.0000,696829.0000,696398.0000,697290.0000,696228.0000,698181.0000,695777.0000,696207.0000,697790.0000,726094.0000,695677.0000,696408.0000,697060.0000,696919.0000,754879.0000,696478.0000,699534.0000,693533.0000,697450.0000,698502.0000,694815.0000,696819.0000,697200.0000,696569.0000,696398.0000,697621.0000,696518.0000,697130.0000,724471.0000,696799.0000,696979.0000,697510.0000,696339.0000,696107.0000,726836.0000,696318.0000,729060.0000,693803.0000,697100.0000,755270.0000,695927.0000,725173.0000,727036.0000,695807.0000,696338.0000,696669.0000,727016.0000,696368.0000,696258.0000,697090.0000,725754.0000,696338.0000,697240.0000,725463.0000,696919.0000,697049.0000,695958.0000,726425.0000,696839.0000,697631.0000,696057.0000,697139.0000,695847.0000,696348.0000,668615.0000,754828.0000,697099.0000,696118.0000,696819.0000,697510.0000,696058.0000,696519.0000,725383.0000,698683.0000,694995.0000,697120.0000,698242.0000,695166.0000,696458.0000,682683.0000,718450.0000,689435.0000,692130.0000,751132.0000,695567.0000,696949.0000,695928.0000,697821.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,290160300,2904943.5900,2902542.4800,2907590.7100,12854.1466,10445.4299,15545.5278,"benchmark,group:scheduler","2898543.0000,2903883.0000,2938318.0000,2900597.0000,2902991.0000,2895297.0000,2903553.0000,2904103.0000,2902520.0000,2903261.0000,2903361.0000,2902480.0000,2904564.0000,2937577.0000,2897792.0000,2906768.0000,2895748.0000,2932527.0000,2903553.0000,2902460.0000,2903633.0000,2903111.0000,2875789.0000,2903062.0000,2904514.0000,2903763.0000,2872614.0000,2903622.0000,2903051.0000,2902861.0000,2903212.0000,2904274.0000,2900997.0000,2904565.0000,2901458.0000,2905827.0000,2902160.0000,2903001.0000,2903062.0000,2903542.0000,2904204.0000,2902059.0000,2903191.0000,2905876.0000,2931345.0000,2901869.0000,2907840.0000,2899325.0000,2904754.0000,2902670.0000,2873966.0000,2902991.0000,2905045.0000,2902350.0000,2903583.0000,2905015.0000,2904595.0000,2900677.0000,2902470.0000,2904544.0000,2902720.0000,2903623.0000,2903352.0000,2931465.0000,2904013.0000,2937807.0000,2900697.0000,2904654.0000,2900015.0000,2902801.0000,2904635.0000,2873555.0000,2919913.0000,2901138.0000,2929612.0000,2897501.0000,2903011.0000,2904324.0000,2873034.0000,2903692.0000,2903132.0000,2904073.0000,2899876.0000,2904003.0000,2934100.0000,2901127.0000,2934762.0000,2932547.0000,2904073.0000,2900607.0000,2903171.0000,2903902.0000,2880148.0000,2895557.0000,2900466.0000,2900276.0000,2930774.0000,2904574.0000,2933179.0000,2906067.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,82091700,825565.1000,820006.5200,830507.1900,26926.2843,22158.2301,33187.7260,"benchmark,group:scheduler","772462.0000,743939.0000,865188.0000,839570.0000,841984.0000,812338.0000,842245.0000,812338.0000,813661.0000,841714.0000,812598.0000,813000.0000,841323.0000,841664.0000,815213.0000,840001.0000,813771.0000,811807.0000,813109.0000,843347.0000,837075.0000,812669.0000,806177.0000,819652.0000,814622.0000,848356.0000,796798.0000,816556.0000,798512.0000,825413.0000,842345.0000,815755.0000,839229.0000,841934.0000,812248.0000,812909.0000,872492.0000,839629.0000,813491.0000,813179.0000,812869.0000,842465.0000,842815.0000,811075.0000,813571.0000,841403.0000,841423.0000,842025.0000,841964.0000,848928.0000,835461.0000,900525.0000,841513.0000,841734.0000,842355.0000,842425.0000,841183.0000,841844.0000,841694.0000,813089.0000,840832.0000,843537.0000,841634.0000,841183.0000,842535.0000,842034.0000,841373.0000,901196.0000,841063.0000,842174.0000,812589.0000,812699.0000,842545.0000,812438.0000,842365.0000,811997.0000,813200.0000,842215.0000,812328.0000,843968.0000,810975.0000,812869.0000,841363.0000,842144.0000,842174.0000,812669.0000,842295.0000,812729.0000,842535.0000,812078.0000,812939.0000,843427.0000,811066.0000,843567.0000,780137.0000,744520.0000,748817.0000,769296.0000,744269.0000,772062.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,146744400,1468650.3700,1467527.7000,1470221.6200,6721.8348,5148.0917,9625.6915,"benchmark,group:scheduler","1469784.0000,1477829.0000,1495544.0000,1465546.0000,1463082.0000,1471487.0000,1463673.0000,1462761.0000,1463512.0000,1469124.0000,1460336.0000,1468242.0000,1466117.0000,1471136.0000,1463963.0000,1472760.0000,1462851.0000,1465366.0000,1461078.0000,1462941.0000,1478271.0000,1468582.0000,1469684.0000,1465988.0000,1472970.0000,1466609.0000,1464885.0000,1465055.0000,1472669.0000,1460798.0000,1469694.0000,1464565.0000,1464624.0000,1458803.0000,1461659.0000,1468431.0000,1466518.0000,1473070.0000,1458864.0000,1478180.0000,1460747.0000,1485915.0000,1464805.0000,1475996.0000,1463221.0000,1473030.0000,1466819.0000,1469664.0000,1466699.0000,1467320.0000,1464123.0000,1463983.0000,1465767.0000,1471618.0000,1469484.0000,1468632.0000,1472239.0000,1462992.0000,1469975.0000,1467811.0000,1470415.0000,1463332.0000,1466177.0000,1469855.0000,1463993.0000,1469584.0000,1467961.0000,1467309.0000,1464534.0000,1472129.0000,1477429.0000,1503348.0000,1465046.0000,1477018.0000,1462931.0000,1473541.0000,1465196.0000,1471568.0000,1464775.0000,1471357.0000,1463583.0000,1474083.0000,1466167.0000,1463353.0000,1473120.0000,1465547.0000,1469364.0000,1465135.0000,1474884.0000,1462410.0000,1476227.0000,1465306.0000,1477479.0000,1465386.0000,1468883.0000,1462631.0000,1479342.0000,1468733.0000,1465055.0000,1472960.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,34588400,345723.6700,345065.9300,346444.0600,3508.8216,3183.1335,3910.1960,"benchmark,group:scheduler","350593.0000,344401.0000,354911.0000,343730.0000,350372.0000,342908.0000,341386.0000,350342.0000,345303.0000,343359.0000,351384.0000,343490.0000,342467.0000,352366.0000,344652.0000,342758.0000,349921.0000,344872.0000,342958.0000,349721.0000,343249.0000,344240.0000,348969.0000,344161.0000,344270.0000,351604.0000,344111.0000,343309.0000,349611.0000,344541.0000,350483.0000,343199.0000,343319.0000,348388.0000,341877.0000,341816.0000,349070.0000,342127.0000,342287.0000,350783.0000,343219.0000,341756.0000,350292.0000,342748.0000,343990.0000,350262.0000,344982.0000,340904.0000,347657.0000,341906.0000,342267.0000,348799.0000,344051.0000,343349.0000,347146.0000,340674.0000,342047.0000,348298.0000,344241.0000,348278.0000,342608.0000,342618.0000,348358.0000,341705.0000,342608.0000,349661.0000,342387.0000,345153.0000,350993.0000,344120.0000,343339.0000,350392.0000,344691.0000,342768.0000,350312.0000,344220.0000,342468.0000,352536.0000,345133.0000,345182.0000,350202.0000,341546.0000,342968.0000,349159.0000,343699.0000,351515.0000,344070.0000,343610.0000,353318.0000,344772.0000,344130.0000,349892.0000,343248.0000,343559.0000,350082.0000,345513.0000,344020.0000,350082.0000,343510.0000,342046.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,35617800,355880.0300,355174.1600,356740.5900,3965.9160,3440.8864,5260.9602,"benchmark,group:scheduler","351975.0000,358798.0000,364750.0000,352506.0000,352587.0000,359590.0000,352837.0000,352817.0000,361052.0000,351985.0000,353158.0000,359509.0000,353077.0000,352857.0000,359610.0000,353448.0000,359650.0000,353779.0000,354280.0000,361103.0000,354941.0000,352095.0000,358198.0000,352626.0000,353859.0000,373286.0000,352877.0000,352757.0000,359610.0000,352657.0000,360542.0000,355291.0000,352607.0000,361203.0000,353759.0000,352666.0000,360541.0000,351976.0000,353889.0000,359820.0000,353438.0000,352927.0000,359339.0000,353137.0000,360371.0000,352156.0000,351935.0000,360502.0000,354610.0000,354169.0000,358317.0000,354220.0000,352436.0000,359700.0000,353559.0000,354269.0000,361563.0000,353258.0000,352637.0000,355372.0000,353939.0000,360431.0000,353909.0000,352095.0000,360201.0000,354410.0000,351685.0000,359089.0000,353789.0000,352166.0000,359579.0000,355021.0000,352556.0000,358979.0000,353268.0000,358568.0000,353759.0000,351885.0000,364730.0000,354119.0000,352717.0000,360572.0000,351995.0000,353839.0000,361053.0000,352897.0000,353358.0000,359680.0000,354681.0000,362816.0000,354299.0000,354490.0000,360792.0000,352316.0000,353298.0000,362024.0000,354410.0000,352847.0000,360842.0000,352416.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,36685200,367478.2300,366428.5600,369492.0200,7186.5487,4219.8621,12459.9893,"benchmark,group:scheduler","371352.0000,363487.0000,386190.0000,367134.0000,366453.0000,372515.0000,364318.0000,370560.0000,363688.0000,363497.0000,371292.0000,364970.0000,365612.0000,416578.0000,366262.0000,372905.0000,366573.0000,364759.0000,372014.0000,363938.0000,365501.0000,370891.0000,363798.0000,363748.0000,370591.0000,363998.0000,372494.0000,363527.0000,362505.0000,371623.0000,363988.0000,363217.0000,401569.0000,362184.0000,371863.0000,364369.0000,363578.0000,371432.0000,363277.0000,363517.0000,372384.0000,364399.0000,363597.0000,369779.0000,364329.0000,370912.0000,364519.0000,363768.0000,371472.0000,364129.0000,362114.0000,369008.0000,363377.0000,364439.0000,370691.0000,363918.0000,371142.0000,363397.0000,364580.0000,371332.0000,365010.0000,364469.0000,369479.0000,362124.0000,370330.0000,363507.0000,361984.0000,370811.0000,364349.0000,364198.0000,369218.0000,364959.0000,363867.0000,370300.0000,364489.0000,370731.0000,364920.0000,364639.0000,369449.0000,362245.0000,362575.0000,371312.0000,363397.0000,363407.0000,370230.0000,364529.0000,370481.0000,362746.0000,363727.0000,370791.0000,363056.0000,363718.0000,371432.0000,364960.0000,367786.0000,365952.0000,363577.0000,370180.0000,363748.0000,364088.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,240440000,2384480.6100,2363592.5800,2397217.8400,81619.1670,54069.3963,111797.1493,"benchmark,group:scheduler","2413373.0000,2410137.0000,2419304.0000,2406170.0000,2431578.0000,2395439.0000,2405649.0000,2402071.0000,2410047.0000,2404456.0000,2397994.0000,2393786.0000,2404817.0000,2408784.0000,2409516.0000,2398505.0000,2391933.0000,2413784.0000,2404536.0000,2067157.0000,2110169.0000,2405758.0000,2401661.0000,2412742.0000,2401971.0000,2399527.0000,2404487.0000,2407251.0000,2421459.0000,2404877.0000,2401992.0000,2411740.0000,2404586.0000,2414345.0000,2400007.0000,2397824.0000,2402012.0000,2408464.0000,2410117.0000,2400318.0000,2410187.0000,2401922.0000,2398705.0000,2410338.0000,2402452.0000,2128533.0000,2055815.0000,2052429.0000,2037651.0000,2194819.0000,2392674.0000,2402412.0000,2405418.0000,2396151.0000,2409155.0000,2400068.0000,2403805.0000,2409526.0000,2395740.0000,2408173.0000,2408403.0000,2396441.0000,2417190.0000,2395880.0000,2409716.0000,2406621.0000,2417371.0000,2412651.0000,2405949.0000,2404255.0000,2411118.0000,2414936.0000,2400188.0000,2404556.0000,2413123.0000,2407993.0000,2411339.0000,2407942.0000,2402512.0000,2413724.0000,2404556.0000,2415677.0000,2414626.0000,2394357.0000,2408895.0000,2401039.0000,2413613.0000,2400780.0000,2397252.0000,2431959.0000,2402142.0000,2405468.0000,2402763.0000,2405398.0000,2415527.0000,2412992.0000,2412972.0000,2398054.0000,2404466.0000,2417301.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,55757800,564526.5300,563122.9600,566230.6300,7901.9237,6490.0414,9708.6401,"benchmark,group:scheduler","565120.0000,561232.0000,568576.0000,567905.0000,560500.0000,570510.0000,590488.0000,559348.0000,566011.0000,560099.0000,563065.0000,556974.0000,562966.0000,564949.0000,564017.0000,564088.0000,556303.0000,567183.0000,571171.0000,561903.0000,556823.0000,562595.0000,565911.0000,556553.0000,563937.0000,585327.0000,565770.0000,569278.0000,580368.0000,578565.0000,553998.0000,565369.0000,556412.0000,566121.0000,559248.0000,566112.0000,561602.0000,557775.0000,589866.0000,559488.0000,578064.0000,555852.0000,564739.0000,557265.0000,564147.0000,568004.0000,554921.0000,561823.0000,555481.0000,589906.0000,583434.0000,564608.0000,561904.0000,555271.0000,570569.0000,556543.0000,564839.0000,556112.0000,569638.0000,572404.0000,555150.0000,563286.0000,558728.0000,566702.0000,555662.0000,565450.0000,557284.0000,564488.0000,565961.0000,555762.0000,564899.0000,556142.0000,564980.0000,560069.0000,569367.0000,563667.0000,557144.0000,562855.0000,558708.0000,565079.0000,556804.0000,562665.0000,569888.0000,561492.0000,564138.0000,569087.0000,564087.0000,560281.0000,563877.0000,559589.0000,567223.0000,581922.0000,559398.0000,565801.0000,557485.0000,563106.0000,561773.0000,563507.0000,558877.0000,581220.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,254963400,2871430.2600,2868838.8100,2874062.1500,13265.7460,10713.1429,16588.0802,"benchmark,group:scheduler","2876270.0000,2873897.0000,2914313.0000,2842958.0000,2874157.0000,2844971.0000,2876250.0000,2873816.0000,2875359.0000,2873355.0000,2875198.0000,2872433.0000,2874838.0000,2844931.0000,2876511.0000,2872504.0000,2868887.0000,2872333.0000,2874758.0000,2873776.0000,2874988.0000,2844601.0000,2876541.0000,2844029.0000,2876320.0000,2842798.0000,2845863.0000,2874287.0000,2874287.0000,2875549.0000,2870800.0000,2864298.0000,2872434.0000,2874357.0000,2874317.0000,2874727.0000,2844981.0000,2876170.0000,2872895.0000,2875539.0000,2872544.0000,2856142.0000,2847035.0000,2874347.0000,2868646.0000,2873676.0000,2875038.0000,2873686.0000,2873896.0000,2874307.0000,2903853.0000,2874517.0000,2873665.0000,2876411.0000,2847286.0000,2870289.0000,2858728.0000,2870229.0000,2853758.0000,2838820.0000,2918240.0000,2867875.0000,2875860.0000,2873515.0000,2871943.0000,2873495.0000,2877193.0000,2871942.0000,2876401.0000,2872514.0000,2875789.0000,2873326.0000,2874397.0000,2874266.0000,2875148.0000,2873456.0000,2876090.0000,2873395.0000,2874087.0000,2873595.0000,2875228.0000,2873896.0000,2876301.0000,2843529.0000,2875830.0000,2873545.0000,2903312.0000,2873526.0000,2903642.0000,2873726.0000,2875309.0000,2873756.0000,2876571.0000,2873666.0000,2874337.0000,2873175.0000,2874988.0000,2866532.0000,2874438.0000,2867023.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,99989500,1028708.1900,1025555.9400,1031788.6000,15952.9641,15053.2321,17750.5061,"benchmark,group:scheduler","1045100.0000,1045249.0000,1022165.0000,1014331.0000,1015713.0000,1015523.0000,1045500.0000,1016074.0000,1045350.0000,1015904.0000,1045490.0000,1016134.0000,1045010.0000,1015934.0000,1045550.0000,1015944.0000,1045330.0000,1015814.0000,1045700.0000,995065.0000,1010072.0000,1011465.0000,1042354.0000,988783.0000,1038998.0000,1016224.0000,1013630.0000,1016064.0000,1047214.0000,1014110.0000,1045651.0000,1044869.0000,1015944.0000,1045620.0000,1044769.0000,1015904.0000,1045540.0000,1049718.0000,1038246.0000,998671.0000,1038667.0000,1001256.0000,1045510.0000,1015624.0000,1045680.0000,1015784.0000,1045861.0000,1015794.0000,1045239.0000,1015523.0000,1046321.0000,1015423.0000,1045340.0000,1015894.0000,1045330.0000,1017337.0000,1014731.0000,1018830.0000,1044748.0000,1043306.0000,1046652.0000,1045099.0000,1014021.0000,1045820.0000,1045170.0000,1015603.0000,1045681.0000,1015653.0000,1045861.0000,1015724.0000,1045470.0000,1015974.0000,1045470.0000,1015794.0000,1045450.0000,1015894.0000,1045169.0000,1015954.0000,1045600.0000,1016274.0000,1045099.0000,1015794.0000,1045510.0000,1016244.0000,1016315.0000,1015814.0000,1045250.0000,1017136.0000,1014862.0000,1016014.0000,1045400.0000,1015694.0000,1015864.0000,1016154.0000,1016385.0000,1045671.0000,1015613.0000,1045510.0000,1045199.0000,1016034.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,102415600,1025068.0600,1022364.9600,1028598.4200,15789.9112,13131.7101,20334.5014,"benchmark,group:scheduler","1016064.0000,1045770.0000,1091337.0000,1013790.0000,1044037.0000,1016305.0000,1016034.0000,1024340.0000,1013149.0000,1035782.0000,1044789.0000,1046001.0000,1073783.0000,1015223.0000,1016525.0000,1016255.0000,1015683.0000,1017126.0000,1015603.0000,1015724.0000,1045660.0000,1015614.0000,1016866.0000,1015102.0000,1045620.0000,1015794.0000,1046472.0000,1015082.0000,1045459.0000,1015813.0000,1045841.0000,1044999.0000,1016195.0000,1015764.0000,1045750.0000,1015443.0000,1045851.0000,1015413.0000,1017187.0000,1015463.0000,1044939.0000,1016475.0000,1017307.0000,1014591.0000,1018469.0000,1017477.0000,1011956.0000,1016936.0000,1016706.0000,1015703.0000,1015332.0000,1016906.0000,1016666.0000,1075136.0000,1012498.0000,1045249.0000,1016044.0000,1015683.0000,1016505.0000,1016375.0000,1016195.0000,1016425.0000,1015653.0000,1045270.0000,1015954.0000,1045320.0000,1015964.0000,1045139.0000,1015714.0000,1046041.0000,1030431.0000,1016034.0000,1015503.0000,1046201.0000,1015113.0000,1045961.0000,1015593.0000,1046112.0000,1015483.0000,1045319.0000,1016094.0000,1015914.0000,1018699.0000,1013840.0000,1016394.0000,1018539.0000,1016105.0000,1041883.0000,1016345.0000,1016004.0000,1018739.0000,1013278.0000,1017296.0000,1016465.0000,1015243.0000,1016425.0000,1016535.0000,1015433.0000,1016996.0000,1015493.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,96838300,935064.6300,925063.6800,944460.0400,49242.2581,45161.8009,53432.4053,"benchmark,group:scheduler","878614.0000,880487.0000,1011886.0000,987070.0000,952834.0000,958736.0000,959016.0000,957182.0000,957042.0000,987801.0000,957393.0000,987790.0000,957974.0000,987400.0000,957733.0000,987430.0000,958355.0000,957574.0000,958044.0000,987370.0000,957483.0000,987721.0000,957463.0000,987550.0000,957684.0000,987861.0000,957543.0000,957403.0000,958986.0000,957964.0000,957893.0000,987020.0000,958044.0000,961310.0000,955068.0000,957804.0000,958746.0000,957743.0000,987190.0000,957663.0000,987650.0000,957674.0000,987780.0000,957383.0000,987119.0000,958164.0000,987180.0000,958154.0000,987390.0000,957333.0000,987831.0000,957143.0000,1016815.0000,957473.0000,987790.0000,957894.0000,987349.0000,957453.0000,987820.0000,957954.0000,957474.0000,958144.0000,958115.0000,986478.0000,958495.0000,997028.0000,863616.0000,879886.0000,877341.0000,851062.0000,877842.0000,905635.0000,852995.0000,871440.0000,846403.0000,852113.0000,861091.0000,878012.0000,878924.0000,877411.0000,878794.0000,878023.0000,850721.0000,854818.0000,878373.0000,878413.0000,904934.0000,878042.0000,894825.0000,851041.0000,864858.0000,870458.0000,899293.0000,869457.0000,895465.0000,868094.0000,905334.0000,879826.0000,849408.0000,851562.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,657265400,6346926.2000,6269829.0300,6415226.0400,370890.6060,333256.7401,396836.4635,"benchmark,group:scheduler","5760298.0000,5750349.0000,6824635.0000,6613826.0000,6532532.0000,6592766.0000,6560154.0000,6592685.0000,6593487.0000,6588307.0000,6589610.0000,6591403.0000,6561126.0000,6591494.0000,6590011.0000,6606692.0000,6587336.0000,6591203.0000,6561407.0000,6587706.0000,6559724.0000,6554684.0000,6592355.0000,6589630.0000,6592616.0000,6559753.0000,6592917.0000,6533934.0000,6589119.0000,6580562.0000,6569952.0000,6596012.0000,6613625.0000,6596633.0000,6556467.0000,6562368.0000,6591484.0000,6589349.0000,6155336.0000,5774726.0000,6604338.0000,6621991.0000,6646759.0000,6590030.0000,6591423.0000,6594439.0000,6593848.0000,6589630.0000,6591203.0000,6589610.0000,6592335.0000,6597044.0000,6617864.0000,6636419.0000,6632291.0000,6614728.0000,6590351.0000,6561146.0000,6592466.0000,6589079.0000,6592546.0000,6621059.0000,6590011.0000,6590432.0000,6561827.0000,6596283.0000,6580543.0000,6635126.0000,6582407.0000,6575693.0000,6572107.0000,6591243.0000,6596283.0000,6060477.0000,5774806.0000,5779715.0000,5757913.0000,5750610.0000,5777751.0000,5749247.0000,5776979.0000,5832024.0000,5774224.0000,5778632.0000,5777992.0000,5777400.0000,5782731.0000,5778272.0000,5768423.0000,5792910.0000,5769806.0000,5831833.0000,5804872.0000,5801205.0000,5796386.0000,5772260.0000,5751130.0000,5775327.0000,5782139.0000,5776729.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,162493100,1613541.4500,1609732.3300,1618013.0900,20937.9788,18233.3458,25446.7227,"benchmark,group:scheduler","1595222.0000,1626622.0000,1633645.0000,1624287.0000,1654184.0000,1625479.0000,1661327.0000,1619097.0000,1627834.0000,1624347.0000,1655206.0000,1625690.0000,1654424.0000,1625529.0000,1627032.0000,1625128.0000,1626863.0000,1625710.0000,1654594.0000,1625801.0000,1654955.0000,1625550.0000,1626191.0000,1629277.0000,1593529.0000,1626070.0000,1654535.0000,1625480.0000,1690663.0000,1619318.0000,1655446.0000,1625480.0000,1625499.0000,1655497.0000,1629337.0000,1593228.0000,1626632.0000,1654194.0000,1625840.0000,1627203.0000,1602316.0000,1617424.0000,1606233.0000,1601594.0000,1621623.0000,1595643.0000,1597616.0000,1595913.0000,1626431.0000,1597367.0000,1596655.0000,1596384.0000,1622193.0000,1609879.0000,1620449.0000,1595362.0000,1597326.0000,1598278.0000,1594681.0000,1597607.0000,1595733.0000,1597467.0000,1599049.0000,1594109.0000,1598748.0000,1594571.0000,1626732.0000,1598449.0000,1595102.0000,1598268.0000,1595102.0000,1597556.0000,1598409.0000,1594290.0000,1598839.0000,1595062.0000,1626522.0000,1598708.0000,1594141.0000,1598408.0000,1595483.0000,1597566.0000,1598980.0000,1595993.0000,1595533.0000,1596655.0000,1596805.0000,1600943.0000,1591836.0000,1599180.0000,1594761.0000,1626993.0000,1599320.0000,1594551.0000,1596364.0000,1596655.0000,1596495.0000,1601013.0000,1592667.0000,1598168.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,247289900,2472037.6800,2470817.4100,2473517.6000,6866.8602,5552.3199,9526.1560,"benchmark,group:scheduler","2468648.0000,2467205.0000,2481612.0000,2471093.0000,2480220.0000,2488005.0000,2480811.0000,2473557.0000,2470301.0000,2475961.0000,2472375.0000,2471975.0000,2474138.0000,2471724.0000,2463358.0000,2473277.0000,2463498.0000,2475291.0000,2470361.0000,2474750.0000,2466764.0000,2472105.0000,2466253.0000,2464140.0000,2467345.0000,2469549.0000,2469810.0000,2471473.0000,2467426.0000,2466694.0000,2466474.0000,2472746.0000,2472074.0000,2455433.0000,2465292.0000,2471103.0000,2482213.0000,2474699.0000,2480871.0000,2468017.0000,2475130.0000,2467585.0000,2475821.0000,2469961.0000,2479608.0000,2468156.0000,2505377.0000,2474089.0000,2476412.0000,2463989.0000,2473306.0000,2472264.0000,2473989.0000,2471122.0000,2474298.0000,2485570.0000,2473447.0000,2471744.0000,2473758.0000,2476673.0000,2470441.0000,2473648.0000,2469339.0000,2474920.0000,2463979.0000,2476061.0000,2473437.0000,2483837.0000,2469569.0000,2467787.0000,2471183.0000,2462075.0000,2476132.0000,2463408.0000,2479358.0000,2470662.0000,2477194.0000,2461234.0000,2477375.0000,2471433.0000,2465602.0000,2475331.0000,2470501.0000,2468718.0000,2465121.0000,2474028.0000,2493816.0000,2469680.0000,2470582.0000,2471213.0000,2463758.0000,2475771.0000,2473477.0000,2471944.0000,2464389.0000,2463307.0000,2466053.0000,2460142.0000,2472305.0000,2474018.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,63814100,638459.7700,638039.8000,638940.5600,2275.8167,1950.6828,2809.2981,"benchmark,group:scheduler","638378.0000,637928.0000,646845.0000,645071.0000,637026.0000,641494.0000,645021.0000,636234.0000,640943.0000,637888.0000,636304.0000,640332.0000,638038.0000,636996.0000,639720.0000,635563.0000,641744.0000,639370.0000,637266.0000,638538.0000,639621.0000,636635.0000,638358.0000,640622.0000,636855.0000,637316.0000,636354.0000,637486.0000,638979.0000,636214.0000,639370.0000,638358.0000,636425.0000,639661.0000,638508.0000,636866.0000,639891.0000,635343.0000,641804.0000,637917.0000,636004.0000,640232.0000,638137.0000,635653.0000,641905.0000,636745.0000,636765.0000,640012.0000,635583.0000,638599.0000,639229.0000,634991.0000,642105.0000,638909.0000,636665.0000,639771.0000,638138.0000,635974.0000,642787.0000,637456.0000,638429.0000,637406.0000,637657.0000,637016.0000,638398.0000,636665.0000,640453.0000,639059.0000,636365.0000,638719.0000,641274.0000,637096.0000,637636.0000,635673.0000,637687.0000,638659.0000,634010.0000,641464.0000,640182.0000,636715.0000,638498.0000,639781.0000,637336.0000,639300.0000,635613.0000,640112.0000,638388.0000,635643.0000,641284.0000,637747.0000,635132.0000,640782.0000,638599.0000,636194.0000,640974.0000,636304.0000,640142.0000,638067.0000,636114.0000,640462.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,65402200,660177.6600,659492.5700,661228.3600,4271.2634,3110.3015,7399.5428,"benchmark,group:scheduler","661342.0000,656462.0000,669888.0000,662494.0000,658757.0000,658166.0000,662243.0000,658687.0000,657174.0000,654790.0000,661362.0000,663676.0000,657635.0000,661762.0000,657024.0000,658216.0000,662664.0000,658847.0000,657214.0000,663636.0000,657224.0000,656412.0000,659468.0000,662835.0000,656362.0000,657394.0000,664147.0000,657524.0000,658527.0000,663846.0000,655381.0000,657675.0000,664187.0000,658246.0000,658356.0000,688212.0000,657254.0000,662885.0000,657074.0000,658987.0000,664128.0000,663345.0000,657685.0000,663145.0000,664057.0000,655631.0000,662944.0000,663896.0000,655411.0000,661101.0000,664338.0000,655801.0000,658026.0000,662835.0000,655701.0000,659438.0000,663286.0000,655721.0000,667674.0000,663245.0000,659088.0000,663416.0000,662935.0000,657444.0000,663366.0000,657645.0000,662634.0000,661272.0000,656022.0000,662293.0000,660531.0000,656552.0000,662725.0000,658256.0000,656783.0000,661132.0000,659468.0000,656002.0000,656502.0000,664297.0000,656623.0000,657224.0000,663626.0000,657415.0000,660650.0000,663546.0000,656373.0000,657785.0000,664578.0000,656472.0000,657714.0000,664307.0000,657404.0000,658687.0000,662564.0000,656893.0000,659919.0000,663436.0000,656452.0000,656292.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,66929600,616171.0800,615225.4000,618668.6300,7312.2947,3461.5349,15541.3440,"benchmark,group:scheduler","618911.0000,611888.0000,620875.0000,621467.0000,612078.0000,614603.0000,618440.0000,613191.0000,618150.0000,613861.0000,619723.0000,617438.0000,612039.0000,617759.0000,622859.0000,613361.0000,613471.0000,613461.0000,615535.0000,619042.0000,612610.0000,611958.0000,618410.0000,613470.0000,619131.0000,613561.0000,619222.0000,615786.0000,613390.0000,612699.0000,612279.0000,616677.0000,621566.0000,612139.0000,612068.0000,615956.0000,612038.0000,619322.0000,612830.0000,613942.0000,617699.0000,612790.0000,614433.0000,611387.0000,611587.0000,618831.0000,612760.0000,616426.0000,612309.0000,617048.0000,611998.0000,612218.0000,619022.0000,614082.0000,612550.0000,620584.0000,612690.0000,616567.0000,618661.0000,612640.0000,678985.0000,619202.0000,610566.0000,614963.0000,612118.0000,632597.0000,619903.0000,612429.0000,618350.0000,610876.0000,619763.0000,620664.0000,613441.0000,616597.0000,620123.0000,611116.0000,614012.0000,612759.0000,615475.0000,613992.0000,611247.0000,617990.0000,610976.0000,617860.0000,613832.0000,612609.0000,618020.0000,625975.0000,613200.0000,616546.0000,612058.0000,615295.0000,614733.0000,612890.0000,617759.0000,612208.0000,617078.0000,619663.0000,612339.0000,613411.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,446926000,4332381.2200,4295547.4800,4366043.1900,179406.6249,165576.9558,187535.7645,"benchmark,group:scheduler","4073089.0000,4085964.0000,4471034.0000,4481233.0000,4457878.0000,4456376.0000,4478217.0000,4457108.0000,4479049.0000,4453771.0000,4463229.0000,4470503.0000,4461206.0000,4470062.0000,4463449.0000,4500190.0000,4473538.0000,4460053.0000,4452439.0000,4462518.0000,4456486.0000,4469952.0000,4472667.0000,4472687.0000,4472116.0000,4476865.0000,4468890.0000,4464111.0000,4460374.0000,4454953.0000,4474811.0000,4459472.0000,4479891.0000,4456556.0000,4477125.0000,4459793.0000,4475743.0000,4497794.0000,4474791.0000,4463569.0000,4459021.0000,4454722.0000,4459221.0000,4464451.0000,4461846.0000,4456236.0000,4456637.0000,4457278.0000,4464982.0000,4464291.0000,4463900.0000,4458600.0000,4476334.0000,4337220.0000,4476715.0000,4464732.0000,4480011.0000,4475322.0000,4459121.0000,4480131.0000,4456656.0000,4457639.0000,4474861.0000,4469792.0000,4469821.0000,4470122.0000,4327952.0000,4082558.0000,4093558.0000,4083540.0000,4081776.0000,4078279.0000,4079782.0000,4079261.0000,4085933.0000,4106502.0000,4107073.0000,4078870.0000,4082137.0000,4083088.0000,4097185.0000,4082066.0000,4097095.0000,4098718.0000,4102135.0000,4145006.0000,4108316.0000,4085493.0000,4076516.0000,4090954.0000,4072518.0000,4095642.0000,4084701.0000,4081916.0000,4091855.0000,4103236.0000,4081455.0000,4082988.0000,4095772.0000,4085032.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,107447300,1072561.0800,1071436.1700,1073928.4200,6299.4949,5265.5504,7926.8685,"benchmark,group:scheduler","1072311.0000,1069496.0000,1079705.0000,1082711.0000,1066700.0000,1079334.0000,1074494.0000,1070477.0000,1074515.0000,1070217.0000,1076840.0000,1071359.0000,1078112.0000,1078703.0000,1073022.0000,1064355.0000,1073143.0000,1068975.0000,1064175.0000,1071299.0000,1071069.0000,1062322.0000,1062923.0000,1064647.0000,1078392.0000,1068334.0000,1082660.0000,1072472.0000,1086117.0000,1068123.0000,1065778.0000,1079584.0000,1066620.0000,1073954.0000,1077340.0000,1071620.0000,1077761.0000,1066590.0000,1069806.0000,1070737.0000,1070939.0000,1083622.0000,1065268.0000,1069966.0000,1070387.0000,1065558.0000,1074184.0000,1083872.0000,1068563.0000,1065609.0000,1072351.0000,1071169.0000,1071719.0000,1071009.0000,1066339.0000,1083321.0000,1066499.0000,1070126.0000,1071359.0000,1063764.0000,1071670.0000,1069335.0000,1065338.0000,1071660.0000,1072161.0000,1071679.0000,1071189.0000,1067843.0000,1077931.0000,1082249.0000,1067943.0000,1071760.0000,1072140.0000,1075557.0000,1088451.0000,1066560.0000,1080175.0000,1066310.0000,1075256.0000,1076609.0000,1069425.0000,1068804.0000,1073463.0000,1071639.0000,1076780.0000,1094543.0000,1072131.0000,1067541.0000,1066850.0000,1071840.0000,1071109.0000,1096767.0000,1068554.0000,1073654.0000,1070698.0000,1066710.0000,1073283.0000,1073102.0000,1075698.0000,1069285.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,317101200,3190588.7700,3184371.1900,3195910.6400,29219.0248,23267.6271,39665.9678,"benchmark,group:scheduler","3223889.0000,3193302.0000,3173754.0000,3193462.0000,3187971.0000,3164668.0000,3160249.0000,3224541.0000,3191768.0000,3196277.0000,3220673.0000,3223699.0000,3192520.0000,3166491.0000,3162824.0000,3254277.0000,3183964.0000,3222677.0000,3205835.0000,3252734.0000,3188352.0000,3223249.0000,3200956.0000,3223248.0000,3192470.0000,3224460.0000,3192650.0000,3224621.0000,3191528.0000,3224811.0000,3191408.0000,3225062.0000,3172212.0000,3228348.0000,3188122.0000,3165780.0000,3163856.0000,3170628.0000,3187610.0000,3196056.0000,3191829.0000,3165989.0000,3191608.0000,3167282.0000,3194724.0000,3192821.0000,3162343.0000,3225192.0000,3193542.0000,3192420.0000,3164397.0000,3195205.0000,3192069.0000,3166461.0000,3192069.0000,3270238.0000,3196958.0000,3166300.0000,3191979.0000,3195767.0000,3191678.0000,3166370.0000,3222968.0000,3164137.0000,3194764.0000,3204704.0000,3187580.0000,3205795.0000,3191498.0000,3167202.0000,3162142.0000,3224200.0000,3192860.0000,3224069.0000,3162934.0000,3188242.0000,3073114.0000,3059728.0000,3175118.0000,3193071.0000,3223779.0000,3191247.0000,3165359.0000,3194624.0000,3164928.0000,3219632.0000,3166230.0000,3192671.0000,3166541.0000,3191007.0000,3166601.0000,3192039.0000,3225042.0000,3190947.0000,3195025.0000,3165910.0000,3192650.0000,3165730.0000,3195125.0000,3161421.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,88462100,1018800.4400,1015852.9400,1021809.4500,15217.7542,13120.9565,17586.8958,"benchmark,group:scheduler","992259.0000,985005.0000,1033226.0000,1013830.0000,1016284.0000,1016074.0000,1016435.0000,1015873.0000,1016445.0000,1016004.0000,1015934.0000,1016224.0000,1016014.0000,1015913.0000,1015943.0000,1016645.0000,1016004.0000,1016084.0000,1016205.0000,1016074.0000,1016546.0000,1020723.0000,1013970.0000,990115.0000,1014882.0000,1016295.0000,1011876.0000,1016004.0000,1015923.0000,1016415.0000,1047053.0000,1014131.0000,1045580.0000,1045170.0000,1016064.0000,1045039.0000,1038657.0000,1010213.0000,1038537.0000,1011265.0000,1038096.0000,1010694.0000,1038577.0000,1025752.0000,1016454.0000,1015743.0000,1044829.0000,1016265.0000,1045530.0000,1017196.0000,1015143.0000,1015914.0000,1045500.0000,1015453.0000,1016104.0000,1016214.0000,1017026.0000,1015353.0000,1016054.0000,1016335.0000,1015974.0000,1016616.0000,1015523.0000,1016495.0000,1015914.0000,1016575.0000,1016125.0000,1020643.0000,982400.0000,1020142.0000,983593.0000,1018689.0000,1042535.0000,1016485.0000,1016555.0000,1016114.0000,1045581.0000,1044688.0000,1015974.0000,1045240.0000,1015423.0000,1045971.0000,1044839.0000,1016004.0000,1045961.0000,1015222.0000,1045930.0000,1015453.0000,1045670.0000,1016044.0000,1016936.0000,1005895.0000,1008851.0000,1007568.0000,990516.0000,999052.0000,1001967.0000,989945.0000,986108.0000,999663.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,102232600,1018483.8000,1015879.1700,1022538.5000,16322.4298,11950.8264,26312.6378,"benchmark,group:scheduler","1042805.0000,1016746.0000,1061751.0000,1025502.0000,1017386.0000,999593.0000,1017818.0000,999072.0000,1028378.0000,1016345.0000,1011205.0000,1008580.0000,1011054.0000,998712.0000,1010534.0000,999883.0000,1028999.0000,1001767.0000,1025693.0000,1002518.0000,1027045.0000,1000865.0000,1013660.0000,1022997.0000,1020423.0000,1011826.0000,1017838.0000,1020172.0000,1009792.0000,999343.0000,1031072.0000,1011916.0000,1015483.0000,1003400.0000,1023940.0000,1019951.0000,1013530.0000,1011786.0000,1009562.0000,1002128.0000,1012127.0000,1012688.0000,1004913.0000,1025792.0000,1009922.0000,1016876.0000,1012067.0000,1017016.0000,1015814.0000,1017186.0000,1010975.0000,1015803.0000,1015272.0000,1014862.0000,1020022.0000,1015253.0000,1010844.0000,1009552.0000,1018439.0000,1015363.0000,1012167.0000,1002629.0000,1019861.0000,1000886.0000,1003691.0000,1050389.0000,1012297.0000,1011977.0000,1017236.0000,1007568.0000,1019681.0000,1016184.0000,1005264.0000,1065608.0000,1016555.0000,1016606.0000,1015934.0000,1015743.0000,1045841.0000,1015884.0000,1015874.0000,1016515.0000,1015724.0000,1045790.0000,1015663.0000,1045931.0000,1015553.0000,1045370.0000,1016064.0000,1017276.0000,1014912.0000,1016275.0000,1017437.0000,1015202.0000,1016245.0000,1118098.0000,1049227.0000,1017387.0000,1015182.0000,1044798.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,102049600,1021236.7100,1018961.0500,1024306.1100,13442.7650,10782.2709,17378.4237,"benchmark,group:scheduler","1016315.0000,1015783.0000,1015203.0000,1015483.0000,1016155.0000,1015974.0000,1016545.0000,1015393.0000,1016535.0000,1015693.0000,1016155.0000,1016304.0000,1016325.0000,1016155.0000,1016144.0000,1015564.0000,1049708.0000,1016966.0000,1041322.0000,1015593.0000,1015182.0000,1074696.0000,1045069.0000,1044969.0000,1016235.0000,1016655.0000,1015974.0000,1016095.0000,1015583.0000,1016415.0000,1015844.0000,1045701.0000,1015713.0000,1045460.0000,1044919.0000,1016265.0000,1015433.0000,1046061.0000,1015883.0000,1017256.0000,1015333.0000,1045149.0000,1016055.0000,1016014.0000,1016405.0000,1015944.0000,1016175.0000,1016244.0000,1015634.0000,1035942.0000,1010924.0000,1008981.0000,1010915.0000,1011636.0000,1011195.0000,1009231.0000,1011085.0000,1006015.0000,1016334.0000,1016005.0000,1015843.0000,1020202.0000,1015633.0000,1012979.0000,1015653.0000,1017217.0000,1016545.0000,1014762.0000,1016144.0000,1015924.0000,1016946.0000,1016374.0000,1015473.0000,1075066.0000,1014541.0000,1014712.0000,1045189.0000,1016365.0000,1015954.0000,1016685.0000,1007839.0000,1046221.0000,1015804.0000,1045630.0000,1015333.0000,1045730.0000,1015373.0000,1045851.0000,1016936.0000,1016254.0000,1015553.0000,1015423.0000,1016184.0000,1044898.0000,1016705.0000,1015734.0000,1015734.0000,1016154.0000,1015854.0000,1016315.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,662712700,6610584.1300,6606118.8900,6617271.2800,27284.2748,20047.9850,44968.3549,"benchmark,group:scheduler","6591353.0000,6590832.0000,6779850.0000,6690091.0000,6587105.0000,6621681.0000,6617884.0000,6657419.0000,6615318.0000,6653000.0000,6598367.0000,6620779.0000,6647469.0000,6621630.0000,6594288.0000,6616511.0000,6622051.0000,6617814.0000,6589199.0000,6591674.0000,6589410.0000,6568871.0000,6583969.0000,6621531.0000,6618074.0000,6621741.0000,6595591.0000,6646929.0000,6584030.0000,6626560.0000,6613074.0000,6626650.0000,6596252.0000,6617032.0000,6594218.0000,6618595.0000,6616080.0000,6616982.0000,6588678.0000,6592556.0000,6588528.0000,6619867.0000,6589209.0000,6621631.0000,6559994.0000,6622502.0000,6588087.0000,6621862.0000,6588858.0000,6621491.0000,6589850.0000,6620348.0000,6618815.0000,6621600.0000,6591313.0000,6594489.0000,6585362.0000,6621410.0000,6619217.0000,6620799.0000,6596934.0000,6610930.0000,6560164.0000,6627051.0000,6587025.0000,6618836.0000,6589029.0000,6619106.0000,6605911.0000,6625999.0000,6584260.0000,6622021.0000,6617933.0000,6675173.0000,6618965.0000,6620689.0000,6620519.0000,6626530.0000,6594269.0000,6626841.0000,6588298.0000,6622252.0000,6589319.0000,6591985.0000,6617683.0000,6583839.0000,6599588.0000,6617864.0000,6589139.0000,6592416.0000,6590111.0000,6591153.0000,6591363.0000,6618896.0000,6620939.0000,6589359.0000,6621270.0000,6590432.0000,6621871.0000,6616081.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,161227300,1613311.8100,1610272.4600,1616436.2500,15666.3749,14628.0498,17941.7655,"benchmark,group:scheduler","1625580.0000,1621813.0000,1624348.0000,1606072.0000,1627894.0000,1601203.0000,1632473.0000,1596254.0000,1607636.0000,1624077.0000,1598298.0000,1595543.0000,1626692.0000,1595923.0000,1626602.0000,1627263.0000,1595242.0000,1598128.0000,1625940.0000,1595101.0000,1597406.0000,1596525.0000,1598909.0000,1625449.0000,1594832.0000,1628465.0000,1618827.0000,1626121.0000,1627523.0000,1595303.0000,1596705.0000,1628084.0000,1624458.0000,1625199.0000,1625490.0000,1626130.0000,1627093.0000,1595493.0000,1597075.0000,1596304.0000,1655336.0000,1627022.0000,1595834.0000,1596234.0000,1628094.0000,1595382.0000,1596875.0000,1627022.0000,1597226.0000,1626031.0000,1594420.0000,1597226.0000,1596375.0000,1599410.0000,1625650.0000,1594661.0000,1597166.0000,1596715.0000,1626241.0000,1627103.0000,1594851.0000,1597467.0000,1626060.0000,1625960.0000,1626762.0000,1595693.0000,1596344.0000,1628636.0000,1594120.0000,1597336.0000,1596094.0000,1597006.0000,1628215.0000,1623726.0000,1598528.0000,1624968.0000,1625339.0000,1626792.0000,1625018.0000,1626181.0000,1596374.0000,1654925.0000,1627313.0000,1624337.0000,1626933.0000,1626962.0000,1623546.0000,1626712.0000,1625469.0000,1596995.0000,1627163.0000,1625600.0000,1598709.0000,1624998.0000,1623225.0000,1598027.0000,1596926.0000,1595963.0000,1627754.0000,1624658.0000" +normalizing randomized box sets - 2d,"small, native",100,45,2560500,573.3096,570.7844,578.9247,18.5344,9.8004,30.0648,"benchmark,group:grid","569.0444,568.1333,597.3111,578.1556,575.7333,662.5333,575.4889,575.7111,575.7111,571.9333,571.9333,571.7111,568.5778,574.1556,570.6000,571.4889,569.7111,569.0222,570.6000,568.6000,569.4667,565.0222,571.4889,570.8000,571.2444,570.3778,571.4889,569.4889,569.6889,569.7111,566.3778,571.9111,569.4667,569.4889,569.9333,570.5778,569.7111,568.6000,567.6889,569.0444,569.2667,568.1333,568.3778,572.8222,687.4889,569.6889,571.0444,570.3778,571.0444,567.6889,572.1556,567.9333,569.2444,570.6000,569.7111,569.9333,569.6889,564.3778,569.4667,568.1556,570.3778,571.6889,572.3556,574.6000,569.6889,571.9333,565.7111,569.0222,570.6000,570.3778,568.5778,569.7111,568.6000,570.3556,571.6889,572.1556,568.8222,569.2667,568.5778,570.3778,569.4889,567.4667,678.5778,567.7111,567.2444,565.2667,570.5778,568.3556,569.9333,568.8000,567.9333,567.9333,568.3556,566.3778,565.6889,570.6000,569.9111,568.1333,566.3778,566.8000" +normalizing randomized box sets - 2d,"small, embedded in 3d",100,38,2565000,579.3950,576.8424,586.0339,18.7808,4.0659,34.1694,"benchmark,group:grid","574.7368,575.5000,613.2105,582.6316,578.6842,581.8421,582.6316,579.2105,580.2632,578.4211,578.6842,578.9211,577.8947,578.9474,576.3158,577.8684,576.0526,576.2895,577.3421,577.1053,576.8421,576.5526,577.8947,578.1579,578.1316,576.3158,575.5263,575.2368,575.0000,575.5000,576.0526,574.9737,720.7895,576.8421,576.3158,576.0263,578.1579,578.1579,575.7632,578.4211,577.6316,577.8947,575.5000,576.5789,576.5526,574.7368,574.4474,575.7895,575.5000,574.9737,574.1842,577.6053,576.0526,576.2895,574.2105,577.3684,573.9211,575.7895,576.8158,576.0526,575.5000,574.7368,575.2368,575.5263,575.7895,575.5000,574.4737,575.2368,575.2632,574.1842,574.7368,574.1842,576.0526,574.9737,574.7368,574.7105,575.2632,693.3684,577.3684,577.3421,576.8421,576.3158,576.5526,576.5789,575.5000,575.2632,577.1053,576.0263,576.3158,574.7105,575.5263,574.1842,574.7368,576.8421,577.6053,575.5263,575.7632,575.7895,574.7105,576.3158" +normalizing randomized box sets - 2d,"medium, native",100,5,2791500,5989.6240,5970.2620,6032.9280,140.0309,81.3485,222.6299,"benchmark,group:grid","5970.8000,5979.0000,6259.4000,5979.0000,5975.0000,5959.0000,6027.0000,5979.0000,5952.8000,5959.0000,5948.8000,5979.0000,5959.0000,5948.8000,5963.0000,5958.8000,5956.8000,5947.0000,5960.8000,5969.0000,5942.8000,5945.0000,5968.8000,5938.8000,5938.8000,5959.0000,5969.0000,5950.8000,5939.0000,6804.4000,5949.0000,5962.8000,5989.0000,5961.0000,5960.8000,5977.0000,5989.0000,5957.0000,5948.8000,5939.0000,5984.8000,5977.0000,5989.0000,5967.0000,5964.8000,5965.0000,5926.8000,5965.0000,5944.8000,5950.8000,5947.0000,5936.8000,5956.8000,5950.8000,5936.8000,5963.0000,5981.0000,5967.0000,5958.8000,5983.0000,5952.8000,5948.8000,6712.4000,5952.8000,5941.0000,5948.8000,6003.0000,5983.0000,5995.0000,5961.0000,5964.8000,5959.0000,5960.8000,5980.8000,5965.0000,5967.0000,5954.8000,5975.0000,5969.0000,5972.8000,5955.0000,5987.0000,5983.0000,5928.8000,5983.0000,5962.8000,5971.0000,5945.0000,5958.8000,5953.0000,5928.8000,5932.8000,5967.0000,5985.0000,5966.8000,5988.8000,6766.6000,5972.8000,5959.0000,5963.0000" +normalizing randomized box sets - 2d,"medium, embedded in 3d",100,4,2699200,6755.8575,6727.3300,6819.1300,208.0788,109.1337,334.7941,"benchmark,group:grid","6707.2500,6712.2500,7125.5000,6785.0000,6747.2500,7726.7500,6734.7500,6759.7500,6747.5000,6734.7500,6717.2500,6742.2500,6727.2500,6704.7500,6727.2500,6719.7500,6745.0000,6732.2500,6692.2500,6732.2500,6752.2500,6712.2500,6719.7500,6704.7500,6709.7500,6697.2500,6719.7500,6709.7500,6727.2500,6747.5000,6709.7500,6734.7500,6704.7500,6712.2500,6739.7500,6734.7500,6739.7500,6747.5000,6729.7500,6739.7500,6707.2500,6717.2500,8019.7500,6722.2500,6717.2500,6699.7500,6684.7500,6702.2500,6714.7500,6707.2500,6707.2500,6702.2500,6712.2500,6699.7500,6694.5000,6697.2500,6712.2500,6694.7500,6712.2500,6677.2500,6682.2500,6684.7500,6692.0000,6697.2500,6704.7500,6737.2500,6734.7500,6734.7500,6739.7500,6737.2500,6709.7500,6704.7500,6704.7500,6704.7500,6704.7500,6724.7500,6707.2500,6742.2500,6724.7500,7964.7500,6734.7500,6694.7500,6719.7500,6737.2500,6717.2500,6704.7500,6694.7500,6692.2500,6672.2500,6689.7500,6689.5000,6689.7500,6687.2500,6702.2500,6744.7500,6702.2500,6694.7500,6717.2500,6729.7500,6717.2500" +normalizing randomized box sets - 2d,"large, native",100,1,19859800,189312.1400,188962.0400,189752.5300,1991.5491,1675.2675,2403.1387,"benchmark,group:grid","188285.0000,188896.0000,192343.0000,189677.0000,193996.0000,189247.0000,188686.0000,188746.0000,188605.0000,189137.0000,193144.0000,188385.0000,188406.0000,188285.0000,188185.0000,192242.0000,188295.0000,188185.0000,187604.0000,188675.0000,192894.0000,188676.0000,187934.0000,187514.0000,188666.0000,192523.0000,188105.0000,187343.0000,188555.0000,188376.0000,188435.0000,192894.0000,188205.0000,187693.0000,187825.0000,188224.0000,191691.0000,188055.0000,188064.0000,188305.0000,188716.0000,193395.0000,188014.0000,188015.0000,188996.0000,188606.0000,188565.0000,196601.0000,188396.0000,188595.0000,188375.0000,187935.0000,193194.0000,188526.0000,188194.0000,187815.0000,188325.0000,193164.0000,189147.0000,189066.0000,188476.0000,188265.0000,192823.0000,188375.0000,187994.0000,188475.0000,188897.0000,188886.0000,192883.0000,188124.0000,188155.0000,188666.0000,188205.0000,192713.0000,188425.0000,188285.0000,188506.0000,187503.0000,193195.0000,188615.0000,188145.0000,188205.0000,187624.0000,187764.0000,192683.0000,188446.0000,188395.0000,188044.0000,188285.0000,194356.0000,188325.0000,188696.0000,188275.0000,188285.0000,192864.0000,189307.0000,188275.0000,188155.0000,188084.0000,192894.0000" +normalizing randomized box sets - 2d,"large, embedded in 3d",100,1,20655500,214888.0600,214502.5900,215349.3300,2139.1662,1824.1982,2434.2661,"benchmark,group:grid","213212.0000,217451.0000,217129.0000,218312.0000,214004.0000,213814.0000,214094.0000,214043.0000,219484.0000,213613.0000,213703.0000,213362.0000,213522.0000,218212.0000,213814.0000,213382.0000,213643.0000,219264.0000,213483.0000,213443.0000,214044.0000,213432.0000,219865.0000,214024.0000,214094.0000,213683.0000,213633.0000,220046.0000,213613.0000,214294.0000,213793.0000,217911.0000,213573.0000,213492.0000,213442.0000,214034.0000,218613.0000,214164.0000,214174.0000,214505.0000,213482.0000,219183.0000,214214.0000,213653.0000,213784.0000,219504.0000,214615.0000,213843.0000,214234.0000,213763.0000,220286.0000,214264.0000,213814.0000,213563.0000,213583.0000,219394.0000,213943.0000,213293.0000,213533.0000,218322.0000,213773.0000,213793.0000,213533.0000,213473.0000,218392.0000,213734.0000,213432.0000,214795.0000,214414.0000,218352.0000,214014.0000,213102.0000,213733.0000,219705.0000,213493.0000,213413.0000,213522.0000,213342.0000,219424.0000,214274.0000,213452.0000,213563.0000,217480.0000,213232.0000,213903.0000,213773.0000,214284.0000,218292.0000,213393.0000,213142.0000,213913.0000,213502.0000,217611.0000,213403.0000,213713.0000,213733.0000,217250.0000,214405.0000,213933.0000,213433.0000" +normalizing randomized box sets - 3d,small - native,100,12,2712000,2183.8617,2176.0508,2202.5192,57.6916,20.2889,100.9982,"benchmark,group:grid","2178.1667,2170.5833,2329.2500,2185.6667,2171.4167,2175.5833,2163.0833,2159.8333,2156.4167,2161.4167,2159.7500,2165.6667,2157.2500,2157.2500,2167.2500,2175.6667,2159.7500,2152.2500,2154.7500,2159.8333,2159.7500,2163.0833,2158.0833,2158.1667,2158.9167,2157.2500,2157.2500,2163.9167,2162.2500,2159.7500,2553.0000,2161.4167,2159.7500,2162.2500,2163.0833,2158.1667,2163.0833,2165.5833,2166.5000,2164.7500,2162.2500,2154.7500,2166.5000,2164.7500,2184.0000,2197.3333,2191.5000,2182.3333,2186.4167,2182.2500,2178.1667,2191.5000,2195.6667,2193.1667,2196.5000,2193.1667,2199.0000,2190.6667,2187.3333,2189.0000,2191.5000,2195.6667,2186.5000,2194.8333,2196.5000,2194.0000,2194.0000,2189.8333,2572.1667,2180.6667,2176.5000,2171.4167,2173.1667,2171.4167,2174.8333,2175.5833,2174.8333,2171.4167,2189.8333,2189.8333,2179.0000,2170.5833,2180.6667,2178.1667,2177.2500,2190.6667,2186.5000,2187.3333,2179.0000,2165.5833,2172.3333,2175.5833,2172.3333,2172.2500,2171.5000,2174.7500,2175.6667,2188.1667,2186.5000,2174.7500" +normalizing randomized box sets - 3d,medium - native,100,3,2715000,9090.1033,9050.0133,9168.3633,271.9008,151.7863,417.6947,"benchmark,group:grid","9026.3333,9073.3333,10062.0000,9136.6667,9006.3333,9093.3333,10529.3333,9016.3333,9083.3333,9123.3333,9029.6667,9049.6667,9013.0000,9049.6667,9050.0000,9053.0000,9066.6667,9046.3333,9029.6667,9046.3333,8986.3333,9016.3333,8976.3333,9020.0000,9059.6667,9013.3333,8953.0000,9090.0000,9053.0000,9046.6667,9056.3333,8986.6667,8996.3333,9056.3333,9063.0000,8989.6667,9013.3333,9049.6667,9010.0000,9079.6667,9030.0000,8986.3333,9033.3333,10412.3333,9050.0000,9053.0000,9083.3333,9049.6667,9013.0000,9049.6667,9029.6667,9070.0000,9033.0000,9016.6667,9066.3333,9046.6667,9003.0000,9066.6667,9100.0000,8993.0000,9053.3333,9036.3333,9056.6667,9036.3333,8996.3333,9046.3333,9009.6667,9053.3333,9023.0000,9020.0000,9016.3333,8983.0000,9010.0000,9036.3333,9026.6667,8989.6667,9029.6667,9056.3333,9033.3333,9009.6667,10586.0000,9093.3333,8999.6667,9039.6667,9039.6667,9059.6667,9010.0000,8996.3333,9023.0000,8976.3333,9043.3333,9066.6667,8999.6667,9046.6667,9019.6667,9046.6667,9043.0000,8993.0000,9103.3333,9016.6667" +normalizing randomized box sets - 3d,large - native,100,1,221818100,2214618.0100,2205769.1500,2220579.6800,36658.0799,26601.0945,47617.2130,"benchmark,group:grid","2231979.0000,2237670.0000,2279058.0000,2239153.0000,2232220.0000,2218063.0000,2244323.0000,2227541.0000,2219635.0000,2222120.0000,2232440.0000,2237781.0000,2231218.0000,2219666.0000,2219415.0000,2220498.0000,2225567.0000,2219315.0000,2221810.0000,2231419.0000,2224124.0000,2222401.0000,2224064.0000,2226669.0000,2237940.0000,2228042.0000,2234384.0000,2221159.0000,2209797.0000,2086443.0000,2220427.0000,2213373.0000,2223703.0000,2212933.0000,2217292.0000,2224755.0000,2212772.0000,2081484.0000,2077386.0000,2088617.0000,2135085.0000,2227451.0000,2214837.0000,2214967.0000,2214716.0000,2214206.0000,2217913.0000,2216390.0000,2226308.0000,2213655.0000,2216931.0000,2240325.0000,2218423.0000,2227030.0000,2227331.0000,2218834.0000,2213364.0000,2211711.0000,2221770.0000,2229184.0000,2225437.0000,2235707.0000,2223403.0000,2224074.0000,2225277.0000,2233632.0000,2224275.0000,2222912.0000,2236989.0000,2224635.0000,2235586.0000,2228001.0000,2229284.0000,2223914.0000,2234484.0000,2225427.0000,2223403.0000,2226950.0000,2222511.0000,2234714.0000,2222902.0000,2224895.0000,2232340.0000,2222521.0000,2222742.0000,2221830.0000,2238421.0000,2220578.0000,2220959.0000,2221740.0000,2229023.0000,2231960.0000,2222080.0000,2232170.0000,2225487.0000,2141618.0000,2111832.0000,2098366.0000,2109978.0000,2230657.0000" +normalizing a fully mergeable tiling of boxes - 1,"small, native",100,833,2499000,30.2444,30.1463,30.4818,0.7241,0.2363,1.2755,"benchmark,group:grid","30.1873,30.1873,31.7983,30.3313,29.9220,30.1273,30.1633,30.0660,30.0192,29.9940,29.9832,30.1501,30.0192,30.0792,29.8739,30.1633,30.1020,30.0552,30.0900,30.2353,29.8752,30.0540,30.1513,29.9580,34.7695,30.1753,30.0672,30.1381,29.9232,29.9460,30.1513,30.0780,30.1861,30.0792,30.2833,30.5354,29.8860,29.9580,30.2713,30.1753,30.4514,30.2473,30.2953,30.1501,29.7779,30.1501,30.1393,30.0672,30.1261,30.1873,30.1993,30.4154,30.2353,30.4994,30.0552,30.0180,30.0912,30.1152,30.0780,30.4994,30.0072,30.0180,30.3421,30.1501,35.3109,29.9832,30.2581,30.2353,30.1873,30.2113,30.1633,29.9580,30.0192,30.0780,29.9952,30.2473,29.9220,30.2353,30.2473,30.1020,30.1633,30.2353,30.0900,30.3433,30.2341,30.0072,30.1020,30.0300,30.1753,30.0540,30.2233,30.0552,29.7779,29.8980,30.0312,29.9580,30.8127,29.9460,30.2833,30.3433" +normalizing a fully mergeable tiling of boxes - 1,"small, embedded in 3d",100,544,2502400,41.4227,41.2712,41.8089,1.0792,0.0911,1.9624,"benchmark,group:grid","41.2868,41.2702,42.0974,41.2151,41.2132,41.2132,41.2702,41.2132,41.1967,41.2132,41.1949,41.1967,41.2316,41.1967,41.2132,41.1967,41.1967,41.1949,41.2335,41.1949,41.1967,41.1967,41.1949,48.8952,41.2316,41.2151,41.1967,41.1765,41.1967,41.2868,41.3254,41.2702,41.2868,41.2702,41.2702,41.2684,41.3070,41.3070,41.2684,41.2868,41.2702,41.2702,41.3051,41.3070,41.2702,41.2684,41.2702,41.2702,41.3051,41.2518,41.2886,41.2500,41.2518,41.2518,41.3051,41.2702,41.2702,41.2684,41.2886,41.2702,41.3235,41.2702,41.2886,41.2684,41.2518,41.2518,41.3051,41.2702,49.0055,41.2500,41.2886,41.2886,41.3051,41.2886,41.2702,41.2684,41.2886,41.2702,41.3051,41.2702,41.2702,41.2500,41.2886,41.2702,41.3051,41.2702,41.2886,41.2684,41.2702,41.2702,41.3235,41.2684,41.2886,41.2684,41.2702,41.2702,41.3051,41.2684,41.2702,41.2684" +normalizing a fully mergeable tiling of boxes - 1,"medium, native",100,88,2534400,300.2689,299.3033,302.5209,7.5222,4.1837,12.1544,"benchmark,group:grid","299.2955,299.6364,345.8523,299.6364,299.5227,299.8636,299.0682,298.9545,299.4091,300.2045,299.7500,298.6136,298.9545,297.1364,298.9545,298.7273,298.3864,298.6023,299.2955,299.6364,299.5227,298.8409,299.1818,298.0455,298.0341,298.8409,299.0682,298.8409,298.8409,299.4091,299.5227,299.2955,299.0682,299.9886,296.8977,298.7273,299.7500,299.2955,299.7500,300.1023,342.1023,299.7500,299.2955,299.0682,298.9545,298.5000,298.2727,297.4659,298.4886,298.6136,299.1818,298.8409,299.1818,298.9545,299.4091,299.4091,299.4091,298.8409,297.0114,299.4091,299.2955,299.0682,298.6136,299.1818,299.2955,299.5227,298.9545,298.9545,297.8182,298.9545,298.9545,298.3864,298.7273,299.1818,299.1818,299.1818,298.7273,340.5114,299.0682,298.0455,299.2955,296.5568,298.3864,298.2727,298.2727,298.9545,299.6364,299.2955,298.2727,298.9545,299.8636,297.8182,299.2955,299.1818,299.0682,299.0682,298.7273,298.9545,299.2955,299.4091" +normalizing a fully mergeable tiling of boxes - 1,"medium, embedded in 3d",100,60,2514000,421.2878,419.5470,425.3710,13.1123,6.7000,22.4513,"benchmark,group:grid","419.7667,419.9333,420.4167,415.2667,415.2500,415.4167,415.4167,415.2500,415.4167,415.4167,415.2500,415.2667,415.4167,415.4167,510.2667,424.9500,419.1000,419.2500,419.1000,419.4333,419.2667,419.9333,419.2500,419.9333,419.2667,419.7667,419.2667,419.7667,419.2500,419.7667,419.2667,419.7667,419.2667,419.7667,419.2500,419.7667,419.4333,419.9333,419.4333,419.9333,419.4167,419.9167,419.4333,419.4333,419.2667,419.6000,419.2500,419.6000,419.2667,419.4333,419.4333,419.4167,419.2667,419.6000,484.0500,424.4500,419.2500,418.9333,419.4333,418.9333,419.2500,418.9333,419.2667,418.9333,419.2500,418.9167,419.2667,418.9333,419.2667,418.9167,419.2667,418.9333,419.2667,418.9167,419.2667,418.7667,418.7667,418.9167,418.9333,418.9333,418.9333,418.9167,418.9333,418.6000,418.9333,418.7500,418.9333,418.7667,418.7667,418.7500,418.7667,418.9333,418.7500,488.8833,425.2833,419.9333,419.7500,419.9333,419.7667,419.9333" +normalizing a fully mergeable tiling of boxes - 1,"large, native",100,3,2562000,7211.2833,7176.9333,7299.9500,249.1496,44.3386,462.1712,"benchmark,group:grid","7152.6667,7159.6667,7583.6667,7266.3333,7240.0000,7183.0000,7172.6667,7172.6667,7186.3333,7176.3333,7173.0000,7156.3333,7179.6667,7179.6667,7186.3333,7183.0000,7179.6667,7173.0000,7166.0000,7172.6667,7173.0000,7176.3333,7179.6667,7179.6667,7173.0000,7176.3333,7186.3333,7179.6667,7186.3333,7179.6667,7179.6667,7176.3333,7169.3333,7179.3333,7179.6667,7173.0000,7193.0000,7196.3333,8696.0000,7153.0000,7176.3333,7162.6667,7169.6667,7179.6667,7166.3333,7156.3333,7179.6667,7173.0000,7169.6667,7176.0000,7162.6667,7179.6667,7169.6667,7156.3333,7166.3333,7169.6667,7169.6667,7159.3333,7159.6667,7166.3333,7163.0000,7183.0000,7173.0000,7163.0000,7166.0000,7169.6667,7166.3333,7179.6667,7163.0000,7156.3333,7159.6667,7156.0000,7159.6667,7166.3333,7159.6667,7166.3333,7173.0000,7166.0000,7172.6667,7176.3333,7169.6667,7163.0000,7166.3333,7179.6667,9133.3333,7183.0000,7166.3333,7159.3333,7149.3333,7169.6667,7183.0000,7159.6667,7163.0000,7183.0000,7176.3333,7152.6667,7163.0000,7156.3333,7153.0000,7163.0000" +normalizing a fully mergeable tiling of boxes - 1,"large, embedded in 3d",100,3,3063000,12034.5867,11996.7800,12105.6567,259.7705,145.6277,386.2095,"benchmark,group:grid","12028.6667,11962.0000,12586.3333,11918.6667,11989.0000,13354.6667,11982.0000,11952.0000,11948.6667,12022.3333,12022.0000,11955.3333,11992.0000,11998.6667,12005.3333,11945.3333,12015.6667,11968.6667,12032.0000,11955.3333,11995.3333,11908.6667,11952.0000,11895.3333,11985.3333,11972.0000,11982.0000,11975.6667,11958.6667,11975.3333,11995.3333,12005.6667,11962.0000,13191.0000,11978.6667,11945.3333,12019.0000,11948.6667,12012.0000,11979.0000,12015.3333,11945.3333,12012.0000,12009.0000,11945.3333,11955.3333,12062.3333,11982.0000,11898.6667,11942.0000,11912.0000,11955.3333,11901.6667,11979.0000,11982.0000,11988.6667,11945.3333,11999.0000,11962.0000,12012.0000,13268.0000,11995.3333,11972.0000,12025.6667,11965.3333,12018.6667,11948.6667,12028.6667,11965.3333,12012.3333,11965.3333,11982.0000,11965.3333,11999.0000,11958.6667,12018.6667,11972.0000,11985.6667,11945.3333,12015.3333,11998.6667,11955.3333,11955.3333,12002.0000,12005.3333,11948.6667,11972.0000,11965.3333,13227.6667,11989.0000,11938.6667,12018.6667,12008.6667,11968.6667,11911.6667,12032.0000,11998.6667,11948.6667,11948.3333,11982.0000" +normalizing a fully mergeable tiling of boxes - 2,"small, native",100,254,2514600,92.9534,92.5705,93.9304,2.7027,0.1492,4.9869,"benchmark,group:grid","92.5709,92.5669,94.0276,92.4921,92.5669,92.5315,92.5709,92.5276,92.5709,92.5276,92.5669,92.6102,92.5315,92.5669,92.5315,92.5276,92.5669,92.5315,92.5276,92.5276,92.5315,92.5669,92.5315,92.5315,92.5669,92.5315,92.5709,92.5276,113.5551,92.5315,92.6102,92.5669,92.5709,92.5315,92.5669,92.5709,92.5315,92.5669,92.5315,92.5709,92.5669,92.5315,92.5709,92.5276,92.5315,92.5709,92.5276,92.5709,92.6102,92.5276,92.5315,92.6102,92.5276,92.5709,92.5315,92.5669,92.5315,92.5709,92.5276,92.5315,92.5709,92.6063,92.5709,92.5315,92.5669,92.5709,92.5315,92.6457,92.5315,92.5709,109.9646,92.5669,92.5315,92.5315,92.5669,92.5709,92.5315,92.5669,92.5709,92.5709,92.5276,92.5709,92.5709,92.5276,92.5315,92.6496,92.5669,92.5276,92.5709,92.5669,92.5669,92.5315,92.5669,92.5669,92.5315,92.5669,92.5669,92.5315,92.5669,92.5276" +normalizing a fully mergeable tiling of boxes - 2,"small, embedded in 3d",100,215,2515500,124.8485,124.4247,125.7968,3.1245,1.7299,5.0124,"benchmark,group:grid","124.5535,124.3209,129.2093,124.0884,124.0419,124.3674,124.2233,124.0884,124.6000,124.0419,123.6186,124.1349,143.2372,123.9953,123.4326,124.3674,124.3674,124.3674,124.6000,124.2698,124.0837,124.2744,124.3674,124.0372,123.9488,123.9953,123.1535,124.1349,123.7116,124.1814,124.3209,123.9442,123.6698,123.9953,124.3163,124.8326,124.3674,123.9953,124.4605,123.3860,123.9023,124.1302,124.2279,124.8791,124.4605,123.8558,124.5953,124.5488,124.1814,140.6744,124.6419,124.8791,124.2744,123.6698,124.8326,125.0651,124.3674,124.2233,124.3209,124.2744,124.5535,124.6930,124.4093,124.3628,124.4605,124.2279,123.7116,123.9488,123.9953,123.9907,124.6465,124.3209,124.2744,123.9907,124.4140,124.2279,124.2279,124.3628,125.2512,123.1535,124.0884,124.3163,123.9907,124.0884,124.2279,124.2698,142.7767,124.2233,124.2744,124.1349,124.4140,124.3628,124.3628,124.2744,124.1349,124.9721,125.2512,124.8326,124.6930,124.8326" +normalizing a fully mergeable tiling of boxes - 2,"medium, native",100,32,2595200,880.6628,877.4088,888.2216,24.0722,12.5309,40.2784,"benchmark,group:grid","880.3438,875.6875,1043.8125,878.4688,877.2188,878.1875,874.0938,875.3438,877.5312,876.3125,877.5312,877.2188,874.4062,872.5312,873.4688,878.1562,877.5312,878.5000,875.3438,877.8438,877.8750,876.5938,877.5312,874.1250,877.5312,876.9062,875.0312,874.4375,879.7188,874.7188,874.4062,879.1250,876.9062,879.4375,888.1875,883.1562,876.3125,1002.7812,872.8438,875.6562,871.5938,871.2812,871.2812,877.8438,871.5938,880.3750,878.4688,866.9062,882.5312,883.8125,875.3438,873.1562,880.0625,874.0938,870.6562,869.0938,870.3438,873.7812,873.4688,874.4062,873.7812,870.6562,871.9062,872.8438,876.2812,878.1875,871.9062,878.1562,878.1562,879.1250,881.5938,873.7812,877.5312,995.5625,886.9375,877.2500,877.5312,878.7812,872.5312,872.5312,872.2188,891.9688,874.7188,870.9688,872.8438,876.2812,882.2500,877.5312,882.5625,876.5938,879.4375,874.4062,880.3438,873.1562,878.5000,876.5938,880.3438,881.5938,876.5938,879.4375" +normalizing a fully mergeable tiling of boxes - 2,"medium, embedded in 3d",100,25,2600000,932.3364,928.7064,941.6736,26.3357,4.1554,47.7132,"benchmark,group:grid","925.6800,927.6800,960.9600,924.8800,931.6800,931.6800,931.7200,932.0800,932.0800,932.0800,932.0800,932.0800,932.0800,932.1200,932.0800,932.0800,931.6800,931.3200,928.8800,930.0800,931.6800,924.0800,925.6800,926.8800,927.6800,931.6800,930.9200,925.2800,929.2800,930.8800,932.4800,1111.6400,918.0800,922.8400,925.6400,925.2400,925.2800,926.8800,928.0800,929.6800,927.6800,927.6800,928.0800,927.2800,928.0800,929.6800,927.6800,927.6800,927.2800,931.3200,927.6800,929.2800,930.0800,930.0800,928.0800,927.6800,927.2800,931.7200,927.2800,929.6800,929.6800,929.6800,928.0800,928.0800,927.2800,931.2800,927.6800,929.2800,930.0800,930.0800,928.0800,927.6800,927.2800,1117.2400,925.6400,925.2400,927.6800,926.8800,927.2800,927.2800,927.6800,924.4800,927.2800,928.4800,927.2800,927.2800,926.0800,927.2800,925.6800,927.6800,926.0800,927.2800,925.6800,927.6800,926.0800,927.2800,925.6800,927.6800,926.0800,927.2800" +normalizing a fully mergeable tiling of boxes - 2,"large, native",100,1,3494700,36754.1200,36620.2400,36994.0000,891.6194,562.9497,1267.6261,"benchmark,group:grid","36627.0000,36708.0000,39904.0000,37780.0000,37128.0000,36898.0000,36908.0000,36477.0000,36547.0000,36607.0000,36408.0000,36327.0000,36547.0000,36397.0000,36317.0000,36277.0000,36718.0000,40625.0000,36206.0000,36467.0000,36577.0000,36307.0000,36497.0000,36918.0000,36467.0000,36567.0000,36177.0000,36457.0000,36367.0000,36608.0000,36918.0000,36427.0000,36517.0000,36407.0000,36527.0000,36918.0000,36648.0000,36577.0000,36547.0000,36698.0000,36217.0000,36708.0000,36437.0000,36577.0000,36337.0000,40635.0000,36658.0000,36427.0000,36578.0000,36597.0000,36628.0000,36467.0000,36597.0000,36578.0000,36587.0000,36598.0000,36577.0000,36548.0000,36627.0000,36407.0000,36528.0000,36597.0000,36668.0000,36437.0000,36587.0000,36758.0000,36577.0000,36427.0000,36477.0000,36387.0000,36377.0000,36557.0000,40775.0000,36607.0000,36478.0000,36347.0000,36567.0000,36447.0000,36197.0000,36387.0000,36578.0000,36447.0000,36527.0000,36598.0000,36727.0000,36668.0000,36628.0000,36577.0000,36447.0000,36728.0000,36537.0000,36387.0000,36517.0000,36748.0000,36577.0000,36598.0000,36487.0000,36577.0000,36397.0000,40696.0000" +normalizing a fully mergeable tiling of boxes - 2,"large, embedded in 3d",100,1,3821600,38162.0900,38013.3400,38446.9200,1015.7156,627.0199,1587.5203,"benchmark,group:grid","37900.0000,37870.0000,40675.0000,38892.0000,38541.0000,38411.0000,38171.0000,38140.0000,37900.0000,38100.0000,38000.0000,38240.0000,38281.0000,37970.0000,37910.0000,42438.0000,37970.0000,38020.0000,38170.0000,37890.0000,37960.0000,37810.0000,37950.0000,37890.0000,38050.0000,38091.0000,37779.0000,38081.0000,37849.0000,38091.0000,38040.0000,37860.0000,37739.0000,37770.0000,37990.0000,38091.0000,37689.0000,37910.0000,37890.0000,37910.0000,37890.0000,44342.0000,37970.0000,37790.0000,37870.0000,37830.0000,37719.0000,37790.0000,37990.0000,38010.0000,37940.0000,38030.0000,38041.0000,37970.0000,38010.0000,37860.0000,37689.0000,37920.0000,37830.0000,37770.0000,38030.0000,37790.0000,37839.0000,37739.0000,37800.0000,37920.0000,38040.0000,42258.0000,38040.0000,37809.0000,38030.0000,38010.0000,37729.0000,37760.0000,37850.0000,37830.0000,37779.0000,37860.0000,37980.0000,37730.0000,37840.0000,38010.0000,37699.0000,37849.0000,37920.0000,37830.0000,37840.0000,38110.0000,37920.0000,37700.0000,37860.0000,37820.0000,37970.0000,42148.0000,38130.0000,37900.0000,37910.0000,37900.0000,37840.0000,38000.0000" +normalizing a fully mergeable tiling of boxes - 3,"small, native",100,103,2533800,256.2733,255.2445,258.5240,7.4131,3.7349,12.2841,"benchmark,group:grid","254.6408,253.8641,260.2816,254.4466,255.2233,255.3204,256.1942,253.0874,254.3398,304.2427,255.0291,255.2233,255.3204,255.3204,255.0291,255.3204,255.7087,255.5146,255.2233,254.2427,254.5340,255.2233,255.1262,255.5146,255.5146,254.8350,254.4466,254.6408,254.7379,254.6311,253.6699,255.0291,255.6117,254.7379,255.2233,255.6117,255.1262,254.9320,255.2233,255.3204,255.9029,253.4660,255.4175,255.0291,255.7087,255.2233,255.6117,297.8252,255.2136,255.4175,255.4175,256.0971,255.9029,255.4175,254.0485,256.0971,255.5146,255.7087,255.7961,254.8252,255.1262,255.7087,255.3204,255.3204,254.1553,254.0583,254.9320,255.0291,255.3204,255.0194,255.8058,270.6796,253.8544,254.3495,253.5728,254.1456,252.0194,253.6602,254.5437,254.2524,254.2524,253.9515,254.1553,253.8641,254.3398,287.6214,254.3398,253.0777,254.0583,255.0291,254.7282,254.1456,254.8350,254.6408,254.6408,254.1553,254.4369,252.9903,253.3689,254.9223" +normalizing a fully mergeable tiling of boxes - 3,"medium, native",100,17,2555100,1507.2612,1502.1741,1518.4700,36.9972,21.1979,59.5857,"benchmark,group:grid","1498.0588,1490.3529,1548.1176,1500.9412,1501.5882,1499.1765,1496.2941,1499.1765,1503.9412,1499.7647,1503.9412,1498.5882,1495.0588,1501.5882,1495.0588,1707.8235,1494.5294,1499.1765,1506.2941,1503.8824,1497.4706,1500.9412,1506.2941,1496.8235,1494.4706,1500.4118,1503.2941,1498.6471,1500.3529,1503.9412,1499.7647,1496.8824,1499.1765,1501.5882,1498.0000,1496.2353,1501.0000,1505.0588,1501.5882,1503.8824,1500.9412,1491.5294,1496.2353,1497.4118,1496.2353,1499.8235,1506.8235,1503.3529,1511.5882,1496.8235,1510.4118,1505.0588,1510.9412,1729.6471,1513.3529,1508.0588,1505.6471,1503.3529,1508.0588,1501.5294,1511.0000,1507.4706,1507.4118,1507.4706,1505.7059,1508.0000,1511.5882,1503.9412,1491.5294,1498.5882,1497.4706,1498.5882,1499.2353,1503.2941,1498.0588,1500.3529,1490.9412,1503.3529,1501.5294,1498.6471,1505.0588,1503.9412,1498.5882,1502.7647,1488.5882,1500.3529,1496.8235,1495.0588,1494.4706,1496.2941,1503.2941,1496.8824,1702.5294,1483.2941,1494.4706,1496.2353,1494.4706,1498.5882,1493.8824,1490.3529" +normalizing a fully mergeable tiling of boxes - 3,"large, native",100,1,4449000,47019.6100,46711.7900,47489.3300,1912.1589,1432.8856,2832.0232,"benchmark,group:grid","46526.0000,46206.0000,57587.0000,51866.0000,49512.0000,48109.0000,46947.0000,48741.0000,48199.0000,50905.0000,49762.0000,52207.0000,47468.0000,46786.0000,48500.0000,47809.0000,46817.0000,46586.0000,45926.0000,45865.0000,45504.0000,45565.0000,45364.0000,45213.0000,45043.0000,45134.0000,48199.0000,48400.0000,47268.0000,47247.0000,46816.0000,46266.0000,52107.0000,46226.0000,45684.0000,45955.0000,45875.0000,45354.0000,46005.0000,45685.0000,45845.0000,45614.0000,45694.0000,45585.0000,45604.0000,45865.0000,45855.0000,45735.0000,45394.0000,45655.0000,45605.0000,45424.0000,45634.0000,45494.0000,52838.0000,47729.0000,47358.0000,47227.0000,47128.0000,46776.0000,46786.0000,46527.0000,46756.0000,46437.0000,46566.0000,46797.0000,46827.0000,46456.0000,46616.0000,46366.0000,46857.0000,46486.0000,46766.0000,46537.0000,46616.0000,51576.0000,46616.0000,46596.0000,46666.0000,46506.0000,46536.0000,46376.0000,46546.0000,46577.0000,46666.0000,46657.0000,46646.0000,46906.0000,46586.0000,46666.0000,46315.0000,46737.0000,46607.0000,46466.0000,46386.0000,46486.0000,50774.0000,46437.0000,46696.0000,46246.0000" +performing set operations between randomized regions - 2d,"union, small, native",100,29,2537500,746.0538,743.0017,753.5686,22.6613,7.0153,40.0160,"benchmark,group:grid","743.0690,741.0000,800.4138,751.7241,749.9655,743.4138,745.1379,743.0690,743.0690,740.3103,740.6552,740.9655,739.9310,741.3448,739.2759,738.2414,740.9655,738.9310,737.5517,741.6897,739.5862,738.2414,740.6552,736.8276,737.8621,739.2759,738.9310,898.8621,741.3448,739.6207,740.3103,739.2414,740.3103,741.0000,738.9310,738.8966,743.0690,742.3793,740.6552,739.9655,742.3793,739.5862,741.3103,747.9310,739.2414,747.5517,747.8966,740.3103,746.1724,742.3793,739.2414,743.7586,741.0000,740.6552,744.4483,745.8276,743.0690,743.4138,744.1034,756.2069,741.6897,741.6552,746.2069,746.1724,742.0345,742.0000,740.9655,751.0345,739.2414,744.4483,738.8966,742.0345,756.8966,895.4138,744.1034,745.4828,738.5862,746.5172,744.7931,743.4138,738.9310,746.5172,742.3793,742.7241,748.9310,743.7586,738.9310,741.6897,748.9310,739.6207,737.5172,745.1379,738.2414,739.6207,746.1724,746.1724,741.0000,738.5862,738.5517,737.2069" +performing set operations between randomized regions - 2d,"union, small, embedded in 3d",100,28,2531200,902.2582,898.4229,911.4511,29.5351,15.8519,47.6854,"benchmark,group:grid","897.3571,895.5357,934.5357,897.3214,895.9286,898.4286,1073.7500,897.7143,895.5357,896.2857,895.8929,898.0357,894.5000,897.7143,896.2500,894.8571,895.5714,896.6071,898.4286,897.0000,896.2500,897.0000,897.0000,897.3571,896.2500,897.7143,894.5000,896.2500,895.9286,896.6429,894.4643,896.2857,896.2857,896.2500,896.2857,898.4286,897.6786,895.5714,896.2857,896.2500,897.3214,897.0000,898.0714,896.6071,895.2143,896.2857,1055.5000,897.3571,896.2500,894.8571,895.9286,897.6786,897.3571,896.6429,895.5357,896.6429,897.0000,897.6786,896.9643,896.2857,897.0000,896.6071,896.2857,897.7143,896.9643,896.9643,897.7143,896.2857,895.5357,897.3571,898.4286,896.9643,898.7500,895.5714,897.0000,896.6071,896.2857,897.7143,898.0714,896.6071,896.2857,897.7143,898.4286,897.3214,896.6429,1076.2500,896.2857,897.0000,894.8214,895.9286,898.0714,896.9643,896.2857,896.6429,897.6786,897.3571,897.0000,897.0000,895.8929,897.7143" +performing set operations between randomized regions - 2d,"intersection, small, native",100,111,2519700,232.2705,231.1258,234.6398,8.0235,4.4283,13.1650,"benchmark,group:grid","231.2252,229.2523,273.1081,234.5676,234.5676,233.4054,231.3153,230.7748,231.5946,233.6667,231.2342,229.1532,231.4144,231.5946,231.9550,231.3243,231.0450,231.3153,231.8649,231.5946,229.6036,230.8739,230.9640,231.1441,230.9550,231.4144,231.2342,231.5946,230.6847,229.5225,231.2252,231.3153,231.1441,231.3243,253.7928,228.8018,230.1441,228.8829,228.2613,229.6036,229.8739,264.0811,228.7027,229.2523,229.6937,230.5135,230.5045,229.6126,228.9730,228.6126,229.2523,229.6937,229.6126,229.4234,230.3333,229.9640,228.4324,229.6126,229.6937,229.5225,229.6937,229.9730,229.5135,228.5225,228.7928,230.0631,230.0541,229.7838,229.9640,229.5225,229.6937,229.4324,245.3964,229.9730,231.7748,231.6847,230.0541,230.4234,231.2342,231.1351,284.3063,231.1441,231.5946,229.2432,231.4144,231.0541,231.3243,231.1351,231.1441,232.0450,232.0450,231.7748,229.3333,231.7748,231.8649,232.3153,230.2432,230.2342,231.2342,231.3243" +performing set operations between randomized regions - 2d,"intersection, small, embedded in 3d",100,95,2527000,267.4252,266.5913,269.4720,6.1699,1.7482,10.9794,"benchmark,group:grid","264.5895,266.9053,279.5579,266.8000,266.3789,265.6421,265.7474,265.4316,265.4316,265.9579,263.9579,263.9474,265.7474,265.7474,266.2737,265.9579,265.8526,265.8526,263.4316,264.4842,265.7474,265.4316,267.5368,309.6211,267.0105,267.1158,266.6947,264.3789,266.9053,266.4842,268.4947,268.6947,269.2316,269.3263,269.1158,268.3789,266.8000,268.3789,268.4947,268.1684,267.9579,267.6526,266.9053,266.6947,264.3789,266.5895,266.5895,265.8526,265.9579,266.5895,266.6947,266.2737,264.9053,266.8000,266.6947,266.1684,267.0211,266.8000,266.4842,265.9579,265.3263,266.2737,308.2421,267.0105,267.1158,266.5895,265.9579,266.3789,267.0105,264.4842,266.2737,266.2737,266.9053,266.8000,266.6947,266.6947,265.8526,266.0632,266.3789,267.2211,266.3789,266.4842,266.5895,266.4842,265.0105,265.6316,267.9579,267.0105,266.2737,266.4842,266.4842,266.2737,264.6842,266.1684,266.8000,267.1158,266.9053,266.2737,266.6947,266.5895" +performing set operations between randomized regions - 2d,"difference, small, native",100,28,2550800,918.4300,913.8779,928.4457,33.0899,19.4106,52.3231,"benchmark,group:grid","909.1429,910.9286,973.8929,924.1786,919.8929,918.7857,917.3571,928.1429,921.3214,913.0714,920.6071,919.8929,913.4643,915.9286,911.6786,911.6429,914.5357,909.5000,913.0714,1098.0714,917.0357,908.1071,911.2857,915.6071,913.7857,909.8929,916.6429,914.1786,909.1429,912.0357,913.0714,912.7143,915.6071,907.7143,916.3214,912.0000,910.6071,907.0000,916.3214,912.7143,910.6071,911.6429,912.7500,913.0714,910.6071,917.3571,908.4286,910.5714,909.1786,910.9286,909.8571,912.3929,907.7143,907.7500,909.1429,909.1429,911.3214,913.0714,1103.8214,911.2857,914.5000,912.3929,908.4286,912.0000,912.7143,914.1786,910.9286,907.7143,909.5357,914.8571,911.6786,910.2143,907.3929,911.6429,905.9286,907.3929,909.5000,908.0714,910.2500,905.5714,914.8929,910.9286,911.6429,915.9286,913.8214,910.5714,911.3214,911.6429,912.3929,909.5000,907.7143,910.6071,907.7143,908.4286,907.7143,910.5714,908.0714,1104.1429,913.1071,909.8571" +performing set operations between randomized regions - 2d,"difference, small, embedded in 3d",100,21,2530500,1085.0095,1079.8057,1096.4710,37.7362,20.9687,61.3493,"benchmark,group:grid","1079.0952,1079.5714,1156.8571,1081.0000,1075.7619,1074.8095,1319.5714,1105.8095,1081.4762,1080.5238,1077.1905,1077.1905,1072.9048,1074.3333,1074.8095,1074.8095,1070.9524,1072.9048,1072.4286,1072.9048,1073.8571,1076.7143,1077.6667,1077.6667,1075.7143,1077.1429,1080.0476,1078.6190,1076.2381,1082.9048,1077.6667,1077.1905,1076.7143,1080.0476,1076.7143,1076.7143,1081.0000,1077.1905,1075.2857,1076.2381,1077.1905,1080.5238,1074.8095,1079.0952,1076.2381,1079.0952,1077.6667,1081.0000,1075.7619,1075.7619,1287.0952,1075.7619,1078.6190,1078.6190,1079.0952,1081.4762,1078.6190,1076.1905,1076.2381,1077.1905,1081.0000,1077.1429,1077.1429,1077.1905,1076.7143,1077.6667,1078.6190,1079.0952,1079.0952,1075.7143,1077.6190,1079.5714,1077.1905,1077.6667,1077.6667,1077.6667,1080.0476,1078.1429,1078.6190,1079.0952,1077.6667,1076.2381,1076.2381,1079.5714,1078.6190,1077.6667,1075.2857,1078.1429,1075.2857,1076.6667,1075.7143,1081.0476,1076.7143,1080.0476,1272.2857,1074.8095,1076.7143,1077.6667,1077.6667,1081.9524" +performing set operations between randomized regions - 2d,"union, medium, native",100,3,3670500,12248.6800,12196.2667,12342.5200,347.1022,219.6414,498.6004,"benchmark,group:grid","12162.3333,12169.3333,13251.3333,12349.3333,12219.3333,12242.3333,12239.3333,13905.6667,12977.3333,12152.3333,12259.3333,12232.6667,12202.3333,12162.6667,12219.0000,12196.0000,12222.3333,12202.6667,12082.3333,12072.0000,12162.6667,12185.6667,12169.0000,12135.6667,12149.0000,12149.0000,12142.3333,12152.3333,12099.0000,12186.0000,12152.3333,12239.3333,12192.3333,12222.6667,12192.3333,13708.6667,12219.3333,12172.3333,12172.3333,12119.0000,12202.3333,12139.0000,12135.6667,12095.6667,12172.3333,12195.6667,12185.6667,12236.0000,12162.3333,12129.0000,12189.3333,12159.0000,12242.6667,12179.0000,12206.0000,12142.3333,12145.6667,12216.0000,12185.6667,12209.3333,12169.0000,12179.0000,13812.3333,12149.0000,12175.6667,12176.0000,12142.3333,12159.0000,12206.0000,12139.0000,12115.6667,12149.0000,12175.6667,12135.6667,12149.3333,12149.0000,12112.3333,12095.6667,12112.3333,12132.3333,12115.6667,12162.3333,12095.6667,12135.6667,12175.6667,12146.0000,12098.6667,12102.3333,12099.0000,13772.3333,12122.3333,12105.6667,12132.3333,12159.0000,12079.0000,12142.3333,12175.6667,12166.0000,12165.6667,12112.3333" +performing set operations between randomized regions - 2d,"union, medium, embedded in 3d",100,2,2914800,14773.7800,14715.6050,14894.6600,411.5475,236.9420,649.7078,"benchmark,group:grid","14672.0000,14752.0000,15824.0000,16781.0000,14777.0000,14707.0000,14822.0000,14762.0000,14777.0000,14812.5000,14706.5000,14751.5000,14676.5000,14667.0000,14787.0000,14717.0000,14802.0000,14702.0000,14692.0000,14772.0000,14737.0000,14757.0000,14687.0000,14792.0000,14712.0000,14732.0000,14647.0000,14747.0000,14747.0000,14732.0000,14666.5000,14672.0000,14637.0000,14611.5000,14556.5000,14606.5000,17016.5000,14722.0000,14812.0000,14732.0000,14767.0000,14652.0000,14626.5000,14702.0000,14682.0000,14621.5000,14712.0000,14652.0000,14616.5000,14687.0000,14712.0000,14782.0000,14632.0000,14687.0000,14762.0000,14702.0000,14681.5000,14547.0000,14596.5000,14561.5000,14571.5000,14651.5000,14641.5000,14632.0000,14626.5000,14707.0000,14652.0000,14692.0000,14762.0000,14722.0000,17186.5000,14682.0000,14717.0000,14707.0000,14782.0000,14722.0000,14661.5000,14677.0000,14647.0000,14702.0000,14681.5000,14677.0000,14657.0000,14631.5000,14606.5000,14627.0000,14706.5000,14677.0000,14717.0000,14692.0000,14717.0000,14697.0000,14646.5000,14747.0000,14642.0000,14677.0000,14681.5000,14671.5000,14742.0000,14677.0000" +performing set operations between randomized regions - 2d,"intersection, medium, native",100,13,2642900,2281.9754,2273.9354,2301.0631,61.8193,32.8823,102.0374,"benchmark,group:grid","2265.6923,2261.8462,2316.6154,2272.6154,2275.6923,2271.8462,2283.3846,2281.9231,2266.4615,2270.3077,2277.2308,2280.3077,2266.4615,2274.9231,2268.6923,2272.6154,2274.1538,2274.9231,2268.0000,2608.6154,2288.8462,2273.3846,2277.2308,2271.8462,2271.8462,2271.0769,2286.4615,2275.6923,2275.6923,2282.6154,2277.2308,2272.6154,2270.3077,2271.8462,2275.0000,2268.0000,2271.8462,2267.2308,2264.9231,2268.0000,2274.1538,2264.9231,2264.1538,2268.7692,2270.3077,2269.5385,2268.7692,2269.5385,2269.5385,2266.4615,2270.3077,2264.9231,2684.1538,2269.5385,2272.6154,2273.3846,2264.8462,2264.9231,2273.3846,2266.3846,2265.6923,2266.4615,2269.5385,2271.0769,2272.6154,2270.3077,2269.5385,2263.3846,2271.0769,2272.6154,2271.0769,2271.8462,2273.3846,2263.3846,2271.8462,2271.8462,2269.5385,2271.0769,2268.7692,2265.6923,2273.3846,2267.2308,2271.0769,2274.9231,2264.1538,2269.5385,2594.7692,2268.0000,2267.2308,2272.6154,2258.7692,2266.4615,2281.0769,2264.9231,2264.9231,2263.3846,2272.6154,2272.6154,2271.0769,2263.3846" +performing set operations between randomized regions - 2d,"intersection, medium, embedded in 3d",100,11,2536600,2308.5055,2300.4436,2327.9318,64.8430,37.2557,103.5348,"benchmark,group:grid","2300.5455,2298.7273,2319.7273,2287.7273,2291.4545,2296.9091,2301.4545,2298.7273,2303.2727,2297.7273,2300.5455,2301.4545,2306.9091,2301.4545,2300.5455,2301.4545,2669.4545,2294.1818,2299.6364,2296.9091,2299.6364,2294.1818,2296.0000,2296.9091,2297.8182,2292.3636,2295.0909,2292.3636,2297.8182,2292.3636,2293.1818,2294.0909,2296.9091,2293.1818,2296.0000,2294.1818,2294.1818,2293.2727,2292.3636,2293.2727,2296.0000,2296.0000,2293.2727,2295.0909,2291.4545,2290.5455,2294.1818,2286.8182,2294.1818,2293.2727,2290.5455,2291.4545,2295.0909,2294.1818,2293.2727,2292.3636,2684.0000,2298.7273,2303.2727,2296.9091,2300.5455,2297.8182,2295.0909,2297.8182,2297.8182,2302.3636,2296.0000,2299.6364,2298.7273,2297.8182,2296.9091,2300.5455,2295.0909,2296.9091,2299.6364,2301.4545,2295.0000,2299.6364,2298.6364,2295.0000,2299.6364,2298.7273,2297.8182,2297.8182,2298.7273,2299.6364,2297.8182,2300.5455,2301.4545,2296.9091,2298.7273,2299.6364,2299.6364,2301.4545,2296.9091,2675.8182,2297.8182,2296.9091,2297.8182,2299.6364" +performing set operations between randomized regions - 2d,"difference, medium, native",100,4,3200800,7974.6575,7942.1525,8037.0875,219.8506,122.4473,332.6812,"benchmark,group:grid","7954.5000,7929.5000,8939.0000,8049.7500,8032.2500,7984.7500,7969.5000,7934.5000,7907.0000,7944.7500,7939.5000,7929.5000,7967.2500,7872.0000,7882.0000,7949.5000,7874.5000,7924.5000,7944.5000,8929.0000,7897.0000,7997.2500,7909.5000,7919.5000,7954.7500,7884.2500,7979.5000,7874.5000,7919.5000,7912.0000,7939.7500,7907.0000,7947.0000,7902.0000,7927.0000,7919.5000,7894.5000,7929.7500,7967.0000,7902.0000,7919.5000,7944.7500,8007.2500,7932.0000,7937.0000,7952.0000,7927.0000,7947.0000,7934.5000,7949.7500,7937.0000,9109.2500,7874.5000,7917.0000,7914.5000,7922.2500,7909.5000,7937.0000,7874.5000,7922.0000,7932.0000,7857.0000,7992.2500,7902.0000,7899.5000,7957.0000,7892.0000,7897.0000,7892.0000,7882.0000,7947.0000,7942.2500,7944.5000,7962.0000,7871.7500,7909.5000,7949.7500,7914.5000,7914.5000,7914.5000,7894.5000,7944.7500,9156.7500,7914.5000,7934.7500,7929.5000,7909.5000,7929.5000,7932.0000,7914.5000,7964.5000,7962.0000,8024.5000,7924.7500,7932.0000,7972.0000,7929.7500,7942.0000,7984.7500,7887.0000" +performing set operations between randomized regions - 2d,"difference, medium, embedded in 3d",100,3,2554800,8577.9267,8540.9000,8661.4133,273.8634,149.7899,450.4728,"benchmark,group:grid","8512.0000,8589.0000,10345.6667,8719.0000,8645.6667,8525.3333,8542.3333,8512.0000,8602.3333,8609.0000,8572.3333,8549.0000,8609.0000,8555.6667,8492.0000,8535.6667,8532.3333,8639.0000,8522.0000,8565.6667,8468.6667,8508.6667,8472.0000,8475.6667,8522.0000,8499.0000,8548.6667,8502.3333,8555.6667,8448.6667,8512.0000,8445.3333,8522.3333,8519.0000,9968.0000,8539.0000,8515.6667,8532.0000,8529.0000,8518.6667,8545.6667,8485.3333,8535.3333,8559.0000,8555.6667,8508.6667,8532.3333,8552.3333,8518.6667,8522.3333,8452.0000,8522.0000,8538.6667,8535.6667,8545.6667,8522.0000,8455.3333,8602.3333,8442.0000,8552.0000,8512.3333,8538.6667,8465.6667,8532.0000,8515.6667,8495.3333,8535.6667,8518.6667,8525.3333,8545.6667,8542.0000,8538.6667,8509.0000,10001.6667,8458.6667,8549.0000,8505.3333,8595.6667,8488.6667,8592.0000,8548.6667,8599.0000,8555.6667,8468.6667,8539.0000,8458.6667,8549.0000,8518.6667,8532.0000,8478.6667,8565.3333,8519.0000,8539.0000,8545.3333,8438.6667,8535.6667,8542.3333,8528.6667,8565.6667,8539.0000" +performing set operations between randomized regions - 2d,"union, large, native",100,1,15902100,159073.6400,158780.9300,159455.0000,1691.8071,1383.8364,1989.3607,"benchmark,group:grid","158529.0000,162957.0000,160432.0000,158429.0000,158568.0000,157387.0000,157797.0000,162426.0000,158379.0000,158618.0000,158609.0000,157878.0000,158368.0000,162206.0000,158388.0000,158458.0000,158298.0000,158007.0000,158349.0000,158328.0000,162686.0000,158359.0000,158368.0000,158559.0000,158158.0000,158528.0000,162056.0000,158298.0000,157887.0000,158238.0000,158107.0000,157968.0000,162877.0000,158258.0000,158408.0000,158659.0000,158218.0000,157928.0000,157466.0000,162767.0000,158278.0000,158028.0000,158899.0000,158339.0000,158388.0000,162506.0000,158599.0000,158218.0000,158258.0000,158399.0000,158328.0000,162897.0000,158879.0000,157587.0000,158398.0000,157747.0000,158408.0000,162616.0000,158579.0000,158348.0000,158499.0000,158158.0000,158098.0000,158719.0000,162346.0000,158238.0000,158468.0000,158278.0000,158088.0000,158148.0000,163448.0000,158258.0000,158649.0000,158569.0000,157637.0000,158298.0000,163879.0000,158739.0000,158969.0000,158739.0000,158659.0000,158829.0000,158117.0000,163589.0000,158538.0000,158329.0000,157436.0000,158769.0000,159330.0000,163188.0000,158178.0000,157867.0000,158659.0000,158950.0000,158779.0000,162716.0000,158589.0000,158429.0000,158178.0000,158107.0000" +performing set operations between randomized regions - 2d,"union, large, embedded in 3d",100,1,17054100,171653.8100,171205.1800,172733.9600,3350.7160,1776.0391,6868.1832,"benchmark,group:grid","170341.0000,169960.0000,175851.0000,171523.0000,171053.0000,175250.0000,170982.0000,170722.0000,170672.0000,170591.0000,170391.0000,175600.0000,170501.0000,170611.0000,170532.0000,170501.0000,175170.0000,170822.0000,170622.0000,170361.0000,170461.0000,170592.0000,175981.0000,171143.0000,170702.0000,169870.0000,170361.0000,170321.0000,174839.0000,170862.0000,170652.0000,170331.0000,170581.0000,170932.0000,174649.0000,170521.0000,170321.0000,170862.0000,170451.0000,170722.0000,174950.0000,170561.0000,170340.0000,170310.0000,170411.0000,170230.0000,175079.0000,170401.0000,170291.0000,170581.0000,170972.0000,174279.0000,171253.0000,170421.0000,170661.0000,171053.0000,170591.0000,175601.0000,170452.0000,170371.0000,170892.0000,170731.0000,170371.0000,176933.0000,170451.0000,170331.0000,169810.0000,170622.0000,169980.0000,199276.0000,170492.0000,170932.0000,170190.0000,170350.0000,170000.0000,175541.0000,170782.0000,170010.0000,170211.0000,170541.0000,176062.0000,170702.0000,170291.0000,170130.0000,170271.0000,170341.0000,176082.0000,170081.0000,170852.0000,170511.0000,171333.0000,171012.0000,175391.0000,170581.0000,170632.0000,170391.0000,169710.0000,170972.0000,174900.0000,170672.0000" +performing set operations between randomized regions - 2d,"intersection, large, native",100,2,4134600,20740.3450,20671.4850,20860.3100,452.7389,290.6714,639.0621,"benchmark,group:grid","22692.0000,20573.5000,21489.5000,20663.0000,22772.0000,20538.0000,20733.5000,20588.0000,20673.5000,20658.0000,20613.0000,20738.5000,20618.0000,20738.5000,20608.0000,20673.5000,20623.0000,20513.0000,20643.0000,20573.5000,20678.0000,20543.0000,20553.0000,20848.5000,20578.0000,20703.5000,20618.0000,20633.5000,22616.5000,20708.5000,20648.0000,20568.5000,20773.0000,20603.5000,20738.0000,20608.5000,20623.0000,20643.0000,20603.5000,20753.0000,20513.0000,20663.5000,20558.0000,20528.0000,20733.0000,20563.0000,20708.0000,20613.0000,20658.5000,20668.0000,20553.0000,20753.5000,22406.5000,20763.5000,20463.0000,20713.0000,20608.5000,20678.0000,20603.0000,20583.5000,20653.0000,20543.0000,20643.0000,20558.0000,20598.5000,20658.0000,20513.0000,20778.5000,20538.0000,20718.0000,20613.0000,20558.0000,20743.5000,20533.0000,20673.0000,20583.0000,22742.5000,20558.0000,20778.0000,20638.0000,20588.0000,20663.0000,20522.5000,20723.5000,20558.0000,20608.0000,20598.5000,20538.0000,20678.0000,20583.0000,20638.5000,20598.0000,20558.0000,20723.0000,20623.0000,20813.5000,20568.0000,20603.0000,20613.0000,20518.0000" +performing set operations between randomized regions - 2d,"intersection, large, embedded in 3d",100,2,4426800,21173.0200,21103.4500,21305.8300,471.6921,263.3071,699.8827,"benchmark,group:grid","21019.0000,21014.0000,22076.0000,21189.0000,21119.0000,21159.5000,21084.0000,21164.0000,21159.0000,21069.0000,23544.0000,21069.0000,21064.0000,21129.0000,21109.0000,21079.0000,21089.0000,21109.0000,21104.0000,21074.0000,21079.0000,21154.5000,21109.0000,20973.5000,21064.0000,21089.0000,21049.0000,21129.0000,21129.0000,21129.0000,21104.0000,21079.0000,21049.0000,23243.0000,21149.0000,21094.0000,21104.0000,21124.0000,21059.0000,21089.0000,20988.5000,21048.5000,21114.5000,21094.0000,21028.5000,21033.5000,21024.0000,21079.0000,21014.0000,21074.0000,21034.0000,21064.0000,21064.0000,21109.0000,21054.0000,21099.0000,21099.0000,23383.5000,21039.0000,21034.0000,21104.0000,21094.0000,21029.0000,21119.0000,21034.0000,20978.5000,21054.0000,21084.0000,21014.0000,21114.0000,21034.0000,21034.0000,21039.0000,21119.0000,21059.0000,21029.0000,20908.5000,21099.0000,21039.0000,21014.0000,21059.0000,23498.5000,21044.0000,21059.0000,21109.0000,21064.0000,21049.0000,20998.5000,21049.0000,20989.0000,21054.0000,21014.0000,21054.0000,21023.5000,21054.0000,21044.0000,21039.0000,21084.0000,21069.0000,21049.0000" +performing set operations between randomized regions - 2d,"difference, large, native",100,1,62535300,626676.5500,626035.2700,627649.6900,3962.4400,2878.7462,6893.5358,"benchmark,group:grid","622558.0000,629672.0000,631275.0000,652795.0000,620845.0000,627828.0000,624181.0000,622438.0000,629131.0000,622829.0000,625333.0000,631445.0000,623600.0000,628860.0000,623721.0000,629231.0000,630213.0000,622518.0000,626165.0000,629732.0000,622809.0000,628389.0000,626907.0000,624291.0000,626646.0000,622739.0000,631495.0000,627708.0000,624803.0000,626866.0000,626807.0000,624642.0000,629020.0000,623219.0000,628119.0000,629331.0000,629792.0000,630654.0000,627367.0000,623150.0000,628399.0000,621586.0000,629902.0000,626075.0000,623279.0000,626156.0000,628219.0000,626105.0000,632817.0000,620835.0000,631436.0000,626485.0000,624452.0000,626927.0000,625714.0000,622889.0000,626075.0000,625564.0000,626265.0000,625053.0000,620755.0000,629001.0000,626746.0000,622749.0000,631445.0000,625293.0000,625925.0000,627428.0000,621666.0000,629932.0000,626305.0000,625674.0000,632788.0000,622428.0000,629151.0000,624171.0000,622368.0000,628800.0000,628560.0000,625043.0000,627958.0000,623561.0000,627307.0000,630173.0000,621566.0000,627508.0000,626215.0000,622047.0000,627348.0000,624261.0000,631526.0000,627006.0000,623209.0000,626446.0000,628910.0000,624161.0000,627407.0000,625514.0000,625634.0000,630313.0000" +performing set operations between randomized regions - 2d,"difference, large, embedded in 3d",100,1,67889000,679150.6300,678539.9200,680083.4600,3814.6107,2740.8171,6712.9415,"benchmark,group:grid","678705.0000,676811.0000,682812.0000,679456.0000,673445.0000,680258.0000,681390.0000,680257.0000,675999.0000,680428.0000,679957.0000,675529.0000,679035.0000,679436.0000,674507.0000,680128.0000,676591.0000,677372.0000,682802.0000,678835.0000,676000.0000,683103.0000,685778.0000,674978.0000,682602.0000,680658.0000,674788.0000,679746.0000,679085.0000,674246.0000,681410.0000,679777.0000,682792.0000,680128.0000,679987.0000,679316.0000,678735.0000,679656.0000,678865.0000,675017.0000,677954.0000,680017.0000,677813.0000,679837.0000,681109.0000,674657.0000,704544.0000,680248.0000,678214.0000,681590.0000,679266.0000,675087.0000,680238.0000,685999.0000,676340.0000,681189.0000,680147.0000,682362.0000,674727.0000,681821.0000,678845.0000,677101.0000,681270.0000,682372.0000,675388.0000,681931.0000,683574.0000,674607.0000,679316.0000,679025.0000,674627.0000,680639.0000,681961.0000,675749.0000,679756.0000,679406.0000,674406.0000,680268.0000,680638.0000,674708.0000,682952.0000,681090.0000,674276.0000,679095.0000,679255.0000,678645.0000,676410.0000,677672.0000,679106.0000,673204.0000,678765.0000,681610.0000,675028.0000,679055.0000,677573.0000,675098.0000,681169.0000,679386.0000,673696.0000,682812.0000" +performing set operations between randomized regions - 3d,"union, small, native",100,8,2770400,3858.6712,3841.2663,3896.7288,125.7312,72.7167,198.2280,"benchmark,group:grid","3805.7500,3837.1250,4123.7500,3875.8750,3862.1250,3842.0000,3873.2500,3853.3750,3843.2500,3858.3750,3859.6250,4524.5000,3845.8750,3842.0000,3839.6250,3844.5000,3849.6250,3829.5000,3843.2500,3835.7500,3839.6250,3847.0000,3849.6250,3842.0000,3840.7500,3816.8750,3839.5000,3830.7500,3852.1250,3830.7500,3868.3750,3833.2500,3850.7500,3823.3750,3840.7500,3832.0000,3847.1250,3814.5000,3853.2500,3828.2500,3837.1250,3832.0000,3819.5000,3832.0000,4572.2500,3838.2500,3824.5000,3838.2500,3847.0000,3827.0000,3834.5000,3823.2500,3845.7500,3815.7500,3830.7500,3822.0000,3832.0000,3822.0000,3835.7500,3842.0000,3838.3750,3818.2500,3847.0000,3825.7500,3808.2500,3827.0000,3828.3750,3824.5000,3827.0000,3825.7500,3839.5000,3828.3750,3820.7500,3817.0000,3840.7500,3825.7500,4553.3750,3844.6250,3815.7500,3823.2500,3812.0000,3835.7500,3829.5000,3832.1250,3822.0000,3807.0000,3829.5000,3819.5000,3819.5000,3824.5000,3844.5000,3816.8750,3842.0000,3809.5000,3835.7500,3835.7500,3830.8750,3827.0000,3833.2500,3839.5000" +performing set operations between randomized regions - 3d,"intersection, small, native",100,177,2513400,144.2592,142.4657,151.7232,16.1413,2.6784,37.8089,"benchmark,group:grid","145.3503,144.6158,145.6893,145.3503,144.3277,142.4633,141.2768,140.6497,142.4633,140.5932,141.0508,143.1412,143.0847,143.2542,142.1808,143.1412,142.9718,162.8983,144.2147,143.5989,142.6893,143.0282,144.0452,142.8588,142.9718,140.6554,141.6667,142.7458,141.8983,140.9379,141.4407,140.0282,142.1243,142.6893,141.3898,140.1977,140.5932,144.0452,141.5537,142.6893,142.6328,142.6328,142.6893,142.5763,142.4068,138.7853,142.8588,141.7797,140.8814,141.3277,142.6893,142.6328,142.6328,141.5028,140.5367,142.6328,301.2938,140.1977,140.9944,142.9153,142.9153,142.5198,142.4633,142.4068,142.6893,141.8362,140.5424,142.6893,138.9492,139.8023,140.8814,141.2147,140.1412,140.5367,142.8588,141.4972,140.2599,141.8927,143.4294,143.4237,142.7458,142.6893,142.3503,141.8362,142.6893,142.6328,142.4633,142.8588,143.1412,143.7627,140.1412,142.6893,140.3672,140.5367,142.4011,165.9548,143.3672,143.5424,143.4802,144.1582" +performing set operations between randomized regions - 3d,"difference, small, native",100,19,2589700,1362.5558,1357.8663,1372.4926,33.3603,15.8167,56.5333,"benchmark,group:grid","1361.4737,1363.0000,1485.8947,1369.8947,1367.2105,1379.8947,1377.7368,1374.5789,1370.4211,1359.3158,1364.5789,1368.2632,1366.2105,1359.3158,1359.3158,1351.4211,1362.4737,1352.4737,1352.4211,1363.0526,1361.4211,1348.7368,1347.7368,1356.6842,1583.9474,1358.7895,1355.6316,1348.2632,1355.1053,1363.5263,1345.6316,1345.5789,1337.1579,1349.3158,1350.3684,1352.4737,1360.3684,1350.8947,1353.5263,1343.4737,1358.2632,1339.2632,1353.5263,1352.4737,1360.3684,1346.1579,1348.7895,1348.7368,1359.3158,1366.7368,1344.0000,1352.4737,1354.0526,1347.7368,1354.0000,1350.8421,1341.4211,1342.9474,1353.5263,1344.5789,1344.0000,1350.3684,1355.1053,1552.8421,1361.9474,1351.9474,1363.0000,1361.4211,1351.4211,1360.3684,1348.2632,1360.3684,1362.4737,1358.2632,1355.1053,1359.3158,1366.1579,1351.8947,1353.5263,1372.0000,1353.5263,1364.0526,1364.0526,1372.5263,1364.5789,1376.7368,1350.3158,1344.0526,1374.0526,1352.9474,1356.6842,1352.4737,1361.4211,1357.2105,1347.7368,1368.2632,1367.7895,1370.8947,1359.8421,1359.8421" +performing set operations between randomized regions - 3d,"union, medium, native",100,2,4288400,21454.9050,21390.9850,21573.7400,432.2946,247.1051,641.5972,"benchmark,group:grid","21369.5000,21374.5000,22301.5000,21409.5000,21394.5000,21395.0000,21354.5000,21344.5000,21519.5000,21344.5000,21364.5000,21239.0000,21374.5000,21269.5000,21324.5000,21239.5000,21479.5000,23559.0000,21424.5000,21329.5000,21319.5000,21329.5000,21480.0000,21349.5000,21359.5000,21284.5000,21379.5000,21374.5000,21409.5000,21344.5000,21329.5000,21420.0000,21359.5000,21434.5000,21299.5000,21379.5000,21349.5000,21279.5000,21319.5000,21329.5000,23418.5000,21344.5000,21399.5000,21234.5000,21354.5000,21374.5000,21239.0000,21379.5000,21334.5000,21294.5000,21414.5000,21344.5000,21374.5000,21404.5000,21289.5000,21304.5000,21434.5000,21269.5000,21480.0000,21319.5000,21384.5000,21349.5000,21409.5000,21339.5000,23418.5000,21334.5000,21334.5000,21264.5000,21429.5000,21429.5000,21359.5000,21384.5000,21439.5000,21535.0000,21449.5000,21435.0000,21319.5000,21364.5000,21389.5000,21344.5000,21324.5000,21444.5000,21374.5000,21379.5000,21309.5000,21419.5000,21279.5000,23583.5000,21209.5000,21289.5000,21204.0000,21550.0000,21309.5000,21394.5000,21319.5000,21424.5000,21375.0000,21434.5000,21204.0000,21394.5000" +performing set operations between randomized regions - 3d,"intersection, medium, native",100,10,2582000,2576.1220,2569.1250,2593.6640,50.5296,8.6558,91.1943,"benchmark,group:grid","2549.6000,2564.7000,2611.7000,2579.6000,2565.6000,2568.7000,2572.7000,2568.7000,2563.6000,2543.6000,2564.7000,2561.6000,2570.7000,2569.7000,2569.7000,2568.7000,2571.6000,2578.6000,2563.6000,2574.7000,2574.7000,2569.7000,2566.7000,2571.6000,2560.6000,2571.7000,2564.7000,2922.3000,2551.7000,2562.6000,2574.6000,2577.7000,2571.7000,2574.7000,2568.7000,2564.7000,2575.7000,2545.6000,2572.7000,2578.7000,2575.7000,2572.7000,2568.6000,2578.6000,2568.6000,2570.7000,2559.7000,2574.7000,2570.7000,2572.6000,2569.7000,2570.7000,2569.7000,2572.7000,2555.6000,2562.7000,2567.7000,2570.7000,2570.7000,2575.6000,2570.6000,2573.7000,2578.7000,2554.7000,2570.7000,2570.6000,2927.4000,2571.7000,2573.7000,2571.7000,2568.6000,2571.6000,2569.7000,2551.7000,2576.7000,2570.6000,2564.6000,2571.7000,2571.7000,2566.7000,2567.7000,2571.6000,2555.7000,2571.7000,2572.7000,2573.7000,2572.7000,2570.6000,2565.7000,2560.7000,2568.7000,2541.6000,2573.7000,2570.7000,2569.6000,2571.6000,2573.7000,2570.7000,2566.7000,2573.7000" +performing set operations between randomized regions - 3d,"difference, medium, native",100,3,3272100,11111.8533,11073.8967,11186.8867,261.9534,150.4970,404.4818,"benchmark,group:grid","11057.0000,11020.3333,11935.3333,11147.0000,11100.6667,11127.0000,11077.0000,11033.6667,11047.0000,11083.6667,11033.6667,11020.3333,11057.0000,11157.0000,11073.6667,11144.0000,11077.0000,11117.0000,11060.3333,11043.6667,12500.0000,11050.0000,10970.0000,11123.6667,11000.3333,11107.0000,11037.0000,11047.0000,11020.3333,11007.0000,11117.0000,10987.0000,11097.0000,11077.0000,11073.6667,11003.6667,11043.6667,11187.0000,11130.3333,11177.3333,11046.6667,11080.3333,11043.6667,11033.3333,11257.6667,11063.6667,11023.3333,10990.3333,11067.0000,11087.0000,12479.6667,10963.6667,11020.3333,11000.0000,11107.3333,11006.6667,11050.3333,11114.0000,11087.0000,11057.0000,10986.6667,10990.3333,11067.0000,11063.6667,11023.6667,11023.6667,11077.0000,11040.3333,11020.0000,10970.3333,11050.3333,11037.0000,11020.0000,10986.6667,10993.6667,11077.0000,11100.3333,11113.6667,11087.3333,11083.6667,12483.0000,11020.3333,11073.6667,11090.3333,11030.3333,11073.6667,11107.0000,11033.6667,11073.6667,11053.6667,11113.6667,11003.6667,11073.6667,11100.3333,11000.0000,11033.6667,10993.6667,11093.6667,11067.0000,11107.0000" +performing set operations between randomized regions - 3d,"union, large, native",100,1,217808600,2137913.3600,2124899.5200,2149564.8600,62754.4889,56861.3569,67050.5416,"benchmark,group:grid","2190450.0000,2187555.0000,2182666.0000,2175542.0000,2176284.0000,2176694.0000,2176805.0000,2180371.0000,2177455.0000,2174740.0000,2185171.0000,2174500.0000,2177526.0000,2180472.0000,2173629.0000,2174109.0000,2175994.0000,2178057.0000,2174320.0000,2178638.0000,2061095.0000,2044123.0000,2045956.0000,2062979.0000,2239344.0000,2191442.0000,2175372.0000,2182406.0000,2177055.0000,2178508.0000,2173739.0000,2177786.0000,2192725.0000,2177416.0000,2173549.0000,2173939.0000,2174961.0000,2186503.0000,2177987.0000,2173588.0000,2175653.0000,2099097.0000,2042009.0000,2039764.0000,2042160.0000,2055424.0000,2054753.0000,2041598.0000,2040947.0000,2042209.0000,2042300.0000,2048311.0000,2044634.0000,2041969.0000,2056696.0000,2042780.0000,2045276.0000,2042309.0000,2055165.0000,2043211.0000,2041057.0000,2041417.0000,2040977.0000,2041498.0000,2055856.0000,2041778.0000,2041919.0000,2042641.0000,2043121.0000,2175693.0000,2174730.0000,2176363.0000,2174661.0000,2175723.0000,2176774.0000,2183057.0000,2179580.0000,2176965.0000,2176384.0000,2175011.0000,2172025.0000,2180963.0000,2176474.0000,2174310.0000,2176173.0000,2176594.0000,2185461.0000,2178648.0000,2187746.0000,2187906.0000,2177085.0000,2173789.0000,2190481.0000,2212211.0000,2177195.0000,2177887.0000,2189709.0000,2185521.0000,2180923.0000,2187314.0000" +performing set operations between randomized regions - 3d,"intersection, large, native",100,2,3061000,15345.1200,15284.2650,15487.3150,466.0190,247.8229,761.4336,"benchmark,group:grid","15213.0000,15328.0000,15538.5000,15278.0000,15308.0000,15223.0000,15183.0000,15388.0000,15243.0000,18239.0000,15283.0000,15278.0000,15253.0000,15273.0000,15273.0000,15273.0000,15187.5000,15268.0000,15313.5000,15308.0000,15293.0000,15433.0000,15232.5000,15288.0000,15238.0000,15293.0000,15273.0000,15233.0000,15333.5000,15257.5000,15227.5000,15168.0000,15313.0000,15288.0000,15283.0000,15203.0000,15273.0000,15238.0000,15278.0000,15263.0000,15393.0000,17968.0000,15243.0000,15283.0000,15253.0000,15202.5000,15273.0000,15288.0000,15252.5000,15253.0000,15263.0000,15243.0000,15253.0000,15318.0000,15268.0000,15353.5000,15167.5000,15318.5000,15283.0000,15217.5000,15197.5000,15248.0000,15293.0000,15278.0000,15218.0000,15218.0000,15243.0000,15228.0000,15323.0000,15198.0000,15243.0000,15217.5000,15218.0000,15278.0000,17697.5000,15308.5000,15258.0000,15278.0000,15232.5000,15263.0000,15198.0000,15228.0000,15263.0000,15278.0000,15228.0000,15278.0000,15253.0000,15198.0000,15197.5000,15298.0000,15293.0000,15212.5000,15163.0000,15288.0000,15258.0000,15243.0000,15293.0000,15303.0000,15243.0000,15203.0000" +performing set operations between randomized regions - 3d,"difference, large, native",100,1,623402800,6121011.9400,6094014.4300,6146836.2100,134635.8171,129509.9802,139074.3295,"benchmark,group:grid","5962231.0000,6115512.0000,6093500.0000,5977019.0000,5986386.0000,5969184.0000,5958944.0000,5968753.0000,5965057.0000,5967200.0000,5959225.0000,5958604.0000,5954887.0000,5964144.0000,5967020.0000,5970006.0000,5960146.0000,5956810.0000,5964756.0000,5969214.0000,5958834.0000,5989302.0000,5992698.0000,5965968.0000,5944227.0000,5969515.0000,5960998.0000,5975366.0000,6053824.0000,6255056.0000,6240308.0000,6243333.0000,6239076.0000,6240729.0000,6231461.0000,6233124.0000,6241109.0000,6286025.0000,6238875.0000,6243264.0000,6235008.0000,6242963.0000,6230259.0000,6252922.0000,6230850.0000,6241711.0000,6245518.0000,6248283.0000,6241911.0000,6248543.0000,6253192.0000,6240438.0000,6235108.0000,6273841.0000,6240529.0000,6281075.0000,6280124.0000,6252752.0000,6241430.0000,6248032.0000,6239336.0000,6244025.0000,6231952.0000,6243674.0000,6237292.0000,6236741.0000,6237151.0000,6238144.0000,6233976.0000,6279943.0000,6245628.0000,6236420.0000,6238495.0000,6239697.0000,6249004.0000,6237362.0000,6176126.0000,5990835.0000,6188079.0000,6251199.0000,6237553.0000,6240839.0000,6243434.0000,6244746.0000,6032654.0000,6058803.0000,5973441.0000,5974634.0000,5961970.0000,5970106.0000,5959045.0000,5967741.0000,5956771.0000,5964425.0000,5956279.0000,5961218.0000,5982670.0000,5969675.0000,5958083.0000,5955849.0000" +"normalizing a fully mergeable, complex tiling of boxes - 2d","small, native",100,12,2635200,2202.2383,2193.7283,2221.6683,63.3267,32.1971,104.7254,"benchmark,group:grid","2202.3333,2193.1667,2619.8333,2184.0000,2209.0000,2210.7500,2208.1667,2209.0000,2214.0833,2201.5000,2201.5000,2204.0833,2196.5000,2203.1667,2187.3333,2194.0000,2203.1667,2195.6667,2177.3333,2196.5000,2189.8333,2192.3333,2179.7500,2180.6667,2202.3333,2184.8333,2205.6667,2188.1667,2179.8333,2197.3333,2197.3333,2191.5000,2181.5000,2195.6667,2185.6667,2197.3333,2179.0000,2190.6667,2176.4167,2544.6667,2196.5000,2191.5000,2197.3333,2205.7500,2191.5000,2201.5000,2190.6667,2182.2500,2184.7500,2174.8333,2212.3333,2192.3333,2183.1667,2193.1667,2193.1667,2181.5000,2175.5833,2199.8333,2186.4167,2167.2500,2179.8333,2182.2500,2192.3333,2197.3333,2193.0833,2186.4167,2194.0000,2189.0000,2192.3333,2180.6667,2179.8333,2188.1667,2179.7500,2189.0000,2175.6667,2184.0000,2189.8333,2501.2500,2191.5000,2191.5000,2194.0000,2185.5833,2174.0000,2194.8333,2189.8333,2195.6667,2185.6667,2191.5000,2186.5000,2190.6667,2188.1667,2183.9167,2184.8333,2204.0000,2196.5000,2199.8333,2192.3333,2193.1667,2190.6667,2191.5000" +"normalizing a fully mergeable, complex tiling of boxes - 2d","small, embedded in 3d",100,11,2702700,2283.0764,2273.9082,2306.0364,67.6827,18.9633,121.3801,"benchmark,group:grid","2266.0000,2264.0909,2457.1818,2291.4545,2279.6364,2275.0000,2281.4545,2282.3636,2278.6364,2277.8182,2274.0909,2270.5455,2266.8182,2275.0909,2269.5455,2273.2727,2269.5455,2270.4545,2276.8182,2268.6364,2269.5455,2275.9091,2272.2727,2271.3636,2272.2727,2273.1818,2274.0909,2269.5455,2271.4545,2270.4545,2775.0909,2276.9091,2270.4545,2268.7273,2267.7273,2266.9091,2270.4545,2274.1818,2274.0909,2276.9091,2273.1818,2269.6364,2269.5455,2275.0909,2271.3636,2274.1818,2278.6364,2278.7273,2272.2727,2270.5455,2270.4545,2274.1818,2273.1818,2272.3636,2269.5455,2263.1818,2267.8182,2274.0909,2266.9091,2271.3636,2270.5455,2273.1818,2268.7273,2268.6364,2273.1818,2269.5455,2272.2727,2271.4545,2274.0909,2271.4545,2697.6364,2270.5455,2273.1818,2269.6364,2265.9091,2267.7273,2270.5455,2268.6364,2270.5455,2269.5455,2265.9091,2272.3636,2267.7273,2265.0909,2273.1818,2267.8182,2272.2727,2276.9091,2270.4545,2273.2727,2269.5455,2268.6364,2279.6364,2274.1818,2273.1818,2271.3636,2279.5455,2265.0000,2268.7273,2269.5455" +"normalizing a fully mergeable, complex tiling of boxes - 2d","large, native",100,1,152658600,1526836.7200,1526000.9600,1528131.5800,5237.7825,3495.6687,7986.3337,"benchmark,group:grid","1531180.0000,1522304.0000,1530549.0000,1527905.0000,1521392.0000,1524909.0000,1522184.0000,1529397.0000,1525761.0000,1523987.0000,1527754.0000,1531842.0000,1522965.0000,1527393.0000,1520861.0000,1524838.0000,1524398.0000,1524047.0000,1525139.0000,1530239.0000,1522154.0000,1526993.0000,1527724.0000,1524198.0000,1555847.0000,1526833.0000,1530369.0000,1521603.0000,1530790.0000,1522103.0000,1525661.0000,1522073.0000,1528055.0000,1526813.0000,1526191.0000,1525540.0000,1523897.0000,1526873.0000,1530209.0000,1526111.0000,1528205.0000,1529678.0000,1521332.0000,1525330.0000,1527254.0000,1529698.0000,1524658.0000,1529077.0000,1526492.0000,1528535.0000,1521602.0000,1529558.0000,1525380.0000,1530730.0000,1528766.0000,1534076.0000,1526592.0000,1527875.0000,1526843.0000,1526542.0000,1536130.0000,1523205.0000,1525870.0000,1521222.0000,1530319.0000,1518937.0000,1529127.0000,1525981.0000,1525841.0000,1520731.0000,1528315.0000,1525851.0000,1527975.0000,1520330.0000,1528526.0000,1523666.0000,1527845.0000,1530830.0000,1523867.0000,1524488.0000,1520621.0000,1534457.0000,1523937.0000,1524157.0000,1524128.0000,1532132.0000,1525701.0000,1524288.0000,1522514.0000,1553383.0000,1520711.0000,1525079.0000,1527514.0000,1523687.0000,1521262.0000,1530289.0000,1530620.0000,1529187.0000,1528275.0000,1525370.0000" +"normalizing a fully mergeable, complex tiling of boxes - 2d","large, embedded in 3d",100,1,172377400,1680405.3200,1671747.4900,1689561.7200,45627.3883,42866.5205,55161.0517,"benchmark,group:grid","1637562.0000,1634036.0000,1827473.0000,1725028.0000,1725830.0000,1718847.0000,1724828.0000,1726761.0000,1729537.0000,1719057.0000,1725389.0000,1729467.0000,1722503.0000,1724537.0000,1722674.0000,1725268.0000,1718145.0000,1729767.0000,1725118.0000,1724587.0000,1720890.0000,1724086.0000,1723586.0000,1720139.0000,1723024.0000,1723646.0000,1725850.0000,1720159.0000,1764042.0000,1725720.0000,1723525.0000,1719929.0000,1651880.0000,1641369.0000,1632984.0000,1638755.0000,1632893.0000,1724156.0000,1720810.0000,1725038.0000,1718816.0000,1722133.0000,1723896.0000,1725479.0000,1719898.0000,1725259.0000,1726581.0000,1719909.0000,1722704.0000,1724978.0000,1725289.0000,1717634.0000,1725399.0000,1727052.0000,1708457.0000,1639045.0000,1641631.0000,1633915.0000,1639146.0000,1642462.0000,1634596.0000,1652732.0000,1641480.0000,1632823.0000,1644907.0000,1639265.0000,1633946.0000,1635789.0000,1636040.0000,1641560.0000,1641460.0000,1634186.0000,1640648.0000,1641320.0000,1631871.0000,1639487.0000,1638764.0000,1633856.0000,1636130.0000,1634967.0000,1636911.0000,1637322.0000,1634546.0000,1638525.0000,1638304.0000,1634486.0000,1637202.0000,1641680.0000,1633986.0000,1638084.0000,1631941.0000,1641189.0000,1640798.0000,1636560.0000,1637833.0000,1640147.0000,1631871.0000,1640538.0000,1639206.0000,1634998.0000" +benchmark independent task pattern with 100 tasks,task generation,100,1,842809500,7895687.5000,7775296.4100,8095508.9900,773940.2158,549523.7081,1417174.1109,"benchmark,group:system,indep-tasks","7346725.0000,7256605.0000,8770263.0000,8296626.0000,8458342.0000,8342282.0000,8450989.0000,8406154.0000,8541130.0000,8430840.0000,8434467.0000,8351921.0000,8444927.0000,8353003.0000,8504670.0000,8564784.0000,8403870.0000,8352502.0000,8507265.0000,8301976.0000,8423998.0000,8375375.0000,8426853.0000,8530108.0000,8471818.0000,8385555.0000,8429268.0000,8302056.0000,8436191.0000,8393850.0000,8419058.0000,8340279.0000,8454956.0000,8512115.0000,8424919.0000,13296234.0000,8375105.0000,8356529.0000,8465826.0000,8359545.0000,8408258.0000,8405913.0000,8386446.0000,8426613.0000,8463943.0000,8308559.0000,8501475.0000,8377780.0000,8486816.0000,8169335.0000,7401029.0000,7243399.0000,7320236.0000,7276943.0000,7357716.0000,7276974.0000,7366382.0000,7270190.0000,7390318.0000,7291891.0000,7364399.0000,7267075.0000,7322159.0000,7250874.0000,7349430.0000,7255783.0000,7385338.0000,7290910.0000,7339742.0000,7280740.0000,7336767.0000,7297622.0000,7365671.0000,7305287.0000,7319825.0000,7322329.0000,7362906.0000,7254761.0000,7354390.0000,7272455.0000,7342167.0000,7279618.0000,7332288.0000,7279408.0000,7317981.0000,7323782.0000,7346225.0000,7359570.0000,7334041.0000,7353007.0000,7332278.0000,7300788.0000,7347767.0000,7279538.0000,7359149.0000,7279788.0000,7341375.0000,7278045.0000,7379818.0000,7274459.0000" +benchmark independent task pattern with 500 tasks,task generation,100,1,5090540200,49095335.6100,48496143.6900,49609158.1600,2822959.1773,2486739.6993,3085363.8199,"benchmark,group:system,indep-tasks","44137320.0000,44381012.0000,50795010.0000,50860324.0000,49928859.0000,50597637.0000,50921872.0000,50919437.0000,50719047.0000,51217511.0000,50728003.0000,50916220.0000,52393131.0000,51084379.0000,50634166.0000,50723696.0000,50743553.0000,50963470.0000,50803317.0000,50656288.0000,50925067.0000,50350668.0000,50581066.0000,49822738.0000,50662289.0000,50615480.0000,51272666.0000,50961397.0000,50588239.0000,50724437.0000,50675444.0000,50687156.0000,50822743.0000,50486837.0000,50860134.0000,50774331.0000,50840366.0000,50555326.0000,50744385.0000,50733574.0000,50605322.0000,51598935.0000,50383140.0000,50656187.0000,50595893.0000,50484351.0000,50984169.0000,50681255.0000,50568992.0000,50978328.0000,50795832.0000,52484664.0000,50681726.0000,50681255.0000,51000590.0000,50913024.0000,50514278.0000,50556468.0000,50814938.0000,50604149.0000,50556619.0000,50578831.0000,48161409.0000,44270973.0000,44364400.0000,44305799.0000,44234654.0000,44467135.0000,44326839.0000,44483295.0000,44287764.0000,44334133.0000,44428372.0000,44577645.0000,44256246.0000,44384318.0000,44217402.0000,44363248.0000,44234804.0000,44237990.0000,44230306.0000,46974007.0000,50606243.0000,50599360.0000,50327404.0000,51280210.0000,49715274.0000,51021440.0000,50892806.0000,50842130.0000,50622373.0000,50701874.0000,51479468.0000,52497789.0000,48440057.0000,44272406.0000,44309876.0000,44449522.0000,44397232.0000,44409817.0000" +benchmark independent task pattern with 2500 tasks,task generation,100,1,21857197000,246129489.7700,243365015.2800,248523846.1400,13110851.2100,11668188.1067,14473872.8777,"benchmark,group:system,indep-tasks","257166052.0000,257248409.0000,249176024.0000,256791420.0000,256744111.0000,258302375.0000,257189636.0000,253699489.0000,224543377.0000,223778257.0000,221460784.0000,226415697.0000,255245971.0000,253201024.0000,254925984.0000,256037622.0000,252201229.0000,253879511.0000,257070901.0000,233308284.0000,234052264.0000,257289105.0000,258880782.0000,257363235.0000,238466623.0000,223798726.0000,223581595.0000,217846503.0000,249483507.0000,255870496.0000,255038097.0000,253507005.0000,255565046.0000,256985179.0000,257111989.0000,256018126.0000,253691134.0000,254177596.0000,258291014.0000,239161951.0000,231968564.0000,257003984.0000,253433686.0000,239268874.0000,248915020.0000,220448345.0000,225973980.0000,228068020.0000,251757158.0000,255291258.0000,252713361.0000,252963966.0000,256218415.0000,253068373.0000,255046353.0000,256783345.0000,249272117.0000,223665474.0000,220446602.0000,220928947.0000,235690901.0000,241375357.0000,220845158.0000,224624552.0000,233137700.0000,251818925.0000,256472988.0000,250834539.0000,238367616.0000,231314033.0000,256872285.0000,254134826.0000,253138116.0000,244994939.0000,237045749.0000,239804399.0000,223583579.0000,245547106.0000,252055323.0000,254779057.0000,255879202.0000,256157580.0000,257803450.0000,256617492.0000,257194485.0000,256634524.0000,256642900.0000,260725871.0000,255698179.0000,243004165.0000,223625990.0000,220537204.0000,223749093.0000,241237947.0000,256581685.0000,255219181.0000,252846102.0000,255681187.0000,257449610.0000,255424010.0000" +benchmark stencil: 1D 50 iters oversub 1,iterations,100,1,313112800,3072416.1200,3067970.6600,3077021.1500,23118.7382,21009.8330,26026.9370,"benchmark,group:system,stencil","3097400.0000,3070068.0000,3100255.0000,3099534.0000,3045352.0000,3079907.0000,3065970.0000,3056442.0000,3045742.0000,3076451.0000,3097470.0000,3089174.0000,3063205.0000,3109402.0000,3099134.0000,3067653.0000,3097480.0000,3048226.0000,3097140.0000,3073073.0000,3049208.0000,3046143.0000,3049870.0000,3096929.0000,3073094.0000,3070158.0000,3069657.0000,3102009.0000,3121455.0000,3052064.0000,3122367.0000,3073013.0000,3070159.0000,3129340.0000,3069447.0000,3051543.0000,3069187.0000,3052585.0000,3068875.0000,3028028.0000,3047095.0000,3098391.0000,3069076.0000,3051753.0000,3072352.0000,3096669.0000,3096889.0000,3098402.0000,3071811.0000,3048668.0000,3073064.0000,3074005.0000,3045692.0000,3051613.0000,3049909.0000,3047987.0000,3097229.0000,3048307.0000,3048518.0000,3048286.0000,3097910.0000,3096408.0000,3097019.0000,3049409.0000,3048307.0000,3023590.0000,3048427.0000,3076480.0000,3091458.0000,3042456.0000,3066562.0000,3052735.0000,3049980.0000,3068916.0000,3042967.0000,3048858.0000,3027197.0000,3056843.0000,3050782.0000,3072202.0000,3097490.0000,3095056.0000,3099504.0000,3092060.0000,3073575.0000,3100075.0000,3047716.0000,3049519.0000,3072553.0000,3101828.0000,3096579.0000,3097660.0000,3048598.0000,3096869.0000,3072683.0000,3073635.0000,3069186.0000,3070208.0000,3101728.0000,3096659.0000" +benchmark stencil: 1D 500 iters oversub 1,iterations,100,1,3075085200,30494165.7300,30269626.2200,30684792.0300,1058915.9862,824379.6075,1334562.1315,"benchmark,group:system,stencil","30786831.0000,30852246.0000,30856263.0000,30896619.0000,31375918.0000,30624613.0000,30796008.0000,30649931.0000,30769889.0000,30800818.0000,30810326.0000,30710206.0000,30697942.0000,30626507.0000,30677073.0000,30729643.0000,30678676.0000,30793334.0000,29141402.0000,30818401.0000,30729914.0000,30651354.0000,30745473.0000,30750633.0000,30629062.0000,30709905.0000,30738599.0000,30734381.0000,30752195.0000,30615957.0000,30723531.0000,32458851.0000,30667195.0000,30711448.0000,30729012.0000,30583275.0000,30753427.0000,32986491.0000,30704044.0000,30680279.0000,30772113.0000,30685129.0000,30637488.0000,30775990.0000,30705597.0000,30634071.0000,30720605.0000,30710857.0000,30037991.0000,27982284.0000,27636288.0000,27897834.0000,27866255.0000,27684460.0000,27156860.0000,27203568.0000,28546834.0000,30701890.0000,30728691.0000,30542948.0000,30632148.0000,30702000.0000,30606860.0000,30796359.0000,30728670.0000,28548558.0000,27763900.0000,28561592.0000,30783174.0000,30680429.0000,30661263.0000,34218106.0000,30682994.0000,30686021.0000,30751705.0000,30783645.0000,30804144.0000,30786531.0000,30755993.0000,30776212.0000,30705387.0000,30732428.0000,30748058.0000,30797552.0000,30680580.0000,30704796.0000,30826225.0000,30821958.0000,30759238.0000,30752836.0000,30891219.0000,30703944.0000,30731807.0000,30759258.0000,30742236.0000,30743309.0000,32402534.0000,30825113.0000,30813241.0000,30789125.0000" +benchmark stencil: 1D 50 iters oversub 3,iterations,100,1,600445600,6285769.2000,6209489.4100,6393486.6500,455403.5695,353944.7560,771139.1901,"benchmark,group:system,stencil","6558801.0000,6639154.0000,6651898.0000,6571756.0000,6669051.0000,6650716.0000,6625107.0000,6629325.0000,6635608.0000,6657138.0000,6623374.0000,6656086.0000,6656046.0000,6657329.0000,6686424.0000,6594940.0000,6612103.0000,6688698.0000,6618424.0000,6688758.0000,6065857.0000,6104590.0000,6647851.0000,6644495.0000,6602214.0000,6124468.0000,5895695.0000,5913950.0000,5907797.0000,5897638.0000,5890425.0000,5932505.0000,5893410.0000,5905584.0000,5914179.0000,5882941.0000,5894042.0000,5922726.0000,5903780.0000,5889303.0000,5888661.0000,5907287.0000,5933807.0000,5986096.0000,5896306.0000,5897639.0000,5921343.0000,5882991.0000,5945980.0000,5953003.0000,5891386.0000,5919229.0000,5909020.0000,5892318.0000,5929419.0000,5901235.0000,5851912.0000,9118294.0000,6024840.0000,5869535.0000,5838376.0000,5868744.0000,5895524.0000,5913268.0000,5848395.0000,5904290.0000,5846531.0000,5907407.0000,5857572.0000,5903730.0000,5888281.0000,5875867.0000,5854496.0000,5908549.0000,5963332.0000,6664662.0000,6621631.0000,6618655.0000,6584821.0000,6592335.0000,6578018.0000,6665885.0000,6565254.0000,6661747.0000,6533133.0000,6668890.0000,6586825.0000,6623034.0000,6610429.0000,6622943.0000,6573570.0000,6600671.0000,6572938.0000,6614798.0000,6539976.0000,6645677.0000,6565935.0000,6608315.0000,6550295.0000,6707634.0000" +benchmark stencil: 1D 500 iters oversub 3,iterations,100,1,6718562000,66667556.6800,66192698.4600,66968224.8900,1892804.3257,1328327.6554,2527619.4267,"benchmark,group:system,stencil","67381083.0000,67467157.0000,65717920.0000,64984340.0000,65507081.0000,67275844.0000,67094370.0000,67323705.0000,67216491.0000,67404057.0000,67229947.0000,67364041.0000,67214938.0000,67338754.0000,67012866.0000,67438883.0000,67041861.0000,67407063.0000,66967369.0000,66744327.0000,67080804.0000,67435436.0000,67391714.0000,67378599.0000,67177047.0000,67588066.0000,67039446.0000,67423334.0000,67193328.0000,68990544.0000,67258371.0000,67588637.0000,66992337.0000,67501081.0000,66355840.0000,67431850.0000,67161588.0000,67439724.0000,67102967.0000,67297575.0000,67105401.0000,67310630.0000,67065786.0000,67352269.0000,67122503.0000,67342441.0000,67193288.0000,67265304.0000,67105772.0000,67370213.0000,66362873.0000,67350305.0000,67205902.0000,64047043.0000,59655949.0000,59823086.0000,59558444.0000,59765887.0000,59536582.0000,59717946.0000,63576712.0000,67372418.0000,67116803.0000,67448331.0000,66133438.0000,67357149.0000,66417878.0000,67298878.0000,67383449.0000,67497023.0000,67029086.0000,67503165.0000,66976386.0000,67337310.0000,67175715.0000,66512848.0000,67090533.0000,67259423.0000,67061357.0000,67526730.0000,67034086.0000,66705543.0000,66895203.0000,67398947.0000,67227873.0000,67461316.0000,67308997.0000,67443252.0000,67157019.0000,69059004.0000,67246519.0000,67606000.0000,67275253.0000,67471064.0000,67191945.0000,67330438.0000,66497839.0000,67425017.0000,67325007.0000,67402705.0000" +benchmark stencil: 2D 30 iters oversub 1,iterations,100,1,459324700,4806715.1800,4788646.7700,4815243.9300,60563.7657,32051.5758,113951.7512,"benchmark,group:system,stencil","4855263.0000,4840875.0000,4833401.0000,4802513.0000,4842097.0000,4806310.0000,4787704.0000,4844101.0000,4872886.0000,4814976.0000,4799577.0000,4783697.0000,4815366.0000,4805027.0000,4786752.0000,4792514.0000,4792623.0000,4770993.0000,4816088.0000,4772626.0000,4803675.0000,4784909.0000,4829633.0000,4794087.0000,4545545.0000,4352820.0000,4699297.0000,4787434.0000,4882754.0000,4836727.0000,4751306.0000,4845433.0000,4843349.0000,4862577.0000,4797282.0000,4782745.0000,4803624.0000,4839933.0000,4812120.0000,4839713.0000,4774760.0000,4805598.0000,4795930.0000,4824934.0000,4812371.0000,4827519.0000,4795309.0000,4846376.0000,4838881.0000,4843981.0000,4812541.0000,4858538.0000,4872395.0000,4834403.0000,4794918.0000,4844151.0000,4782585.0000,4816348.0000,4824695.0000,4795990.0000,4827179.0000,4823452.0000,4839653.0000,4781152.0000,4826027.0000,4824895.0000,4854360.0000,4782655.0000,4807171.0000,4791051.0000,4761354.0000,4803214.0000,4796090.0000,4843621.0000,4787093.0000,4770441.0000,4803545.0000,4849020.0000,4822090.0000,4800819.0000,4820186.0000,4814155.0000,4827169.0000,4815907.0000,4826187.0000,4783977.0000,4799557.0000,4872284.0000,4849982.0000,4817481.0000,4816559.0000,4821368.0000,4818683.0000,4787614.0000,4822540.0000,4806199.0000,4781042.0000,4765331.0000,4840674.0000,4857166.0000" +benchmark stencil: 2D 300 iters oversub 1,iterations,100,1,4851101300,48346590.1800,48030661.4700,48554370.9200,1291817.1687,912353.8286,1756768.1049,"benchmark,group:system,stencil","48233496.0000,49012552.0000,48847038.0000,48981613.0000,48088670.0000,48957778.0000,47976157.0000,49121518.0000,48112787.0000,49110859.0000,48106866.0000,49073297.0000,48066148.0000,47822436.0000,43014883.0000,43799440.0000,43033879.0000,43908106.0000,43054918.0000,46091935.0000,47420794.0000,49210547.0000,48152903.0000,49202843.0000,48181196.0000,49248880.0000,48141992.0000,49207682.0000,49552326.0000,49322350.0000,48197026.0000,49212521.0000,48163673.0000,49141477.0000,48190183.0000,49213423.0000,48101706.0000,49228421.0000,48100253.0000,49073337.0000,47649237.0000,49022771.0000,48305872.0000,49149942.0000,48144296.0000,48975061.0000,48168993.0000,49100910.0000,48140348.0000,49165973.0000,48168833.0000,49204406.0000,48101085.0000,49045836.0000,48271047.0000,49212872.0000,48134367.0000,49057617.0000,48215191.0000,49129013.0000,48222875.0000,48383730.0000,47271752.0000,49069660.0000,48317555.0000,49085882.0000,48123517.0000,48955965.0000,48273541.0000,49136327.0000,49941313.0000,49153480.0000,48138535.0000,49012772.0000,48255257.0000,49172024.0000,48136101.0000,49125767.0000,48214950.0000,49040025.0000,48125180.0000,49514523.0000,47847704.0000,49082655.0000,48131812.0000,49321417.0000,48164655.0000,49178697.0000,48169464.0000,49213182.0000,48148424.0000,48219789.0000,48200583.0000,49218683.0000,48181938.0000,49117572.0000,48186005.0000,49127219.0000,48288499.0000,49148410.0000" +benchmark stencil: 2D 30 iters oversub 3,iterations,100,1,1532456800,14851647.4800,14706783.2500,15039356.6800,833070.8763,655685.4045,1328037.3861,"benchmark,group:system,stencil","15325251.0000,15324579.0000,15893267.0000,15271698.0000,15315522.0000,15355087.0000,15304702.0000,15265397.0000,15291066.0000,15260367.0000,15352843.0000,15341852.0000,15275766.0000,15307727.0000,15252503.0000,15312186.0000,15274615.0000,15344086.0000,15265658.0000,15332394.0000,15339648.0000,15279103.0000,15300403.0000,15292028.0000,15278782.0000,15343916.0000,15255559.0000,15321353.0000,15239799.0000,15330150.0000,15309140.0000,15276769.0000,19830421.0000,15337614.0000,15347693.0000,15335109.0000,15291877.0000,15364084.0000,15264465.0000,15341251.0000,15281427.0000,15311895.0000,15245369.0000,15307287.0000,15248886.0000,15305533.0000,15356269.0000,15272480.0000,14154381.0000,13938511.0000,13880893.0000,13914276.0000,13931588.0000,13808425.0000,13880752.0000,13882055.0000,13957738.0000,14007602.0000,13920317.0000,14026709.0000,13995610.0000,13982234.0000,13935676.0000,13966955.0000,13907693.0000,13996271.0000,13883357.0000,13944423.0000,13945605.0000,13795020.0000,13873418.0000,13894448.0000,13880081.0000,13997433.0000,13925928.0000,13919025.0000,13929625.0000,13985851.0000,13912302.0000,13911941.0000,13879490.0000,13769221.0000,13944533.0000,13990791.0000,14780097.0000,15328076.0000,15317546.0000,15397948.0000,15354597.0000,15339798.0000,15343295.0000,15257552.0000,15281698.0000,15337885.0000,15332634.0000,15310894.0000,15369214.0000,15336662.0000,15342503.0000,14589295.0000" +benchmark stencil: 2D 300 iters oversub 3,iterations,100,1,14943992700,154110163.9300,153171494.2400,154745971.1900,3908200.6318,2901372.5682,4977278.9215,"benchmark,group:system,stencil","155589794.0000,155566749.0000,153094463.0000,155303911.0000,155613778.0000,155167653.0000,154803933.0000,155725130.0000,155577740.0000,155322356.0000,155671728.0000,155500314.0000,155584603.0000,157361080.0000,155617115.0000,154901268.0000,155439949.0000,155525531.0000,155337755.0000,155779042.0000,155711223.0000,155567601.0000,152835522.0000,155329680.0000,159030976.0000,153256861.0000,154635073.0000,155571539.0000,155371489.0000,155452653.0000,152910804.0000,155237626.0000,155251833.0000,155846800.0000,153566367.0000,141063345.0000,144337021.0000,155703679.0000,155705102.0000,157158907.0000,155674855.0000,155630390.0000,155813487.0000,155609561.0000,155405434.0000,155620932.0000,155766307.0000,155764344.0000,155644186.0000,154726868.0000,141088473.0000,140654019.0000,142729614.0000,141138788.0000,147061105.0000,155569194.0000,154830433.0000,155557241.0000,155346391.0000,155601505.0000,155723536.0000,155612557.0000,155539388.0000,155636301.0000,155431624.0000,156986050.0000,155757281.0000,155537414.0000,155645298.0000,155595985.0000,153070567.0000,155186408.0000,146260037.0000,140995847.0000,143675927.0000,153016805.0000,154689307.0000,155771047.0000,157125334.0000,155654726.0000,155817535.0000,152894574.0000,155320954.0000,155657822.0000,155411125.0000,155137636.0000,155764885.0000,155665516.0000,155647633.0000,155756749.0000,155698459.0000,154368759.0000,155379584.0000,155779553.0000,155543065.0000,153129138.0000,155314462.0000,155280406.0000,155499071.0000,155776908.0000" +benchmark rsim: 64 tris 50 iters,iterations,100,1,1089010600,10537792.9800,10464165.6500,10590031.1100,312618.1690,237628.2735,387059.6194,"benchmark,group:system,rsim","9644421.0000,9608232.0000,10777319.0000,10636542.0000,10647031.0000,10649146.0000,10643455.0000,10697367.0000,10639407.0000,10685134.0000,10649145.0000,10679132.0000,10680064.0000,10644888.0000,10659125.0000,10669274.0000,10650378.0000,10620191.0000,10591377.0000,10590805.0000,10629900.0000,10637484.0000,10606064.0000,10630862.0000,10636482.0000,10610833.0000,10602317.0000,10668452.0000,10595675.0000,10624659.0000,10614149.0000,10669405.0000,10654787.0000,10691827.0000,10621654.0000,10605363.0000,10654536.0000,10621624.0000,10593671.0000,10735189.0000,10651240.0000,10683591.0000,10636371.0000,10692097.0000,10658363.0000,10700463.0000,10658884.0000,10705753.0000,10634328.0000,10639187.0000,10593831.0000,10609431.0000,10576719.0000,10619610.0000,10599632.0000,10593030.0000,10601776.0000,10585626.0000,10611034.0000,10635951.0000,10667461.0000,10646401.0000,10667831.0000,10589994.0000,10798680.0000,10668522.0000,10676968.0000,10679794.0000,10646471.0000,10619359.0000,11152100.0000,10485696.0000,10677109.0000,10636282.0000,10609120.0000,10665778.0000,10658674.0000,10615783.0000,10635951.0000,10625601.0000,10607567.0000,10637894.0000,10605904.0000,10585736.0000,10591838.0000,10546882.0000,10682559.0000,10711945.0000,10587559.0000,10609410.0000,10585535.0000,9941775.0000,9641907.0000,9619273.0000,9671642.0000,9639982.0000,9678526.0000,9644812.0000,9691711.0000,9618983.0000" +benchmark rsim: 1024 tris 50 iters,iterations,100,1,1066475100,10652092.9300,10642065.3800,10674032.0300,71950.8254,40726.6472,144100.5000,"benchmark,group:system,rsim","10623397.0000,10605103.0000,10794572.0000,10630270.0000,10642915.0000,10620541.0000,10626963.0000,10656710.0000,10621273.0000,10644608.0000,10598750.0000,10635801.0000,10664626.0000,10659976.0000,10671118.0000,10670376.0000,10647714.0000,10701886.0000,10646851.0000,10590154.0000,10605252.0000,10642984.0000,10602818.0000,10660067.0000,10644016.0000,10714620.0000,10606204.0000,10637253.0000,10632003.0000,10609981.0000,10638135.0000,10714850.0000,10616143.0000,10606655.0000,10656419.0000,10611434.0000,10628848.0000,10552723.0000,10570888.0000,10652502.0000,10591166.0000,10666780.0000,10691727.0000,10696205.0000,10693169.0000,10704290.0000,10621674.0000,10631042.0000,10591206.0000,10650719.0000,10624960.0000,10604190.0000,10631552.0000,10624520.0000,10604571.0000,10622185.0000,10650058.0000,10608469.0000,10614520.0000,10744526.0000,10650449.0000,10639087.0000,10655648.0000,10681647.0000,10669986.0000,10636121.0000,10702628.0000,10683581.0000,10600083.0000,10647092.0000,10652813.0000,10578012.0000,10649957.0000,10626704.0000,10629298.0000,10712927.0000,10649797.0000,10595303.0000,10635159.0000,10612446.0000,10633947.0000,10767059.0000,10646160.0000,10747973.0000,10718226.0000,10660958.0000,10631653.0000,10661239.0000,10620381.0000,10623647.0000,10676268.0000,10649005.0000,10693900.0000,10632093.0000,10696917.0000,11227082.0000,10745829.0000,10582169.0000,10664555.0000,10596566.0000" +benchmark rsim: 64 tris 500 iters,iterations,100,1,11169923100,110559619.3000,109822292.8900,111074652.4000,3114424.4909,2347093.3509,3899970.5797,"benchmark,group:system,rsim","111666087.0000,108755549.0000,111602535.0000,113766778.0000,111742000.0000,111445799.0000,111596605.0000,111537352.0000,111568471.0000,111737221.0000,111587538.0000,111662299.0000,111514299.0000,111780793.0000,111011235.0000,111843302.0000,111494270.0000,111545618.0000,111471858.0000,111573741.0000,111502466.0000,113133578.0000,111471827.0000,111342473.0000,111785944.0000,111537632.0000,111735238.0000,111783078.0000,111668831.0000,111645537.0000,111631831.0000,111668721.0000,106714279.0000,100977083.0000,109238353.0000,111755827.0000,110797269.0000,111939023.0000,111619117.0000,113696625.0000,111688008.0000,111397357.0000,111444727.0000,111781204.0000,111586375.0000,111834856.0000,111725349.0000,111491476.0000,111827272.0000,111661829.0000,111909518.0000,111478571.0000,111728534.0000,111710751.0000,111530629.0000,111780002.0000,111706553.0000,113220272.0000,111613417.0000,111601234.0000,111573590.0000,111598619.0000,111583590.0000,111805902.0000,111569924.0000,111730248.0000,111697836.0000,111631852.0000,111446089.0000,111540979.0000,111646790.0000,111836109.0000,110812308.0000,111599990.0000,111839214.0000,113022458.0000,111834515.0000,111546449.0000,111369164.0000,111618265.0000,111640809.0000,111810289.0000,111139839.0000,111694520.0000,111652871.0000,111704710.0000,111643915.0000,101910522.0000,100837017.0000,103557815.0000,111635158.0000,111571417.0000,111528596.0000,107977824.0000,100907832.0000,101065391.0000,100929092.0000,100817611.0000,100872024.0000,104494771.0000" +benchmark rsim: 1024 tris 500 iters,iterations,100,1,11457895000,112047148.9600,111526467.0600,112309221.5700,1819479.0791,984233.0899,2964269.7425,"benchmark,group:system,rsim","112278127.0000,115207390.0000,112817359.0000,111968189.0000,112000460.0000,112277406.0000,113949164.0000,112172446.0000,112009327.0000,112294779.0000,112044423.0000,112303776.0000,112208825.0000,112244523.0000,112385520.0000,112111952.0000,112435545.0000,112244453.0000,112353249.0000,111853903.0000,112270493.0000,112044173.0000,112240435.0000,112236879.0000,113854445.0000,112184319.0000,112176755.0000,112188978.0000,111919056.0000,112234584.0000,112075713.0000,112142139.0000,112135587.0000,112326769.0000,112286893.0000,112036609.0000,112128714.0000,114333623.0000,111429579.0000,112181934.0000,112159181.0000,112088217.0000,114001394.0000,112102394.0000,112213484.0000,112266494.0000,115167574.0000,112128273.0000,112062006.0000,112047088.0000,112242920.0000,112235786.0000,112028353.0000,112181203.0000,112240836.0000,112227040.0000,111973179.0000,112019998.0000,112086193.0000,112257999.0000,113528527.0000,112092084.0000,111937041.0000,112244563.0000,112100911.0000,112283277.0000,112133833.0000,112161706.0000,112243451.0000,112159181.0000,112054623.0000,112035868.0000,112155785.0000,112286824.0000,111193110.0000,112108926.0000,112232290.0000,114073350.0000,112179700.0000,112051207.0000,112216330.0000,112217692.0000,112091664.0000,111944715.0000,112105129.0000,111981965.0000,112164351.0000,110893472.0000,112122832.0000,105343652.0000,101107240.0000,101364187.0000,113480407.0000,112215789.0000,112172517.0000,113825330.0000,112245585.0000,112110239.0000,112373026.0000,112164412.0000" diff --git a/ci/perf/gpuc2_bench.md b/ci/perf/gpuc2_bench.md index c8aa71d1a..942adf4e1 100644 --- a/ci/perf/gpuc2_bench.md +++ b/ci/perf/gpuc2_bench.md @@ -2,201 +2,201 @@ | Metadata | | | :------- | :------------------- | -| Created | 2025-03-27T12:15:15Z | +| Created | 2025-07-14T13:23:02Z | | Test case | Benchmark name | Min | Mean | Std dev | | :----------------------------------------------------------------------------------------------------------------------------------------------------------------- | :----------------------------------- | -------------: | -------------: | ------------: | -| benchmark intrusive graph dependency handling with N nodes - 1 | creating nodes | 4.47 | 4.50 | 0.11 | -| benchmark intrusive graph dependency handling with N nodes - 1 | creating and adding dependencies | 22.21 | 22.31 | 0.43 | -| benchmark intrusive graph dependency handling with N nodes - 1 | adding and removing dependencies | 15.45 | 15.56 | 0.44 | -| benchmark intrusive graph dependency handling with N nodes - 1 | checking for dependencies | 1.45 | 1.46 | 0.04 | -| benchmark intrusive graph dependency handling with N nodes - 10 | creating nodes | 30.18 | 30.32 | 0.88 | -| benchmark intrusive graph dependency handling with N nodes - 10 | creating and adding dependencies | 227.99 | 230.30 | 5.55 | -| benchmark intrusive graph dependency handling with N nodes - 10 | adding and removing dependencies | 213.23 | 214.89 | 4.31 | -| benchmark intrusive graph dependency handling with N nodes - 10 | checking for dependencies | 22.46 | 22.89 | 0.82 | -| benchmark intrusive graph dependency handling with N nodes - 100 | creating nodes | 391.49 | 395.79 | 7.91 | -| benchmark intrusive graph dependency handling with N nodes - 100 | creating and adding dependencies | 4'058.86 | 4'091.94 | 72.13 | -| benchmark intrusive graph dependency handling with N nodes - 100 | adding and removing dependencies | 4'588.33 | 4'622.15 | 86.57 | -| benchmark intrusive graph dependency handling with N nodes - 100 | checking for dependencies | 1'601.69 | 1'648.65 | 173.92 | -| benchmark task handling | generating and deleting tasks | 4'860'841.00 | 5'739'018.19 | 355'144.84 | -| generating large task graphs | soup topology | 365'491.00 | 370'540.01 | 4'839.43 | -| generating large task graphs | chain topology | 37'930.00 | 38'334.64 | 889.25 | -| generating large task graphs | expanding tree topology | 57'577.00 | 58'404.36 | 1'379.26 | -| generating large task graphs | contracting tree topology | 60'052.00 | 60'819.01 | 1'145.44 | -| generating large task graphs | wave\_sim topology | 446'564.00 | 451'699.95 | 4'380.62 | -| generating large task graphs | jacobi topology | 96'992.00 | 98'064.17 | 1'944.31 | -| generating large command graphs for N nodes - 1 | soup topology | 1'043'345.00 | 1'048'664.78 | 3'718.60 | -| generating large command graphs for N nodes - 1 | chain topology | 78'627.00 | 79'738.27 | 1'899.13 | -| generating large command graphs for N nodes - 1 | expanding tree topology | 145'324.00 | 147'338.89 | 2'638.07 | -| generating large command graphs for N nodes - 1 | contracting tree topology | 152'397.00 | 154'866.31 | 2'688.25 | -| generating large command graphs for N nodes - 1 | wave\_sim topology | 1'012'277.00 | 1'017'649.71 | 3'353.51 | -| generating large command graphs for N nodes - 1 | jacobi topology | 257'496.00 | 261'853.40 | 2'910.75 | -| generating large command graphs for N nodes - 4 | soup topology | 1'185'916.00 | 1'244'544.05 | 89'128.52 | -| generating large command graphs for N nodes - 4 | chain topology | 328'030.00 | 331'801.59 | 3'394.69 | -| generating large command graphs for N nodes - 4 | expanding tree topology | 339'662.00 | 344'337.13 | 4'740.39 | -| generating large command graphs for N nodes - 4 | contracting tree topology | 302'101.00 | 330'678.36 | 24'160.44 | -| generating large command graphs for N nodes - 4 | wave\_sim topology | 1'963'149.00 | 2'162'711.57 | 160'281.90 | -| generating large command graphs for N nodes - 4 | jacobi topology | 541'635.00 | 552'729.12 | 5'323.67 | -| generating large command graphs for N nodes - 16 | soup topology | 1'583'710.00 | 1'765'599.83 | 163'375.53 | -| generating large command graphs for N nodes - 16 | chain topology | 1'115'152.00 | 1'120'771.68 | 4'871.21 | -| generating large command graphs for N nodes - 16 | expanding tree topology | 687'441.00 | 694'713.22 | 4'989.77 | -| generating large command graphs for N nodes - 16 | contracting tree topology | 759'137.00 | 768'343.91 | 4'184.75 | -| generating large command graphs for N nodes - 16 | wave\_sim topology | 4'926'977.00 | 4'960'421.13 | 42'699.86 | -| generating large command graphs for N nodes - 16 | jacobi topology | 1'282'499.00 | 1'302'556.64 | 12'958.70 | -| generating large instruction graphs for N devices - 1 | soup topology | 4'614'295.00 | 4'636'487.08 | 18'604.35 | -| generating large instruction graphs for N devices - 1 | chain topology | 676'590.00 | 691'453.31 | 13'309.41 | -| generating large instruction graphs for N devices - 1 | expanding tree topology | 887'490.00 | 900'250.17 | 6'134.10 | -| generating large instruction graphs for N devices - 1 | contracting tree topology | 1'031'634.00 | 1'037'260.29 | 3'289.37 | -| generating large instruction graphs for N devices - 1 | wave\_sim topology | 5'745'578.00 | 5'776'644.87 | 29'138.96 | -| generating large instruction graphs for N devices - 1 | jacobi topology | 1'127'796.00 | 1'281'665.47 | 45'820.83 | -| generating large instruction graphs for N devices - 4 | soup topology | 4'074'210.00 | 4'517'404.32 | 233'052.82 | -| generating large instruction graphs for N devices - 4 | chain topology | 605'746.00 | 674'469.84 | 36'133.82 | -| generating large instruction graphs for N devices - 4 | expanding tree topology | 801'678.00 | 882'325.41 | 39'197.77 | -| generating large instruction graphs for N devices - 4 | contracting tree topology | 922'617.00 | 950'264.20 | 39'977.10 | -| generating large instruction graphs for N devices - 4 | wave\_sim topology | 5'106'648.00 | 5'629'735.26 | 297'118.38 | -| generating large instruction graphs for N devices - 4 | jacobi topology | 1'293'620.00 | 1'304'313.45 | 7'813.59 | -| generating large instruction graphs for N devices - 16 | soup topology | 4'103'135.00 | 4'540'281.70 | 234'057.16 | -| generating large instruction graphs for N devices - 16 | chain topology | 608'211.00 | 617'763.30 | 5'588.46 | -| generating large instruction graphs for N devices - 16 | expanding tree topology | 843'206.00 | 910'133.34 | 7'965.18 | -| generating large instruction graphs for N devices - 16 | contracting tree topology | 924'711.00 | 1'004'878.89 | 53'463.70 | -| generating large instruction graphs for N devices - 16 | wave\_sim topology | 5'191'979.00 | 5'657'112.06 | 331'143.85 | -| generating large instruction graphs for N devices - 16 | jacobi topology | 1'170'817.00 | 1'179'683.32 | 5'261.76 | -| generating large instruction graphs for N devices without d2d copy support - 1 | soup topology | 4'622'309.00 | 4'640'248.89 | 13'052.25 | -| generating large instruction graphs for N devices without d2d copy support - 1 | chain topology | 679'566.00 | 689'757.69 | 4'559.97 | -| generating large instruction graphs for N devices without d2d copy support - 1 | expanding tree topology | 800'987.00 | 834'415.72 | 38'939.58 | -| generating large instruction graphs for N devices without d2d copy support - 1 | contracting tree topology | 919'381.00 | 931'559.83 | 9'571.56 | -| generating large instruction graphs for N devices without d2d copy support - 1 | wave\_sim topology | 5'081'911.00 | 5'474'724.60 | 335'757.57 | -| generating large instruction graphs for N devices without d2d copy support - 1 | jacobi topology | 1'287'639.00 | 1'297'124.41 | 13'372.31 | -| generating large instruction graphs for N devices without d2d copy support - 4 | soup topology | 4'626'067.00 | 4'644'086.86 | 16'347.57 | -| generating large instruction graphs for N devices without d2d copy support - 4 | chain topology | 683'183.00 | 692'162.77 | 5'786.98 | -| generating large instruction graphs for N devices without d2d copy support - 4 | expanding tree topology | 895'516.00 | 903'974.61 | 3'603.62 | -| generating large instruction graphs for N devices without d2d copy support - 4 | contracting tree topology | 1'034'980.00 | 1'041'293.18 | 3'616.76 | -| generating large instruction graphs for N devices without d2d copy support - 4 | wave\_sim topology | 5'116'236.00 | 5'701'393.72 | 242'401.41 | -| generating large instruction graphs for N devices without d2d copy support - 4 | jacobi topology | 1'296'446.00 | 1'306'044.41 | 6'437.82 | -| generating large instruction graphs for N devices without d2d copy support - 16 | soup topology | 4'108'014.00 | 4'499'998.75 | 256'143.59 | -| generating large instruction graphs for N devices without d2d copy support - 16 | chain topology | 610'155.00 | 649'744.24 | 39'706.99 | -| generating large instruction graphs for N devices without d2d copy support - 16 | expanding tree topology | 811'316.00 | 822'027.21 | 5'223.79 | -| generating large instruction graphs for N devices without d2d copy support - 16 | contracting tree topology | 928'768.00 | 953'831.69 | 35'620.46 | -| generating large instruction graphs for N devices without d2d copy support - 16 | wave\_sim topology | 5'179'776.00 | 5'485'769.42 | 345'863.50 | -| generating large instruction graphs for N devices without d2d copy support - 16 | jacobi topology | 1'177'841.00 | 1'218'804.31 | 66'092.57 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: single-threaded immediate graph generation | soup topology | 880'437.00 | 888'954.15 | 8'221.26 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: single-threaded immediate graph generation | chain topology | 79'950.00 | 81'048.44 | 1'630.23 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: single-threaded immediate graph generation | expanding tree topology | 147'869.00 | 150'079.54 | 2'566.43 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: single-threaded immediate graph generation | contracting tree topology | 155'783.00 | 158'164.18 | 2'594.95 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: single-threaded immediate graph generation | wave\_sim topology | 860'519.00 | 868'372.15 | 4'416.94 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: single-threaded immediate graph generation | jacobi topology | 261'945.00 | 265'816.25 | 3'011.40 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > immediate submission to a scheduler thread | soup topology | 1'777'487.00 | 1'968'325.94 | 98'148.94 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > immediate submission to a scheduler thread | chain topology | 225'625.00 | 232'772.39 | 4'270.33 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > immediate submission to a scheduler thread | expanding tree topology | 371'552.00 | 407'687.19 | 17'387.58 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > immediate submission to a scheduler thread | contracting tree topology | 425'605.00 | 461'560.70 | 16'869.78 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > immediate submission to a scheduler thread | wave\_sim topology | 2'755'742.00 | 2'801'218.40 | 21'793.36 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > immediate submission to a scheduler thread | jacobi topology | 761'171.00 | 789'595.78 | 18'265.45 | -| 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'884'981.00 | 2'073'171.49 | 38'457.24 | -| 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 | 372'274.00 | 374'148.91 | 2'747.68 | -| 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 | 430'684.00 | 450'072.45 | 8'641.57 | -| 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'239.00 | 462'966.50 | 4'330.10 | -| 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'904'353.00 | 3'032'474.22 | 64'274.67 | -| 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 | 766'952.00 | 772'949.94 | 3'648.47 | -| 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'645'142.00 | 2'763'216.71 | 35'767.36 | -| 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'414.00 | 407'030.27 | 8'035.86 | -| 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 | 635'532.00 | 651'755.43 | 17'579.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 | contracting tree topology | 666'261.00 | 699'503.18 | 12'792.77 | -| 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'868'906.00 | 2'896'582.81 | 18'857.08 | -| 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 | 810'464.00 | 842'406.29 | 16'616.49 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: single-threaded immediate graph generation | soup topology | 1'437'974.00 | 1'449'168.02 | 5'420.98 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: single-threaded immediate graph generation | chain topology | 332'939.00 | 337'079.55 | 4'458.28 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: single-threaded immediate graph generation | expanding tree topology | 344'972.00 | 349'495.51 | 3'538.53 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: single-threaded immediate graph generation | contracting tree topology | 354'640.00 | 360'103.91 | 4'770.29 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: single-threaded immediate graph generation | wave\_sim topology | 1'972'928.00 | 1'991'792.85 | 8'080.18 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: single-threaded immediate graph generation | jacobi topology | 546'554.00 | 557'886.44 | 5'663.41 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > immediate submission to a scheduler thread | soup topology | 2'813'972.00 | 2'850'178.64 | 22'041.15 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > immediate submission to a scheduler thread | chain topology | 976'008.00 | 995'012.88 | 13'442.09 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > immediate submission to a scheduler thread | expanding tree topology | 986'868.00 | 1'019'747.68 | 14'614.82 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > immediate submission to a scheduler thread | contracting tree topology | 947'614.00 | 970'014.09 | 16'210.05 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > immediate submission to a scheduler thread | wave\_sim topology | 5'720'160.00 | 6'178'212.59 | 371'533.69 | -| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > immediate submission to a scheduler thread | jacobi topology | 1'592'517.00 | 1'628'849.54 | 23'866.04 | -| 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'359'641.00 | 2'454'019.89 | 15'723.73 | -| 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 | 577'953.00 | 626'997.40 | 13'616.85 | -| 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 | 647'054.00 | 652'842.56 | 4'485.15 | -| 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 | 608'652.00 | 614'659.72 | 4'107.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 | wave\_sim topology | 4'009'889.00 | 4'362'630.73 | 52'771.30 | -| 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'054'427.00 | 1'063'242.01 | 4'896.55 | -| 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'048'727.00 | 3'174'184.03 | 40'602.85 | -| 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 | 984'625.00 | 1'003'687.16 | 15'429.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 | expanding tree topology | 1'012'306.00 | 1'022'394.50 | 12'532.70 | -| 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 | 990'836.00 | 1'020'673.26 | 15'050.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'745'919.00 | 6'374'462.07 | 290'491.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 | jacobi topology | 1'596'113.00 | 1'629'411.25 | 16'010.00 | -| normalizing randomized box sets - 2d | small, native | 488.81 | 495.86 | 18.73 | -| normalizing randomized box sets - 2d | small, embedded in 3d | 577.18 | 582.50 | 15.89 | -| normalizing randomized box sets - 2d | medium, native | 5'975.00 | 6'068.27 | 183.63 | -| normalizing randomized box sets - 2d | medium, embedded in 3d | 5'896.60 | 5'962.63 | 158.51 | -| normalizing randomized box sets - 2d | large, native | 194'797.00 | 196'495.39 | 1'847.50 | -| normalizing randomized box sets - 2d | large, embedded in 3d | 202'252.00 | 206'989.01 | 11'732.47 | -| normalizing randomized box sets - 3d | small - native | 2'452.73 | 2'485.05 | 68.42 | -| normalizing randomized box sets - 3d | medium - native | 9'200.00 | 9'342.52 | 301.29 | -| normalizing randomized box sets - 3d | large - native | 2'063'038.00 | 2'203'530.51 | 28'453.92 | -| normalizing a fully mergeable tiling of boxes - 1 | small, native | 28.83 | 29.40 | 0.66 | -| normalizing a fully mergeable tiling of boxes - 1 | small, embedded in 3d | 35.33 | 35.62 | 1.05 | -| normalizing a fully mergeable tiling of boxes - 1 | medium, native | 301.89 | 309.86 | 7.75 | -| normalizing a fully mergeable tiling of boxes - 1 | medium, embedded in 3d | 471.44 | 479.91 | 14.91 | -| normalizing a fully mergeable tiling of boxes - 1 | large, native | 6'617.00 | 6'739.91 | 323.92 | -| normalizing a fully mergeable tiling of boxes - 1 | large, embedded in 3d | 11'955.33 | 12'106.68 | 251.46 | -| normalizing a fully mergeable tiling of boxes - 2 | small, native | 104.19 | 105.33 | 2.21 | -| normalizing a fully mergeable tiling of boxes - 2 | small, embedded in 3d | 121.87 | 124.33 | 3.17 | -| normalizing a fully mergeable tiling of boxes - 2 | medium, native | 824.93 | 832.64 | 25.30 | -| normalizing a fully mergeable tiling of boxes - 2 | medium, embedded in 3d | 1'029.19 | 1'040.22 | 20.28 | -| normalizing a fully mergeable tiling of boxes - 2 | large, native | 36'397.00 | 37'012.32 | 990.42 | -| normalizing a fully mergeable tiling of boxes - 2 | large, embedded in 3d | 40'355.00 | 40'981.24 | 1'088.22 | -| normalizing a fully mergeable tiling of boxes - 3 | small, native | 254.94 | 257.13 | 6.20 | -| normalizing a fully mergeable tiling of boxes - 3 | medium, native | 1'475.59 | 1'493.46 | 39.91 | -| normalizing a fully mergeable tiling of boxes - 3 | large, native | 41'547.00 | 42'616.91 | 1'360.52 | -| performing set operations between randomized regions - 2d | union, small, native | 873.42 | 890.27 | 88.17 | -| performing set operations between randomized regions - 2d | union, small, embedded in 3d | 885.89 | 899.37 | 23.84 | -| performing set operations between randomized regions - 2d | intersection, small, native | 201.32 | 202.58 | 5.81 | -| performing set operations between randomized regions - 2d | intersection, small, embedded in 3d | 231.92 | 234.53 | 7.43 | -| performing set operations between randomized regions - 2d | difference, small, native | 896.23 | 918.96 | 36.09 | -| performing set operations between randomized regions - 2d | difference, small, embedded in 3d | 1'183.42 | 1'197.91 | 32.72 | -| performing set operations between randomized regions - 2d | union, medium, native | 12'022.00 | 12'256.32 | 616.27 | -| performing set operations between randomized regions - 2d | union, medium, embedded in 3d | 14'661.50 | 14'876.17 | 371.41 | -| performing set operations between randomized regions - 2d | intersection, medium, native | 2'288.73 | 2'304.52 | 55.95 | -| performing set operations between randomized regions - 2d | intersection, medium, embedded in 3d | 2'053.73 | 2'070.42 | 54.66 | -| performing set operations between randomized regions - 2d | difference, medium, native | 7'874.50 | 7'990.58 | 233.43 | -| performing set operations between randomized regions - 2d | difference, medium, embedded in 3d | 7'503.75 | 7'614.09 | 242.29 | -| performing set operations between randomized regions - 2d | union, large, native | 150'163.00 | 159'200.53 | 4'216.76 | -| performing set operations between randomized regions - 2d | union, large, embedded in 3d | 169'429.00 | 171'689.32 | 3'519.50 | -| performing set operations between randomized regions - 2d | intersection, large, native | 21'159.00 | 21'421.07 | 515.48 | -| performing set operations between randomized regions - 2d | intersection, large, embedded in 3d | 19'125.00 | 19'319.11 | 534.72 | -| performing set operations between randomized regions - 2d | difference, large, native | 604'163.00 | 609'167.90 | 3'841.03 | -| performing set operations between randomized regions - 2d | difference, large, embedded in 3d | 637'857.00 | 646'067.05 | 4'864.68 | -| performing set operations between randomized regions - 3d | union, small, native | 3'804.14 | 3'864.66 | 113.20 | -| performing set operations between randomized regions - 3d | intersection, small, native | 140.43 | 142.38 | 3.05 | -| performing set operations between randomized regions - 3d | difference, small, native | 1'349.26 | 1'366.14 | 31.16 | -| performing set operations between randomized regions - 3d | union, medium, native | 19'441.00 | 19'735.94 | 585.11 | -| performing set operations between randomized regions - 3d | intersection, medium, native | 2'537.60 | 2'590.79 | 50.38 | -| performing set operations between randomized regions - 3d | difference, medium, native | 11'645.00 | 11'808.51 | 272.67 | -| performing set operations between randomized regions - 3d | union, large, native | 2'028'794.00 | 2'143'032.24 | 47'776.82 | -| performing set operations between randomized regions - 3d | intersection, large, native | 15'383.00 | 15'669.32 | 950.00 | -| performing set operations between randomized regions - 3d | difference, large, native | 6'398'647.00 | 6'832'657.04 | 265'482.50 | -| normalizing a fully mergeable, complex tiling of boxes - 2d | small, native | 2'167.25 | 2'202.83 | 66.35 | -| normalizing a fully mergeable, complex tiling of boxes - 2d | small, embedded in 3d | 2'578.70 | 2'615.38 | 73.37 | -| normalizing a fully mergeable, complex tiling of boxes - 2d | large, native | 1'464'053.00 | 1'484'234.25 | 28'205.27 | -| normalizing a fully mergeable, complex tiling of boxes - 2d | large, embedded in 3d | 1'736'059.00 | 1'743'444.61 | 11'356.93 | -| benchmark independent task pattern with 100 tasks | task generation | 7'167'614.00 | 7'694'733.03 | 543'973.75 | -| benchmark independent task pattern with 500 tasks | task generation | 44'255'394.00 | 47'426'503.44 | 2'973'686.15 | -| benchmark independent task pattern with 2500 tasks | task generation | 215'882'374.00 | 234'107'477.59 | 13'434'891.13 | -| benchmark stencil: 1D 50 iters oversub 1 | iterations | 2'973'675.00 | 3'026'920.83 | 22'696.67 | -| benchmark stencil: 1D 500 iters oversub 1 | iterations | 26'475'783.00 | 29'419'664.11 | 1'595'885.09 | -| benchmark stencil: 1D 50 iters oversub 3 | iterations | 5'826'021.00 | 6'581'025.26 | 88'680.71 | -| benchmark stencil: 1D 500 iters oversub 3 | iterations | 58'573'385.00 | 63'289'155.19 | 3'819'094.89 | -| benchmark stencil: 2D 30 iters oversub 1 | iterations | 4'724'203.00 | 4'795'160.35 | 27'271.77 | -| benchmark stencil: 2D 300 iters oversub 1 | iterations | 43'330'672.00 | 46'945'754.27 | 2'571'680.26 | -| benchmark stencil: 2D 30 iters oversub 3 | iterations | 13'744'140.00 | 14'153'889.99 | 567'539.80 | -| benchmark stencil: 2D 300 iters oversub 3 | iterations | 137'123'449.00 | 146'586'347.94 | 6'515'744.43 | -| benchmark rsim: 64 tris 50 iters | iterations | 9'607'660.00 | 10'406'915.96 | 444'305.43 | -| benchmark rsim: 1024 tris 50 iters | iterations | 9'642'074.00 | 10'423'343.12 | 479'179.17 | -| benchmark rsim: 64 tris 500 iters | iterations | 100'553'029.00 | 106'426'465.03 | 4'831'493.36 | -| benchmark rsim: 1024 tris 500 iters | iterations | 100'025'228.00 | 106'272'639.73 | 5'076'558.22 | +| benchmark intrusive graph dependency handling with N nodes - 1 | creating nodes | 4.47 | 4.49 | 0.10 | +| benchmark intrusive graph dependency handling with N nodes - 1 | creating and adding dependencies | 20.65 | 21.09 | 2.54 | +| benchmark intrusive graph dependency handling with N nodes - 1 | adding and removing dependencies | 15.45 | 15.53 | 0.36 | +| benchmark intrusive graph dependency handling with N nodes - 1 | checking for dependencies | 1.69 | 1.71 | 0.04 | +| benchmark intrusive graph dependency handling with N nodes - 10 | creating nodes | 30.30 | 30.37 | 0.62 | +| benchmark intrusive graph dependency handling with N nodes - 10 | creating and adding dependencies | 224.90 | 226.79 | 5.17 | +| benchmark intrusive graph dependency handling with N nodes - 10 | adding and removing dependencies | 207.23 | 209.72 | 4.05 | +| benchmark intrusive graph dependency handling with N nodes - 10 | checking for dependencies | 22.58 | 23.17 | 0.85 | +| benchmark intrusive graph dependency handling with N nodes - 100 | creating nodes | 343.89 | 346.19 | 11.35 | +| benchmark intrusive graph dependency handling with N nodes - 100 | creating and adding dependencies | 3'688.14 | 3'731.51 | 124.52 | +| benchmark intrusive graph dependency handling with N nodes - 100 | adding and removing dependencies | 4'496.50 | 4'551.92 | 83.33 | +| benchmark intrusive graph dependency handling with N nodes - 100 | checking for dependencies | 1'604.71 | 1'626.56 | 43.29 | +| benchmark task handling | generating and deleting tasks | 4'924'243.00 | 5'531'151.76 | 464'219.05 | +| generating large task graphs | soup topology | 365'881.00 | 370'863.29 | 4'387.42 | +| generating large task graphs | chain topology | 30'847.00 | 31'235.40 | 1'057.59 | +| generating large task graphs | expanding tree topology | 56'916.00 | 57'912.66 | 1'377.24 | +| generating large task graphs | contracting tree topology | 50'483.00 | 51'274.71 | 1'553.49 | +| generating large task graphs | wave\_sim topology | 445'813.00 | 451'014.17 | 3'285.85 | +| generating large task graphs | jacobi topology | 115'046.00 | 116'704.47 | 2'383.77 | +| generating large command graphs for N nodes - 1 | soup topology | 885'848.00 | 897'667.38 | 7'416.82 | +| generating large command graphs for N nodes - 1 | chain topology | 77'224.00 | 78'504.93 | 2'168.99 | +| generating large command graphs for N nodes - 1 | expanding tree topology | 146'265.00 | 148'342.53 | 2'441.78 | +| generating large command graphs for N nodes - 1 | contracting tree topology | 134'072.00 | 136'231.13 | 3'170.50 | +| generating large command graphs for N nodes - 1 | wave\_sim topology | 861'702.00 | 927'499.81 | 71'108.59 | +| generating large command graphs for N nodes - 1 | jacobi topology | 253'719.00 | 260'008.87 | 4'153.66 | +| generating large command graphs for N nodes - 4 | soup topology | 1'204'391.00 | 1'228'430.94 | 53'132.17 | +| generating large command graphs for N nodes - 4 | chain topology | 287'663.00 | 292'968.59 | 3'649.34 | +| generating large command graphs for N nodes - 4 | expanding tree topology | 346'295.00 | 351'291.46 | 3'418.29 | +| generating large command graphs for N nodes - 4 | contracting tree topology | 357'636.00 | 362'690.05 | 3'811.49 | +| generating large command graphs for N nodes - 4 | wave\_sim topology | 2'032'301.00 | 2'054'060.23 | 34'344.45 | +| generating large command graphs for N nodes - 4 | jacobi topology | 460'010.00 | 472'754.34 | 8'280.32 | +| generating large command graphs for N nodes - 16 | soup topology | 1'599'430.00 | 1'931'742.26 | 66'586.75 | +| generating large command graphs for N nodes - 16 | chain topology | 933'397.00 | 953'163.03 | 40'356.10 | +| generating large command graphs for N nodes - 16 | expanding tree topology | 590'216.00 | 598'692.53 | 4'305.97 | +| generating large command graphs for N nodes - 16 | contracting tree topology | 635'463.00 | 646'776.22 | 4'457.06 | +| generating large command graphs for N nodes - 16 | wave\_sim topology | 4'243'021.00 | 4'663'343.57 | 382'701.19 | +| generating large command graphs for N nodes - 16 | jacobi topology | 1'063'314.00 | 1'294'569.66 | 58'114.71 | +| generating large instruction graphs for N devices - 1 | soup topology | 4'057'259.00 | 4'555'815.04 | 208'751.31 | +| generating large instruction graphs for N devices - 1 | chain topology | 690'347.00 | 699'246.25 | 5'077.65 | +| generating large instruction graphs for N devices - 1 | expanding tree topology | 804'834.00 | 817'142.84 | 4'405.17 | +| generating large instruction graphs for N devices - 1 | contracting tree topology | 906'377.00 | 916'955.83 | 3'701.99 | +| generating large instruction graphs for N devices - 1 | wave\_sim topology | 5'125'354.00 | 5'381'245.75 | 344'601.99 | +| generating large instruction graphs for N devices - 1 | jacobi topology | 1'103'740.00 | 1'145'631.15 | 65'181.93 | +| generating large instruction graphs for N devices - 4 | soup topology | 4'057'490.00 | 4'556'520.37 | 216'218.01 | +| generating large instruction graphs for N devices - 4 | chain topology | 691'228.00 | 700'770.82 | 4'698.70 | +| generating large instruction graphs for N devices - 4 | expanding tree topology | 906'186.00 | 917'847.45 | 4'009.02 | +| generating large instruction graphs for N devices - 4 | contracting tree topology | 1'031'514.00 | 1'036'812.03 | 3'109.69 | +| generating large instruction graphs for N devices - 4 | wave\_sim topology | 5'874'213.00 | 5'911'839.87 | 28'742.72 | +| generating large instruction graphs for N devices - 4 | jacobi topology | 1'270'667.00 | 1'282'581.86 | 12'861.31 | +| generating large instruction graphs for N devices - 16 | soup topology | 4'665'803.00 | 4'683'865.80 | 10'928.14 | +| generating large instruction graphs for N devices - 16 | chain topology | 698'973.00 | 707'677.65 | 4'925.99 | +| generating large instruction graphs for N devices - 16 | expanding tree topology | 823'910.00 | 916'924.59 | 29'549.25 | +| generating large instruction graphs for N devices - 16 | contracting tree topology | 1'041'372.00 | 1'045'819.61 | 3'337.62 | +| generating large instruction graphs for N devices - 16 | wave\_sim topology | 5'224'102.00 | 5'963'657.55 | 149'126.46 | +| generating large instruction graphs for N devices - 16 | jacobi topology | 1'154'397.00 | 1'316'188.52 | 39'130.67 | +| generating large instruction graphs for N devices without d2d copy support - 1 | soup topology | 4'065'365.00 | 4'563'230.62 | 207'901.67 | +| generating large instruction graphs for N devices without d2d copy support - 1 | chain topology | 607'560.00 | 695'454.93 | 15'991.31 | +| generating large instruction graphs for N devices without d2d copy support - 1 | expanding tree topology | 906'376.00 | 915'419.96 | 2'996.39 | +| generating large instruction graphs for N devices without d2d copy support - 1 | contracting tree topology | 1'029'269.00 | 1'035'234.20 | 4'086.09 | +| generating large instruction graphs for N devices without d2d copy support - 1 | wave\_sim topology | 5'135'905.00 | 5'704'273.32 | 308'519.11 | +| generating large instruction graphs for N devices without d2d copy support - 1 | jacobi topology | 1'259'807.00 | 1'271'304.20 | 5'647.62 | +| generating large instruction graphs for N devices without d2d copy support - 4 | soup topology | 4'067'669.00 | 4'459'682.95 | 275'897.22 | +| generating large instruction graphs for N devices without d2d copy support - 4 | chain topology | 607'249.00 | 689'636.78 | 28'338.84 | +| generating large instruction graphs for N devices without d2d copy support - 4 | expanding tree topology | 808'200.00 | 869'486.77 | 50'408.10 | +| generating large instruction graphs for N devices without d2d copy support - 4 | contracting tree topology | 1'032'385.00 | 1'037'451.65 | 3'251.35 | +| generating large instruction graphs for N devices without d2d copy support - 4 | wave\_sim topology | 5'198'653.00 | 5'903'162.61 | 174'904.66 | +| generating large instruction graphs for N devices without d2d copy support - 4 | jacobi topology | 1'273'842.00 | 1'282'183.09 | 5'235.01 | +| generating large instruction graphs for N devices without d2d copy support - 16 | soup topology | 4'674'640.00 | 4'694'760.22 | 15'264.72 | +| generating large instruction graphs for N devices without d2d copy support - 16 | chain topology | 698'572.00 | 709'671.54 | 5'869.75 | +| generating large instruction graphs for N devices without d2d copy support - 16 | expanding tree topology | 817'678.00 | 828'847.09 | 7'446.40 | +| generating large instruction graphs for N devices without d2d copy support - 16 | contracting tree topology | 927'396.00 | 1'038'142.88 | 29'615.15 | +| generating large instruction graphs for N devices without d2d copy support - 16 | wave\_sim topology | 5'218'320.00 | 5'654'294.40 | 377'226.23 | +| generating large instruction graphs for N devices without d2d copy support - 16 | jacobi topology | 1'156'360.00 | 1'279'199.76 | 74'374.18 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: single-threaded immediate graph generation | soup topology | 1'096'136.00 | 1'103'499.75 | 3'835.69 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: single-threaded immediate graph generation | chain topology | 65'692.00 | 66'704.49 | 1'763.95 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: single-threaded immediate graph generation | expanding tree topology | 148'710.00 | 151'101.73 | 2'569.15 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: single-threaded immediate graph generation | contracting tree topology | 158'418.00 | 161'107.16 | 4'059.42 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: single-threaded immediate graph generation | wave\_sim topology | 1'033'036.00 | 1'039'558.34 | 11'003.93 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: single-threaded immediate graph generation | jacobi topology | 256'845.00 | 261'763.11 | 4'165.01 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > immediate submission to a scheduler thread | soup topology | 2'025'118.00 | 2'057'430.62 | 15'236.28 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > immediate submission to a scheduler thread | chain topology | 224'263.00 | 240'213.28 | 17'060.56 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > immediate submission to a scheduler thread | expanding tree topology | 368'556.00 | 403'295.13 | 13'274.85 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > immediate submission to a scheduler thread | contracting tree topology | 433'881.00 | 468'461.85 | 17'929.28 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > immediate submission to a scheduler thread | wave\_sim topology | 2'809'574.00 | 2'822'107.11 | 14'893.82 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > immediate submission to a scheduler thread | jacobi topology | 754'078.00 | 782'389.63 | 10'976.27 | +| 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'897'104.00 | 2'074'761.00 | 73'263.29 | +| 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 | 357'756.00 | 359'881.97 | 8'102.31 | +| 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 | 452'425.00 | 455'825.24 | 2'668.87 | +| 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 | 437'788.00 | 441'071.73 | 3'268.22 | +| 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'903'913.00 | 3'044'196.92 | 75'404.65 | +| 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 | 721'135.00 | 727'071.99 | 3'609.45 | +| 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'638'741.00 | 2'767'301.18 | 38'192.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 | chain topology | 377'013.00 | 402'996.31 | 9'485.35 | +| 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'959.00 | 644'714.40 | 12'626.63 | +| 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 | 668'556.00 | 701'954.41 | 15'253.56 | +| 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'872'614.00 | 2'904'943.59 | 12'854.15 | +| 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 | 743'939.00 | 825'565.10 | 26'926.28 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: single-threaded immediate graph generation | soup topology | 1'458'803.00 | 1'468'650.37 | 6'721.83 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: single-threaded immediate graph generation | chain topology | 340'674.00 | 345'723.67 | 3'508.82 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: single-threaded immediate graph generation | expanding tree topology | 351'685.00 | 355'880.03 | 3'965.92 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: single-threaded immediate graph generation | contracting tree topology | 361'984.00 | 367'478.23 | 7'186.55 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: single-threaded immediate graph generation | wave\_sim topology | 2'037'651.00 | 2'384'480.61 | 81'619.17 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: single-threaded immediate graph generation | jacobi topology | 553'998.00 | 564'526.53 | 7'901.92 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > immediate submission to a scheduler thread | soup topology | 2'838'820.00 | 2'871'430.26 | 13'265.75 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > immediate submission to a scheduler thread | chain topology | 988'783.00 | 1'028'708.19 | 15'952.96 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > immediate submission to a scheduler thread | expanding tree topology | 1'011'956.00 | 1'025'068.06 | 15'789.91 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > immediate submission to a scheduler thread | contracting tree topology | 846'403.00 | 935'064.63 | 49'242.26 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > immediate submission to a scheduler thread | wave\_sim topology | 5'749'247.00 | 6'346'926.20 | 370'890.61 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > immediate submission to a scheduler thread | jacobi topology | 1'591'836.00 | 1'613'541.45 | 20'937.98 | +| 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'455'433.00 | 2'472'037.68 | 6'866.86 | +| 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 | 634'010.00 | 638'459.77 | 2'275.82 | +| 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 | 654'790.00 | 660'177.66 | 4'271.26 | +| 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 | 610'566.00 | 616'171.08 | 7'312.29 | +| 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'072'518.00 | 4'332'381.22 | 179'406.62 | +| 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'062'322.00 | 1'072'561.08 | 6'299.49 | +| 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'059'728.00 | 3'190'588.77 | 29'219.02 | +| 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'400.00 | 1'018'800.44 | 15'217.75 | +| 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 | 998'712.00 | 1'018'483.80 | 16'322.43 | +| 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'006'015.00 | 1'021'236.71 | 13'442.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 | wave\_sim topology | 6'559'994.00 | 6'610'584.13 | 27'284.27 | +| 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'594'120.00 | 1'613'311.81 | 15'666.37 | +| normalizing randomized box sets - 2d | small, native | 564.38 | 573.31 | 18.53 | +| normalizing randomized box sets - 2d | small, embedded in 3d | 573.92 | 579.39 | 18.78 | +| normalizing randomized box sets - 2d | medium, native | 5'926.80 | 5'989.62 | 140.03 | +| normalizing randomized box sets - 2d | medium, embedded in 3d | 6'672.25 | 6'755.86 | 208.08 | +| normalizing randomized box sets - 2d | large, native | 187'343.00 | 189'312.14 | 1'991.55 | +| normalizing randomized box sets - 2d | large, embedded in 3d | 213'102.00 | 214'888.06 | 2'139.17 | +| normalizing randomized box sets - 3d | small - native | 2'152.25 | 2'183.86 | 57.69 | +| normalizing randomized box sets - 3d | medium - native | 8'953.00 | 9'090.10 | 271.90 | +| normalizing randomized box sets - 3d | large - native | 2'077'386.00 | 2'214'618.01 | 36'658.08 | +| normalizing a fully mergeable tiling of boxes - 1 | small, native | 29.78 | 30.24 | 0.72 | +| normalizing a fully mergeable tiling of boxes - 1 | small, embedded in 3d | 41.18 | 41.42 | 1.08 | +| normalizing a fully mergeable tiling of boxes - 1 | medium, native | 296.56 | 300.27 | 7.52 | +| normalizing a fully mergeable tiling of boxes - 1 | medium, embedded in 3d | 415.25 | 421.29 | 13.11 | +| normalizing a fully mergeable tiling of boxes - 1 | large, native | 7'149.33 | 7'211.28 | 249.15 | +| normalizing a fully mergeable tiling of boxes - 1 | large, embedded in 3d | 11'895.33 | 12'034.59 | 259.77 | +| normalizing a fully mergeable tiling of boxes - 2 | small, native | 92.49 | 92.95 | 2.70 | +| normalizing a fully mergeable tiling of boxes - 2 | small, embedded in 3d | 123.15 | 124.85 | 3.12 | +| normalizing a fully mergeable tiling of boxes - 2 | medium, native | 866.91 | 880.66 | 24.07 | +| normalizing a fully mergeable tiling of boxes - 2 | medium, embedded in 3d | 918.08 | 932.34 | 26.34 | +| normalizing a fully mergeable tiling of boxes - 2 | large, native | 36'177.00 | 36'754.12 | 891.62 | +| normalizing a fully mergeable tiling of boxes - 2 | large, embedded in 3d | 37'689.00 | 38'162.09 | 1'015.72 | +| normalizing a fully mergeable tiling of boxes - 3 | small, native | 252.02 | 256.27 | 7.41 | +| normalizing a fully mergeable tiling of boxes - 3 | medium, native | 1'483.29 | 1'507.26 | 37.00 | +| normalizing a fully mergeable tiling of boxes - 3 | large, native | 45'043.00 | 47'019.61 | 1'912.16 | +| performing set operations between randomized regions - 2d | union, small, native | 736.83 | 746.05 | 22.66 | +| performing set operations between randomized regions - 2d | union, small, embedded in 3d | 894.46 | 902.26 | 29.54 | +| performing set operations between randomized regions - 2d | intersection, small, native | 228.26 | 232.27 | 8.02 | +| performing set operations between randomized regions - 2d | intersection, small, embedded in 3d | 263.43 | 267.43 | 6.17 | +| performing set operations between randomized regions - 2d | difference, small, native | 905.57 | 918.43 | 33.09 | +| performing set operations between randomized regions - 2d | difference, small, embedded in 3d | 1'070.95 | 1'085.01 | 37.74 | +| performing set operations between randomized regions - 2d | union, medium, native | 12'072.00 | 12'248.68 | 347.10 | +| performing set operations between randomized regions - 2d | union, medium, embedded in 3d | 14'547.00 | 14'773.78 | 411.55 | +| performing set operations between randomized regions - 2d | intersection, medium, native | 2'258.77 | 2'281.98 | 61.82 | +| performing set operations between randomized regions - 2d | intersection, medium, embedded in 3d | 2'286.82 | 2'308.51 | 64.84 | +| performing set operations between randomized regions - 2d | difference, medium, native | 7'857.00 | 7'974.66 | 219.85 | +| performing set operations between randomized regions - 2d | difference, medium, embedded in 3d | 8'438.67 | 8'577.93 | 273.86 | +| performing set operations between randomized regions - 2d | union, large, native | 157'387.00 | 159'073.64 | 1'691.81 | +| performing set operations between randomized regions - 2d | union, large, embedded in 3d | 169'710.00 | 171'653.81 | 3'350.72 | +| performing set operations between randomized regions - 2d | intersection, large, native | 20'463.00 | 20'740.35 | 452.74 | +| performing set operations between randomized regions - 2d | intersection, large, embedded in 3d | 20'908.50 | 21'173.02 | 471.69 | +| performing set operations between randomized regions - 2d | difference, large, native | 620'755.00 | 626'676.55 | 3'962.44 | +| performing set operations between randomized regions - 2d | difference, large, embedded in 3d | 673'204.00 | 679'150.63 | 3'814.61 | +| performing set operations between randomized regions - 3d | union, small, native | 3'805.75 | 3'858.67 | 125.73 | +| performing set operations between randomized regions - 3d | intersection, small, native | 138.79 | 144.26 | 16.14 | +| performing set operations between randomized regions - 3d | difference, small, native | 1'337.16 | 1'362.56 | 33.36 | +| performing set operations between randomized regions - 3d | union, medium, native | 21'204.00 | 21'454.90 | 432.29 | +| performing set operations between randomized regions - 3d | intersection, medium, native | 2'541.60 | 2'576.12 | 50.53 | +| performing set operations between randomized regions - 3d | difference, medium, native | 10'963.67 | 11'111.85 | 261.95 | +| performing set operations between randomized regions - 3d | union, large, native | 2'039'764.00 | 2'137'913.36 | 62'754.49 | +| performing set operations between randomized regions - 3d | intersection, large, native | 15'163.00 | 15'345.12 | 466.02 | +| performing set operations between randomized regions - 3d | difference, large, native | 5'944'227.00 | 6'121'011.94 | 134'635.82 | +| normalizing a fully mergeable, complex tiling of boxes - 2d | small, native | 2'167.25 | 2'202.24 | 63.33 | +| normalizing a fully mergeable, complex tiling of boxes - 2d | small, embedded in 3d | 2'263.18 | 2'283.08 | 67.68 | +| normalizing a fully mergeable, complex tiling of boxes - 2d | large, native | 1'518'937.00 | 1'526'836.72 | 5'237.78 | +| normalizing a fully mergeable, complex tiling of boxes - 2d | large, embedded in 3d | 1'631'871.00 | 1'680'405.32 | 45'627.39 | +| benchmark independent task pattern with 100 tasks | task generation | 7'243'399.00 | 7'895'687.50 | 773'940.22 | +| benchmark independent task pattern with 500 tasks | task generation | 44'137'320.00 | 49'095'335.61 | 2'822'959.18 | +| benchmark independent task pattern with 2500 tasks | task generation | 217'846'503.00 | 246'129'489.77 | 13'110'851.21 | +| benchmark stencil: 1D 50 iters oversub 1 | iterations | 3'023'590.00 | 3'072'416.12 | 23'118.74 | +| benchmark stencil: 1D 500 iters oversub 1 | iterations | 27'156'860.00 | 30'494'165.73 | 1'058'915.99 | +| benchmark stencil: 1D 50 iters oversub 3 | iterations | 5'838'376.00 | 6'285'769.20 | 455'403.57 | +| benchmark stencil: 1D 500 iters oversub 3 | iterations | 59'536'582.00 | 66'667'556.68 | 1'892'804.33 | +| benchmark stencil: 2D 30 iters oversub 1 | iterations | 4'352'820.00 | 4'806'715.18 | 60'563.77 | +| benchmark stencil: 2D 300 iters oversub 1 | iterations | 43'014'883.00 | 48'346'590.18 | 1'291'817.17 | +| benchmark stencil: 2D 30 iters oversub 3 | iterations | 13'769'221.00 | 14'851'647.48 | 833'070.88 | +| benchmark stencil: 2D 300 iters oversub 3 | iterations | 140'654'019.00 | 154'110'163.93 | 3'908'200.63 | +| benchmark rsim: 64 tris 50 iters | iterations | 9'608'232.00 | 10'537'792.98 | 312'618.17 | +| benchmark rsim: 1024 tris 50 iters | iterations | 10'552'723.00 | 10'652'092.93 | 71'950.83 | +| benchmark rsim: 64 tris 500 iters | iterations | 100'817'611.00 | 110'559'619.30 | 3'114'424.49 | +| benchmark rsim: 1024 tris 500 iters | iterations | 101'107'240.00 | 112'047'148.96 | 1'819'479.08 | All numbers are in nanoseconds.