diff --git a/ci/check-perf-impact.rb b/ci/check-perf-impact.rb index 41f639e60..1128b7247 100755 --- a/ci/check-perf-impact.rb +++ b/ci/check-perf-impact.rb @@ -15,6 +15,62 @@ require 'json' require 'digest' +# Monkey patch Gruff to allow left-aligning labels in the legend; only allow one entry per line. +module Gruff + class Base + def draw_legend + return if @hide_legend + + legend_labels = store.data.map(&:label) + legend_square_width = @legend_box_size # small square with color of this item + line_height = [legend_caps_height, legend_square_width].max + @legend_margin + + current_y_offset = begin + if @legend_at_bottom + @graph_bottom + @legend_margin + labels_caps_height + @label_margin + (@x_axis_label ? (@label_margin * 2) + marker_caps_height : 0) + else + hide_title? ? @top_margin + @title_margin : @top_margin + @title_margin + title_caps_height + end + end + + current_x_offset = @left_margin + + legend_labels.each_with_index do |legend_label, index| + unless legend_label.empty? + legend_label_width = calculate_width(@legend_font, legend_label) + + # Draw label + text_renderer = Gruff::Renderer::Text.new(renderer, legend_label, font: @legend_font) + text_renderer.add_to_render_queue(legend_label_width, + legend_square_width, + current_x_offset + (legend_square_width * 1.7), + current_y_offset, + Magick::WestGravity) # Change gravity to Magick::WestGravity for left alignment + + # Now draw box with color of this dataset + rect_renderer = Gruff::Renderer::Rectangle.new(renderer, color: store.data[index].color) + rect_renderer.render(current_x_offset, + current_y_offset, + current_x_offset + legend_square_width, + current_y_offset + legend_square_width) + + current_y_offset += line_height + end + end + end + + def calculate_legend_height + return 0.0 if @hide_legend + + legend_labels = store.data.map(&:label) + line_height = [legend_caps_height, @legend_box_size].max + + # Divide by two because we always draw two box plots for each benchmark (before / after); one has an empty label + ((line_height * legend_labels.count) + (@legend_margin * (legend_labels.count - 1))) / 2 + end + end +end + # information regarding the benchmark file BENCH_FN = 'ci/perf/gpuc2_bench.csv' NAME_COL_1 = "test case" # first name column @@ -42,7 +98,8 @@ MAX_BENCHMARKS_TO_LIST = 3 # if more than this number of benchmarks is affected, just report the count # file name for the message that will be posted -MESSAGE_FN = "#{ENV['GITHUB_WORKSPACE']}/check_perf_message.txt" +MESSAGE_DIR = "#{ENV['GITHUB_WORKSPACE']}/" +MESSAGE_FN = "check_perf_message.txt" # check if the expected files and env variables are present if !File.exist?(BENCH_FN) @@ -68,7 +125,7 @@ if bench_file_digest == $1 puts "Same csv already processed, early exit" `echo "done=true" >> $GITHUB_OUTPUT` - exit + exit end end @@ -161,13 +218,12 @@ def get_wheel_color cur_chart_start_mean = 0 cur_chart_idx = 0 cur_img_idx = 0 + cur_chart_category = nil + consecutive_category_count = 1 g = nil - prev_mean = 1 # closure for completing the current in-progress chart finish_chart = Proc.new do - # generate a usable number of subdivisions - g.y_axis_increment = prev_mean / 7 # generate image img = g.to_image() # if there was a significant change, add border to image @@ -183,64 +239,85 @@ def get_wheel_color in_chart = false end - old_data_map.sort_by { |k,v| mean(v) }.each do |bench_key, old_bench_raw| - # skip deleted benchmarks - next unless new_data_map.key?(bench_key) - + all_keys = old_data_map.keys | new_data_map.keys + all_keys.each do |bench_key| # gather some important information - new_bench_raw = new_data_map[bench_key] + old_bench_raw = old_data_map[bench_key] || nil + new_bench_raw = new_data_map[bench_key] || nil + is_new_or_removed = old_bench_raw.nil? || new_bench_raw.nil? bench_category = bench_key[0] bench_name = bench_key[1] - - # finish the current chart if we have reached the maximum per image - # or if the relative y axis difference becomes too large - if in_chart && (cur_chart_start_mean < mean(old_bench_raw) / 20 || - cur_chart_idx >= MAX_CHARTS_PER_IMAGE) - finish_chart.() - end - - # start a new chart - if !in_chart - g = Gruff::Box.new(GRAPH_WIDTH) - g.theme_pastel - g.hide_title = true - g.marker_font_size = 15 - g.legend_at_bottom = true - g.legend_font_size = 9 - g.legend_box_size = 10 - g.legend_margin = 2 - g.y_axis_label = "Time (nanoseconds)" - - in_chart = true - significant_perf_improvement_in_this_chart = false - significant_perf_reduction_in_this_chart = false - cur_chart_start_mean = mean(old_bench_raw) - cur_chart_idx = 0 + if old_bench_raw.nil? + bench_name = "ADDED: " + bench_name + elsif new_bench_raw.nil? + bench_name = "REMOVED: " + bench_name end + # If both old and new data is available, we default to old - this is an arbitrary choice + bench_mean = old_bench_raw.nil? ? mean(new_bench_raw) : mean(old_bench_raw) # check if there was a highly significant difference - new_median = median(scalar_add(new_bench_raw, FLAT_THRESHOLD_OFFSET)) - old_median = median(scalar_add(old_bench_raw, FLAT_THRESHOLD_OFFSET)) - rel_difference = new_median / old_median - relative_times_per_category[bench_category] << rel_difference - # we output these for easy inspection in the CI log - puts "%3.2f <= %s" % [rel_difference, bench_name] - if rel_difference > THRESHOLD_SLOW - significantly_slower_benchmarks << bench_name - significant_perf_reduction_in_this_chart = true - elsif rel_difference < THRESHOLD_FAST - significantly_faster_benchmarks << bench_name - significant_perf_improvement_in_this_chart = true + rel_difference = 0 + if !is_new_or_removed + new_median = median(scalar_add(new_bench_raw, FLAT_THRESHOLD_OFFSET)) + old_median = median(scalar_add(old_bench_raw, FLAT_THRESHOLD_OFFSET)) + rel_difference = new_median / old_median + relative_times_per_category[bench_category] << rel_difference + # we output these for easy inspection in the CI log + puts "%3.2f <= %s" % [rel_difference, bench_name] + if rel_difference > THRESHOLD_SLOW + significantly_slower_benchmarks << bench_name + elsif rel_difference < THRESHOLD_FAST + significantly_faster_benchmarks << bench_name + end end # add old and new boxes to chart if they are significant according to the charting thresholds - if rel_difference > MINOR_THRESHOLD_SLOW || rel_difference < MINOR_THRESHOLD_FAST + if is_new_or_removed || rel_difference > MINOR_THRESHOLD_SLOW || rel_difference < MINOR_THRESHOLD_FAST + # finish current chart if the category has changed, the relative difference on the y-axis is too large, + # or we've reached the maximum number of plots per image + ratio = [cur_chart_start_mean, bench_mean].max / [cur_chart_start_mean, bench_mean].min + if in_chart && (cur_chart_category != bench_category || ratio > 50 || cur_chart_idx >= MAX_CHARTS_PER_IMAGE) + finish_chart.() + end + + # start a new chart if necessary + if !in_chart + g = Gruff::Box.new(GRAPH_WIDTH) + g.theme_pastel + g.title = bench_category + g.marker_font_size = 15 + g.legend_at_bottom = true + g.legend_font_size = 9 + g.legend_box_size = 10 + g.legend_margin = 2 + g.y_axis_label = "Time (nanoseconds)" + g.stroke_width = 0.5 + + in_chart = true + significant_perf_improvement_in_this_chart = false + significant_perf_reduction_in_this_chart = false + cur_chart_start_mean = bench_mean + cur_chart_idx = 0 + if cur_chart_category == bench_category + consecutive_category_count += 1 + g.title = bench_category + " (#{consecutive_category_count})" + else + consecutive_category_count = 1 + end + cur_chart_category = bench_category + end + + if !is_new_or_removed && rel_difference > THRESHOLD_SLOW + significant_perf_reduction_in_this_chart = true + elsif !is_new_or_removed && rel_difference < THRESHOLD_FAST + significant_perf_improvement_in_this_chart = true + end + + # plot the data g.data bench_name, old_bench_raw, get_wheel_color g.data nil, new_bench_raw, get_wheel_color cur_chart_idx += 1 end - - prev_mean = mean(old_bench_raw) end # don't forget to finish the last chart! finish_chart.() @@ -293,7 +370,11 @@ def report_benchmark_list(list) end end end -puts message +puts "\n" + message # write message to workspace file for subsequent step -File.write(MESSAGE_FN, message) +if File.writable?(MESSAGE_DIR) + File.write(MESSAGE_DIR + MESSAGE_FN, message) +else + puts "\nCannot write to '#{MESSAGE_DIR}', skipping message generation" +end diff --git a/ci/perf/gpuc2_bench.csv b/ci/perf/gpuc2_bench.csv index b787c4b88..181ce961c 100644 --- a/ci/perf/gpuc2_bench.csv +++ b/ci/perf/gpuc2_bench.csv @@ -1,192 +1,168 @@ 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,5565,2226000,3.3954,3.3812,3.4307,0.0993,0.0010,0.1801,"benchmark,group:graph-nodes","3.3808,3.3808,3.3880,3.3826,3.3808,3.3824,3.3806,3.3826,3.3808,3.3808,3.3806,3.3808,3.3826,3.3808,4.0649,3.3806,3.3808,3.3808,3.3826,3.3806,3.3826,3.3808,3.3808,3.3806,3.3806,3.3826,3.3808,3.3808,3.3806,3.3808,3.3826,3.3808,3.3824,3.3808,3.3808,3.3808,3.3806,3.3826,3.3808,3.3826,3.3806,3.3806,3.3808,3.3808,3.3826,3.3806,3.3826,3.3808,3.3808,3.3806,3.3808,3.3808,3.3806,3.3806,3.3808,3.3826,3.3808,3.3806,3.3826,3.3808,3.3808,3.3824,3.3808,3.3808,3.3826,3.3806,4.1154,3.3808,3.3806,3.3808,3.3808,3.3826,3.3806,3.3806,3.3808,3.3808,3.3808,3.3806,3.3808,3.3826,3.3808,3.3806,3.3826,3.3808,3.3808,3.3806,3.3808,3.3826,3.3808,3.3806,3.3824,3.3808,3.3808,3.3808,3.3806,3.3826,3.3808,3.3808,3.3824,3.3808" +benchmark intrusive graph dependency handling with N nodes - 1,creating and adding dependencies,100,1143,2400300,22.2523,22.1839,22.4119,0.5309,0.3080,0.8499,"benchmark,group:graph-nodes","22.1487,22.1312,22.2800,22.2450,22.2537,22.2537,22.2012,22.0262,22.2187,22.0262,22.2012,22.0954,25.2161,22.1312,22.1312,22.1312,22.1400,22.0954,22.1400,22.2275,22.2537,22.2012,22.1400,22.1312,22.1400,22.1050,22.1312,22.2187,22.1750,22.1925,22.2100,22.1400,22.1487,22.0962,22.1312,22.1400,22.1312,22.1312,22.1312,22.1312,22.1312,22.0962,22.2362,22.2546,22.1750,22.1837,22.2187,22.1575,22.2537,22.2187,22.1487,22.1312,25.2082,22.1312,22.1312,22.1662,22.2275,22.1400,22.2187,22.1487,22.2275,22.1837,22.1400,22.1312,22.1400,22.1312,22.0962,22.2450,22.2450,22.1137,22.0175,22.0875,22.2362,22.1225,22.1050,22.2371,22.1662,22.1225,22.1400,22.1225,22.1312,22.1050,22.1312,22.1225,22.2100,22.1846,22.1312,22.1312,22.1312,22.0962,22.1312,25.3395,22.2537,22.2537,22.1846,22.1312,22.1312,22.1312,22.0962,22.2450" +benchmark intrusive graph dependency handling with N nodes - 1,adding and removing dependencies,100,1613,2419500,15.4855,15.4351,15.6007,0.3694,0.1495,0.6328,"benchmark,group:graph-nodes","15.4526,15.4532,15.5028,15.4526,15.4526,15.4532,15.4526,15.4526,15.4526,15.4526,15.4526,15.4526,15.4526,15.4526,16.3906,15.3596,15.3596,15.3596,15.3596,15.3596,15.3596,15.3596,15.3596,15.3596,15.3596,15.3596,15.3534,15.3534,15.3534,15.3596,15.3596,15.3596,15.3596,15.3596,15.3596,15.3596,17.8754,15.3596,15.3596,15.3596,15.3596,15.3596,15.3596,15.3596,15.3596,15.3596,15.3596,15.3596,15.3596,15.3596,15.3596,15.3596,15.3596,16.4464,15.4464,15.4470,15.4526,15.4526,15.4532,15.4526,15.4526,15.4532,15.4526,15.4526,15.4532,15.4526,15.4526,15.4532,15.4526,15.4526,15.4532,15.4526,15.4526,15.4532,15.4526,15.4526,17.8376,15.4526,15.4526,15.4526,15.4526,15.4526,15.4526,15.4532,15.4464,15.4464,15.4470,15.4464,15.4464,15.4532,15.4526,15.4526,15.4532,15.4526,15.4526,15.4532,15.4526,15.4526,15.4532,15.4526" +benchmark intrusive graph dependency handling with N nodes - 1,checking for dependencies,100,19169,1916900,1.4616,1.4582,1.4702,0.0245,0.0020,0.0445,"benchmark,group:graph-nodes","1.4518,1.4545,1.4592,1.4592,1.4587,1.4587,1.4587,1.4587,1.4555,1.4514,1.4587,1.4581,1.4587,1.4587,1.4587,1.4592,1.4587,1.4592,1.4587,1.4587,1.4587,1.4587,1.4587,1.4581,1.4587,1.4587,1.4587,1.4587,1.4587,1.4587,1.4587,1.4587,1.4587,1.4587,1.4587,1.6301,1.4587,1.4587,1.4587,1.4581,1.4508,1.4560,1.4592,1.4587,1.4592,1.4587,1.4592,1.4587,1.4587,1.4587,1.4587,1.4587,1.4587,1.4581,1.4587,1.4587,1.4581,1.4587,1.4587,1.4587,1.4587,1.4587,1.4587,1.4581,1.4587,1.4587,1.4587,1.4587,1.4587,1.4487,1.4587,1.6348,1.4492,1.4592,1.4592,1.4587,1.4587,1.4587,1.4587,1.4587,1.4587,1.4587,1.4587,1.4587,1.4587,1.4587,1.4587,1.4587,1.4587,1.4587,1.4587,1.4587,1.4587,1.4587,1.4587,1.4587,1.4587,1.4587,1.4587,1.4592" +benchmark intrusive graph dependency handling with N nodes - 10,creating nodes,100,601,2464100,32.5188,32.1905,33.6964,2.7465,0.6799,6.2220,"benchmark,group:graph-nodes","32.1215,32.1215,32.2546,32.1215,32.1198,32.1048,32.1215,32.1198,32.1215,32.1215,32.1215,32.1198,32.1215,32.1215,32.1198,32.1215,32.1215,32.1198,32.1215,32.1381,32.1198,32.1198,32.1215,32.1215,32.1198,32.1215,32.1215,38.8552,32.1215,32.1364,32.1215,32.1215,32.1198,32.1198,32.1215,32.1215,32.1198,32.1215,32.1215,32.1198,32.1381,32.1215,32.1198,32.1215,32.1215,32.1198,32.1198,32.1215,32.1215,32.1198,32.1215,32.1215,32.1198,32.1215,32.1215,32.1198,58.1614,32.1381,32.1198,32.1215,32.1215,32.1364,32.1215,32.1215,32.1198,32.1215,32.1215,32.1198,32.1198,32.1215,32.1381,32.1198,32.1215,32.1215,32.1198,32.1215,32.1215,38.9551,32.1215,32.1215,32.1198,32.1048,32.1215,32.1198,32.1215,32.1215,32.1198,32.1215,32.1048,32.1198,32.1198,32.1215,32.1215,32.1198,32.1215,32.1215,32.1198,32.1215,32.1215,32.1198" +benchmark intrusive graph dependency handling with N nodes - 10,creating and adding dependencies,100,117,2515500,217.2976,216.5595,219.0967,5.9586,3.3081,9.5373,"benchmark,group:graph-nodes","216.3761,216.3761,220.0598,215.9487,216.0342,216.2906,216.2051,216.2906,216.3761,216.1197,216.1197,216.2906,216.2051,216.2051,216.2051,216.2051,216.2906,216.2906,216.3761,216.0256,251.8205,216.0342,216.2051,216.3761,216.2051,216.2906,216.2051,216.2906,216.2051,216.2051,216.2906,216.3761,216.1197,216.2906,216.2906,216.2051,216.2051,216.1197,216.2906,216.1197,216.3761,216.2051,216.2906,216.2051,216.2051,216.2906,216.2051,216.3761,216.3761,216.2051,216.2051,216.2906,216.1197,216.3761,216.1197,216.2906,216.2906,216.2906,216.3761,216.1197,252.0000,215.9487,216.2051,216.1197,216.1197,216.2906,216.2906,216.2051,216.1197,216.2051,216.1197,216.2051,216.2051,216.2051,216.1197,216.3761,216.1197,216.1197,216.2051,215.9402,216.2051,216.2051,216.2051,216.2906,216.1197,216.1197,216.1197,216.2906,216.1197,216.0342,216.2051,216.2051,216.2051,216.2906,216.0342,216.2051,216.2051,216.2051,216.2906,249.4359" +benchmark intrusive graph dependency handling with N nodes - 10,adding and removing dependencies,100,122,2501000,205.8291,205.2689,207.2324,3.9965,0.4218,7.3021,"benchmark,group:graph-nodes","205.5328,205.6230,206.8525,205.3689,205.3770,205.0492,204.7131,205.2951,205.2869,205.2951,205.3689,205.3770,205.5410,204.0574,205.4590,205.4508,205.3770,205.2869,205.2951,205.2049,204.0574,205.2869,205.3770,205.2951,205.2869,205.3770,205.5328,205.1311,205.2131,205.2869,205.2951,205.2869,205.3770,205.3770,205.2869,203.8115,204.3115,205.0410,205.2951,205.2869,205.2869,232.2295,205.3689,204.7951,205.3770,205.3689,204.8033,204.8770,205.1311,204.6311,204.0574,205.7049,205.4590,205.6148,205.4590,205.5410,205.6148,205.5410,204.9590,204.7131,204.6311,204.6393,204.9590,205.5410,205.6230,205.0410,205.4590,205.6148,205.5410,205.6230,205.2869,204.8033,205.2049,205.3770,205.5410,205.5328,205.5410,205.5328,205.5328,205.5410,235.0164,205.0492,204.8770,204.8852,205.3689,205.6230,205.5410,205.5328,205.0492,205.5328,205.6148,205.2131,205.0410,205.3770,205.5328,205.7869,205.0492,205.6148,205.5410,205.5410" +benchmark intrusive graph dependency handling with N nodes - 10,checking for dependencies,100,1069,2458700,23.1404,23.0632,23.2878,0.5262,0.2695,0.8691,"benchmark,group:graph-nodes","23.0449,22.9981,23.4294,22.9504,22.8391,22.8475,22.8475,22.8391,22.8662,22.7072,22.8485,22.8475,22.8382,22.8382,22.8756,22.6978,22.8382,23.0262,22.8475,22.8475,22.8382,22.8475,22.7072,26.2226,23.5313,23.4761,23.4387,23.4004,23.3639,23.3162,23.1852,23.5323,23.4855,23.3162,23.4004,23.3162,23.3068,23.1852,23.5416,23.5042,23.4659,23.4200,23.3162,23.3358,23.1852,23.5416,23.3162,23.3162,23.4294,23.3910,23.3630,23.2788,23.2133,23.3171,23.3162,23.4387,23.4004,23.3639,23.3255,23.1852,23.5229,23.4855,23.3068,26.4191,22.8569,22.8382,22.6978,23.0814,22.8391,22.8382,22.9514,22.9036,22.8672,22.7072,23.0543,23.0159,22.9701,22.9233,22.8756,22.6978,22.8475,23.0253,22.9794,22.9420,22.8382,22.8569,22.6978,23.0440,23.0075,22.9701,22.8382,22.8765,22.7072,22.8475,22.8382,22.8391,22.9411,22.8485,22.8382,22.6978" +benchmark intrusive graph dependency handling with N nodes - 100,creating nodes,100,55,2535500,457.7300,456.4531,460.9298,9.1446,1.2369,16.5944,"benchmark,group:graph-nodes","453.7273,456.6364,461.2000,457.2000,456.6364,457.0000,456.6545,457.2000,453.3636,457.3818,456.4727,457.1818,456.4727,456.6545,456.6545,456.4545,453.7455,456.0909,457.0182,456.4727,457.5636,457.9091,456.6364,453.7455,457.0000,457.0182,457.0182,457.0182,457.1818,456.4545,457.0182,453.3636,456.8364,457.2000,457.0182,456.8182,456.2909,456.6545,453.7273,456.6545,518.5818,456.6545,457.0182,456.4545,456.2909,456.4727,454.6364,455.5636,457.0182,456.8182,456.8364,457.2000,456.8182,456.6364,453.7455,456.6364,457.0182,457.2000,456.6545,456.2727,457.0182,453.3636,456.4545,456.2909,457.0182,456.6364,456.8364,456.8364,456.4545,453.9091,456.2909,458.2727,457.9091,456.8364,457.2000,456.4727,454.8182,455.3818,456.8182,523.6909,456.6545,456.8364,456.6364,456.8364,456.6545,453.0000,457.0182,456.6545,457.0000,457.3818,456.8364,456.4727,453.9091,456.1091,457.3636,456.4727,457.0182,456.6545,456.8182,456.2909" +benchmark intrusive graph dependency handling with N nodes - 100,creating and adding dependencies,100,6,2548200,4383.8983,4371.6750,4415.4050,89.1194,16.2046,161.3418,"benchmark,group:graph-nodes","4383.0000,4356.3333,4471.5000,4376.3333,4383.0000,4371.3333,4368.0000,4369.6667,4354.5000,4374.6667,4369.6667,4349.5000,4354.5000,4369.6667,4359.6667,4367.8333,4374.6667,4364.6667,4373.0000,4399.6667,4366.3333,4368.0000,4342.8333,4366.3333,4364.6667,4391.3333,4366.1667,4369.5000,4378.0000,4371.3333,4394.6667,4979.1667,4363.0000,4383.0000,4347.8333,4376.3333,4371.3333,4383.0000,4369.6667,4362.8333,4386.3333,4371.3333,4381.3333,4386.3333,4353.0000,4378.0000,4376.1667,4349.5000,4371.3333,4378.0000,4373.0000,4378.0000,4372.8333,4383.0000,4371.3333,4359.6667,4373.0000,4364.5000,4391.3333,4384.6667,4381.1667,4379.5000,4379.6667,4399.6667,4374.5000,4379.6667,4354.6667,4373.0000,4373.0000,5015.8333,4376.3333,4359.5000,4378.0000,4366.3333,4346.3333,4374.5000,4364.5000,4349.6667,4363.0000,4379.5000,4349.5000,4369.6667,4361.3333,4362.8333,4368.0000,4353.0000,4347.8333,4378.0000,4346.3333,4363.0000,4372.8333,4393.0000,4374.6667,4399.6667,4377.8333,4353.0000,4374.6667,4368.0000,4357.8333,4361.3333" +benchmark intrusive graph dependency handling with N nodes - 100,adding and removing dependencies,100,7,2695000,4658.3071,4637.9757,4702.0200,145.3244,82.6918,248.8550,"benchmark,group:graph-nodes","4618.5714,4617.0000,4648.4286,4619.8571,4608.4286,4614.1429,4605.5714,4609.8571,4602.7143,4602.7143,4608.5714,4619.8571,4599.8571,4607.0000,4622.8571,4617.0000,5266.8571,4668.5714,4682.8571,5673.2857,4664.2857,4667.1429,4667.1429,4677.1429,4678.5714,4650.0000,4630.0000,4641.2857,4644.2857,4630.0000,4608.4286,4652.8571,4674.2857,4662.8571,4655.7143,4661.4286,4667.1429,4662.8571,4655.7143,4617.0000,4655.7143,4621.2857,4664.2857,4671.4286,4657.1429,4665.7143,4667.1429,5195.2857,4617.1429,4621.2857,4631.4286,4624.1429,4622.8571,4618.4286,4612.7143,4627.0000,4634.2857,4609.8571,4618.4286,4612.8571,4624.1429,4609.8571,4618.5714,4625.5714,4632.8571,4632.7143,4624.2857,4621.2857,4611.4286,4619.8571,4621.2857,4607.0000,4625.5714,4602.7143,4621.4286,4622.7143,4618.5714,5208.1429,4629.8571,4628.4286,4621.2857,4631.4286,4617.0000,4600.0000,4614.1429,4618.4286,4621.4286,4609.8571,4602.7143,4609.8571,4622.8571,4615.5714,4622.8571,4609.8571,4629.8571,4628.4286,4628.5714,4628.4286,4641.4286,4619.8571" +benchmark intrusive graph dependency handling with N nodes - 100,checking for dependencies,100,17,2643500,1785.6747,1779.8024,1800.1400,45.7731,23.5544,76.1923,"benchmark,group:graph-nodes","1777.3529,1776.7647,1796.2353,1779.1765,1779.1176,1784.4706,1777.3529,1775.5882,1776.8235,1776.1765,1767.3529,1773.8235,1787.9412,1776.8235,1780.2941,1779.1176,1777.3529,1777.9412,1779.1765,1777.3529,1775.5882,1777.4118,1777.3529,1770.2941,1775.6471,1772.6471,1772.6471,1778.0000,1781.4706,1772.6471,1780.3529,1782.0588,2086.2353,1770.8824,1773.2353,1775.0000,1780.3529,1780.8824,1772.7059,1775.5882,1777.9412,1778.5882,1776.1765,1774.4118,1776.8235,1778.5294,1780.3529,1775.5882,1776.7647,1776.8235,1773.2353,1773.2353,1777.4118,1774.4118,1782.6471,1779.7059,1776.7647,1778.0000,1777.3529,1776.8235,1776.1765,1777.9412,1773.2941,1777.3529,1776.7647,2011.3529,1776.8235,1773.8235,1776.7647,1772.0588,1776.1765,1775.5882,1782.1176,1780.2941,1776.7647,1789.1176,1777.4118,1779.7059,1779.7647,1780.8824,1779.7059,1779.7059,1780.2941,1777.9412,1777.3529,1776.8235,1779.1176,1776.1765,1779.1765,1783.2353,1780.9412,1780.2941,1778.0000,1779.7059,1774.4118,1772.0588,1782.0588,1779.1765,2031.9412,1780.3529" +benchmark task handling,generating and deleting tasks,100,1,603804500,6039819.4200,6033962.3100,6060316.2400,50137.1583,15161.8471,114500.9046,"benchmark,group:task-graph","6026441.0000,6060866.0000,6060224.0000,6029947.0000,6029978.0000,6051298.0000,6031781.0000,6039966.0000,6018195.0000,6026831.0000,6032522.0000,6030539.0000,6034857.0000,5998237.0000,6028535.0000,6008186.0000,6033394.0000,6028575.0000,6066828.0000,6039816.0000,6041329.0000,6027743.0000,6016693.0000,6028895.0000,6043163.0000,6028545.0000,6036099.0000,6027833.0000,6513244.0000,6051047.0000,6027082.0000,6023845.0000,6021852.0000,6025209.0000,6031571.0000,6066156.0000,6016201.0000,6043864.0000,6018796.0000,6044475.0000,6021662.0000,6028054.0000,6010601.0000,6022453.0000,6016763.0000,6024086.0000,6034236.0000,6047991.0000,6027202.0000,6042641.0000,6065875.0000,6077437.0000,6039215.0000,6013626.0000,6048994.0000,6055285.0000,6041750.0000,6045567.0000,6028916.0000,6025369.0000,6045787.0000,6056247.0000,6031591.0000,6022824.0000,6005020.0000,6049034.0000,6008787.0000,6033484.0000,6066897.0000,6042782.0000,6033875.0000,6048903.0000,6040909.0000,6038103.0000,6021942.0000,6036790.0000,6005291.0000,6051599.0000,6038704.0000,6038964.0000,6024538.0000,6067258.0000,6010671.0000,6022293.0000,6065535.0000,6044895.0000,6032301.0000,6038905.0000,6015690.0000,6036970.0000,6031100.0000,6038243.0000,6076436.0000,6039796.0000,6030569.0000,6040788.0000,6031791.0000,6015700.0000,6037662.0000,6034887.0000" +generating large task graphs,soup topology,100,1,37426200,326441.7300,324438.7500,333088.6700,16687.2821,5607.1256,37116.7758,"benchmark,group:task-graph","327108.0000,320796.0000,478736.0000,372825.0000,335564.0000,333831.0000,325045.0000,331747.0000,323772.0000,324473.0000,326176.0000,323100.0000,328341.0000,322980.0000,320396.0000,330454.0000,321959.0000,326167.0000,320225.0000,321978.0000,330704.0000,320866.0000,321117.0000,324052.0000,323231.0000,327228.0000,320385.0000,323732.0000,327489.0000,320666.0000,325365.0000,323411.0000,320285.0000,328360.0000,321297.0000,322340.0000,320395.0000,322990.0000,325696.0000,321538.0000,322179.0000,328391.0000,321748.0000,327529.0000,321417.0000,320415.0000,326707.0000,323361.0000,326537.0000,323301.0000,322309.0000,327399.0000,323722.0000,322309.0000,321918.0000,323531.0000,327148.0000,323742.0000,321107.0000,332668.0000,321077.0000,330414.0000,321778.0000,323421.0000,328411.0000,321537.0000,324182.0000,323501.0000,321156.0000,329362.0000,321267.0000,321016.0000,321888.0000,321197.0000,328029.0000,320946.0000,320406.0000,327629.0000,319604.0000,328771.0000,323071.0000,322119.0000,326998.0000,320145.0000,326487.0000,322870.0000,321497.0000,328591.0000,323071.0000,321037.0000,322249.0000,322950.0000,354180.0000,323270.0000,321758.0000,328801.0000,319804.0000,326898.0000,318482.0000,320045.0000" +generating large task graphs,chain topology,100,1,5404300,33251.1500,32316.5400,35328.0000,6737.8381,3689.0283,12652.1947,"benchmark,group:task-graph","31147.0000,31518.0000,84258.0000,58639.0000,51636.0000,54261.0000,43630.0000,40695.0000,39664.0000,33551.0000,32960.0000,33662.0000,32529.0000,31708.0000,32480.0000,31758.0000,31738.0000,31367.0000,31517.0000,31648.0000,31448.0000,31768.0000,31758.0000,31397.0000,31157.0000,31628.0000,31608.0000,37139.0000,31758.0000,31758.0000,31397.0000,31287.0000,31688.0000,31648.0000,31578.0000,31928.0000,31498.0000,31357.0000,31368.0000,31658.0000,31888.0000,32280.0000,31729.0000,31447.0000,31478.0000,31308.0000,31498.0000,31828.0000,31447.0000,31548.0000,31498.0000,36818.0000,31818.0000,31688.0000,31608.0000,31819.0000,31798.0000,31729.0000,31438.0000,31799.0000,31448.0000,31507.0000,31578.0000,31458.0000,31588.0000,31047.0000,31027.0000,30976.0000,31318.0000,31198.0000,31517.0000,31367.0000,31267.0000,31378.0000,31348.0000,31268.0000,36707.0000,31658.0000,31417.0000,31258.0000,31528.0000,31167.0000,31438.0000,31427.0000,31578.0000,31528.0000,31077.0000,31328.0000,31318.0000,31367.0000,31267.0000,31588.0000,31548.0000,31368.0000,31227.0000,31357.0000,31297.0000,31267.0000,31247.0000,31207.0000" +generating large task graphs,expanding tree topology,100,1,7272400,42791.0600,41718.0800,45405.9900,8005.0974,4026.9444,15798.6334,"benchmark,group:task-graph","40404.0000,40585.0000,106300.0000,74700.0000,64581.0000,56486.0000,54011.0000,50273.0000,44071.0000,43530.0000,43891.0000,44102.0000,42849.0000,48219.0000,43240.0000,41707.0000,42339.0000,41878.0000,41927.0000,41607.0000,42018.0000,42569.0000,40445.0000,40274.0000,41005.0000,40304.0000,40866.0000,40244.0000,40765.0000,40304.0000,40645.0000,40855.0000,51415.0000,40325.0000,40846.0000,40756.0000,40835.0000,40535.0000,40445.0000,40294.0000,41627.0000,40485.0000,40926.0000,40756.0000,40706.0000,40425.0000,40745.0000,40595.0000,40655.0000,40494.0000,40274.0000,45584.0000,40996.0000,40796.0000,40555.0000,40605.0000,40575.0000,40425.0000,40826.0000,40425.0000,41106.0000,40354.0000,40695.0000,40696.0000,40776.0000,40876.0000,40695.0000,40264.0000,40755.0000,40655.0000,40776.0000,40726.0000,40355.0000,40775.0000,40324.0000,40144.0000,40946.0000,40715.0000,40354.0000,40003.0000,40044.0000,40805.0000,40304.0000,40354.0000,40725.0000,40274.0000,40685.0000,40745.0000,40836.0000,40625.0000,46295.0000,40404.0000,40204.0000,40515.0000,40736.0000,40806.0000,40555.0000,40525.0000,40425.0000,40334.0000" +generating large task graphs,contracting tree topology,100,1,7870400,47394.6700,46342.1000,50220.2600,8126.6015,3723.1596,16743.2859,"benchmark,group:task-graph","45334.0000,44663.0000,115527.0000,76213.0000,64099.0000,59370.0000,56986.0000,55283.0000,55513.0000,50694.0000,51475.0000,50293.0000,48189.0000,47428.0000,47137.0000,47188.0000,46927.0000,47057.0000,46667.0000,47608.0000,46276.0000,46636.0000,46346.0000,45705.0000,46656.0000,45655.0000,45694.0000,45354.0000,46045.0000,45825.0000,45344.0000,45554.0000,45354.0000,45484.0000,46025.0000,44973.0000,45034.0000,45184.0000,45694.0000,45084.0000,45003.0000,45524.0000,51165.0000,45464.0000,45385.0000,44743.0000,44563.0000,44973.0000,44904.0000,44873.0000,45233.0000,45274.0000,45344.0000,45144.0000,44453.0000,44943.0000,44693.0000,44543.0000,45134.0000,45324.0000,44903.0000,50163.0000,45084.0000,45234.0000,44633.0000,44272.0000,45454.0000,45003.0000,45144.0000,44362.0000,45724.0000,44833.0000,45204.0000,44823.0000,45724.0000,44953.0000,44773.0000,44121.0000,45194.0000,45374.0000,50835.0000,44713.0000,45113.0000,45114.0000,45324.0000,44693.0000,44853.0000,45334.0000,44953.0000,44763.0000,44642.0000,45364.0000,44763.0000,44753.0000,44883.0000,44793.0000,44652.0000,45164.0000,44803.0000,50725.0000" +generating large task graphs,wave_sim topology,100,1,53250900,416990.4400,405488.5900,467306.2100,103359.0108,3463.1496,244395.2039,"benchmark,group:task-graph","408282.0000,402712.0000,1433465.0000,412700.0000,413872.0000,404324.0000,403623.0000,403603.0000,402611.0000,410065.0000,403232.0000,408613.0000,402360.0000,408733.0000,403152.0000,410646.0000,401860.0000,410375.0000,403102.0000,409284.0000,404555.0000,410275.0000,402701.0000,402942.0000,402851.0000,402752.0000,402621.0000,404725.0000,408823.0000,404004.0000,407791.0000,400838.0000,407530.0000,401940.0000,408272.0000,402591.0000,411047.0000,402931.0000,408311.0000,401418.0000,408092.0000,402471.0000,400807.0000,402601.0000,403533.0000,409304.0000,402381.0000,408693.0000,402280.0000,411237.0000,402300.0000,559488.0000,402180.0000,409334.0000,402571.0000,407781.0000,403112.0000,408622.0000,403242.0000,408372.0000,403473.0000,408472.0000,400838.0000,402812.0000,403153.0000,402491.0000,409094.0000,402791.0000,407400.0000,404004.0000,410436.0000,402551.0000,410076.0000,400848.0000,407480.0000,400307.0000,407881.0000,403914.0000,408021.0000,402932.0000,403553.0000,402571.0000,402661.0000,408312.0000,402551.0000,408112.0000,403903.0000,408281.0000,402892.0000,408442.0000,400748.0000,407330.0000,401158.0000,407280.0000,402832.0000,406970.0000,402401.0000,401158.0000,403243.0000,401739.0000" +generating large task graphs,jacobi topology,100,1,16057300,107229.0700,105762.4600,112297.6200,12270.6832,3085.8970,27708.6496,"benchmark,group:task-graph","103754.0000,104095.0000,220436.0000,144623.0000,121699.0000,107762.0000,106380.0000,105919.0000,105368.0000,106049.0000,104747.0000,110437.0000,105889.0000,105608.0000,105408.0000,105668.0000,105468.0000,105588.0000,106330.0000,112231.0000,104887.0000,105207.0000,104656.0000,104997.0000,105097.0000,104346.0000,104646.0000,110898.0000,105468.0000,105288.0000,105337.0000,105117.0000,105117.0000,105147.0000,105357.0000,110888.0000,104807.0000,105118.0000,105708.0000,105518.0000,105498.0000,104677.0000,105177.0000,105809.0000,105257.0000,104065.0000,104666.0000,104746.0000,104906.0000,104286.0000,110077.0000,104867.0000,104947.0000,104386.0000,105398.0000,103574.0000,104757.0000,104876.0000,109876.0000,104826.0000,103995.0000,103584.0000,104556.0000,104466.0000,104346.0000,104196.0000,110598.0000,105528.0000,104657.0000,104165.0000,104857.0000,104896.0000,104436.0000,104206.0000,109847.0000,104596.0000,104295.0000,104987.0000,104346.0000,104877.0000,104336.0000,104046.0000,110367.0000,105107.0000,104286.0000,105188.0000,105007.0000,104837.0000,103895.0000,104256.0000,110017.0000,104626.0000,103975.0000,104547.0000,104807.0000,104336.0000,104276.0000,104746.0000,110488.0000,104596.0000" +generating large command graphs for N nodes - 1,soup topology,100,1,53300200,597062.7100,595792.1400,601645.8300,10951.0311,3191.3555,25134.0018,"benchmark,group:command-graph","596389.0000,596769.0000,700946.0000,603953.0000,605155.0000,600206.0000,601368.0000,598994.0000,598623.0000,598262.0000,601859.0000,598022.0000,598202.0000,591169.0000,593393.0000,592040.0000,592391.0000,594294.0000,592752.0000,593583.0000,597841.0000,596919.0000,598783.0000,597931.0000,596699.0000,596278.0000,598974.0000,595537.0000,596329.0000,596809.0000,600576.0000,591238.0000,590518.0000,591739.0000,594615.0000,593493.0000,591489.0000,593473.0000,599584.0000,600456.0000,595958.0000,597390.0000,598222.0000,599053.0000,598432.0000,595837.0000,597831.0000,598222.0000,597961.0000,592190.0000,591669.0000,591248.0000,591629.0000,592271.0000,592501.0000,592261.0000,598202.0000,594755.0000,599394.0000,595838.0000,598362.0000,597832.0000,596499.0000,598953.0000,598372.0000,595988.0000,597180.0000,591679.0000,590497.0000,590307.0000,592351.0000,592812.0000,590357.0000,591689.0000,597681.0000,596459.0000,598342.0000,596648.0000,597470.0000,599384.0000,597290.0000,598503.0000,600757.0000,601509.0000,597531.0000,593623.0000,592360.0000,590838.0000,592551.0000,591119.0000,594164.0000,591679.0000,596569.0000,596820.0000,598142.0000,596208.0000,594164.0000,599314.0000,599595.0000,596158.0000" +generating large command graphs for N nodes - 1,chain topology,100,1,5091600,39759.0200,38884.2300,42175.6300,6739.1776,2904.4914,14017.1193,"benchmark,group:command-graph","38170.0000,38501.0000,96070.0000,68087.0000,56846.0000,45384.0000,41517.0000,41316.0000,41637.0000,41216.0000,40254.0000,39133.0000,38962.0000,39082.0000,39032.0000,39343.0000,38802.0000,38300.0000,38160.0000,38792.0000,39343.0000,38351.0000,38672.0000,38501.0000,38531.0000,38341.0000,38301.0000,38351.0000,38641.0000,38572.0000,38331.0000,38191.0000,37980.0000,38582.0000,38110.0000,37800.0000,38591.0000,38491.0000,38321.0000,38451.0000,38701.0000,38441.0000,38441.0000,38311.0000,38140.0000,38802.0000,38040.0000,38190.0000,38030.0000,38541.0000,38291.0000,38601.0000,37840.0000,38381.0000,38721.0000,38461.0000,38391.0000,38781.0000,38351.0000,38260.0000,38371.0000,38241.0000,38571.0000,38020.0000,38221.0000,38401.0000,37940.0000,38261.0000,38050.0000,43530.0000,38110.0000,37819.0000,38191.0000,38171.0000,37950.0000,38040.0000,38220.0000,37900.0000,38321.0000,38230.0000,37890.0000,43651.0000,37920.0000,38211.0000,37980.0000,38030.0000,38150.0000,38210.0000,37950.0000,38210.0000,38140.0000,37820.0000,38070.0000,43490.0000,38281.0000,38050.0000,38190.0000,38351.0000,38250.0000,37729.0000" +generating large command graphs for N nodes - 1,expanding tree topology,100,1,10116500,79326.7900,78151.3900,82938.2600,9420.4623,3031.7836,20427.9982,"benchmark,group:command-graph","76893.0000,77124.0000,162787.0000,113714.0000,92895.0000,87735.0000,83707.0000,80691.0000,79128.0000,79629.0000,79218.0000,77855.0000,77445.0000,83466.0000,77515.0000,77665.0000,77395.0000,77354.0000,77184.0000,77385.0000,78506.0000,77756.0000,77646.0000,77295.0000,77154.0000,77555.0000,83256.0000,77184.0000,76974.0000,77895.0000,77445.0000,77415.0000,77785.0000,77665.0000,77455.0000,77705.0000,77504.0000,77625.0000,77445.0000,77365.0000,77656.0000,77334.0000,77305.0000,77155.0000,76854.0000,76814.0000,82995.0000,77134.0000,77154.0000,77205.0000,77004.0000,77094.0000,77415.0000,77846.0000,77134.0000,77124.0000,77345.0000,76703.0000,77134.0000,77485.0000,77415.0000,77034.0000,77174.0000,77455.0000,77415.0000,77195.0000,82725.0000,77224.0000,77305.0000,77575.0000,77144.0000,77084.0000,77184.0000,78076.0000,77264.0000,77395.0000,77225.0000,76773.0000,77004.0000,76803.0000,77635.0000,77184.0000,77295.0000,77074.0000,77235.0000,76974.0000,85079.0000,77725.0000,77585.0000,76913.0000,77535.0000,77214.0000,77135.0000,77555.0000,77705.0000,77034.0000,77284.0000,76574.0000,77415.0000,82755.0000" +generating large command graphs for N nodes - 1,contracting tree topology,100,1,10459900,89289.6300,88250.1300,92337.3900,8282.1313,3287.8235,17762.1508,"benchmark,group:command-graph","87304.0000,86993.0000,161414.0000,118703.0000,104947.0000,97272.0000,92243.0000,92874.0000,89838.0000,88886.0000,88756.0000,88486.0000,87694.0000,88015.0000,87755.0000,87353.0000,88035.0000,87734.0000,87664.0000,87885.0000,87444.0000,87584.0000,93545.0000,87383.0000,87134.0000,87073.0000,87093.0000,87454.0000,93596.0000,87564.0000,87013.0000,86592.0000,87194.0000,87224.0000,87274.0000,87254.0000,87133.0000,87404.0000,87424.0000,86652.0000,87284.0000,87765.0000,87724.0000,87003.0000,87003.0000,87464.0000,86993.0000,93285.0000,87494.0000,86873.0000,87384.0000,87524.0000,87253.0000,92633.0000,87163.0000,87114.0000,87244.0000,86953.0000,87645.0000,87083.0000,87634.0000,86892.0000,87534.0000,87163.0000,87063.0000,87254.0000,93155.0000,86943.0000,87604.0000,87303.0000,89277.0000,86662.0000,91782.0000,86983.0000,86752.0000,87023.0000,88416.0000,86902.0000,87134.0000,87775.0000,86582.0000,87504.0000,87604.0000,88055.0000,86532.0000,94267.0000,87234.0000,87293.0000,86782.0000,86903.0000,87253.0000,93365.0000,87444.0000,87654.0000,87133.0000,87103.0000,86813.0000,87414.0000,87464.0000,87544.0000" +generating large command graphs for N nodes - 1,wave_sim topology,100,1,67343500,545825.4500,541257.9200,547763.8900,14138.7790,4533.4458,24927.1221,"benchmark,group:command-graph","548077.0000,552485.0000,538258.0000,452787.0000,450902.0000,545983.0000,547466.0000,545502.0000,549219.0000,551012.0000,550471.0000,550050.0000,551052.0000,550912.0000,549159.0000,549510.0000,548808.0000,549980.0000,550642.0000,550711.0000,554178.0000,551814.0000,549390.0000,548969.0000,545743.0000,545242.0000,543969.0000,545161.0000,547776.0000,543208.0000,542646.0000,543568.0000,543288.0000,543638.0000,548107.0000,542817.0000,542577.0000,545522.0000,549720.0000,549159.0000,551514.0000,550752.0000,552605.0000,552986.0000,550362.0000,550091.0000,550211.0000,550141.0000,548638.0000,550221.0000,551142.0000,549660.0000,549209.0000,548918.0000,551363.0000,543057.0000,548227.0000,549440.0000,548398.0000,545592.0000,543789.0000,545953.0000,547256.0000,544801.0000,544981.0000,543018.0000,543809.0000,545241.0000,542927.0000,551784.0000,548718.0000,575970.0000,550992.0000,550191.0000,549790.0000,547596.0000,551133.0000,549069.0000,548538.0000,550842.0000,551012.0000,549269.0000,550562.0000,551884.0000,549459.0000,548468.0000,541785.0000,542627.0000,545623.0000,543779.0000,542436.0000,541715.0000,543479.0000,544340.0000,547115.0000,542176.0000,542396.0000,541734.0000,540333.0000,543950.0000" +generating large command graphs for N nodes - 1,jacobi topology,100,1,17585600,135892.3500,134257.5300,141220.1300,13438.5553,4798.2647,29844.9959,"benchmark,group:command-graph","138581.0000,132780.0000,257647.0000,159641.0000,141727.0000,137008.0000,135865.0000,140835.0000,134232.0000,134323.0000,134663.0000,134393.0000,133261.0000,133591.0000,133611.0000,133151.0000,132580.0000,132720.0000,139442.0000,132770.0000,132940.0000,133191.0000,138610.0000,132669.0000,132539.0000,132409.0000,132489.0000,133121.0000,132509.0000,139613.0000,132759.0000,132680.0000,133170.0000,139373.0000,132780.0000,132990.0000,133040.0000,132749.0000,132699.0000,132890.0000,132870.0000,133261.0000,132289.0000,132779.0000,139172.0000,132449.0000,132298.0000,133421.0000,137889.0000,132399.0000,132189.0000,133331.0000,133341.0000,132519.0000,133251.0000,138140.0000,133150.0000,132670.0000,133451.0000,138120.0000,132189.0000,134513.0000,132389.0000,133050.0000,132800.0000,132108.0000,132870.0000,132659.0000,132129.0000,133291.0000,138010.0000,132530.0000,132690.0000,132559.0000,139693.0000,133180.0000,132679.0000,132129.0000,177585.0000,132719.0000,132239.0000,138461.0000,132069.0000,132519.0000,132179.0000,139032.0000,132579.0000,133310.0000,132710.0000,133501.0000,132740.0000,132419.0000,132580.0000,132469.0000,132238.0000,132940.0000,138881.0000,132419.0000,132639.0000,132509.0000" +generating large command graphs for N nodes - 4,soup topology,100,1,97519300,872609.6700,856437.5300,888122.3700,81116.5801,76981.0165,89269.6477,"benchmark,group:command-graph","772572.0000,772031.0000,1071649.0000,948997.0000,937545.0000,939429.0000,961020.0000,937174.0000,936424.0000,932756.0000,938727.0000,935300.0000,935431.0000,937274.0000,928297.0000,935681.0000,933096.0000,937846.0000,936243.0000,935281.0000,934279.0000,934109.0000,933998.0000,935441.0000,932856.0000,931774.0000,934630.0000,932575.0000,932856.0000,936813.0000,934950.0000,927997.0000,933427.0000,937024.0000,935401.0000,936604.0000,933738.0000,934539.0000,933518.0000,934429.0000,934450.0000,932256.0000,935270.0000,936343.0000,932966.0000,933317.0000,936142.0000,935090.0000,928158.0000,931804.0000,937095.0000,931584.0000,935862.0000,933157.0000,935290.0000,932285.0000,940100.0000,931694.0000,933307.0000,931303.0000,933647.0000,934038.0000,842375.0000,832406.0000,771931.0000,770658.0000,771420.0000,773845.0000,773444.0000,775899.0000,767222.0000,774376.0000,771941.0000,772973.0000,770118.0000,771000.0000,766361.0000,766731.0000,771150.0000,773654.0000,786709.0000,769196.0000,773834.0000,766581.0000,773865.0000,775178.0000,773044.0000,774536.0000,773504.0000,768234.0000,765489.0000,774386.0000,774356.0000,773604.0000,775218.0000,770358.0000,768014.0000,769577.0000,772291.0000,776600.0000" +generating large command graphs for N nodes - 4,chain topology,100,1,28105800,277198.4400,275037.8400,285589.4200,19109.3364,3618.1289,44493.4479,"benchmark,group:command-graph","271212.0000,271132.0000,461172.0000,309305.0000,281522.0000,276813.0000,281121.0000,273537.0000,273927.0000,281301.0000,272916.0000,273486.0000,282013.0000,273436.0000,273146.0000,279358.0000,272154.0000,273075.0000,279879.0000,272614.0000,272735.0000,279878.0000,273907.0000,273366.0000,279428.0000,273035.0000,272725.0000,279207.0000,272073.0000,271793.0000,278415.0000,272644.0000,273046.0000,278385.0000,272635.0000,273186.0000,280359.0000,272544.0000,272495.0000,278937.0000,271803.0000,273056.0000,279458.0000,272244.0000,273036.0000,278456.0000,271914.0000,272014.0000,279838.0000,273146.0000,271863.0000,278656.0000,272564.0000,273296.0000,278906.0000,272294.0000,273076.0000,278646.0000,271593.0000,272675.0000,277354.0000,271963.0000,272685.0000,278045.0000,271663.0000,270922.0000,278636.0000,273186.0000,272785.0000,279318.0000,273256.0000,274198.0000,279698.0000,273166.0000,272414.0000,280690.0000,273626.0000,273135.0000,283034.0000,273446.0000,273366.0000,282193.0000,272385.0000,272725.0000,279408.0000,273316.0000,271754.0000,278085.0000,272033.0000,271122.0000,278787.0000,271874.0000,271633.0000,277785.0000,272875.0000,271693.0000,278777.0000,272184.0000,271352.0000,280831.0000" +generating large command graphs for N nodes - 4,expanding tree topology,100,1,30734500,259530.6700,257456.1800,267300.5900,18356.5129,4180.4356,42694.2792,"benchmark,group:command-graph","261383.0000,254521.0000,436245.0000,285218.0000,274789.0000,268317.0000,259991.0000,265111.0000,257657.0000,256604.0000,264079.0000,255563.0000,256344.0000,264489.0000,254851.0000,255472.0000,262947.0000,255392.0000,256374.0000,263778.0000,256785.0000,256173.0000,255442.0000,255412.0000,254641.0000,255893.0000,256324.0000,254440.0000,256023.0000,256334.0000,262386.0000,255753.0000,255833.0000,262425.0000,255492.0000,255412.0000,262075.0000,256103.0000,253619.0000,263166.0000,255923.0000,255062.0000,262055.0000,254771.0000,254721.0000,264329.0000,256073.0000,255653.0000,262405.0000,256254.0000,255212.0000,262676.0000,255743.0000,254992.0000,254851.0000,255442.0000,255252.0000,254871.0000,254551.0000,254791.0000,255632.0000,254641.0000,261413.0000,254180.0000,254781.0000,261423.0000,254751.0000,255412.0000,261955.0000,254570.0000,256203.0000,262786.0000,256995.0000,255112.0000,260983.0000,254501.0000,254831.0000,261223.0000,255453.0000,255272.0000,260753.0000,254481.0000,255392.0000,261363.0000,255462.0000,255312.0000,260231.0000,255082.0000,254421.0000,255572.0000,256023.0000,254651.0000,254971.0000,254711.0000,255482.0000,255432.0000,254139.0000,261674.0000,255081.0000,256234.0000" +generating large command graphs for N nodes - 4,contracting tree topology,100,1,28158200,237788.4800,235990.6000,244424.4000,15651.7347,3956.8837,36067.1685,"benchmark,group:command-graph","233300.0000,240594.0000,386942.0000,265211.0000,252156.0000,240795.0000,238340.0000,236717.0000,236727.0000,235435.0000,233470.0000,241146.0000,234081.0000,235294.0000,241636.0000,234332.0000,233812.0000,240434.0000,234402.0000,234753.0000,233641.0000,239702.0000,233721.0000,234132.0000,238871.0000,234452.0000,233812.0000,239562.0000,234884.0000,234983.0000,234362.0000,241606.0000,233170.0000,233811.0000,241185.0000,233892.0000,233771.0000,240634.0000,234813.0000,233641.0000,233541.0000,242288.0000,234482.0000,233110.0000,244221.0000,233240.0000,233520.0000,233921.0000,234833.0000,233921.0000,233360.0000,240664.0000,233450.0000,233962.0000,240814.0000,234022.0000,232920.0000,233451.0000,234553.0000,234332.0000,233932.0000,240935.0000,233952.0000,233711.0000,240153.0000,235404.0000,233040.0000,233972.0000,234152.0000,233952.0000,233831.0000,245353.0000,234182.0000,234222.0000,239231.0000,233701.0000,232919.0000,232849.0000,235073.0000,233180.0000,233250.0000,240144.0000,233300.0000,233982.0000,240173.0000,233842.0000,233050.0000,233952.0000,234162.0000,235745.0000,235214.0000,241445.0000,235444.0000,233901.0000,240514.0000,234903.0000,234222.0000,234723.0000,237097.0000,235214.0000" +generating large command graphs for N nodes - 4,wave_sim topology,100,1,200628200,1773952.2000,1772149.3800,1779254.8300,14515.4444,5946.2295,31665.5055,"benchmark,group:command-graph","1765434.0000,1770103.0000,1903265.0000,1767538.0000,1773760.0000,1777657.0000,1781365.0000,1770463.0000,1772238.0000,1773148.0000,1764102.0000,1778830.0000,1774712.0000,1770664.0000,1767108.0000,1800671.0000,1770624.0000,1769091.0000,1773880.0000,1770484.0000,1769342.0000,1766446.0000,1776406.0000,1787686.0000,1779952.0000,1772358.0000,1777067.0000,1774652.0000,1764192.0000,1773269.0000,1779922.0000,1776094.0000,1763250.0000,1776295.0000,1774822.0000,1764322.0000,1770624.0000,1778519.0000,1779091.0000,1763320.0000,1768861.0000,1769983.0000,1767428.0000,1771817.0000,1772407.0000,1767598.0000,1763190.0000,1768681.0000,1773360.0000,1773320.0000,1768651.0000,1780032.0000,1771656.0000,1766236.0000,1767989.0000,1770013.0000,1773209.0000,1760706.0000,1770604.0000,1800611.0000,1772067.0000,1775784.0000,1773459.0000,1771566.0000,1766496.0000,1775724.0000,1770083.0000,1776275.0000,1763200.0000,1771977.0000,1774342.0000,1771436.0000,1772397.0000,1772117.0000,1770404.0000,1762117.0000,1772608.0000,1767518.0000,1772868.0000,1775684.0000,1772518.0000,1781094.0000,1768440.0000,1789901.0000,1773990.0000,1776385.0000,1778940.0000,1770995.0000,1775584.0000,1767358.0000,1773460.0000,1768570.0000,1774592.0000,1763521.0000,1772347.0000,1773820.0000,1772358.0000,1776726.0000,1773540.0000,1773841.0000" +generating large command graphs for N nodes - 4,jacobi topology,100,1,49795400,421893.1300,419910.5000,429988.7900,17969.3849,3243.3608,42239.2642,"benchmark,group:command-graph","416147.0000,422859.0000,597581.0000,429752.0000,420736.0000,423921.0000,417750.0000,423310.0000,416277.0000,422499.0000,417900.0000,417069.0000,424142.0000,417639.0000,423611.0000,416527.0000,423220.0000,417249.0000,419162.0000,424523.0000,415817.0000,425474.0000,416788.0000,424202.0000,416818.0000,425194.0000,417359.0000,415555.0000,423390.0000,420195.0000,422519.0000,417930.0000,421998.0000,417109.0000,417470.0000,422549.0000,418281.0000,423541.0000,416728.0000,424222.0000,418310.0000,424132.0000,417299.0000,419904.0000,425054.0000,417519.0000,423631.0000,417139.0000,424012.0000,417540.0000,418121.0000,424944.0000,419573.0000,423741.0000,416387.0000,422388.0000,418391.0000,423441.0000,416267.0000,417910.0000,423932.0000,417319.0000,424934.0000,417258.0000,423460.0000,416728.0000,416818.0000,422319.0000,417259.0000,422008.0000,415977.0000,421908.0000,416548.0000,423511.0000,416518.0000,416458.0000,423751.0000,416668.0000,423971.0000,416568.0000,422789.0000,417349.0000,417410.0000,417500.0000,416638.0000,422108.0000,415756.0000,423892.0000,417078.0000,422699.0000,416166.0000,418311.0000,424293.0000,418492.0000,423652.0000,416808.0000,424963.0000,417970.0000,418491.0000,422319.0000" +generating large command graphs for N nodes - 16,soup topology,100,1,146853500,1452880.9800,1450936.5500,1459383.4000,16323.3756,5442.6058,36628.4472,"benchmark,group:command-graph","1453132.0000,1452892.0000,1603136.0000,1456178.0000,1447773.0000,1451570.0000,1449235.0000,1448413.0000,1449085.0000,1443244.0000,1450427.0000,1456098.0000,1452752.0000,1453763.0000,1451770.0000,1454655.0000,1448213.0000,1449635.0000,1456198.0000,1454374.0000,1490864.0000,1444626.0000,1446379.0000,1456288.0000,1453844.0000,1453333.0000,1450838.0000,1453282.0000,1450737.0000,1452622.0000,1447572.0000,1449134.0000,1449566.0000,1448173.0000,1444275.0000,1446350.0000,1456920.0000,1456539.0000,1452401.0000,1451900.0000,1451249.0000,1451159.0000,1445007.0000,1449837.0000,1451530.0000,1445117.0000,1446730.0000,1447512.0000,1452602.0000,1452832.0000,1453353.0000,1460817.0000,1449224.0000,1447011.0000,1450598.0000,1445427.0000,1445267.0000,1448113.0000,1444856.0000,1444767.0000,1479402.0000,1453012.0000,1453173.0000,1454464.0000,1454655.0000,1452291.0000,1452181.0000,1451800.0000,1447182.0000,1449325.0000,1448453.0000,1444686.0000,1452852.0000,1453162.0000,1450948.0000,1449215.0000,1448373.0000,1453082.0000,1447672.0000,1454866.0000,1446921.0000,1444085.0000,1446009.0000,1448173.0000,1453844.0000,1452491.0000,1457370.0000,1451269.0000,1458132.0000,1454805.0000,1444436.0000,1445468.0000,1448072.0000,1445739.0000,1449355.0000,1447913.0000,1453914.0000,1454845.0000,1453784.0000,1459485.0000" +generating large command graphs for N nodes - 16,chain topology,100,1,109975100,877211.1400,875144.4800,885290.3400,18742.5092,3123.9667,44139.3933,"benchmark,group:command-graph","875087.0000,876970.0000,1060739.0000,873414.0000,875187.0000,878744.0000,877000.0000,880156.0000,874926.0000,875237.0000,875227.0000,875086.0000,875367.0000,874827.0000,876068.0000,880808.0000,868825.0000,871590.0000,873905.0000,875678.0000,877031.0000,877751.0000,876740.0000,874345.0000,883603.0000,878022.0000,876470.0000,876900.0000,876299.0000,870949.0000,871009.0000,876689.0000,876059.0000,878864.0000,875407.0000,874405.0000,874796.0000,876649.0000,875378.0000,875978.0000,875628.0000,878974.0000,867752.0000,866481.0000,875428.0000,873734.0000,874375.0000,873284.0000,872582.0000,871520.0000,881028.0000,872963.0000,875297.0000,873233.0000,876710.0000,868715.0000,868645.0000,875388.0000,888191.0000,881218.0000,875768.0000,875637.0000,876169.0000,876649.0000,877341.0000,877291.0000,877642.0000,880577.0000,875027.0000,869907.0000,877451.0000,874044.0000,875387.0000,875107.0000,874666.0000,874075.0000,879364.0000,875738.0000,874245.0000,875938.0000,875277.0000,874395.0000,869817.0000,870057.0000,875928.0000,879505.0000,876189.0000,876349.0000,877331.0000,875949.0000,875889.0000,876329.0000,876540.0000,880156.0000,876208.0000,869386.0000,867873.0000,872332.0000,873905.0000,874345.0000" +generating large command graphs for N nodes - 16,expanding tree topology,100,1,58254500,615401.4600,612873.8800,624953.3100,22134.4209,5662.0816,51171.2214,"benchmark,group:command-graph","606267.0000,614763.0000,827106.0000,639049.0000,632597.0000,623750.0000,618941.0000,611718.0000,615775.0000,620184.0000,608892.0000,619613.0000,613871.0000,606507.0000,608271.0000,615955.0000,612850.0000,608281.0000,616787.0000,616015.0000,607599.0000,613481.0000,614222.0000,607429.0000,608913.0000,616156.0000,614312.0000,607560.0000,615976.0000,612909.0000,607790.0000,613731.0000,619202.0000,606488.0000,607290.0000,618660.0000,612779.0000,606889.0000,620845.0000,618029.0000,606037.0000,613300.0000,615735.0000,607640.0000,608151.0000,614653.0000,612248.0000,604945.0000,613241.0000,612209.0000,605786.0000,613762.0000,620033.0000,604844.0000,613481.0000,612509.0000,612739.0000,605947.0000,623019.0000,618149.0000,607189.0000,617369.0000,620795.0000,606367.0000,610234.0000,616236.0000,616216.0000,605686.0000,614593.0000,613631.0000,605616.0000,620504.0000,616437.0000,612309.0000,608401.0000,614683.0000,612900.0000,606878.0000,613601.0000,614873.0000,606808.0000,612970.0000,613310.0000,607419.0000,607930.0000,613000.0000,615625.0000,611227.0000,611928.0000,612849.0000,605666.0000,613841.0000,612910.0000,608131.0000,613882.0000,637356.0000,615225.0000,607259.0000,614192.0000,618220.0000" +generating large command graphs for N nodes - 16,contracting tree topology,100,1,74535200,691209.5600,688569.4100,699525.9600,21530.2237,5492.3064,47784.6018,"benchmark,group:command-graph","685307.0000,693843.0000,884635.0000,713881.0000,705565.0000,694885.0000,685497.0000,691178.0000,693753.0000,690417.0000,683915.0000,684215.0000,690828.0000,688573.0000,686880.0000,683062.0000,686520.0000,688353.0000,688924.0000,681710.0000,690507.0000,695055.0000,691699.0000,684195.0000,690186.0000,690166.0000,689816.0000,681058.0000,684626.0000,687491.0000,689174.0000,688974.0000,685508.0000,692460.0000,691559.0000,687871.0000,686790.0000,770148.0000,690447.0000,692350.0000,682341.0000,686850.0000,688593.0000,690076.0000,689064.0000,683564.0000,689215.0000,687882.0000,688493.0000,685477.0000,689234.0000,687601.0000,689765.0000,685447.0000,684436.0000,688443.0000,689064.0000,690587.0000,682952.0000,687811.0000,690307.0000,689896.0000,681940.0000,687401.0000,689185.0000,689765.0000,686760.0000,687501.0000,689455.0000,688312.0000,684916.0000,681259.0000,687702.0000,692210.0000,681450.0000,685016.0000,686990.0000,687411.0000,688954.0000,682301.0000,690988.0000,689646.0000,688863.0000,685698.0000,689105.0000,688854.0000,690056.0000,683824.0000,687321.0000,689775.0000,689945.0000,690377.0000,684255.0000,689075.0000,694324.0000,688924.0000,681209.0000,689305.0000,692290.0000,689475.0000" +generating large command graphs for N nodes - 16,wave_sim topology,100,1,400360100,3747593.0500,3715756.5500,3798879.2700,202679.2945,136566.5158,269093.0085,"benchmark,group:command-graph","4481352.0000,4474980.0000,3817805.0000,3711583.0000,3669764.0000,3672098.0000,3672318.0000,3698789.0000,3674583.0000,3656699.0000,3698217.0000,3701204.0000,3717775.0000,3705902.0000,3709509.0000,3661788.0000,3687387.0000,3703668.0000,3670314.0000,3709299.0000,3709700.0000,3705863.0000,3705631.0000,3689471.0000,3671487.0000,3663281.0000,3713156.0000,3660817.0000,3711383.0000,3688479.0000,3692236.0000,3666518.0000,3693859.0000,3668621.0000,3718827.0000,3712735.0000,3691525.0000,3688971.0000,3708558.0000,3712986.0000,3673400.0000,3689672.0000,3674373.0000,3702446.0000,3710601.0000,3703498.0000,3676537.0000,3700632.0000,3708717.0000,3708006.0000,3699501.0000,3708357.0000,3692397.0000,3667139.0000,3704610.0000,3659314.0000,3697687.0000,3717093.0000,3672869.0000,3721021.0000,3659545.0000,3706183.0000,3655556.0000,3705953.0000,3697717.0000,3675545.0000,3696194.0000,3667940.0000,3701183.0000,3706643.0000,3686756.0000,3657781.0000,3691365.0000,3763772.0000,3697517.0000,3666197.0000,3662120.0000,3699941.0000,3654455.0000,3707005.0000,3695273.0000,3687157.0000,3700092.0000,3693890.0000,3665927.0000,3693679.0000,3706243.0000,3696154.0000,3702696.0000,3686626.0000,3712985.0000,3684772.0000,3655927.0000,3690463.0000,3656609.0000,4478486.0000,4487494.0000,4476073.0000,4476002.0000,4496381.0000" +generating large command graphs for N nodes - 16,jacobi topology,100,1,128150600,1207956.8200,1205499.0000,1217513.0100,21875.7023,4581.6326,51033.4255,"benchmark,group:command-graph","1208669.0000,1207176.0000,1419769.0000,1226753.0000,1208488.0000,1207356.0000,1200583.0000,1207748.0000,1210683.0000,1207106.0000,1210161.0000,1207156.0000,1203459.0000,1201215.0000,1214310.0000,1203168.0000,1206645.0000,1209310.0000,1205893.0000,1200023.0000,1213188.0000,1202247.0000,1208298.0000,1207386.0000,1204882.0000,1205643.0000,1203510.0000,1203459.0000,1205854.0000,1204881.0000,1206565.0000,1210412.0000,1200153.0000,1204842.0000,1209690.0000,1204360.0000,1203990.0000,1208659.0000,1203139.0000,1197308.0000,1211304.0000,1230781.0000,1201625.0000,1200855.0000,1203670.0000,1199071.0000,1204311.0000,1200343.0000,1200214.0000,1198159.0000,1200784.0000,1213238.0000,1204271.0000,1198960.0000,1203940.0000,1200724.0000,1201065.0000,1214680.0000,1207467.0000,1207327.0000,1213608.0000,1205693.0000,1204612.0000,1210483.0000,1202788.0000,1202688.0000,1203910.0000,1211895.0000,1207586.0000,1200974.0000,1204541.0000,1204802.0000,1205744.0000,1202757.0000,1210002.0000,1201144.0000,1203900.0000,1210082.0000,1204051.0000,1207947.0000,1209220.0000,1201415.0000,1203229.0000,1210913.0000,1202187.0000,1202948.0000,1205823.0000,1204952.0000,1204181.0000,1206134.0000,1206464.0000,1202647.0000,1200975.0000,1205333.0000,1208138.0000,1206525.0000,1201205.0000,1211835.0000,1204832.0000,1200593.0000" +generating large instruction graphs for N devices - 1,soup topology,100,1,285745800,2544024.7600,2496908.9100,2775663.6200,462630.0510,8206.3245,1103777.7324,"benchmark,group:instruction-graph","2487032.0000,2493625.0000,7145913.0000,2503713.0000,2499707.0000,2498594.0000,2501009.0000,2508092.0000,2508213.0000,2507301.0000,2503323.0000,2504816.0000,2502361.0000,2510907.0000,2496750.0000,2492622.0000,2491270.0000,2487162.0000,2570721.0000,2498714.0000,2502261.0000,2495248.0000,2496159.0000,2499355.0000,2489016.0000,2490850.0000,2495508.0000,2492082.0000,2490889.0000,2497051.0000,2495489.0000,2498073.0000,2500708.0000,2495768.0000,2506118.0000,2492403.0000,2498734.0000,2497843.0000,2503253.0000,2518262.0000,2490969.0000,2483385.0000,2485519.0000,2488385.0000,2492533.0000,2487804.0000,2484678.0000,2490208.0000,2487463.0000,2491040.0000,2481913.0000,2484017.0000,2500408.0000,2500217.0000,2498103.0000,2499075.0000,2500809.0000,2501099.0000,2500237.0000,2500988.0000,2501019.0000,2511248.0000,2507401.0000,2501429.0000,2522729.0000,2494306.0000,2489888.0000,2490638.0000,2494446.0000,2489997.0000,2501018.0000,2498754.0000,2492863.0000,2497893.0000,2493184.0000,2493464.0000,2494487.0000,2504115.0000,2498344.0000,2507301.0000,2494326.0000,2488414.0000,2498774.0000,2498254.0000,2491661.0000,2501730.0000,2484176.0000,2501439.0000,2493805.0000,2518722.0000,2495367.0000,2502211.0000,2480279.0000,2497732.0000,2493685.0000,2496941.0000,2494376.0000,2494747.0000,2480891.0000,2494657.0000" +generating large instruction graphs for N devices - 1,chain topology,100,1,57252100,508709.7000,507194.1600,513673.8600,12587.0382,4268.5413,28109.0216,"benchmark,group:instruction-graph","502981.0000,508552.0000,624001.0000,514854.0000,506809.0000,514574.0000,514623.0000,507670.0000,506278.0000,513101.0000,512570.0000,502009.0000,505075.0000,512900.0000,514804.0000,503803.0000,502210.0000,511668.0000,513501.0000,505517.0000,505386.0000,511268.0000,511057.0000,503132.0000,503001.0000,510626.0000,508211.0000,502370.0000,498764.0000,510355.0000,535403.0000,501999.0000,502751.0000,510766.0000,510787.0000,502280.0000,502811.0000,508903.0000,508702.0000,503573.0000,504214.0000,510686.0000,511968.0000,504003.0000,504314.0000,509263.0000,509384.0000,502872.0000,504364.0000,509714.0000,511347.0000,504394.0000,504273.0000,509564.0000,511959.0000,501188.0000,504183.0000,511348.0000,513792.0000,503182.0000,505206.0000,509864.0000,511688.0000,503483.0000,503783.0000,511027.0000,510265.0000,504745.0000,503733.0000,512118.0000,512039.0000,503522.0000,502731.0000,509043.0000,510907.0000,502611.0000,503773.0000,510014.0000,509564.0000,504764.0000,502180.0000,509925.0000,510927.0000,502902.0000,501639.0000,510135.0000,511538.0000,503493.0000,503973.0000,509153.0000,510475.0000,504143.0000,503923.0000,509524.0000,510696.0000,502911.0000,500557.0000,510225.0000,509804.0000,502310.0000" +generating large instruction graphs for N devices - 1,expanding tree topology,100,1,76643900,685580.7600,683570.7900,691187.8300,15651.8638,4625.9545,32361.0940,"benchmark,group:instruction-graph","687612.0000,687040.0000,816416.0000,698602.0000,692811.0000,684696.0000,686869.0000,684245.0000,689645.0000,685988.0000,686630.0000,686239.0000,686971.0000,688633.0000,685858.0000,688613.0000,686780.0000,685978.0000,687151.0000,683754.0000,679125.0000,679276.0000,680879.0000,678383.0000,677212.0000,677022.0000,683524.0000,684866.0000,684095.0000,685668.0000,685758.0000,686239.0000,687231.0000,682161.0000,686650.0000,689215.0000,686439.0000,682862.0000,687271.0000,685537.0000,683934.0000,683133.0000,678424.0000,676470.0000,677071.0000,678654.0000,675799.0000,677392.0000,675158.0000,680208.0000,684315.0000,685026.0000,757174.0000,686680.0000,685477.0000,684716.0000,685447.0000,686570.0000,684806.0000,683032.0000,686700.0000,685417.0000,683474.0000,682903.0000,678174.0000,680227.0000,679907.0000,679015.0000,676480.0000,677272.0000,676971.0000,677822.0000,685728.0000,680889.0000,684535.0000,683864.0000,687391.0000,684315.0000,683143.0000,683805.0000,686429.0000,683374.0000,683283.0000,691779.0000,688022.0000,686961.0000,686048.0000,686800.0000,679175.0000,679045.0000,677613.0000,676059.0000,676620.0000,677031.0000,678454.0000,679185.0000,689295.0000,685778.0000,684616.0000,685047.0000" +generating large instruction graphs for N devices - 1,contracting tree topology,100,1,82656600,803556.7500,800590.8600,811833.8800,22940.9227,9089.0266,47942.8918,"benchmark,group:instruction-graph","808410.0000,803331.0000,997399.0000,812929.0000,802539.0000,804032.0000,802870.0000,801697.0000,801337.0000,803020.0000,797881.0000,793562.0000,795475.0000,800245.0000,798822.0000,881790.0000,804153.0000,800846.0000,801517.0000,793522.0000,802289.0000,800365.0000,801067.0000,800074.0000,800626.0000,802790.0000,803181.0000,792631.0000,799043.0000,797569.0000,799373.0000,800125.0000,800545.0000,803261.0000,802569.0000,791208.0000,798852.0000,801046.0000,802439.0000,799062.0000,803020.0000,800305.0000,796968.0000,793382.0000,792961.0000,800606.0000,801317.0000,802008.0000,804784.0000,801357.0000,797049.0000,796047.0000,792140.0000,800104.0000,804353.0000,800786.0000,801076.0000,798582.0000,796958.0000,790436.0000,794033.0000,802920.0000,801678.0000,801477.0000,801537.0000,802319.0000,799974.0000,794484.0000,791538.0000,800055.0000,801427.0000,801137.0000,882140.0000,802018.0000,802930.0000,796789.0000,790487.0000,800996.0000,802579.0000,798070.0000,800355.0000,802329.0000,798121.0000,793312.0000,799954.0000,800776.0000,805896.0000,805935.0000,801057.0000,800375.0000,801167.0000,793141.0000,801377.0000,801286.0000,799413.0000,800516.0000,804152.0000,803752.0000,801487.0000,794955.0000" +generating large instruction graphs for N devices - 1,wave_sim topology,100,1,418233100,3789990.0000,3785334.8900,3802111.2600,35614.7262,16758.9934,73822.3271,"benchmark,group:instruction-graph","3786395.0000,3793708.0000,4087646.0000,3914468.0000,3805341.0000,3783640.0000,3783309.0000,3779422.0000,3788549.0000,3780214.0000,3763762.0000,3791204.0000,3781696.0000,3777508.0000,3783961.0000,3775684.0000,3795492.0000,3787697.0000,3780715.0000,3777308.0000,3772318.0000,3775654.0000,3780754.0000,3779181.0000,3779912.0000,3779843.0000,3784511.0000,3783890.0000,3769623.0000,3795612.0000,3800271.0000,3780343.0000,3781345.0000,3779802.0000,3764934.0000,3774433.0000,3761147.0000,3815490.0000,3779381.0000,3865135.0000,3792246.0000,3776617.0000,3770314.0000,3779773.0000,3770805.0000,3796013.0000,3778090.0000,3769293.0000,3780253.0000,3779843.0000,3768822.0000,3772388.0000,3783690.0000,3805371.0000,3765886.0000,3807866.0000,3771978.0000,3771467.0000,3771466.0000,3781947.0000,3789501.0000,3780714.0000,3768861.0000,3777909.0000,3768762.0000,3773971.0000,3785142.0000,3773320.0000,3798808.0000,3792516.0000,3796133.0000,3783370.0000,3792045.0000,3806643.0000,3789350.0000,3767349.0000,3786284.0000,3784341.0000,3786946.0000,3797887.0000,3776126.0000,3802736.0000,3799409.0000,3777098.0000,3791594.0000,3805952.0000,3788609.0000,3787236.0000,3791214.0000,3780954.0000,3793889.0000,3792777.0000,3791796.0000,3798447.0000,3787757.0000,3827763.0000,3816051.0000,3787036.0000,3793469.0000,3793809.0000" +generating large instruction graphs for N devices - 1,jacobi topology,100,1,93568400,823872.6700,822372.4000,829392.5100,13227.2353,3211.8993,30701.3467,"benchmark,group:instruction-graph","821816.0000,822487.0000,951171.0000,829090.0000,827697.0000,823128.0000,825052.0000,827316.0000,823589.0000,817487.0000,827637.0000,825613.0000,822437.0000,821656.0000,826474.0000,824662.0000,821325.0000,820633.0000,826926.0000,823328.0000,817367.0000,824190.0000,822207.0000,823649.0000,818520.0000,821375.0000,825082.0000,822497.0000,822958.0000,820163.0000,827426.0000,817237.0000,825162.0000,825513.0000,824561.0000,815644.0000,823760.0000,821635.0000,821806.0000,823549.0000,821876.0000,824301.0000,814201.0000,824902.0000,824952.0000,823900.0000,815935.0000,821334.0000,824040.0000,818780.0000,814472.0000,823709.0000,823699.0000,823027.0000,823259.0000,823158.0000,825372.0000,815644.0000,822046.0000,823980.0000,822286.0000,817247.0000,822357.0000,823609.0000,822588.0000,824180.0000,825042.0000,824421.0000,817397.0000,825242.0000,824361.0000,824271.0000,819992.0000,827196.0000,823389.0000,822367.0000,826995.0000,823388.0000,823028.0000,815023.0000,821906.0000,824020.0000,823970.0000,814973.0000,822767.0000,821776.0000,822737.0000,825182.0000,823709.0000,826886.0000,815424.0000,821245.0000,820243.0000,822867.0000,814883.0000,828569.0000,827096.0000,822677.0000,820484.0000,825062.0000" +generating large instruction graphs for N devices - 4,soup topology,100,1,285300200,2578054.0700,2532824.4400,2801439.2600,444592.8493,8044.9912,1060622.6795,"benchmark,group:instruction-graph","2528601.0000,2531547.0000,7000748.0000,2545312.0000,2584908.0000,2528250.0000,2529252.0000,2528471.0000,2532018.0000,2543068.0000,2542217.0000,2539832.0000,2540594.0000,2541645.0000,2543108.0000,2538760.0000,2525816.0000,2522119.0000,2528711.0000,2516237.0000,2519443.0000,2552486.0000,2526607.0000,2526728.0000,2524784.0000,2540944.0000,2530655.0000,2534953.0000,2537748.0000,2537798.0000,2527529.0000,2528962.0000,2532658.0000,2532238.0000,2529032.0000,2521898.0000,2524844.0000,2540433.0000,2537568.0000,2542898.0000,2554129.0000,2539120.0000,2535383.0000,2531958.0000,2526156.0000,2521477.0000,2526998.0000,2523531.0000,2516518.0000,2538539.0000,2542317.0000,2546024.0000,2533520.0000,2526808.0000,2535604.0000,2540894.0000,2544221.0000,2534321.0000,2529753.0000,2524433.0000,2526808.0000,2532879.0000,2523852.0000,2537467.0000,2533721.0000,2541034.0000,2536897.0000,2531827.0000,2537417.0000,2528220.0000,2558938.0000,2530715.0000,2532428.0000,2521868.0000,2532558.0000,2525285.0000,2525795.0000,2523561.0000,2530504.0000,2535214.0000,2532408.0000,2528571.0000,2532628.0000,2526937.0000,2534602.0000,2536015.0000,2525375.0000,2530194.0000,2531386.0000,2531256.0000,2531116.0000,2521477.0000,2529923.0000,2534822.0000,2533651.0000,2539682.0000,2534793.0000,2534732.0000,2537017.0000,2538710.0000" +generating large instruction graphs for N devices - 4,chain topology,100,1,55563600,453918.7600,452410.6600,458755.7000,12431.8588,4607.3875,27697.3788,"benchmark,group:instruction-graph","461704.0000,448858.0000,567414.0000,472734.0000,456083.0000,450922.0000,456604.0000,450753.0000,451804.0000,457575.0000,449400.0000,450362.0000,455151.0000,447907.0000,449410.0000,459740.0000,450892.0000,450883.0000,457395.0000,448959.0000,449400.0000,456814.0000,449570.0000,449420.0000,457135.0000,449720.0000,448187.0000,459600.0000,450402.0000,450171.0000,458688.0000,449540.0000,455731.0000,456143.0000,448128.0000,457114.0000,454490.0000,449109.0000,457075.0000,460611.0000,449400.0000,456293.0000,455592.0000,448959.0000,457746.0000,448838.0000,449640.0000,456003.0000,447987.0000,448579.0000,454479.0000,449470.0000,450642.0000,455281.0000,448909.0000,448859.0000,457255.0000,448829.0000,448939.0000,456032.0000,446415.0000,448408.0000,456613.0000,447757.0000,451504.0000,457816.0000,448769.0000,458407.0000,457755.0000,448919.0000,454860.0000,454319.0000,448077.0000,455571.0000,454690.0000,447736.0000,459089.0000,447426.0000,449680.0000,472694.0000,449219.0000,447567.0000,457094.0000,448939.0000,448188.0000,455131.0000,447988.0000,447437.0000,459059.0000,448428.0000,450232.0000,456733.0000,447306.0000,447987.0000,455452.0000,448047.0000,450181.0000,456694.0000,448327.0000,456032.0000" +generating large instruction graphs for N devices - 4,expanding tree topology,100,1,72018300,686588.4500,684666.3300,693298.6300,16317.9115,5210.1533,36917.1113,"benchmark,group:instruction-graph","689004.0000,680208.0000,838488.0000,708251.0000,694214.0000,691629.0000,689555.0000,690597.0000,690617.0000,680458.0000,681860.0000,678144.0000,680297.0000,683844.0000,680488.0000,680869.0000,687792.0000,687691.0000,686640.0000,689605.0000,689756.0000,687782.0000,689996.0000,689866.0000,687932.0000,687882.0000,687922.0000,688613.0000,689695.0000,687531.0000,686920.0000,679426.0000,677412.0000,680528.0000,676220.0000,676350.0000,675930.0000,679747.0000,678685.0000,685628.0000,683935.0000,688463.0000,686098.0000,686128.0000,684135.0000,688723.0000,683613.0000,685878.0000,685758.0000,682672.0000,683834.0000,690106.0000,689545.0000,715935.0000,679436.0000,679586.0000,677392.0000,680428.0000,677011.0000,682191.0000,680308.0000,679155.0000,688142.0000,689695.0000,686810.0000,689365.0000,688193.0000,690637.0000,687030.0000,687391.0000,687631.0000,688303.0000,683654.0000,684706.0000,689194.0000,685217.0000,682992.0000,678845.0000,680598.0000,678284.0000,680057.0000,676901.0000,677532.0000,680127.0000,679907.0000,683544.0000,686118.0000,685808.0000,686088.0000,683113.0000,682382.0000,685767.0000,685768.0000,684596.0000,682070.0000,684726.0000,685928.0000,683694.0000,686319.0000,687311.0000" +generating large instruction graphs for N devices - 4,contracting tree topology,100,1,91797800,810219.1800,808318.6500,816395.1400,15689.5601,5456.0723,34966.5610,"benchmark,group:instruction-graph","807088.0000,808280.0000,953535.0000,829480.0000,802449.0000,815393.0000,814412.0000,816696.0000,810344.0000,808992.0000,809954.0000,801958.0000,808911.0000,811656.0000,811136.0000,810004.0000,810604.0000,809733.0000,798612.0000,801848.0000,808951.0000,810424.0000,809021.0000,810334.0000,810274.0000,806898.0000,800224.0000,806808.0000,807429.0000,807318.0000,807369.0000,808040.0000,808230.0000,801838.0000,800214.0000,809393.0000,809703.0000,808130.0000,810765.0000,809493.0000,808781.0000,799434.0000,806497.0000,835211.0000,813120.0000,809492.0000,811446.0000,807529.0000,799643.0000,800596.0000,811035.0000,805905.0000,810865.0000,806216.0000,811065.0000,812358.0000,804603.0000,807027.0000,808791.0000,806116.0000,811877.0000,810064.0000,810244.0000,809712.0000,845871.0000,810395.0000,810554.0000,811816.0000,811476.0000,810294.0000,808320.0000,800846.0000,806898.0000,806958.0000,807118.0000,809262.0000,811627.0000,809753.0000,802349.0000,802940.0000,808621.0000,807499.0000,806777.0000,807399.0000,805365.0000,807989.0000,801667.0000,800996.0000,809532.0000,811636.0000,805595.0000,808741.0000,808801.0000,809412.0000,803401.0000,808140.0000,805805.0000,811847.0000,810003.0000,806647.0000" +generating large instruction graphs for N devices - 4,wave_sim topology,100,1,1407573200,13301676.8400,13253690.5400,13324362.1500,160270.5629,63317.0713,328726.4745,"benchmark,group:instruction-graph","13303133.0000,13301069.0000,14055579.0000,13393113.0000,13322550.0000,13321418.0000,13291732.0000,13278967.0000,13305518.0000,13326527.0000,13332508.0000,13298014.0000,13302081.0000,13364480.0000,13294737.0000,13300618.0000,13304365.0000,13325857.0000,13282735.0000,13295699.0000,13296301.0000,13280060.0000,13299506.0000,13322650.0000,13339933.0000,13295038.0000,13315737.0000,13300097.0000,13275340.0000,13310948.0000,13271062.0000,13268037.0000,13274960.0000,13285950.0000,13327049.0000,13278446.0000,13318252.0000,13308834.0000,13286312.0000,13305197.0000,13275471.0000,13289257.0000,13295969.0000,13712098.0000,13305658.0000,13300328.0000,13283867.0000,13279068.0000,13311038.0000,13328972.0000,13300058.0000,13292122.0000,13280561.0000,13305177.0000,13288686.0000,13315406.0000,13333341.0000,13287313.0000,13316439.0000,13282905.0000,13285910.0000,13303164.0000,13321949.0000,13290810.0000,13429794.0000,13298865.0000,13290930.0000,13295148.0000,13259881.0000,13309595.0000,13315677.0000,13291020.0000,13294327.0000,13282875.0000,13273146.0000,13350974.0000,13264470.0000,11973413.0000,13291281.0000,13283766.0000,13282754.0000,13351064.0000,13338641.0000,13350422.0000,13294116.0000,13334182.0000,13308033.0000,13282755.0000,13279208.0000,13290690.0000,13320806.0000,13298234.0000,13287483.0000,13328963.0000,13271984.0000,13332018.0000,13294688.0000,13276673.0000,13308393.0000,13285439.0000" +generating large instruction graphs for N devices - 4,jacobi topology,100,1,442186600,3935165.4500,3916669.1700,4023176.0500,176043.8592,13068.3747,419027.7019,"benchmark,group:instruction-graph","3905822.0000,3913616.0000,5680676.0000,3978349.0000,3911572.0000,3926190.0000,3939344.0000,3991774.0000,3918856.0000,3918235.0000,3918726.0000,3912303.0000,3920429.0000,3907534.0000,3912173.0000,3911902.0000,3915139.0000,3913596.0000,3916371.0000,3912654.0000,3916983.0000,3983709.0000,3907805.0000,3918024.0000,3912864.0000,3912645.0000,3909108.0000,3914447.0000,3917673.0000,3940907.0000,3913837.0000,3914087.0000,3919357.0000,3923335.0000,3965625.0000,3911101.0000,3918436.0000,3909037.0000,3910640.0000,3913616.0000,3911782.0000,3903186.0000,3926421.0000,3923936.0000,3926691.0000,3917885.0000,3900712.0000,3914277.0000,3919267.0000,3907474.0000,3918966.0000,3907945.0000,3911713.0000,3913095.0000,3918034.0000,3910379.0000,3904268.0000,3912243.0000,3920209.0000,3915820.0000,3913135.0000,3914598.0000,3913686.0000,3916582.0000,3915048.0000,3904889.0000,3916341.0000,3912724.0000,3915439.0000,3909098.0000,3912754.0000,3916983.0000,3913346.0000,3911773.0000,3941118.0000,3909528.0000,3912544.0000,3909979.0000,3917593.0000,3912353.0000,3910510.0000,3911602.0000,3918175.0000,3912734.0000,3912574.0000,3908937.0000,3911703.0000,3910971.0000,3911232.0000,3910600.0000,3914037.0000,3909028.0000,3917083.0000,3906632.0000,3930448.0000,3918926.0000,3923916.0000,3932962.0000,3908847.0000,3903317.0000" +generating large instruction graphs for N devices - 16,soup topology,100,1,300225800,2735709.1000,2694143.1400,2940133.8200,408366.5514,7395.6724,973950.5417,"benchmark,group:instruction-graph","2693433.0000,2688925.0000,6797873.0000,2709574.0000,2754639.0000,2693524.0000,2691239.0000,2703101.0000,2694776.0000,2704684.0000,2694496.0000,2697892.0000,2707930.0000,2699946.0000,2691820.0000,2678996.0000,2692041.0000,2685057.0000,2695798.0000,2685819.0000,2695858.0000,2690077.0000,2693954.0000,2688634.0000,2693834.0000,2692451.0000,2692481.0000,2687833.0000,2692392.0000,2687582.0000,2703121.0000,2691950.0000,2688404.0000,2699695.0000,2699635.0000,2694725.0000,2692561.0000,2699214.0000,2692401.0000,2697340.0000,2692011.0000,2687943.0000,2699926.0000,2694966.0000,2699285.0000,2689686.0000,2688484.0000,2713802.0000,2696930.0000,2687262.0000,2696188.0000,2691149.0000,2696790.0000,2678395.0000,2691790.0000,2695016.0000,2691350.0000,2680289.0000,2681361.0000,2689927.0000,2706788.0000,2700145.0000,2692562.0000,2695757.0000,2699525.0000,2689626.0000,2688594.0000,2686810.0000,2699976.0000,2700386.0000,2696750.0000,2690377.0000,2693774.0000,2700267.0000,2704324.0000,2691550.0000,2707079.0000,2703182.0000,2696509.0000,2686059.0000,2692271.0000,2695397.0000,2701118.0000,2684246.0000,2699996.0000,2688945.0000,2698603.0000,2687913.0000,2688364.0000,2694224.0000,2696609.0000,2687842.0000,2683525.0000,2694836.0000,2719523.0000,2693583.0000,2686921.0000,2688875.0000,2691330.0000,2688494.0000" +generating large instruction graphs for N devices - 16,chain topology,100,1,58549300,523251.2900,521676.5200,528369.0200,13104.8057,4591.4703,29390.6883,"benchmark,group:instruction-graph","526396.0000,525484.0000,643648.0000,539661.0000,523330.0000,518982.0000,525714.0000,525995.0000,515876.0000,515976.0000,524743.0000,525734.0000,522980.0000,515736.0000,517248.0000,523711.0000,524863.0000,517489.0000,518521.0000,523289.0000,524793.0000,517298.0000,518050.0000,525504.0000,528921.0000,518461.0000,519834.0000,516928.0000,525053.0000,524632.0000,517038.0000,517640.0000,524993.0000,525574.0000,516376.0000,518290.0000,525163.0000,526085.0000,518491.0000,522348.0000,520445.0000,526506.0000,525865.0000,517869.0000,517438.0000,523701.0000,523941.0000,516878.0000,516938.0000,524482.0000,550751.0000,517660.0000,517779.0000,525353.0000,525634.0000,525544.0000,518090.0000,518121.0000,526386.0000,524532.0000,520635.0000,519483.0000,524503.0000,525685.0000,517950.0000,516547.0000,523761.0000,522308.0000,519072.0000,518871.0000,523511.0000,524823.0000,523871.0000,517750.0000,519343.0000,525173.0000,525203.0000,518932.0000,517369.0000,525263.0000,526115.0000,517689.0000,518290.0000,523280.0000,525814.0000,516297.0000,515936.0000,524361.0000,524683.0000,522258.0000,517689.0000,518300.0000,526355.0000,524241.0000,517168.0000,517489.0000,527939.0000,525464.0000,516717.0000,518230.0000" +generating large instruction graphs for N devices - 16,expanding tree topology,100,1,77897600,697789.9100,695834.7800,704646.5100,16672.4630,4873.2608,37946.1228,"benchmark,group:instruction-graph","700005.0000,697330.0000,854428.0000,723509.0000,700907.0000,693743.0000,692520.0000,693081.0000,699253.0000,698021.0000,700896.0000,700646.0000,696869.0000,698051.0000,699604.0000,699874.0000,697070.0000,698382.0000,699123.0000,697089.0000,696558.0000,690206.0000,690697.0000,688483.0000,687621.0000,689645.0000,694364.0000,696618.0000,699163.0000,696508.0000,697310.0000,703011.0000,700696.0000,696688.0000,697269.0000,699754.0000,698051.0000,695706.0000,695817.0000,691920.0000,692741.0000,689254.0000,687672.0000,692410.0000,700716.0000,695516.0000,698502.0000,697720.0000,695917.0000,699454.0000,697099.0000,701057.0000,697831.0000,696688.0000,698682.0000,697581.0000,697400.0000,688724.0000,691479.0000,690617.0000,690637.0000,692561.0000,696859.0000,699193.0000,697721.0000,692380.0000,700906.0000,698672.0000,701729.0000,698673.0000,697370.0000,722778.0000,701467.0000,698151.0000,690217.0000,691098.0000,690176.0000,688824.0000,687091.0000,690166.0000,697961.0000,694264.0000,695306.0000,696098.0000,696508.0000,700076.0000,699364.0000,696869.0000,697039.0000,694695.0000,697099.0000,697931.0000,693692.0000,691098.0000,690667.0000,686409.0000,690026.0000,691018.0000,695777.0000,696879.0000" +generating large instruction graphs for N devices - 16,contracting tree topology,100,1,94267400,838623.1700,836648.8200,846058.8700,17309.9285,4176.3189,40084.1155,"benchmark,group:instruction-graph","838858.0000,837195.0000,1004482.0000,856251.0000,845811.0000,828839.0000,841643.0000,840502.0000,837786.0000,838738.0000,841363.0000,831884.0000,836524.0000,837806.0000,840551.0000,836924.0000,838337.0000,831714.0000,838477.0000,841713.0000,839018.0000,839570.0000,839970.0000,832035.0000,836123.0000,836775.0000,837947.0000,837355.0000,835151.0000,834299.0000,839590.0000,839209.0000,840982.0000,837526.0000,836704.0000,830371.0000,829069.0000,836734.0000,836433.0000,835121.0000,836814.0000,836313.0000,830262.0000,840651.0000,837626.0000,835101.0000,837586.0000,836223.0000,832716.0000,838046.0000,840021.0000,862964.0000,839981.0000,835742.0000,830863.0000,838678.0000,837456.0000,835602.0000,835261.0000,836203.0000,830642.0000,835432.0000,837074.0000,834570.0000,837125.0000,838467.0000,835221.0000,830923.0000,842244.0000,835511.0000,835332.0000,837135.0000,836223.0000,832435.0000,836454.0000,836965.0000,836213.0000,837786.0000,837776.0000,834129.0000,839789.0000,835211.0000,839129.0000,835922.0000,835391.0000,829801.0000,838527.0000,834269.0000,839570.0000,836423.0000,837896.0000,829881.0000,830121.0000,836023.0000,835411.0000,833568.0000,840000.0000,838568.0000,827387.0000,842284.0000" +generating large instruction graphs for N devices - 16,wave_sim topology,100,1,5321993000,50642640.1900,49989632.9600,51259170.6600,3221775.0941,3054439.2601,3347877.7974,"benchmark,group:instruction-graph","53266311.0000,53597569.0000,53222197.0000,53626453.0000,53012029.0000,53714440.0000,50247970.0000,46242708.0000,46891958.0000,46907087.0000,46225325.0000,47017787.0000,46969635.0000,46212732.0000,46948646.0000,46907297.0000,46222820.0000,46916104.0000,46913148.0000,46156174.0000,46971218.0000,46955499.0000,47793357.0000,53643335.0000,53637264.0000,53227958.0000,53810583.0000,53663223.0000,52960891.0000,53663343.0000,53658905.0000,53164969.0000,53702146.0000,53670657.0000,53051994.0000,47013218.0000,51932142.0000,52999275.0000,53779394.0000,53733666.0000,53070711.0000,53662211.0000,53618548.0000,53369917.0000,53635160.0000,52488396.0000,52918601.0000,53589513.0000,50722228.0000,46241485.0000,46905544.0000,46874025.0000,46204405.0000,46950600.0000,52484368.0000,53001760.0000,53643145.0000,53678653.0000,48762454.0000,46963454.0000,49450538.0000,52990327.0000,53910211.0000,53680606.0000,51488471.0000,46930011.0000,46969606.0000,46223952.0000,47124459.0000,46923268.0000,46228862.0000,46898551.0000,46860188.0000,46195899.0000,47015022.0000,46938708.0000,46278576.0000,46960549.0000,46927747.0000,46334392.0000,46906346.0000,53790324.0000,53207580.0000,53607348.0000,53713909.0000,53112319.0000,53625171.0000,53609090.0000,52990558.0000,53669655.0000,53668062.0000,53078755.0000,53662462.0000,53612426.0000,52988344.0000,53687058.0000,53601115.0000,53057204.0000,53690695.0000,53619050.0000" +generating large instruction graphs for N devices - 16,jacobi topology,100,1,5033139900,50361740.3000,49907387.5900,50707466.2300,2001277.5410,1608093.6728,2369022.9375,"benchmark,group:instruction-graph","51160329.0000,51242355.0000,46817057.0000,45120952.0000,45592595.0000,48261304.0000,51287540.0000,51413650.0000,51249257.0000,51218319.0000,51218810.0000,51302178.0000,51180397.0000,51203461.0000,51231905.0000,51367922.0000,51194263.0000,51267151.0000,51178423.0000,51254949.0000,51162513.0000,51298140.0000,51166952.0000,51316324.0000,51241623.0000,51405734.0000,51175828.0000,51330061.0000,51119853.0000,51374595.0000,51217577.0000,51340420.0000,51097360.0000,51233127.0000,51259668.0000,51258645.0000,51256391.0000,51248065.0000,51191498.0000,51221735.0000,51156922.0000,51266731.0000,51380436.0000,51291307.0000,51488752.0000,51310915.0000,51214181.0000,51186469.0000,51199242.0000,51252995.0000,51119913.0000,51221756.0000,51196467.0000,51324219.0000,51168765.0000,51337865.0000,51067874.0000,51288713.0000,51218509.0000,51415432.0000,51102630.0000,51271981.0000,51236733.0000,51411064.0000,51315413.0000,51271419.0000,51198341.0000,51299803.0000,47985471.0000,50821527.0000,51194013.0000,51321555.0000,51213049.0000,48236738.0000,45491744.0000,45531390.0000,45539495.0000,45514748.0000,45578048.0000,45567048.0000,45200543.0000,45586834.0000,45326942.0000,45752088.0000,45683277.0000,51327266.0000,51218490.0000,51310193.0000,51228999.0000,51290777.0000,51115844.0000,51216476.0000,51158325.0000,51397087.0000,51272501.0000,51202569.0000,51211736.0000,51322446.0000,51189574.0000,51273464.0000" +generating large instruction graphs for N devices without d2d copy support - 1,soup topology,100,1,254215500,2363035.2200,2315170.0200,2534136.0800,411630.5129,124042.3731,949855.7996,"benchmark,group:instruction-graph","2496480.0000,2488976.0000,6265875.0000,2243791.0000,2247668.0000,2236868.0000,2237720.0000,2225226.0000,2235214.0000,2231037.0000,2240225.0000,2244522.0000,2221108.0000,2231487.0000,2222391.0000,2233221.0000,2228422.0000,2229214.0000,2220947.0000,2233211.0000,2228512.0000,2223753.0000,2229714.0000,2239303.0000,2222250.0000,2235957.0000,2233652.0000,2234323.0000,2225286.0000,2233301.0000,2223242.0000,2228482.0000,2220267.0000,2230696.0000,2224113.0000,2229304.0000,2227881.0000,2224325.0000,2228502.0000,2232369.0000,2233141.0000,2237840.0000,2224334.0000,2306169.0000,2226408.0000,2239333.0000,2229413.0000,2241426.0000,2224574.0000,2229053.0000,2224495.0000,2233672.0000,2233221.0000,2235946.0000,2231477.0000,2229584.0000,2227409.0000,2228732.0000,2231949.0000,2240715.0000,2233732.0000,2268699.0000,2238561.0000,2242409.0000,2243299.0000,2234934.0000,2238281.0000,2236376.0000,2384448.0000,2499475.0000,2498363.0000,2499185.0000,2496600.0000,2498133.0000,2489387.0000,2501730.0000,2507922.0000,2512961.0000,2502041.0000,2497772.0000,2492553.0000,2491761.0000,2490569.0000,2497021.0000,2500798.0000,2491491.0000,2495088.0000,2492021.0000,2499826.0000,2498804.0000,2498423.0000,2508323.0000,2504144.0000,2526527.0000,2497883.0000,2499657.0000,2498954.0000,2497212.0000,2496860.0000,2503573.0000" +generating large instruction graphs for N devices without d2d copy support - 1,chain topology,100,1,57319500,509396.4100,507919.2400,514070.0900,12163.5125,4032.4208,26981.1897,"benchmark,group:instruction-graph","503151.0000,510526.0000,620273.0000,512961.0000,508892.0000,512840.0000,506618.0000,506448.0000,512409.0000,512700.0000,512299.0000,503162.0000,505045.0000,513090.0000,511528.0000,504113.0000,503151.0000,511378.0000,510495.0000,503974.0000,505596.0000,511678.0000,510806.0000,507701.0000,505857.0000,515665.0000,512069.0000,505476.0000,504013.0000,512329.0000,513372.0000,504475.0000,504634.0000,512449.0000,512680.0000,503712.0000,505636.0000,510626.0000,511217.0000,504945.0000,503081.0000,511918.0000,510425.0000,504605.0000,504535.0000,511337.0000,510285.0000,503242.0000,501809.0000,510135.0000,510816.0000,503333.0000,503673.0000,510025.0000,509313.0000,503833.0000,504735.0000,537937.0000,512569.0000,503532.0000,502841.0000,512218.0000,511187.0000,504083.0000,503642.0000,508802.0000,510796.0000,503662.0000,504123.0000,510436.0000,511227.0000,505185.0000,504454.0000,510205.0000,509514.0000,503342.0000,505266.0000,511829.0000,513051.0000,501779.0000,504825.0000,514553.0000,512921.0000,501860.0000,504995.0000,511728.0000,512419.0000,503883.0000,506327.0000,514393.0000,512008.0000,504134.0000,505076.0000,511437.0000,511468.0000,504014.0000,503232.0000,509845.0000,509033.0000,502721.0000" +generating large instruction graphs for N devices without d2d copy support - 1,expanding tree topology,100,1,69696700,637667.0800,631282.4200,644814.8100,34588.5147,31707.9577,39262.6627,"benchmark,group:instruction-graph","677773.0000,681620.0000,742776.0000,632998.0000,624181.0000,617790.0000,617349.0000,616717.0000,607449.0000,611086.0000,610956.0000,606668.0000,608422.0000,610084.0000,614824.0000,616387.0000,618069.0000,619532.0000,617348.0000,614833.0000,616887.0000,616226.0000,606117.0000,607840.0000,609082.0000,607079.0000,606116.0000,606337.0000,612168.0000,615284.0000,619071.0000,615064.0000,615405.0000,614733.0000,618590.0000,612970.0000,607208.0000,609203.0000,609263.0000,607650.0000,609453.0000,612980.0000,615204.0000,616907.0000,618320.0000,616317.0000,615514.0000,615966.0000,614202.0000,616266.0000,609644.0000,609273.0000,608592.0000,611006.0000,611728.0000,619712.0000,619642.0000,619352.0000,619131.0000,619483.0000,621606.0000,617940.0000,619803.0000,616116.0000,608972.0000,608902.0000,609844.0000,607419.0000,613330.0000,615905.0000,677562.0000,685307.0000,682832.0000,682051.0000,679286.0000,677793.0000,680899.0000,682612.0000,682652.0000,681199.0000,685828.0000,686459.0000,686950.0000,684936.0000,687983.0000,684535.0000,689615.0000,688303.0000,689175.0000,687701.0000,690227.0000,688503.0000,688212.0000,686580.0000,687411.0000,683253.0000,681670.0000,677993.0000,679726.0000,681771.0000" +generating large instruction graphs for N devices without d2d copy support - 1,contracting tree topology,100,1,90717000,802044.8100,799775.5100,810357.3500,19755.5635,5119.6333,45481.8041,"benchmark,group:instruction-graph","827737.0000,805976.0000,990285.0000,817939.0000,804242.0000,802550.0000,796819.0000,798241.0000,801818.0000,800756.0000,804422.0000,825983.0000,801768.0000,800736.0000,794615.0000,794604.0000,799824.0000,801848.0000,802549.0000,802359.0000,799323.0000,801377.0000,793352.0000,793301.0000,799443.0000,800696.0000,801627.0000,802359.0000,801477.0000,802128.0000,796037.0000,794654.0000,803261.0000,801979.0000,799734.0000,801457.0000,803852.0000,802039.0000,795226.0000,793842.0000,802859.0000,801647.0000,799925.0000,799563.0000,800906.0000,799543.0000,793752.0000,794224.0000,801337.0000,799854.0000,803872.0000,801728.0000,797119.0000,800977.0000,794183.0000,791659.0000,802689.0000,800936.0000,801537.0000,800826.0000,817858.0000,800826.0000,793733.0000,793472.0000,798020.0000,799935.0000,799093.0000,797991.0000,799744.0000,800174.0000,802890.0000,794244.0000,798321.0000,801247.0000,799413.0000,799493.0000,799193.0000,800205.0000,799123.0000,793923.0000,793291.0000,798572.0000,798832.0000,797580.0000,795566.0000,799884.0000,801647.0000,793532.0000,793412.0000,798943.0000,800486.0000,802890.0000,800696.0000,798522.0000,798943.0000,789695.0000,794975.0000,803862.0000,800966.0000,801918.0000" +generating large instruction graphs for N devices without d2d copy support - 1,wave_sim topology,100,1,419454200,3788446.4700,3783951.7500,3800042.3300,34250.5106,16024.1898,70052.2812,"benchmark,group:instruction-graph","3767860.0000,3788679.0000,4070313.0000,3919617.0000,3795773.0000,3784381.0000,3785703.0000,3781535.0000,3775344.0000,3770124.0000,3786735.0000,3765205.0000,3770445.0000,3781015.0000,3778460.0000,3789331.0000,3785323.0000,3753412.0000,3800281.0000,3776246.0000,3784330.0000,3795963.0000,3792066.0000,3785593.0000,3777629.0000,3772148.0000,3782979.0000,3767910.0000,3794981.0000,3789892.0000,3780393.0000,3781005.0000,3785313.0000,3787817.0000,3768832.0000,3781506.0000,3794700.0000,3774272.0000,3777959.0000,3777257.0000,3814148.0000,3779542.0000,3791715.0000,3774533.0000,3783229.0000,3788088.0000,3776877.0000,3789240.0000,3785503.0000,3771606.0000,3787036.0000,3788939.0000,3777278.0000,3775294.0000,3781445.0000,3785624.0000,3791194.0000,3781245.0000,3800251.0000,3887307.0000,3795111.0000,3769774.0000,3775023.0000,3780925.0000,3784913.0000,3791434.0000,3779242.0000,3786705.0000,3779832.0000,3788569.0000,3774562.0000,3795312.0000,3790172.0000,3767148.0000,3768071.0000,3784712.0000,3788079.0000,3785603.0000,3787487.0000,3776235.0000,3786715.0000,3793128.0000,3780043.0000,3789541.0000,3785604.0000,3782036.0000,3781966.0000,3769413.0000,3782227.0000,3775935.0000,3792106.0000,3797776.0000,3770805.0000,3790913.0000,3787637.0000,3782878.0000,3787727.0000,3788709.0000,3792416.0000,3789742.0000" +generating large instruction graphs for N devices without d2d copy support - 1,jacobi topology,100,1,85928000,728975.2800,726486.5700,735125.6900,18324.4686,4756.5162,32791.8450,"benchmark,group:instruction-graph","727507.0000,719702.0000,846332.0000,729451.0000,731224.0000,730823.0000,727136.0000,730943.0000,723559.0000,721396.0000,720504.0000,727837.0000,728719.0000,729000.0000,732016.0000,733087.0000,728710.0000,727947.0000,722157.0000,722558.0000,721315.0000,730653.0000,732446.0000,730132.0000,729321.0000,727918.0000,729240.0000,729120.0000,729491.0000,720193.0000,722267.0000,723158.0000,728198.0000,727627.0000,727307.0000,728298.0000,750380.0000,725283.0000,726926.0000,718770.0000,721355.0000,720153.0000,729611.0000,732116.0000,728409.0000,728750.0000,730392.0000,727247.0000,728088.0000,720514.0000,720344.0000,720293.0000,727647.0000,728418.0000,727648.0000,726004.0000,728539.0000,726815.0000,730793.0000,727217.0000,721014.0000,719842.0000,721666.0000,726275.0000,859447.0000,731475.0000,731945.0000,727437.0000,725714.0000,721526.0000,720674.0000,720344.0000,729902.0000,726656.0000,727708.0000,728309.0000,726014.0000,726595.0000,727527.0000,718641.0000,719472.0000,717578.0000,728659.0000,726204.0000,726345.0000,725113.0000,726575.0000,728339.0000,724892.0000,725864.0000,719682.0000,718991.0000,717929.0000,729410.0000,731945.0000,729561.0000,729922.0000,724441.0000,728970.0000,729921.0000" +generating large instruction graphs for N devices without d2d copy support - 4,soup topology,100,1,257579700,2450316.5300,2396629.5800,2644273.5900,462339.7826,133895.6426,1063000.0164,"benchmark,group:instruction-graph","2525645.0000,2518832.0000,6852036.0000,2265132.0000,2255483.0000,2262276.0000,2279699.0000,2257106.0000,2258298.0000,2268197.0000,2258279.0000,2264510.0000,2260132.0000,2257407.0000,2263669.0000,2251676.0000,2263508.0000,2256655.0000,2252507.0000,2253319.0000,2257136.0000,2260462.0000,2256114.0000,2257778.0000,2275632.0000,2263939.0000,2256004.0000,2261334.0000,2263899.0000,2255463.0000,2253279.0000,2260002.0000,2261575.0000,2259240.0000,2270612.0000,2264370.0000,2260362.0000,2263709.0000,2257617.0000,2259290.0000,2260963.0000,2266343.0000,2258489.0000,2264891.0000,2254831.0000,2251705.0000,2268568.0000,2259551.0000,2280220.0000,2533761.0000,2532969.0000,2535514.0000,2538009.0000,2540864.0000,2529743.0000,2535464.0000,2529272.0000,2532649.0000,2528211.0000,2537388.0000,2537027.0000,2537929.0000,2542067.0000,2535664.0000,2537308.0000,2532358.0000,2520616.0000,2528861.0000,2524563.0000,2520996.0000,2529743.0000,2519483.0000,2522169.0000,2518492.0000,2533190.0000,2527639.0000,2537017.0000,2540303.0000,2530144.0000,2530244.0000,2530875.0000,2525164.0000,2523612.0000,2527629.0000,2523721.0000,2554510.0000,2524773.0000,2526927.0000,2533159.0000,2535864.0000,2544170.0000,2538600.0000,2538360.0000,2539622.0000,2545152.0000,2529152.0000,2529222.0000,2529212.0000,2522750.0000,2521778.0000" +generating large instruction graphs for N devices without d2d copy support - 4,chain topology,100,1,57689400,514056.2500,511519.6100,520401.4800,18750.5750,5080.0114,33526.9685,"benchmark,group:instruction-graph","512660.0000,512870.0000,634992.0000,526706.0000,512750.0000,510586.0000,515475.0000,515616.0000,508301.0000,506589.0000,537837.0000,515826.0000,506679.0000,505486.0000,513532.0000,513792.0000,506518.0000,507871.0000,513892.0000,646052.0000,515575.0000,507430.0000,508362.0000,514965.0000,513020.0000,506929.0000,511217.0000,517940.0000,515996.0000,509253.0000,507720.0000,517509.0000,517339.0000,508813.0000,507229.0000,516187.0000,514964.0000,507139.0000,505977.0000,512820.0000,514774.0000,506649.0000,506098.0000,514463.0000,514363.0000,506689.0000,506829.0000,515455.0000,513671.0000,508402.0000,508482.0000,513942.0000,512469.0000,507861.0000,509023.0000,511999.0000,514063.0000,506077.0000,504144.0000,512128.0000,513261.0000,506037.0000,508541.0000,515845.0000,514032.0000,512951.0000,506718.0000,506929.0000,513942.0000,514624.0000,506749.0000,506358.0000,513892.0000,515736.0000,508031.0000,508132.0000,518170.0000,516327.0000,508341.0000,509314.0000,515495.0000,515746.0000,506858.0000,506919.0000,516417.0000,515385.0000,507240.0000,506728.0000,515455.0000,514784.0000,507129.0000,506488.0000,513592.0000,516286.0000,506007.0000,504885.0000,512459.0000,513932.0000,504805.0000,507090.0000" +generating large instruction graphs for N devices without d2d copy support - 4,expanding tree topology,100,1,76867000,688155.0600,686324.6300,694385.7500,15406.4957,4925.3992,34820.9257,"benchmark,group:instruction-graph","680057.0000,679506.0000,831634.0000,710776.0000,696498.0000,692621.0000,692981.0000,694013.0000,688924.0000,689675.0000,683744.0000,683163.0000,682652.0000,683814.0000,683363.0000,679687.0000,682322.0000,689064.0000,687221.0000,688062.0000,686539.0000,688503.0000,688362.0000,689686.0000,686900.0000,687531.0000,688693.0000,691639.0000,687952.0000,685838.0000,686910.0000,712459.0000,682652.0000,679256.0000,680808.0000,679937.0000,679777.0000,679375.0000,680778.0000,689295.0000,687822.0000,688393.0000,686549.0000,691529.0000,686449.0000,688393.0000,688213.0000,687432.0000,689836.0000,688654.0000,687592.0000,689104.0000,686358.0000,686019.0000,681120.0000,680358.0000,680157.0000,677973.0000,678815.0000,682992.0000,680788.0000,688834.0000,687551.0000,687371.0000,688623.0000,689956.0000,687982.0000,689475.0000,688282.0000,688063.0000,687371.0000,690617.0000,690116.0000,687922.0000,690627.0000,687662.0000,680608.0000,681841.0000,681100.0000,679365.0000,677512.0000,681921.0000,681360.0000,687572.0000,686670.0000,685488.0000,688653.0000,686499.0000,688924.0000,689375.0000,692150.0000,691388.0000,689916.0000,688994.0000,685708.0000,685116.0000,688744.0000,689395.0000,690517.0000,679025.0000" +generating large instruction graphs for N devices without d2d copy support - 4,contracting tree topology,100,1,91641400,810297.2200,808031.8400,816455.5800,17298.6906,5637.2639,35126.0594,"benchmark,group:instruction-graph","810665.0000,807429.0000,953745.0000,828889.0000,814983.0000,811777.0000,811296.0000,805535.0000,813250.0000,809974.0000,809532.0000,810865.0000,807829.0000,809302.0000,798722.0000,800675.0000,809472.0000,810083.0000,808751.0000,805485.0000,808460.0000,804884.0000,799664.0000,833658.0000,808600.0000,809262.0000,810104.0000,807419.0000,808240.0000,801968.0000,804823.0000,811927.0000,807779.0000,808711.0000,807639.0000,810895.0000,809843.0000,802298.0000,810774.0000,806988.0000,806708.0000,812869.0000,809272.0000,808862.0000,802368.0000,803671.0000,807258.0000,890817.0000,806907.0000,809683.0000,809693.0000,800445.0000,802279.0000,810013.0000,811075.0000,807309.0000,807619.0000,808511.0000,806798.0000,799644.0000,808240.0000,809963.0000,807068.0000,807619.0000,809973.0000,809953.0000,808059.0000,801256.0000,811146.0000,808761.0000,809082.0000,810535.0000,809492.0000,808260.0000,800135.0000,803361.0000,805785.0000,810254.0000,810133.0000,809592.0000,811797.0000,807960.0000,802319.0000,809202.0000,809242.0000,809072.0000,808390.0000,808771.0000,809012.0000,799543.0000,796608.0000,809513.0000,807649.0000,809873.0000,805946.0000,809722.0000,807248.0000,802339.0000,802780.0000,810073.0000" +generating large instruction graphs for N devices without d2d copy support - 4,wave_sim topology,100,1,1370452700,13857918.5600,13666174.6700,14028240.4700,921999.2691,833672.6560,982271.4268,"benchmark,group:instruction-graph","14473802.0000,14455668.0000,13409425.0000,12460677.0000,12461498.0000,12433696.0000,12462069.0000,12450627.0000,12683489.0000,12473771.0000,12436300.0000,12475314.0000,12481416.0000,12464915.0000,12446620.0000,12448343.0000,12477899.0000,12455356.0000,12458171.0000,12477228.0000,12458432.0000,12450217.0000,12468781.0000,12492026.0000,12479281.0000,12511663.0000,12526511.0000,12462460.0000,12462209.0000,12470476.0000,12441019.0000,12451309.0000,12453523.0000,14493279.0000,14452422.0000,14458784.0000,14515000.0000,14457461.0000,13273327.0000,14491866.0000,14483741.0000,14483591.0000,14523566.0000,14466689.0000,14462781.0000,14449326.0000,14465667.0000,14483030.0000,14477559.0000,14447542.0000,14470866.0000,14490604.0000,14465897.0000,14486296.0000,14458653.0000,14457501.0000,14512225.0000,14455998.0000,14489592.0000,14459104.0000,14481316.0000,14492658.0000,14460707.0000,14483130.0000,14467450.0000,14472900.0000,14487198.0000,14489361.0000,14453684.0000,14485815.0000,14777468.0000,14491936.0000,14462531.0000,14535860.0000,14498318.0000,14476487.0000,14475646.0000,14469714.0000,14484933.0000,14527535.0000,14471758.0000,14467700.0000,14484632.0000,14472590.0000,14477910.0000,14510422.0000,14483591.0000,14456629.0000,14481777.0000,14461238.0000,14658933.0000,14480905.0000,14476868.0000,14494342.0000,14453834.0000,14444256.0000,14455287.0000,14504591.0000,14466599.0000,14466789.0000" +generating large instruction graphs for N devices without d2d copy support - 4,jacobi topology,100,1,450007100,4006682.0700,3980614.9700,4129521.9500,247236.8802,18356.3827,588252.4144,"benchmark,group:instruction-graph","3970795.0000,3995872.0000,6456846.0000,4132501.0000,3976264.0000,3992095.0000,3970143.0000,3973830.0000,3977246.0000,3973330.0000,3977658.0000,4005811.0000,3972799.0000,3970884.0000,3965294.0000,3969452.0000,3974090.0000,3989149.0000,3975864.0000,3982737.0000,3974581.0000,3982506.0000,3974762.0000,3971967.0000,3972718.0000,3975393.0000,3974902.0000,3986024.0000,3982687.0000,3972918.0000,3976725.0000,3990742.0000,3990001.0000,4096623.0000,3983609.0000,3976676.0000,3981434.0000,3973469.0000,3977738.0000,3971546.0000,3975233.0000,3970544.0000,3972598.0000,3972888.0000,3974341.0000,3985623.0000,3980773.0000,3993017.0000,3984120.0000,3975343.0000,3979751.0000,3969482.0000,3972057.0000,3971235.0000,3982226.0000,3971386.0000,4001452.0000,3971096.0000,3969563.0000,3972127.0000,3977307.0000,3974441.0000,3982096.0000,3978329.0000,3977377.0000,3972017.0000,3977197.0000,3970424.0000,3983829.0000,3972758.0000,3972798.0000,3982457.0000,3975053.0000,3973570.0000,3974762.0000,3980914.0000,4054453.0000,3987336.0000,4018615.0000,3986314.0000,3977407.0000,3978930.0000,3987947.0000,3983047.0000,3976516.0000,3975984.0000,3985232.0000,3976154.0000,3985883.0000,3977608.0000,3977167.0000,3976585.0000,3977006.0000,3973499.0000,3978569.0000,3972167.0000,3979481.0000,3973770.0000,3973540.0000,3975132.0000" +generating large instruction graphs for N devices without d2d copy support - 16,soup topology,100,1,304770600,2729695.3200,2692516.1400,2910707.3600,363407.5181,9649.6156,866559.1376,"benchmark,group:instruction-graph","2687132.0000,2705747.0000,6343882.0000,2720284.0000,2737537.0000,2685889.0000,2693684.0000,2676582.0000,2691840.0000,2684737.0000,2689947.0000,2685618.0000,2680008.0000,2702230.0000,2695196.0000,2679708.0000,2683655.0000,2689846.0000,2688263.0000,2689896.0000,2680639.0000,2693334.0000,2694355.0000,2689475.0000,2675309.0000,2678635.0000,2685308.0000,2685438.0000,2754409.0000,2682522.0000,2695296.0000,2690628.0000,2686239.0000,2682523.0000,2688023.0000,2698283.0000,2702450.0000,2693213.0000,2700176.0000,2697010.0000,2694696.0000,2680449.0000,2692381.0000,2690077.0000,2688093.0000,2684667.0000,2683133.0000,2688024.0000,2689385.0000,2690819.0000,2712479.0000,2703352.0000,2692602.0000,2688444.0000,2685518.0000,2685388.0000,2687342.0000,2701990.0000,2691921.0000,2704364.0000,2697982.0000,2700657.0000,2689556.0000,2696359.0000,2692392.0000,2696008.0000,2684736.0000,2692692.0000,2687692.0000,2695627.0000,2695768.0000,2687482.0000,2709163.0000,2689646.0000,2689265.0000,2688404.0000,2690087.0000,2698383.0000,2687031.0000,2694025.0000,2693393.0000,2701107.0000,2690879.0000,2688845.0000,2695176.0000,2695076.0000,2694045.0000,2691148.0000,2687952.0000,2696138.0000,2699916.0000,2690147.0000,2694546.0000,2699375.0000,2693614.0000,2686541.0000,2694555.0000,2724973.0000,2695066.0000,2694015.0000" +generating large instruction graphs for N devices without d2d copy support - 16,chain topology,100,1,58455200,523553.6800,522043.6300,528427.0600,12512.4442,4408.1200,27831.9561,"benchmark,group:instruction-graph","517819.0000,518310.0000,637647.0000,531916.0000,534681.0000,526887.0000,524322.0000,517359.0000,519423.0000,528239.0000,526125.0000,518861.0000,516948.0000,524803.0000,526266.0000,517078.0000,518160.0000,524442.0000,524903.0000,517238.0000,518731.0000,524682.0000,525694.0000,524141.0000,517879.0000,518381.0000,529081.0000,526296.0000,518491.0000,518180.0000,525083.0000,524913.0000,518891.0000,518982.0000,526626.0000,526536.0000,519813.0000,518952.0000,522689.0000,526807.0000,524342.0000,517750.0000,518901.0000,524132.0000,523140.0000,519072.0000,519313.0000,524593.0000,527297.0000,518701.0000,519493.0000,525874.0000,526867.0000,520114.0000,517299.0000,525083.0000,525464.0000,525764.0000,516878.0000,517088.0000,525784.0000,550842.0000,518451.0000,518251.0000,523320.0000,524432.0000,515645.0000,516497.0000,524322.0000,522589.0000,516968.0000,519953.0000,523780.0000,523570.0000,524151.0000,516437.0000,517610.0000,523120.0000,526186.0000,515846.0000,518601.0000,524092.0000,526015.0000,518521.0000,517800.0000,525093.0000,526636.0000,519533.0000,515926.0000,526676.0000,525544.0000,523360.0000,517319.0000,519533.0000,527729.0000,526045.0000,518621.0000,516877.0000,528529.0000,525724.0000" +generating large instruction graphs for N devices without d2d copy support - 16,expanding tree topology,100,1,77777500,696290.0000,694380.5800,702840.0700,16032.9574,5354.1814,35931.8847,"benchmark,group:instruction-graph","688163.0000,690106.0000,844269.0000,725844.0000,701758.0000,694354.0000,692731.0000,690858.0000,691188.0000,695777.0000,696859.0000,693602.0000,695095.0000,696719.0000,694825.0000,697610.0000,698532.0000,701628.0000,695927.0000,698822.0000,715504.0000,690537.0000,686509.0000,689124.0000,688082.0000,686238.0000,687471.0000,697399.0000,697991.0000,697430.0000,696809.0000,697259.0000,696549.0000,696238.0000,697931.0000,695958.0000,696729.0000,695978.0000,695547.0000,696378.0000,693713.0000,691468.0000,689154.0000,687772.0000,688442.0000,691279.0000,698462.0000,698602.0000,698001.0000,693683.0000,696078.0000,698061.0000,695246.0000,695786.0000,696428.0000,694735.0000,694465.0000,695967.0000,693733.0000,688303.0000,691068.0000,690146.0000,688382.0000,687501.0000,688523.0000,694294.0000,694174.0000,696819.0000,694294.0000,697060.0000,721295.0000,697891.0000,697360.0000,696429.0000,695366.0000,695576.0000,696218.0000,687261.0000,690777.0000,690577.0000,688112.0000,688984.0000,689535.0000,693162.0000,697620.0000,698131.0000,696297.0000,696869.0000,698252.0000,695286.0000,696208.0000,698842.0000,694685.0000,697260.0000,695887.0000,694895.0000,688763.0000,686890.0000,686840.0000,689765.0000" +generating large instruction graphs for N devices without d2d copy support - 16,contracting tree topology,100,1,94804400,839200.0100,837279.5900,846439.8200,17063.8149,3584.7908,39824.0208,"benchmark,group:instruction-graph","829390.0000,838277.0000,1004643.0000,853957.0000,842284.0000,839028.0000,844589.0000,843026.0000,840311.0000,838037.0000,838217.0000,837175.0000,839008.0000,838167.0000,831564.0000,838677.0000,836885.0000,838558.0000,843246.0000,843055.0000,831665.0000,843537.0000,837556.0000,841763.0000,841403.0000,841583.0000,831023.0000,838948.0000,837135.0000,837625.0000,842134.0000,840881.0000,832476.0000,837946.0000,839158.0000,835702.0000,841313.0000,840451.0000,829841.0000,838778.0000,837456.0000,837245.0000,842225.0000,839339.0000,832235.0000,838929.0000,837896.0000,840030.0000,840602.0000,838888.0000,831414.0000,839139.0000,838658.0000,834219.0000,839529.0000,838577.0000,830041.0000,829691.0000,838788.0000,839569.0000,838267.0000,838828.0000,837956.0000,831525.0000,838888.0000,837225.0000,837025.0000,838197.0000,838989.0000,829680.0000,837575.0000,837415.0000,840522.0000,840071.0000,838137.0000,829511.0000,837435.0000,840321.0000,837846.0000,835472.0000,836123.0000,831825.0000,836444.0000,837355.0000,835141.0000,834910.0000,836113.0000,835592.0000,831694.0000,836513.0000,838848.0000,835541.0000,837074.0000,837145.0000,830803.0000,834650.0000,837365.0000,838899.0000,836193.0000,837406.0000" +generating large instruction graphs for N devices without d2d copy support - 16,wave_sim topology,100,1,6694054600,67442122.4500,67094051.9000,67572744.7400,968810.0272,223118.7533,1921270.7230,"benchmark,group:instruction-graph","67434816.0000,67540336.0000,67364283.0000,66145332.0000,67516120.0000,67632712.0000,67624105.0000,67531159.0000,67615618.0000,67534044.0000,67653261.0000,67563320.0000,67504438.0000,67631799.0000,67668739.0000,67577156.0000,67464543.0000,67449964.0000,67619176.0000,67576915.0000,67470894.0000,67544584.0000,67551277.0000,67659923.0000,67774149.0000,67563911.0000,67413506.0000,67571275.0000,67725458.0000,67774450.0000,67625328.0000,67534977.0000,67604718.0000,67589339.0000,67618875.0000,67658771.0000,67478850.0000,67472848.0000,67887164.0000,67758740.0000,67569381.0000,67570333.0000,67523775.0000,67547590.0000,67630897.0000,67666285.0000,67532742.0000,67582787.0000,67699508.0000,67734955.0000,67466436.0000,67435037.0000,67620058.0000,67751246.0000,67501612.0000,67638362.0000,67510861.0000,67644093.0000,67711351.0000,67634765.0000,59523621.0000,62303971.0000,67798536.0000,67646798.0000,67553811.0000,67649533.0000,67550025.0000,67665744.0000,67655304.0000,67642861.0000,67608305.0000,67604228.0000,67606381.0000,67646407.0000,67646818.0000,67544043.0000,67503947.0000,67598587.0000,67636980.0000,67602414.0000,67463119.0000,67710860.0000,67453562.0000,67621881.0000,67536398.0000,67788326.0000,67570132.0000,67460365.0000,67626429.0000,67617783.0000,67460125.0000,67632531.0000,67493557.0000,67545656.0000,67646858.0000,67744343.0000,67342661.0000,67396724.0000,67623444.0000,67590230.0000" +generating large instruction graphs for N devices without d2d copy support - 16,jacobi topology,100,1,4676298800,45529590.7900,45056229.2600,45910018.4500,2152707.7039,1789530.8245,2513896.8924,"benchmark,group:instruction-graph","41925575.0000,45183480.0000,48222620.0000,45828673.0000,45978357.0000,45947308.0000,46027230.0000,47620199.0000,45910739.0000,44191270.0000,41879809.0000,40418458.0000,40487228.0000,41989637.0000,45926488.0000,46051746.0000,47673881.0000,45971524.0000,46124013.0000,47609028.0000,45967165.0000,46040414.0000,47548222.0000,45865974.0000,46026648.0000,46036638.0000,40256442.0000,40370638.0000,41900879.0000,40273805.0000,40372221.0000,41936336.0000,44544940.0000,45995840.0000,47592396.0000,45973618.0000,46042319.0000,47577808.0000,45914827.0000,46130755.0000,47505632.0000,45928873.0000,46066564.0000,47567890.0000,45892183.0000,45984759.0000,47522904.0000,45945795.0000,46138591.0000,47437913.0000,46089027.0000,46023252.0000,47596695.0000,45959862.0000,46196420.0000,47729887.0000,45963829.0000,45998185.0000,47523355.0000,45872947.0000,46070522.0000,47475815.0000,46050294.0000,46020747.0000,47611732.0000,45913364.0000,46091782.0000,47521923.0000,45858330.0000,45942489.0000,47432714.0000,45926669.0000,46015948.0000,47510962.0000,45834244.0000,46034814.0000,47595612.0000,46012281.0000,46053500.0000,47523706.0000,45847289.0000,46015207.0000,47479603.0000,45928142.0000,46179578.0000,47477549.0000,45905990.0000,46085961.0000,47463442.0000,45886774.0000,46061194.0000,47601073.0000,45969561.0000,46006320.0000,44649819.0000,40293221.0000,40515693.0000,41895078.0000,40492159.0000,40428267.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: single-threaded graph generation,soup topology,100,1,343688100,3071272.3000,3031309.4800,3265828.0600,389734.8912,11126.1718,929547.3110,"benchmark,group:scheduler","3026084.0000,3034529.0000,6946835.0000,3042384.0000,3039349.0000,3052654.0000,3049348.0000,3034860.0000,3029340.0000,3023369.0000,3026314.0000,3031323.0000,3031644.0000,3021355.0000,3058315.0000,3026815.0000,3026524.0000,3026445.0000,3027296.0000,3024952.0000,3022046.0000,3032006.0000,3029801.0000,3023880.0000,3020282.0000,3036664.0000,3020242.0000,3027406.0000,3022527.0000,3020343.0000,3025783.0000,3024049.0000,3021395.0000,3035782.0000,3020423.0000,3026384.0000,3022166.0000,3035522.0000,3027496.0000,3021575.0000,3017928.0000,3023419.0000,3027397.0000,3029139.0000,3026865.0000,3029640.0000,3029510.0000,3026876.0000,3026275.0000,3031304.0000,3028388.0000,3037736.0000,3026675.0000,3028919.0000,3016496.0000,3030872.0000,3028989.0000,3028358.0000,3033518.0000,3051001.0000,3057172.0000,3051041.0000,3047574.0000,3040451.0000,3045551.0000,3044479.0000,3034951.0000,3032626.0000,3029941.0000,3018199.0000,3032406.0000,3024260.0000,3036944.0000,3031494.0000,3025232.0000,3073012.0000,3033158.0000,3029450.0000,3026614.0000,3038678.0000,3025533.0000,3024701.0000,3074225.0000,3026345.0000,3115964.0000,3034831.0000,3025142.0000,3028639.0000,3033298.0000,3029991.0000,3025483.0000,3028839.0000,3025943.0000,3028528.0000,3029421.0000,3028819.0000,3019301.0000,3033638.0000,3036784.0000,3023760.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: single-threaded graph generation,chain topology,100,1,21318800,170807.9400,168434.9400,179065.9900,19744.8206,4423.5013,44333.7142,"benchmark,group:scheduler","166223.0000,167335.0000,351414.0000,237458.0000,188696.0000,181362.0000,173196.0000,176612.0000,170832.0000,169580.0000,167856.0000,167916.0000,172505.0000,167756.0000,167906.0000,167746.0000,167896.0000,169129.0000,173987.0000,167896.0000,167275.0000,167385.0000,166093.0000,172345.0000,166795.0000,166654.0000,166083.0000,166604.0000,166062.0000,168177.0000,166082.0000,166744.0000,166484.0000,166914.0000,173677.0000,166684.0000,165893.0000,166754.0000,166223.0000,173898.0000,167105.0000,166844.0000,166944.0000,166614.0000,166373.0000,173377.0000,166233.0000,166553.0000,165832.0000,166253.0000,173527.0000,167406.0000,165902.0000,166283.0000,166213.0000,166854.0000,173127.0000,166493.0000,166484.0000,166253.0000,166323.0000,174619.0000,166824.0000,166523.0000,166504.0000,166624.0000,166414.0000,168197.0000,166233.0000,165362.0000,166313.0000,166063.0000,173236.0000,166524.0000,166143.0000,166424.0000,166163.0000,172375.0000,166233.0000,166874.0000,166794.0000,166303.0000,166003.0000,173748.0000,166122.0000,166563.0000,165873.0000,166403.0000,172154.0000,166935.0000,166333.0000,166934.0000,165702.0000,166884.0000,173366.0000,166254.0000,165793.0000,166293.0000,167004.0000,172565.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: single-threaded graph generation,expanding tree topology,100,1,41523300,348457.9600,345345.7800,361844.7300,27940.9528,4295.6105,65303.6910,"benchmark,group:scheduler","341355.0000,341936.0000,619493.0000,393534.0000,356644.0000,357876.0000,345453.0000,352927.0000,343269.0000,343980.0000,351714.0000,342207.0000,351294.0000,344020.0000,342558.0000,349531.0000,342508.0000,350463.0000,341946.0000,343459.0000,347947.0000,343620.0000,342827.0000,343349.0000,341545.0000,349590.0000,344501.0000,343449.0000,350081.0000,342117.0000,348739.0000,342768.0000,342868.0000,348909.0000,341315.0000,347988.0000,341165.0000,342939.0000,348138.0000,342217.0000,346765.0000,342959.0000,342176.0000,347928.0000,341626.0000,342256.0000,342627.0000,341045.0000,348348.0000,341265.0000,340373.0000,349460.0000,343639.0000,348068.0000,342767.0000,341515.0000,347858.0000,342567.0000,351815.0000,343779.0000,343950.0000,349110.0000,341586.0000,340905.0000,341966.0000,342908.0000,356424.0000,343649.0000,341626.0000,350994.0000,341755.0000,348639.0000,341355.0000,342757.0000,350663.0000,342688.0000,349260.0000,341485.0000,341776.0000,349370.0000,341987.0000,342918.0000,341946.0000,344210.0000,349049.0000,344461.0000,342847.0000,349481.0000,343069.0000,349972.0000,341525.0000,342708.0000,350633.0000,342287.0000,348869.0000,343490.0000,342307.0000,349581.0000,341816.0000,348699.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: single-threaded graph generation,contracting tree topology,100,1,62387200,528652.9800,525132.3900,543000.8500,31907.0538,4654.0391,75000.3568,"benchmark,group:scheduler","528520.0000,521657.0000,840181.0000,569157.0000,535263.0000,536495.0000,527077.0000,534241.0000,531706.0000,525033.0000,529872.0000,520595.0000,528400.0000,521617.0000,528510.0000,521346.0000,528049.0000,528239.0000,522258.0000,528019.0000,520805.0000,529141.0000,522478.0000,530183.0000,520234.0000,522298.0000,527899.0000,520945.0000,527057.0000,521928.0000,533258.0000,521216.0000,526916.0000,526486.0000,521467.0000,526476.0000,522028.0000,528460.0000,520054.0000,527218.0000,520445.0000,528230.0000,526176.0000,522638.0000,527197.0000,522368.0000,528750.0000,520856.0000,527337.0000,521296.0000,529401.0000,527368.0000,520244.0000,528309.0000,519112.0000,526907.0000,518932.0000,538940.0000,522017.0000,526867.0000,527688.0000,520044.0000,528099.0000,519823.0000,528711.0000,522197.0000,528220.0000,519052.0000,528019.0000,527978.0000,521957.0000,528991.0000,520505.0000,526846.0000,519643.0000,527417.0000,519763.0000,522048.0000,526897.0000,519973.0000,526866.0000,521637.0000,528439.0000,519362.0000,528099.0000,520064.0000,521316.0000,528009.0000,520464.0000,527899.0000,519944.0000,526686.0000,519593.0000,525965.0000,520675.0000,520675.0000,528871.0000,520645.0000,528289.0000,521757.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: single-threaded graph generation,wave_sim topology,100,1,289995100,2183327.0900,2153280.1000,2330492.1500,293566.8213,7088.2244,700206.5028,"benchmark,group:scheduler","2154992.0000,2169510.0000,5102740.0000,2157638.0000,2148230.0000,2144292.0000,2150364.0000,2148761.0000,2160593.0000,2161204.0000,2147639.0000,2146937.0000,2158920.0000,2152498.0000,2146848.0000,2152368.0000,2149272.0000,2152528.0000,2144864.0000,2149893.0000,2154201.0000,2164210.0000,2161755.0000,2148991.0000,2152829.0000,2161295.0000,2148059.0000,2146416.0000,2141066.0000,2148440.0000,2145475.0000,2160583.0000,2169680.0000,2149282.0000,2143591.0000,2151196.0000,2150785.0000,2146095.0000,2152328.0000,2159721.0000,2148109.0000,2140295.0000,2152898.0000,2159091.0000,2180381.0000,2153229.0000,2156236.0000,2157016.0000,2153159.0000,2156185.0000,2152298.0000,2148441.0000,2162116.0000,2162196.0000,2149443.0000,2149111.0000,2158780.0000,2157718.0000,2156897.0000,2148370.0000,2155223.0000,2153861.0000,2146426.0000,2148631.0000,2149943.0000,2150915.0000,2149312.0000,2152668.0000,2153831.0000,2149312.0000,2164802.0000,2162417.0000,2149522.0000,2150384.0000,2146657.0000,2150164.0000,2157848.0000,2162237.0000,2153240.0000,2222040.0000,2154782.0000,2151747.0000,2153780.0000,2156235.0000,2152848.0000,2152788.0000,2154481.0000,2155613.0000,2151276.0000,2142579.0000,2151626.0000,2159050.0000,2159501.0000,2160714.0000,2146086.0000,2150184.0000,2155634.0000,2137549.0000,2143852.0000,2154893.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: single-threaded graph generation,jacobi topology,100,1,78297000,665303.1800,661543.3400,679844.4500,35082.0135,3702.8769,83229.3330,"benchmark,group:scheduler","664978.0000,660379.0000,1011805.0000,685337.0000,665560.0000,661081.0000,667052.0000,667363.0000,658366.0000,666852.0000,664728.0000,658346.0000,663837.0000,664778.0000,665339.0000,656562.0000,664678.0000,664648.0000,657094.0000,666492.0000,663796.0000,663276.0000,658115.0000,663716.0000,662935.0000,655701.0000,663325.0000,663085.0000,655981.0000,661732.0000,664788.0000,662443.0000,655551.0000,663556.0000,664067.0000,656272.0000,664718.0000,664016.0000,656152.0000,657104.0000,662123.0000,661011.0000,659087.0000,662324.0000,663677.0000,657885.0000,664819.0000,663866.0000,664698.0000,657404.0000,666151.0000,664377.0000,656272.0000,662925.0000,667784.0000,657605.0000,657414.0000,662264.0000,663215.0000,654969.0000,663195.0000,663445.0000,657064.0000,664808.0000,663065.0000,663135.0000,655841.0000,663556.0000,666071.0000,656112.0000,663646.0000,664207.0000,656863.0000,658085.0000,664036.0000,662334.0000,656002.0000,662704.0000,663114.0000,656222.0000,662454.0000,662674.0000,661571.0000,655651.0000,664096.0000,662865.0000,655220.0000,661382.0000,663175.0000,655120.0000,662824.0000,662002.0000,664137.0000,657604.0000,662774.0000,665299.0000,656783.0000,664648.0000,664297.0000,656763.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > using a dedicated scheduler thread,soup topology,100,1,233031500,2269607.3800,2250878.1400,2321566.7900,145386.0065,56329.9247,300889.4950,"benchmark,group:scheduler","2255684.0000,2251395.0000,3489312.0000,2247478.0000,2915044.0000,2625535.0000,2280671.0000,2222651.0000,2254952.0000,2247519.0000,2225667.0000,2250885.0000,2254161.0000,2227280.0000,2223944.0000,2255132.0000,2252658.0000,2253760.0000,2220036.0000,2254732.0000,2224845.0000,2257407.0000,2247237.0000,2255814.0000,2251546.0000,2255573.0000,2283276.0000,2255543.0000,2222791.0000,2254241.0000,2225296.0000,2255483.0000,2222951.0000,2254261.0000,2253770.0000,2289418.0000,2246867.0000,2255994.0000,2223442.0000,2255854.0000,2223132.0000,2256384.0000,2222200.0000,2253369.0000,2225436.0000,2252207.0000,2255403.0000,2224194.0000,2255584.0000,2223442.0000,2254982.0000,2225426.0000,2284188.0000,2222671.0000,2255243.0000,2226207.0000,2258449.0000,2247538.0000,2261234.0000,2276994.0000,2255152.0000,2223512.0000,2256095.0000,2223081.0000,2254571.0000,2254110.0000,2285159.0000,2222691.0000,2254481.0000,2282495.0000,2256505.0000,2223573.0000,2255864.0000,2220387.0000,2256265.0000,2222721.0000,2256174.0000,2222741.0000,2255213.0000,2224564.0000,2226228.0000,2223203.0000,2255464.0000,2227089.0000,2258830.0000,2247648.0000,2260903.0000,2248250.0000,2256195.0000,2252497.0000,2255343.0000,2223352.0000,2252448.0000,2269630.0000,2284017.0000,2221930.0000,2254762.0000,2254412.0000,2254411.0000,2224384.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > using a dedicated scheduler thread,chain topology,100,1,24839000,233508.0900,223866.4800,275664.4000,87995.1322,13789.5743,207696.9772,"benchmark,group:scheduler","216228.0000,216518.0000,1097078.0000,257295.0000,264730.0000,238040.0000,269629.0000,254460.0000,247988.0000,247117.0000,250343.0000,275870.0000,247567.0000,221578.0000,223231.0000,250493.0000,220807.0000,221458.0000,249912.0000,221908.0000,250372.0000,222991.0000,223141.0000,223892.0000,222980.0000,250002.0000,250062.0000,223051.0000,222790.0000,223281.0000,223572.0000,251134.0000,222349.0000,223101.0000,223201.0000,251705.0000,215236.0000,216218.0000,216949.0000,216859.0000,218191.0000,214615.0000,216548.0000,217109.0000,216960.0000,216088.0000,216067.0000,216388.0000,246686.0000,215977.0000,215757.0000,216489.0000,219274.0000,213713.0000,215837.0000,216929.0000,216969.0000,246966.0000,215626.0000,216378.0000,216879.0000,217179.0000,217049.0000,216047.0000,216077.0000,246125.0000,215677.0000,216799.0000,216329.0000,219785.0000,214064.0000,217680.0000,216137.0000,216318.0000,218001.0000,216318.0000,216629.0000,216288.0000,216588.0000,217430.0000,216930.0000,215727.0000,220627.0000,212941.0000,217200.0000,216508.0000,216178.0000,216569.0000,216529.0000,217460.0000,215997.0000,217981.0000,215306.0000,217952.0000,216979.0000,216288.0000,216288.0000,216809.0000,217490.0000,215948.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > using a dedicated scheduler thread,expanding tree topology,100,1,44956000,439466.1800,416752.9800,545634.5800,217473.5460,13955.0997,517909.1401,"benchmark,group:scheduler","476200.0000,416518.0000,2598063.0000,402100.0000,409765.0000,437127.0000,410026.0000,411508.0000,412881.0000,414544.0000,414384.0000,444941.0000,386150.0000,416027.0000,416217.0000,414764.0000,414935.0000,386671.0000,417991.0000,387553.0000,416317.0000,416307.0000,416167.0000,417910.0000,417769.0000,418802.0000,415505.0000,417920.0000,416017.0000,417249.0000,417119.0000,418161.0000,415916.0000,387673.0000,419132.0000,416297.0000,418220.0000,415606.0000,422238.0000,412640.0000,417530.0000,418141.0000,416678.0000,417951.0000,387142.0000,418321.0000,417720.0000,417108.0000,447075.0000,416447.0000,417890.0000,417309.0000,417119.0000,417790.0000,417580.0000,417990.0000,387934.0000,423280.0000,471442.0000,415986.0000,417740.0000,417589.0000,417750.0000,387743.0000,417650.0000,418010.0000,416728.0000,417409.0000,417459.0000,388535.0000,412410.0000,408122.0000,433910.0000,407431.0000,435033.0000,433910.0000,408282.0000,408432.0000,407391.0000,434281.0000,433680.0000,408382.0000,408883.0000,432418.0000,410546.0000,431677.0000,407972.0000,435083.0000,416708.0000,419142.0000,415636.0000,450211.0000,469658.0000,416618.0000,417079.0000,417228.0000,418101.0000,417880.0000,417890.0000,416248.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > using a dedicated scheduler thread,contracting tree topology,100,1,52377200,509130.8700,486194.9400,616197.2300,217305.8509,18608.7322,516852.9015,"benchmark,group:scheduler","475990.0000,533961.0000,2662114.0000,490919.0000,496168.0000,493714.0000,507851.0000,483384.0000,483574.0000,484686.0000,511457.0000,473345.0000,501599.0000,474858.0000,502090.0000,473386.0000,531877.0000,474848.0000,503322.0000,475780.0000,503873.0000,473555.0000,504976.0000,475560.0000,503552.0000,474217.0000,504224.0000,475409.0000,500557.0000,479457.0000,472062.0000,475118.0000,468757.0000,474468.0000,476451.0000,474577.0000,475690.0000,474398.0000,504835.0000,475339.0000,505376.0000,475099.0000,469628.0000,475038.0000,476261.0000,475529.0000,505737.0000,474658.0000,476211.0000,475610.0000,475759.0000,475680.0000,533579.0000,475609.0000,468636.0000,476140.0000,475489.0000,475739.0000,503953.0000,475410.0000,497070.0000,512179.0000,468105.0000,478796.0000,472013.0000,481520.0000,470540.0000,475569.0000,469779.0000,475108.0000,504534.0000,516918.0000,463787.0000,479437.0000,472093.0000,474958.0000,472775.0000,474207.0000,500958.0000,477894.0000,473445.0000,474909.0000,497711.0000,479637.0000,471582.0000,474628.0000,469638.0000,475549.0000,534992.0000,482432.0000,496900.0000,563336.0000,533389.0000,491309.0000,485719.0000,563406.0000,474447.0000,504565.0000,476601.0000,503513.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > using a dedicated scheduler thread,wave_sim topology,100,1,294739800,2981995.2300,2963905.7700,3020709.8700,129842.8096,58001.3705,268035.7692,"benchmark,group:scheduler","3002829.0000,3029220.0000,4061927.0000,2957734.0000,3115384.0000,2965809.0000,2942786.0000,2939920.0000,2971801.0000,2939119.0000,2944860.0000,2957774.0000,3000305.0000,2999113.0000,3001838.0000,2998512.0000,3001507.0000,2935863.0000,2938618.0000,2964317.0000,2972472.0000,2998512.0000,2974115.0000,2970228.0000,2973925.0000,3000996.0000,2971420.0000,2969747.0000,2950911.0000,2976099.0000,2982270.0000,2966982.0000,2994605.0000,2968895.0000,3003922.0000,2997480.0000,2740142.0000,2524413.0000,2551625.0000,2948227.0000,2985938.0000,2969967.0000,2969997.0000,2971180.0000,2999363.0000,2977812.0000,2993282.0000,3009091.0000,3001267.0000,2972723.0000,2973434.0000,2971901.0000,2972622.0000,3030853.0000,2972101.0000,3002660.0000,3000355.0000,3001948.0000,2971080.0000,3002099.0000,2936945.0000,2997479.0000,2999744.0000,2972633.0000,2972131.0000,3031674.0000,2971530.0000,2978504.0000,3004704.0000,2982060.0000,2970799.0000,2974105.0000,2942005.0000,2943587.0000,2942355.0000,2991077.0000,2970869.0000,3002970.0000,2970789.0000,2996577.0000,3000976.0000,3030292.0000,2972192.0000,2973615.0000,2971510.0000,3031784.0000,2971992.0000,3005996.0000,2967433.0000,3001577.0000,2971680.0000,3002900.0000,2970488.0000,3002520.0000,2969987.0000,2998982.0000,2972081.0000,3000565.0000,3002189.0000,2972332.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > using a dedicated scheduler thread,jacobi topology,100,1,82215200,834805.6600,805539.5500,973542.6500,279418.9922,19687.4376,665140.8565,"benchmark,group:scheduler","817427.0000,809723.0000,3607416.0000,781860.0000,797520.0000,832506.0000,800676.0000,834069.0000,861621.0000,804793.0000,805304.0000,806386.0000,806287.0000,805275.0000,865619.0000,804964.0000,827797.0000,806327.0000,804593.0000,805515.0000,836303.0000,808490.0000,834389.0000,836113.0000,835742.0000,805956.0000,835752.0000,805906.0000,778323.0000,806798.0000,806597.0000,779616.0000,806927.0000,804873.0000,835652.0000,806507.0000,831104.0000,835301.0000,809242.0000,804533.0000,835692.0000,807348.0000,778854.0000,836623.0000,837124.0000,863415.0000,778714.0000,806767.0000,782331.0000,804262.0000,806446.0000,778133.0000,809823.0000,805896.0000,836614.0000,807028.0000,778013.0000,807008.0000,808260.0000,805866.0000,778543.0000,807599.0000,778864.0000,807829.0000,806797.0000,805465.0000,778985.0000,778193.0000,806917.0000,778444.0000,778073.0000,808811.0000,809101.0000,805696.0000,778865.0000,807308.0000,810263.0000,833438.0000,807880.0000,779005.0000,778143.0000,807659.0000,779696.0000,835592.0000,807839.0000,778133.0000,779836.0000,806877.0000,806787.0000,778053.0000,808240.0000,779565.0000,779666.0000,779496.0000,807689.0000,814502.0000,818910.0000,790687.0000,816265.0000,816836.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: single-threaded graph generation,soup topology,100,1,432950100,3831595.9400,3790122.0100,4033593.9500,405353.3352,11889.9813,967036.4596,"benchmark,group:scheduler","3780333.0000,3789852.0000,7862872.0000,3815801.0000,3834647.0000,3805492.0000,3790031.0000,3787327.0000,3778901.0000,3788068.0000,3798127.0000,3783290.0000,3786175.0000,3778300.0000,3781896.0000,3781495.0000,3778590.0000,3820139.0000,3781265.0000,3800392.0000,3797396.0000,3807515.0000,3806012.0000,3806022.0000,3793639.0000,3799370.0000,3812264.0000,3798087.0000,3801784.0000,3807234.0000,3803166.0000,3798258.0000,3806844.0000,3810942.0000,3809349.0000,3800712.0000,3807275.0000,3812915.0000,3797646.0000,3800110.0000,3791194.0000,3803347.0000,3788910.0000,3784211.0000,3782457.0000,3773540.0000,3767148.0000,3785113.0000,3785714.0000,3786775.0000,3800902.0000,3780143.0000,3794290.0000,3784130.0000,3780484.0000,3782066.0000,3791866.0000,3783489.0000,3789060.0000,3777518.0000,3777037.0000,3787577.0000,3780904.0000,3777428.0000,3785423.0000,3806483.0000,3780704.0000,3778500.0000,3783229.0000,3780885.0000,3777158.0000,3774693.0000,3785554.0000,3794771.0000,3786636.0000,3786946.0000,3777468.0000,3793358.0000,3778489.0000,3772359.0000,3776846.0000,3786696.0000,3794300.0000,3790072.0000,3778149.0000,3787788.0000,3782257.0000,3779592.0000,3780223.0000,3792957.0000,3827663.0000,3805642.0000,3800823.0000,3782608.0000,3796194.0000,3778890.0000,3775564.0000,3789842.0000,3789401.0000,3786595.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: single-threaded graph generation,chain topology,100,1,124127200,1087766.3500,1084095.0200,1104710.6400,34347.1323,3452.9697,81573.5766,"benchmark,group:scheduler","1089963.0000,1079955.0000,1427224.0000,1097939.0000,1086237.0000,1081177.0000,1086407.0000,1086597.0000,1085826.0000,1085315.0000,1085615.0000,1083141.0000,1082149.0000,1083291.0000,1090335.0000,1084504.0000,1084254.0000,1085626.0000,1085345.0000,1084193.0000,1080947.0000,1085716.0000,1081157.0000,1084774.0000,1086537.0000,1084224.0000,1084995.0000,1083823.0000,1083842.0000,1083341.0000,1081418.0000,1088350.0000,1087319.0000,1087590.0000,1079815.0000,1081969.0000,1079604.0000,1080867.0000,1079754.0000,1083021.0000,1086498.0000,1081077.0000,1084954.0000,1085826.0000,1080165.0000,1083391.0000,1081959.0000,1081628.0000,1087749.0000,1082190.0000,1080897.0000,1084894.0000,1109541.0000,1085756.0000,1084764.0000,1084544.0000,1086668.0000,1088691.0000,1085655.0000,1083201.0000,1084263.0000,1083552.0000,1080967.0000,1082109.0000,1083090.0000,1090315.0000,1084905.0000,1084574.0000,1080576.0000,1081378.0000,1082450.0000,1082119.0000,1082841.0000,1085576.0000,1093892.0000,1083592.0000,1083442.0000,1083642.0000,1080586.0000,1083171.0000,1081629.0000,1080335.0000,1083412.0000,1086437.0000,1085285.0000,1084514.0000,1083001.0000,1084254.0000,1083001.0000,1080085.0000,1084514.0000,1091367.0000,1081198.0000,1080707.0000,1085967.0000,1082099.0000,1078903.0000,1082440.0000,1083943.0000,1082300.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: single-threaded graph generation,expanding tree topology,100,1,129910100,1108145.7100,1100343.0200,1121602.2100,50670.4643,29648.1583,95474.9484,"benchmark,group:scheduler","1117416.0000,1111185.0000,1493328.0000,1144507.0000,1120321.0000,1119791.0000,1115923.0000,1117717.0000,1115021.0000,1120633.0000,1140018.0000,1115853.0000,1112758.0000,1113408.0000,1115973.0000,1112828.0000,1109662.0000,1115202.0000,1122476.0000,1111014.0000,1110563.0000,1111305.0000,1110292.0000,1112136.0000,1110883.0000,1108209.0000,1110403.0000,1116684.0000,1109231.0000,1110654.0000,1109271.0000,1109831.0000,1112266.0000,1106174.0000,990305.0000,984845.0000,985676.0000,985917.0000,990064.0000,986879.0000,984614.0000,1113579.0000,1112817.0000,1117777.0000,1114651.0000,1117416.0000,1110352.0000,1107357.0000,1112106.0000,1111696.0000,1111886.0000,1110173.0000,1112136.0000,1114460.0000,1115522.0000,1115032.0000,1114431.0000,1112677.0000,1110653.0000,1113939.0000,1111425.0000,1108329.0000,1109672.0000,1111225.0000,1110853.0000,1108228.0000,1113769.0000,1112176.0000,1113799.0000,1109381.0000,1115913.0000,1109911.0000,1108690.0000,1112116.0000,1108540.0000,1110653.0000,1113819.0000,1114581.0000,1108710.0000,1108469.0000,1110273.0000,1106977.0000,1108770.0000,1111796.0000,1111134.0000,1110422.0000,1116644.0000,1113820.0000,1108680.0000,1110704.0000,1112527.0000,1108670.0000,1111205.0000,1132926.0000,1110583.0000,1117135.0000,1111985.0000,1110823.0000,1107547.0000,1111795.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: single-threaded graph generation,contracting tree topology,100,1,143750700,1242713.8800,1238407.2400,1260741.1700,38338.4304,5406.6419,89396.2767,"benchmark,group:scheduler","1236912.0000,1234758.0000,1613326.0000,1258393.0000,1242563.0000,1240088.0000,1238596.0000,1243765.0000,1237413.0000,1238545.0000,1236993.0000,1237524.0000,1236531.0000,1232925.0000,1241661.0000,1232735.0000,1234868.0000,1237003.0000,1239928.0000,1238836.0000,1236331.0000,1243044.0000,1237724.0000,1232634.0000,1236602.0000,1243685.0000,1236422.0000,1236061.0000,1242213.0000,1259546.0000,1237684.0000,1236662.0000,1242864.0000,1235690.0000,1234498.0000,1241592.0000,1235270.0000,1236081.0000,1235700.0000,1239918.0000,1235500.0000,1237794.0000,1235380.0000,1234869.0000,1232384.0000,1235670.0000,1241922.0000,1238896.0000,1250127.0000,1234308.0000,1238325.0000,1241301.0000,1236612.0000,1242032.0000,1236501.0000,1233997.0000,1237784.0000,1245078.0000,1235209.0000,1235139.0000,1241691.0000,1235490.0000,1233777.0000,1234939.0000,1238425.0000,1235449.0000,1235269.0000,1238866.0000,1234819.0000,1231593.0000,1235279.0000,1244827.0000,1235530.0000,1235630.0000,1240529.0000,1237354.0000,1236251.0000,1233096.0000,1240609.0000,1234818.0000,1236752.0000,1236191.0000,1240359.0000,1234378.0000,1235741.0000,1243435.0000,1238406.0000,1237032.0000,1233286.0000,1239909.0000,1234809.0000,1237484.0000,1250017.0000,1237193.0000,1236843.0000,1234398.0000,1238996.0000,1238165.0000,1316934.0000,1244407.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: single-threaded graph generation,wave_sim topology,100,1,643952300,5210397.6700,5184153.4400,5334056.6600,250169.8606,16631.1494,595746.0879,"benchmark,group:scheduler","5186188.0000,5204092.0000,7692438.0000,5192660.0000,5175157.0000,5180768.0000,5191348.0000,5192810.0000,5237916.0000,5194234.0000,5184084.0000,5195385.0000,5193702.0000,5162273.0000,5178212.0000,5178314.0000,5207899.0000,5189635.0000,5178334.0000,5190325.0000,5186118.0000,5193312.0000,5171320.0000,5174466.0000,5170819.0000,5178333.0000,5199153.0000,5203440.0000,5177461.0000,5180778.0000,5202509.0000,5188763.0000,5177371.0000,5173685.0000,5191307.0000,5178113.0000,5167523.0000,5154588.0000,5165128.0000,5168024.0000,5168164.0000,5176149.0000,5170498.0000,5173354.0000,5168635.0000,5188132.0000,5207679.0000,5184635.0000,5177211.0000,5162844.0000,5164798.0000,5178343.0000,5195506.0000,5195105.0000,5186499.0000,5184484.0000,5187060.0000,5169066.0000,5184164.0000,5199423.0000,5170418.0000,5177331.0000,5173193.0000,5153406.0000,5188102.0000,5189344.0000,5175799.0000,5186268.0000,5188914.0000,5170017.0000,5200626.0000,5193211.0000,5164206.0000,5205074.0000,5295555.0000,5170068.0000,5191087.0000,5186278.0000,5171530.0000,5186449.0000,5187000.0000,5185197.0000,5201017.0000,5215624.0000,5187772.0000,5197429.0000,5255549.0000,5160219.0000,5184535.0000,5184936.0000,5180307.0000,5173193.0000,5185126.0000,5173554.0000,5182231.0000,5194484.0000,5173324.0000,5171400.0000,5207478.0000,5172782.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: single-threaded graph generation,jacobi topology,100,1,171816000,1474823.5900,1470351.7400,1492457.4600,39081.0034,9315.5401,90175.2778,"benchmark,group:scheduler","1469663.0000,1457561.0000,1847740.0000,1476987.0000,1469684.0000,1473561.0000,1466117.0000,1520581.0000,1470886.0000,1470055.0000,1486576.0000,1473351.0000,1467539.0000,1472519.0000,1464554.0000,1474032.0000,1467219.0000,1473311.0000,1468562.0000,1463262.0000,1475865.0000,1466869.0000,1476026.0000,1464123.0000,1474503.0000,1465296.0000,1473010.0000,1462069.0000,1472058.0000,1463091.0000,1474032.0000,1466218.0000,1474573.0000,1461058.0000,1471367.0000,1465446.0000,1552681.0000,1474022.0000,1467810.0000,1473140.0000,1465546.0000,1471768.0000,1467059.0000,1475024.0000,1466928.0000,1472289.0000,1463742.0000,1473330.0000,1468401.0000,1471327.0000,1467760.0000,1469313.0000,1472339.0000,1463382.0000,1469022.0000,1465846.0000,1471327.0000,1466547.0000,1470174.0000,1463682.0000,1473231.0000,1461418.0000,1476486.0000,1464894.0000,1473270.0000,1464814.0000,1473431.0000,1470215.0000,1467209.0000,1473331.0000,1467149.0000,1472409.0000,1469213.0000,1472590.0000,1465256.0000,1499450.0000,1466007.0000,1476237.0000,1465476.0000,1472749.0000,1469384.0000,1469914.0000,1463923.0000,1467630.0000,1462280.0000,1461228.0000,1471517.0000,1464745.0000,1477369.0000,1466948.0000,1476406.0000,1468101.0000,1472649.0000,1466057.0000,1473400.0000,1467940.0000,1470986.0000,1465386.0000,1473280.0000,1466558.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > using a dedicated scheduler thread,soup topology,100,1,317276400,3109717.5300,3091583.7500,3127965.8000,92425.0056,57384.3050,137739.1339,"benchmark,group:scheduler","3096146.0000,3125752.0000,3511664.0000,3097810.0000,3583981.0000,3114812.0000,3110574.0000,3123528.0000,3122908.0000,3094093.0000,3127316.0000,3095065.0000,3125452.0000,3123699.0000,3096087.0000,3124741.0000,3096497.0000,3125142.0000,3124080.0000,3125763.0000,3096307.0000,3122928.0000,3126785.0000,3124501.0000,3171630.0000,3098541.0000,3108931.0000,3111205.0000,3072491.0000,3078874.0000,3110654.0000,3075708.0000,3118339.0000,3090716.0000,3072882.0000,3100685.0000,3127145.0000,3093982.0000,2742816.0000,2700777.0000,2743759.0000,3094233.0000,3126735.0000,3095726.0000,3127035.0000,3094464.0000,3126835.0000,3095576.0000,3125462.0000,3095966.0000,3126193.0000,3097109.0000,3126414.0000,3122917.0000,3126314.0000,3096658.0000,3125563.0000,3095525.0000,3127025.0000,3095065.0000,3097399.0000,3124711.0000,3095735.0000,3125823.0000,3097299.0000,3125292.0000,3090296.0000,3126864.0000,3124220.0000,3116255.0000,3086759.0000,3129570.0000,3111176.0000,3126474.0000,3125613.0000,3102047.0000,3155419.0000,3089233.0000,3128007.0000,3094594.0000,3125883.0000,3123428.0000,3096878.0000,3100875.0000,3126274.0000,3124069.0000,3126694.0000,3096588.0000,3121665.0000,3124300.0000,3096748.0000,3128859.0000,3151491.0000,3125482.0000,3093912.0000,3126864.0000,3093982.0000,3102378.0000,3113239.0000,3143777.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > using a dedicated scheduler thread,chain topology,100,1,136768400,1375165.0100,1364767.9000,1415654.0100,93346.6917,17942.9600,219144.6491,"benchmark,group:scheduler","1347362.0000,1376698.0000,2284859.0000,1332553.0000,1368111.0000,1369333.0000,1371768.0000,1372480.0000,1401685.0000,1373631.0000,1374694.0000,1374744.0000,1402797.0000,1373852.0000,1404400.0000,1374162.0000,1375455.0000,1405512.0000,1375926.0000,1434948.0000,1374684.0000,1405693.0000,1376097.0000,1413557.0000,1363543.0000,1367299.0000,1392006.0000,1367059.0000,1366468.0000,1397226.0000,1375075.0000,1347542.0000,1346730.0000,1377179.0000,1346811.0000,1377309.0000,1349175.0000,1345438.0000,1375816.0000,1346671.0000,1376497.0000,1347101.0000,1348074.0000,1346400.0000,1377890.0000,1345288.0000,1376848.0000,1348114.0000,1376597.0000,1346981.0000,1347983.0000,1346610.0000,1377109.0000,1346741.0000,1377239.0000,1347432.0000,1377228.0000,1347261.0000,1377048.0000,1346821.0000,1347872.0000,1347272.0000,1376588.0000,1346510.0000,1376667.0000,1346931.0000,1376467.0000,1346911.0000,1347672.0000,1356769.0000,1376778.0000,1347092.0000,1376457.0000,1347282.0000,1377168.0000,1346831.0000,1377058.0000,1346280.0000,1376587.0000,1346851.0000,1376648.0000,1347773.0000,1352883.0000,1371718.0000,1346751.0000,1346931.0000,1376858.0000,1348194.0000,1376838.0000,1347442.0000,1349005.0000,1375836.0000,1375706.0000,1376998.0000,1347232.0000,1376788.0000,1346781.0000,1376988.0000,1346691.0000,1376787.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > using a dedicated scheduler thread,expanding tree topology,100,1,142359200,1381365.5400,1361990.8200,1469401.2700,181206.8674,19783.3751,430072.9372,"benchmark,group:scheduler","1373482.0000,1343664.0000,3172601.0000,1358132.0000,1396085.0000,1337093.0000,1372399.0000,1392508.0000,1399400.0000,1399100.0000,1342002.0000,1372389.0000,1374914.0000,1366849.0000,1371237.0000,1372369.0000,1373682.0000,1366197.0000,1373842.0000,1371788.0000,1343554.0000,1343194.0000,1373772.0000,1342863.0000,1374013.0000,1372589.0000,1373311.0000,1372951.0000,1403057.0000,1373170.0000,1344416.0000,1345278.0000,1372660.0000,1344737.0000,1344066.0000,1374032.0000,1343635.0000,1431501.0000,1372569.0000,1344928.0000,1372921.0000,1344276.0000,1375616.0000,1369444.0000,1391295.0000,1361669.0000,1388039.0000,1344006.0000,1367881.0000,1343434.0000,1373061.0000,1372981.0000,1344426.0000,1373000.0000,1403728.0000,1372389.0000,1344847.0000,1373160.0000,1403118.0000,1343705.0000,1402867.0000,1343345.0000,1349757.0000,1343565.0000,1344647.0000,1343614.0000,1372981.0000,1343434.0000,1362270.0000,1343565.0000,1344586.0000,1343625.0000,1373501.0000,1343634.0000,1373852.0000,1343544.0000,1344286.0000,1344106.0000,1374143.0000,1372780.0000,1344667.0000,1343514.0000,1373031.0000,1344506.0000,1403098.0000,1343996.0000,1373531.0000,1343815.0000,1343554.0000,1344216.0000,1402888.0000,1344467.0000,1372690.0000,1343776.0000,1344717.0000,1344036.0000,1344958.0000,1343434.0000,1408248.0000,1338285.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > using a dedicated scheduler thread,contracting tree topology,100,1,136218100,1347163.4000,1330752.8200,1422305.9300,153388.0589,17089.2391,363870.9691,"benchmark,group:scheduler","1315401.0000,1340469.0000,2862704.0000,1301525.0000,1343755.0000,1304340.0000,1337824.0000,1339547.0000,1372489.0000,1312336.0000,1342202.0000,1313157.0000,1342793.0000,1313819.0000,1372580.0000,1313608.0000,1342502.0000,1343445.0000,1316564.0000,1316143.0000,1317605.0000,1339147.0000,1316663.0000,1313117.0000,1346500.0000,1314460.0000,1314900.0000,1345358.0000,1344657.0000,1345187.0000,1315241.0000,1345268.0000,1315101.0000,1345599.0000,1316032.0000,1345488.0000,1315561.0000,1315541.0000,1346420.0000,1314690.0000,1344266.0000,1346300.0000,1317856.0000,1307566.0000,1346720.0000,1342763.0000,1315552.0000,1345428.0000,1344988.0000,1345829.0000,1316463.0000,1316494.0000,1315411.0000,1346600.0000,1344867.0000,1345539.0000,1315401.0000,1346049.0000,1346330.0000,1316864.0000,1312816.0000,1346340.0000,1314279.0000,1315913.0000,1345529.0000,1344767.0000,1345088.0000,1315151.0000,1403438.0000,1315391.0000,1345539.0000,1344386.0000,1344777.0000,1319148.0000,1313328.0000,1346771.0000,1342603.0000,1315592.0000,1346640.0000,1344657.0000,1345638.0000,1315572.0000,1373792.0000,1316222.0000,1316323.0000,1315060.0000,1345679.0000,1314911.0000,1347272.0000,1345318.0000,1314259.0000,1345859.0000,1311675.0000,1345408.0000,1315141.0000,1345809.0000,1315552.0000,1345137.0000,1316023.0000,1316513.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > using a dedicated scheduler thread,wave_sim topology,100,1,770765500,7774915.3900,7736191.8800,7791040.9100,120149.8836,50537.9933,241205.4620,"benchmark,group:scheduler","7792097.0000,7785796.0000,8227673.0000,7812856.0000,7842623.0000,7755819.0000,7759556.0000,7814991.0000,7795915.0000,7774575.0000,7757642.0000,7762001.0000,7819018.0000,7762712.0000,7760438.0000,7788460.0000,7763503.0000,7750719.0000,7800022.0000,7789102.0000,7794242.0000,7818537.0000,7790504.0000,7820511.0000,7790674.0000,7760728.0000,7789863.0000,7792158.0000,7792688.0000,7783411.0000,7774825.0000,7801145.0000,7820562.0000,7819379.0000,7791205.0000,7733407.0000,7794192.0000,7754847.0000,7763894.0000,7790905.0000,7851219.0000,7795825.0000,7776328.0000,7761409.0000,7787598.0000,7819299.0000,7792328.0000,7820612.0000,7791937.0000,7790424.0000,7820551.0000,7791817.0000,7763073.0000,7789442.0000,7819850.0000,7822856.0000,7791116.0000,7789472.0000,7821473.0000,7793260.0000,7811705.0000,7796546.0000,7771288.0000,7773152.0000,7761459.0000,7761349.0000,7792278.0000,7737514.0000,7759505.0000,7799161.0000,7819620.0000,7818778.0000,7825841.0000,7792588.0000,7769194.0000,7783851.0000,7787037.0000,7763233.0000,6779127.0000,7359177.0000,7760828.0000,7763153.0000,7791136.0000,7791466.0000,7790605.0000,7762071.0000,7757281.0000,7763494.0000,7732214.0000,7764294.0000,7734268.0000,7753244.0000,7760358.0000,7768242.0000,7732986.0000,7762101.0000,7733556.0000,7814109.0000,7794743.0000,7815903.0000" +building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > using a dedicated scheduler thread,jacobi topology,100,1,190743600,1907588.9500,1893578.1100,1944517.0200,103430.8371,15878.4024,205717.8021,"benchmark,group:scheduler","1901051.0000,1883768.0000,2754680.0000,1894298.0000,1874351.0000,1905981.0000,1876435.0000,1906622.0000,1878638.0000,2463548.0000,1874080.0000,1907854.0000,1878769.0000,1909848.0000,1877176.0000,1910169.0000,1879651.0000,1910018.0000,1878939.0000,1910980.0000,1879641.0000,1909938.0000,1880743.0000,1910188.0000,1879801.0000,1877477.0000,1881975.0000,1912774.0000,1874561.0000,1910218.0000,1880162.0000,1909337.0000,1880593.0000,1910800.0000,1887516.0000,1881454.0000,1880152.0000,1880904.0000,1875813.0000,1881244.0000,1880342.0000,1909547.0000,1880402.0000,1910249.0000,1880132.0000,1910239.0000,1879670.0000,1909909.0000,1880512.0000,1910289.0000,1880072.0000,1880853.0000,1907203.0000,1878638.0000,1886685.0000,1873840.0000,1909578.0000,1880232.0000,1910759.0000,1879951.0000,1910049.0000,1880702.0000,1910940.0000,1880282.0000,1910069.0000,1881234.0000,1875733.0000,1909348.0000,1945325.0000,1875924.0000,1911431.0000,1880873.0000,1910339.0000,1882246.0000,1910980.0000,1909998.0000,1881455.0000,1909407.0000,1909788.0000,1911010.0000,1883579.0000,1878939.0000,1903637.0000,1905580.0000,1884700.0000,1892455.0000,1881714.0000,1901212.0000,1889850.0000,1893036.0000,1882616.0000,1912223.0000,1900220.0000,1925438.0000,1902313.0000,1873970.0000,1887606.0000,1887496.0000,1891834.0000,1882095.0000" +normalizing randomized box sets - 2d,"small, native",100,45,2529000,561.2627,559.4507,565.8313,13.1266,2.5089,23.6453,"benchmark,group:grid","560.1333,559.6889,573.7111,565.2444,564.3556,563.4667,563.4667,562.1333,561.2444,561.2444,555.6889,561.4667,562.3556,559.9111,559.9111,558.7778,560.3556,560.1333,555.0222,559.6889,558.5556,559.6889,559.9111,558.1333,652.5333,561.4667,559.8889,556.3333,559.6889,559.6889,560.8000,561.0222,558.3333,558.8000,555.2444,558.5556,559.6889,558.3556,557.6889,561.0222,558.5556,558.8000,554.5778,558.7778,560.3556,559.2444,559.4667,559.9111,558.3333,559.0000,556.1333,559.2444,560.3556,559.6667,560.3556,559.6889,559.2444,554.7778,560.1333,558.3556,561.2444,557.6889,558.1111,650.5333,561.9111,561.4667,555.9111,559.8889,561.0222,560.1333,559.4667,558.5778,558.1333,556.1111,558.3556,558.1333,557.2222,559.4667,558.8000,559.6889,558.5556,553.8889,559.2444,559.2222,560.1111,560.1333,559.6889,559.4667,558.5778,555.8889,560.8000,558.8000,559.6889,559.6889,559.8889,559.8889,555.0222,557.4444,560.7778,559.2444" +normalizing randomized box sets - 2d,"small, embedded in 3d",100,38,2515600,679.5463,662.4258,759.2079,160.5182,14.5599,381.1222,"benchmark,group:grid","653.5526,657.7895,714.7105,677.5526,663.3158,675.9737,664.3684,667.0000,662.5263,770.8684,666.2105,663.2895,670.6842,665.6842,669.1053,668.8684,672.2632,653.0263,658.8421,658.5526,659.3684,659.6316,658.5526,655.6579,654.8684,660.6579,656.7105,661.7368,659.0789,660.9474,660.9474,655.3947,661.7368,658.0263,658.0526,662.7895,659.3421,658.3158,663.5789,652.2368,658.5526,656.4737,660.6579,659.3684,659.6316,659.3421,656.2105,662.2368,657.5000,2266.3421,673.6053,668.3158,662.5263,664.1053,660.6842,659.3421,658.5789,659.0789,660.6579,660.4211,662.2632,659.8684,657.2632,661.7368,658.5526,658.5789,658.0263,660.9474,660.1579,658.2895,654.6053,655.9474,658.2895,659.1053,658.5526,660.9211,654.0789,658.3158,658.8158,659.6053,663.0526,658.5789,661.4474,660.4211,653.5526,660.4211,790.9211,662.7895,662.2632,665.9474,661.7105,660.1316,657.2632,653.0263,659.0789,660.1579,657.5000,657.2368,659.8947,659.8684" +normalizing randomized box sets - 2d,"medium, native",100,5,3029000,6094.6360,6069.1300,6150.5960,186.0075,103.1761,295.6601,"benchmark,group:grid","6061.2000,6081.2000,6385.6000,6101.0000,6095.2000,6075.2000,6101.2000,6099.2000,6069.2000,6051.0000,6061.2000,6073.0000,6079.2000,6073.2000,6125.2000,6085.2000,6067.0000,7179.2000,6071.0000,6101.2000,6049.0000,6057.0000,6067.2000,6045.0000,6071.2000,6061.0000,6107.2000,6039.2000,6043.0000,6051.0000,6059.0000,6059.2000,6025.0000,6087.2000,6047.0000,6055.0000,6051.0000,6055.0000,6051.0000,6067.2000,6079.0000,6099.2000,6065.2000,6069.0000,6055.0000,6025.0000,6039.0000,6029.0000,6081.2000,6059.0000,7063.0000,6055.2000,6043.0000,6061.2000,6051.0000,6041.0000,6041.2000,6041.0000,6025.0000,6037.2000,6073.0000,6071.2000,6077.2000,6061.0000,6043.2000,6065.0000,6041.2000,6061.0000,6063.2000,6041.0000,6029.0000,6027.2000,6049.0000,6005.0000,6033.0000,6093.2000,6043.2000,6041.0000,6051.0000,6041.0000,6029.0000,6043.0000,6047.0000,7141.2000,6059.0000,6043.2000,6049.0000,6019.0000,6041.2000,6079.0000,6057.2000,6073.2000,6043.0000,6067.2000,6075.0000,6047.2000,6039.0000,6083.2000,6093.2000,6083.0000" +normalizing randomized box sets - 2d,"medium, embedded in 3d",100,4,2724800,6831.7325,6802.4550,6899.2100,216.1258,104.7648,381.5346,"benchmark,group:grid","6755.0000,6804.7500,7108.0000,6835.0000,6827.5000,6810.0000,6822.5000,6777.2500,7736.7500,6792.2500,6792.2500,6752.2500,6797.5000,6800.0000,6769.7500,6785.0000,6814.7500,6789.7500,6795.0000,6794.7500,6800.0000,6855.0000,6805.0000,6812.5000,6807.2500,6817.5000,6800.0000,6802.2500,6754.7500,6822.5000,6802.2500,6797.5000,6792.5000,6777.2500,6762.5000,6782.2500,6775.0000,6792.2500,6777.5000,6784.7500,6777.5000,6767.2500,6767.5000,6734.7500,7897.0000,6820.0000,6754.7500,6792.5000,6794.7500,6795.0000,6764.7500,6785.0000,6757.2500,6752.2500,6792.5000,6815.0000,6787.2500,6765.0000,6777.2500,6790.0000,6787.2500,6777.5000,6759.7500,6815.0000,6780.0000,6782.2500,6827.5000,6807.5000,6774.7500,6790.0000,6810.0000,6792.2500,6800.0000,6794.7500,6772.5000,6787.2500,6799.7500,6780.0000,6744.7500,6789.7500,6759.7500,8395.5000,6809.7500,6805.0000,6805.0000,6799.7500,6807.5000,6827.5000,6810.0000,6807.2500,6807.2500,6800.0000,6787.2500,6819.7500,6812.5000,6790.0000,6822.2500,6779.7500,6787.5000,6799.7500" +normalizing randomized box sets - 2d,"large, native",100,1,19901000,199979.0500,199648.8900,200381.2700,1851.5081,1566.6512,2110.4938,"benchmark,group:grid","199045.0000,199546.0000,201641.0000,199816.0000,203173.0000,198975.0000,199326.0000,199125.0000,198936.0000,203734.0000,198695.0000,199155.0000,198805.0000,198875.0000,204767.0000,199095.0000,198915.0000,198384.0000,199016.0000,203714.0000,198975.0000,199526.0000,198665.0000,199106.0000,202812.0000,199446.0000,199326.0000,199376.0000,198765.0000,203674.0000,199166.0000,199296.0000,198885.0000,199015.0000,203785.0000,199205.0000,199046.0000,199316.0000,198724.0000,203123.0000,199386.0000,199326.0000,199116.0000,199236.0000,202942.0000,198525.0000,199686.0000,198805.0000,199527.0000,204165.0000,198524.0000,198995.0000,198986.0000,198514.0000,203544.0000,198805.0000,199456.0000,198965.0000,198946.0000,203153.0000,199055.0000,198605.0000,198694.0000,198515.0000,203193.0000,199276.0000,199085.0000,199236.0000,198935.0000,203995.0000,199416.0000,198364.0000,198905.0000,198926.0000,204054.0000,198845.0000,198595.0000,198875.0000,199997.0000,203845.0000,198925.0000,198534.0000,199316.0000,199166.0000,203403.0000,198825.0000,199477.0000,198875.0000,198654.0000,202853.0000,198685.0000,199235.0000,199487.0000,199526.0000,203474.0000,199336.0000,199005.0000,198925.0000,199196.0000,204025.0000" +normalizing randomized box sets - 2d,"large, embedded in 3d",100,1,21501800,215064.5400,214707.4500,215503.2700,2011.3951,1716.7651,2275.0661,"benchmark,group:grid","213994.0000,219233.0000,215536.0000,214154.0000,219454.0000,213873.0000,214625.0000,213743.0000,219334.0000,214154.0000,214415.0000,214835.0000,213433.0000,218733.0000,214013.0000,213863.0000,213894.0000,213232.0000,218763.0000,213452.0000,213944.0000,214224.0000,217731.0000,214064.0000,213923.0000,214365.0000,214524.0000,218612.0000,213894.0000,214124.0000,214104.0000,214334.0000,219384.0000,213793.0000,213092.0000,213904.0000,217821.0000,213703.0000,213333.0000,213973.0000,213493.0000,219384.0000,213683.0000,213713.0000,214184.0000,213873.0000,219324.0000,213813.0000,214023.0000,213353.0000,219253.0000,213393.0000,213653.0000,213643.0000,213994.0000,218482.0000,214154.0000,214004.0000,213523.0000,214504.0000,219373.0000,214174.0000,214053.0000,214013.0000,217461.0000,215015.0000,213824.0000,213593.0000,214034.0000,217790.0000,213963.0000,213583.0000,214234.0000,214946.0000,219925.0000,214284.0000,213944.0000,213883.0000,218202.0000,214475.0000,214174.0000,214014.0000,214584.0000,218872.0000,214544.0000,213673.0000,213813.0000,218843.0000,214885.0000,214044.0000,213924.0000,214604.0000,218201.0000,214084.0000,214134.0000,214014.0000,214004.0000,218091.0000,213874.0000,214284.0000" +normalizing randomized box sets - 3d,small - native,100,10,2510000,2517.8160,2507.0940,2539.5820,75.2329,44.6526,117.7121,"benchmark,group:grid","2503.6000,2490.5000,2663.9000,2559.7000,2497.5000,2540.6000,2547.7000,2511.6000,2507.5000,2506.6000,2529.6000,2490.5000,2923.4000,2488.5000,2498.5000,2514.5000,2500.6000,2503.5000,2493.6000,2499.5000,2503.6000,2489.5000,2523.6000,2522.6000,2512.6000,2509.5000,2490.6000,2523.6000,2482.5000,2500.5000,2506.6000,2513.6000,2533.6000,2517.6000,2490.5000,2512.6000,2485.5000,2500.5000,2500.5000,2504.6000,2512.5000,2491.6000,2480.5000,2477.5000,2489.5000,2492.5000,2490.5000,2491.5000,2488.5000,2530.6000,2480.5000,2489.5000,2939.4000,2503.5000,2507.6000,2528.6000,2522.6000,2496.5000,2476.5000,2488.5000,2506.5000,2524.6000,2501.6000,2507.5000,2502.5000,2513.6000,2482.5000,2515.6000,2494.5000,2494.5000,2491.5000,2498.5000,2485.6000,2478.5000,2507.5000,2506.6000,2509.6000,2504.5000,2495.6000,2491.5000,2523.6000,2526.6000,2499.5000,2490.6000,2502.5000,2524.6000,2504.6000,2523.6000,2491.5000,2493.5000,2503.5000,2915.3000,2508.6000,2504.6000,2532.6000,2483.5000,2478.5000,2498.6000,2499.5000,2489.5000" +normalizing randomized box sets - 3d,medium - native,100,3,2802000,9316.8033,9277.5800,9408.8400,287.7077,115.3313,497.5333,"benchmark,group:grid","9320.3333,9246.6667,10319.0000,9427.0000,9400.6667,9353.6667,9400.6667,9357.0000,9330.3333,9303.6667,9323.6667,9337.0000,9343.6667,9323.6667,9260.3333,9233.3333,9256.6667,9283.6667,9253.6667,9293.6667,9313.6667,9313.6667,9250.3333,9213.3333,9277.0000,9260.3333,9293.6667,9263.6667,9350.3333,9283.6667,9250.3333,9186.6667,9250.3333,9270.0000,9206.6667,9250.3333,9246.6667,11080.3333,9200.0000,9213.3333,9253.6667,9257.0000,9243.6667,9253.3333,9230.3333,9307.0000,9260.3333,9250.0000,9260.3333,9293.6667,9223.6667,9190.0000,9247.0000,9280.3333,9293.6667,9250.0000,9247.0000,9237.0000,9233.3333,9233.6667,9267.0000,9273.6667,9260.0000,9277.0000,9270.3333,9253.6667,9230.0000,9220.3333,9223.3333,9273.3333,9233.6667,9267.0000,11247.3333,9297.0000,9267.0000,9276.6667,9276.6667,9280.3333,9327.0000,9344.0000,9226.6667,9243.6667,9287.0000,9253.6667,9313.6667,9266.6667,9283.6667,9190.3333,9260.0000,9246.6667,9293.6667,9237.0000,9180.0000,9247.0000,9240.0000,9253.6667,9173.3333,9220.3333,9270.3333,9240.0000" +normalizing randomized box sets - 3d,large - native,100,1,219657700,2195116.4900,2193489.8500,2197349.5600,9667.7094,7382.2590,14696.7982,"benchmark,group:grid","2189258.0000,2199507.0000,2249802.0000,2191522.0000,2183086.0000,2195028.0000,2196661.0000,2197724.0000,2186553.0000,2204266.0000,2200459.0000,2185480.0000,2183276.0000,2186372.0000,2194638.0000,2202152.0000,2189798.0000,2202954.0000,2187384.0000,2215929.0000,2194016.0000,2205729.0000,2203935.0000,2196321.0000,2213554.0000,2182846.0000,2195570.0000,2186903.0000,2196000.0000,2200559.0000,2208033.0000,2194237.0000,2198325.0000,2190540.0000,2183176.0000,2203124.0000,2186472.0000,2183908.0000,2194257.0000,2194237.0000,2203584.0000,2180572.0000,2198735.0000,2193175.0000,2184288.0000,2196101.0000,2189929.0000,2201391.0000,2196301.0000,2200479.0000,2193015.0000,2192854.0000,2173557.0000,2196782.0000,2191021.0000,2204436.0000,2191572.0000,2187435.0000,2199196.0000,2198816.0000,2189969.0000,2201090.0000,2201651.0000,2188666.0000,2227309.0000,2196591.0000,2196852.0000,2191041.0000,2200508.0000,2186953.0000,2186122.0000,2200389.0000,2195339.0000,2193175.0000,2206811.0000,2187865.0000,2192083.0000,2187494.0000,2197243.0000,2190821.0000,2201962.0000,2188887.0000,2205669.0000,2196190.0000,2195359.0000,2203364.0000,2188626.0000,2191863.0000,2190189.0000,2196943.0000,2188726.0000,2182865.0000,2194919.0000,2190971.0000,2193055.0000,2189598.0000,2185541.0000,2199437.0000,2191953.0000,2190730.0000" +normalizing a fully mergeable tiling of boxes - 1,"small, native",100,748,2468400,33.4197,33.3273,33.6552,0.6812,0.1544,1.2295,"benchmark,group:grid","33.2687,33.3356,33.7500,33.6965,33.2433,33.4024,33.3222,33.1364,33.0682,33.3088,33.3890,33.3636,33.2687,33.3489,33.5642,33.1618,33.2286,33.5227,33.2553,33.4572,33.2152,33.3904,33.0000,33.2286,33.3623,33.3503,33.4559,33.3489,33.3757,33.0548,33.3890,33.1618,33.3890,33.2955,33.1751,33.3369,33.1350,33.5508,33.0949,33.6430,38.3730,33.1083,33.3088,33.3770,33.1484,33.5642,33.1618,33.3623,33.3770,33.4024,33.3489,33.1364,33.5896,33.5107,33.2687,33.2553,33.5227,33.3503,33.2152,33.2955,33.3623,33.3222,33.3623,33.4572,33.1618,33.3890,33.1350,33.3489,33.2152,33.2821,33.2968,33.3356,33.3770,33.1350,33.2019,33.1885,33.2019,33.6845,33.3222,33.5762,37.7433,33.1484,33.3757,33.5508,33.1217,33.3757,33.4826,33.3904,33.1484,33.3757,33.5909,33.2687,33.1618,33.2420,33.3890,33.1350,33.3757,33.1484,33.5227,33.3503" +normalizing a fully mergeable tiling of boxes - 1,"small, embedded in 3d",100,536,2465600,46.8375,46.6763,47.1930,1.1771,0.6814,1.8623,"benchmark,group:grid","46.7090,46.6698,48.5597,47.1194,46.5392,46.7276,46.3153,46.7257,46.7836,46.6325,46.4272,46.4646,53.2500,46.8955,46.6530,46.3526,46.5951,46.6530,46.9328,46.8377,46.8582,46.6716,46.7631,46.8769,46.5392,46.5410,46.5019,46.6903,46.6325,46.5597,46.5019,46.8396,46.7071,46.8582,46.7649,46.5765,46.1660,46.1660,46.7463,46.7444,46.7649,46.8396,46.7444,46.6903,46.9123,46.8004,46.5784,46.4459,46.5765,46.5597,46.4832,53.6250,46.4832,46.7090,46.5205,46.5951,46.4459,46.5205,46.2780,46.4851,46.4832,46.5765,46.5784,46.5578,46.4478,46.5951,46.3340,46.7649,46.6511,46.6716,46.6884,46.6903,46.7444,46.4646,46.7444,46.6325,46.2966,46.5205,46.6325,46.6884,46.5951,46.6325,46.4851,46.7444,46.7649,46.5578,46.3918,46.7257,46.3713,46.8750,46.5224,53.2313,46.6698,46.6157,46.7631,46.5597,46.2780,46.5951,46.4478,46.5578" +normalizing a fully mergeable tiling of boxes - 1,"medium, native",100,83,2506600,304.7323,303.4047,307.5533,9.3883,5.0898,15.8387,"benchmark,group:grid","299.5783,299.9398,321.4337,306.0964,306.9398,368.9880,304.7711,308.2651,307.4337,304.5301,305.4940,305.0120,304.4096,305.4940,305.6145,305.2530,305.9759,303.5663,304.6506,305.8554,306.5783,305.8554,306.2289,306.0964,306.2169,303.8072,305.6145,304.7711,304.6386,304.0361,303.9277,301.7590,301.0241,301.5181,303.0843,302.3494,301.9880,300.9157,300.4217,301.0241,298.8675,301.2651,301.3976,300.9036,300.3012,349.6867,300.3012,299.6988,298.6145,300.5542,300.1807,303.6867,305.2530,305.2530,307.5542,305.9759,303.0843,306.2169,306.2169,304.7711,305.2530,304.9036,303.9157,305.8675,303.4337,304.8916,303.5542,302.8434,302.1205,302.4819,301.7470,298.8554,303.2048,301.5181,302.8313,302.6024,300.7952,301.3855,300.9036,299.6988,301.6265,302.4819,301.8795,301.8675,344.3735,300.0602,302.7229,299.3373,301.3855,301.8795,301.1446,300.7952,301.1446,301.5181,298.8554,302.7229,301.2651,301.2771,301.6265,301.5181" +normalizing a fully mergeable tiling of boxes - 1,"medium, embedded in 3d",100,53,2544000,479.6245,477.8745,483.3713,12.5555,7.2903,19.9830,"benchmark,group:grid","477.2830,549.3019,479.9434,476.9057,476.3396,475.2075,478.2264,474.6226,477.0943,478.4151,474.4340,476.3208,478.7925,476.9057,474.4340,478.7925,475.3962,479.9245,480.1132,478.6038,478.4340,476.7170,473.6792,552.9057,477.0943,476.1509,473.1321,473.3019,475.3962,477.2830,475.2075,478.9811,476.5283,478.2264,478.8113,479.1698,475.2075,475.3962,475.7547,474.6226,472.3774,476.7170,475.0189,474.0566,473.8679,474.4528,479.5472,479.3585,477.0943,473.6792,476.1509,473.6981,474.0755,477.6604,477.6604,471.4151,472.1887,478.0377,478.7925,476.9057,476.7170,477.6604,546.2830,480.3208,478.2264,480.3019,476.3396,478.7925,477.8679,475.1887,476.1509,476.1509,478.8113,476.3208,480.3019,481.6226,482.7736,482.5849,481.6226,480.3019,473.8679,481.0755,475.3774,479.5472,477.8491,475.9623,477.0943,481.2453,479.5660,479.7358,480.4906,480.5094,481.2453,481.0755,480.4906,481.4528,481.0566,478.6038,481.8302,478.2264" +normalizing a fully mergeable tiling of boxes - 1,"large, native",100,4,3066000,7654.1125,7628.1075,7715.5450,193.9418,96.7353,343.3859,"benchmark,group:grid","7629.0000,7656.5000,7669.0000,7621.5000,7611.5000,7586.5000,9059.0000,7598.7500,7634.0000,7661.5000,7619.0000,7551.5000,7573.7500,7606.5000,7679.0000,7629.0000,7576.5000,7656.5000,7631.5000,7634.0000,7606.5000,7576.2500,7641.5000,7664.2500,7624.0000,7596.2500,7589.0000,7621.5000,7616.5000,7654.0000,7616.5000,7616.2500,7633.7500,7651.5000,7671.5000,7626.5000,7659.0000,7634.0000,8545.7500,7609.0000,7626.5000,7608.7500,7566.2500,7576.2500,7618.7500,7624.0000,7631.5000,7574.0000,7576.2500,7641.5000,7621.5000,7641.5000,7589.0000,7604.0000,7616.5000,7598.7500,7596.5000,7553.7500,7578.7500,7591.5000,7614.0000,7611.2500,7556.5000,7568.7500,7621.5000,7649.0000,7669.0000,7611.2500,7604.0000,7649.0000,7656.5000,8545.7500,7606.5000,7619.0000,7576.2500,7581.5000,7621.5000,7634.0000,7631.5000,7591.2500,7596.2500,7631.5000,7634.0000,7646.5000,7611.5000,7639.0000,7679.0000,7689.2500,7696.5000,7616.5000,7651.5000,7634.0000,7646.5000,7624.0000,7631.5000,7646.5000,7669.2500,7631.2500,7606.2500,7639.0000" +normalizing a fully mergeable tiling of boxes - 1,"large, embedded in 3d",100,3,3611700,12038.3300,12003.0500,12105.8433,238.2935,131.1384,357.6239,"benchmark,group:grid","11969.0000,12072.0000,12102.3333,12025.6667,11968.6667,11942.0000,11945.3333,12049.0000,12032.0000,11935.3333,11972.0000,12015.6667,11988.6667,11955.3333,11975.3333,11945.3333,13010.6667,11972.0000,11948.6667,12018.6667,11982.0000,11962.3333,11995.3333,11958.6667,12018.6667,11921.6667,11972.3333,11955.3333,12008.6667,11968.6667,12015.6667,11948.6667,12002.0000,11975.3333,12025.6667,11948.6667,12002.0000,11985.3333,12005.3333,11945.3333,12032.0000,12002.3333,11945.3333,11945.3333,13261.0000,11945.3333,11995.3333,11945.3333,11998.6667,11975.3333,11995.6667,11965.3333,12048.6667,11979.0000,11998.6667,11945.3333,12065.6667,12015.3333,11992.3333,11955.3333,12052.0000,12012.3333,11948.6667,11988.6667,11985.3333,12032.3333,11982.0000,12012.0000,11942.0000,12055.3333,11998.6667,13217.6667,12085.6667,12012.0000,11938.6667,11955.3333,12072.3333,12002.0000,11965.3333,11948.6667,11985.3333,12025.3333,11948.6667,12002.3333,11958.6667,12042.0000,11978.6667,12035.3333,11938.6667,11985.6667,11962.0000,11995.3333,11965.3333,12045.6667,12012.0000,12025.6667,11988.6667,12032.3333,11992.0000,13257.6667" +normalizing a fully mergeable tiling of boxes - 2,"small, native",100,237,2488500,105.5919,105.2529,106.3384,2.4752,1.4617,3.9110,"benchmark,group:grid","105.2996,104.8312,107.7468,105.0042,105.5063,105.0464,105.2954,105.4219,105.4684,105.5907,104.1139,105.0464,105.1688,105.2532,105.5527,105.4219,104.9620,104.2827,105.0422,119.4599,105.5907,105.1308,105.0422,105.0844,105.2152,104.1097,105.0000,105.4641,105.4684,105.5485,105.3418,105.1266,104.7890,105.4262,105.5907,105.2574,105.0000,105.3376,105.5105,104.4515,105.0000,105.0464,105.3797,105.3797,105.2532,105.5063,105.2574,105.0000,105.7215,105.0422,105.0422,105.0042,105.5063,105.6793,104.8734,105.5063,105.1266,105.2532,105.4262,119.2025,105.0464,104.9578,104.1983,105.3797,105.1730,105.0844,105.1266,104.9198,104.8734,104.3249,105.0422,105.4219,105.1688,105.2532,105.4262,105.0000,104.4093,105.5527,105.5063,105.2954,105.2532,105.6329,105.3840,104.1139,104.9156,105.4219,105.5485,105.1688,104.9620,105.0000,104.2405,104.9156,105.0000,105.0042,105.0422,104.9578,105.1308,104.1941,119.5823,106.3544" +normalizing a fully mergeable tiling of boxes - 2,"small, embedded in 3d",100,204,2488800,123.6470,123.2676,124.4991,2.7354,1.0697,4.7511,"benchmark,group:grid","123.0686,122.5245,129.2059,124.0490,123.9020,123.7059,123.8039,125.1275,123.9510,121.6912,121.8922,122.9167,122.7255,122.1814,122.2843,122.8186,123.3137,121.5931,122.6765,123.5588,123.2598,122.8725,122.8725,122.3775,122.1814,123.1667,122.8725,123.1667,123.6029,123.1176,121.9363,125.4755,121.9363,123.8529,123.4608,124.0490,141.0441,123.3627,123.3137,125.0784,124.6863,123.8529,121.8922,122.7206,122.9706,123.0147,123.4069,122.7745,124.4902,124.0000,123.0196,122.6225,123.1618,125.3775,124.8824,122.6765,122.1324,122.5294,122.4755,123.9020,124.3922,122.9706,122.5245,122.2353,123.6569,122.8676,123.4118,123.8529,124.8382,124.6373,123.1176,124.3922,122.9657,123.0196,122.9706,123.0637,141.7255,122.8725,121.9853,122.3824,123.1127,122.4755,123.0686,122.7696,123.2647,122.7745,122.9167,122.3333,122.7696,123.2647,123.1176,122.8676,123.7549,123.1176,122.0343,123.9020,123.5588,124.6912,124.6373,123.8039" +normalizing a fully mergeable tiling of boxes - 2,"medium, native",100,29,2540400,910.5000,907.1134,917.7676,24.2763,13.8019,39.0364,"benchmark,group:grid","895.4483,901.2759,935.4828,906.8276,913.4138,908.2069,903.0000,907.5172,908.5517,911.6897,905.4483,909.5862,906.8276,916.1379,907.1724,910.6207,911.6552,1036.3793,904.3793,908.5517,903.3793,917.8966,902.6552,907.1379,906.7931,911.3103,906.8276,907.8621,903.3448,903.7241,897.5172,906.4828,912.3448,897.1379,903.0345,907.1724,903.0345,904.0690,901.9655,907.1724,907.8621,905.7931,909.5862,913.0690,899.5517,909.2414,905.4483,908.2069,907.5172,905.7931,904.4138,907.8621,902.0000,910.6207,909.2414,1039.4828,900.2759,905.7931,909.2414,905.4483,911.3103,903.3793,905.0690,903.0000,904.0690,907.8621,910.2759,900.9655,909.2414,911.6552,911.3103,910.2759,913.7241,910.2759,905.4483,903.0345,906.1379,900.5862,900.9655,902.0000,904.0345,900.6207,906.1379,903.7241,912.0000,906.4828,909.2414,902.3448,900.2414,900.6207,906.8276,903.7241,1059.5172,905.1034,903.7241,904.7586,901.6207,898.5517,903.3793,901.2759" +normalizing a fully mergeable tiling of boxes - 2,"medium, embedded in 3d",100,24,2505600,1044.3563,1040.2788,1053.7592,30.9703,16.7550,50.7124,"benchmark,group:grid","1039.8333,1039.3750,1241.4167,1034.0000,1036.4583,1036.4583,1038.1250,1043.1667,1046.5000,1045.2083,1038.5833,1035.6250,1039.3750,1044.0000,1043.5833,1039.3750,1044.0000,1039.7917,1038.1250,1041.5000,1043.5417,1043.5833,1038.1250,1044.0000,1042.2917,1035.2500,1044.3750,1043.5833,1045.2083,1043.5417,1041.0833,1046.0417,1036.9167,1041.0417,1042.7500,1042.7083,1042.7500,1041.0417,1038.1250,1036.8750,1036.8750,1043.1667,1210.5417,1038.1250,1036.8750,1037.7500,1037.2917,1035.6250,1031.8750,1038.1667,1040.6250,1038.5417,1039.0000,1040.2083,1037.7500,1034.3750,1040.2083,1039.8333,1038.9583,1043.9583,1041.4583,1041.9167,1038.1250,1040.6250,1041.0833,1039.3750,1037.2917,1041.4583,1041.8750,1036.0417,1032.7083,1036.8750,1038.1250,1037.7083,1031.4583,1031.0417,1025.2083,1033.5417,1040.2083,1041.9167,1039.7917,1039.7917,1203.0000,1040.6667,1030.2083,1028.1250,1040.2083,1035.6250,1036.9167,1036.0417,1030.2083,1036.8750,1038.9583,1042.7500,1039.3750,1037.7500,1041.0417,1035.6250,1039.0000,1038.5417" +normalizing a fully mergeable tiling of boxes - 2,"large, native",100,1,3691700,36935.5500,36832.8800,37140.4900,710.5956,411.6084,1109.0211,"benchmark,group:grid","36988.0000,36698.0000,38912.0000,37470.0000,36988.0000,37188.0000,36878.0000,36688.0000,36648.0000,36908.0000,36607.0000,36678.0000,36727.0000,36908.0000,36657.0000,36898.0000,36828.0000,36758.0000,36687.0000,36948.0000,37198.0000,36638.0000,40875.0000,36738.0000,36698.0000,36818.0000,36757.0000,37119.0000,36677.0000,36807.0000,36578.0000,36858.0000,36758.0000,36807.0000,36738.0000,36788.0000,36698.0000,36777.0000,36928.0000,36777.0000,36688.0000,36818.0000,37058.0000,36768.0000,37008.0000,36808.0000,36828.0000,36778.0000,36818.0000,40635.0000,36728.0000,36888.0000,37038.0000,36577.0000,36657.0000,36537.0000,36818.0000,36608.0000,36788.0000,36747.0000,36737.0000,36648.0000,36768.0000,36818.0000,36988.0000,36687.0000,36558.0000,36818.0000,36557.0000,36798.0000,36868.0000,36838.0000,36618.0000,36757.0000,36757.0000,36798.0000,40595.0000,36908.0000,36888.0000,36848.0000,36838.0000,36708.0000,37008.0000,36748.0000,36968.0000,36878.0000,36698.0000,36848.0000,36727.0000,36618.0000,36658.0000,36577.0000,36848.0000,36878.0000,36708.0000,36787.0000,36817.0000,36688.0000,36748.0000,36868.0000" +normalizing a fully mergeable tiling of boxes - 2,"large, embedded in 3d",100,1,4208200,42038.6300,41915.5400,42275.9800,839.7027,462.8464,1292.2328,"benchmark,group:grid","42178.0000,41767.0000,42990.0000,42007.0000,41917.0000,41737.0000,41798.0000,41917.0000,45675.0000,42098.0000,41857.0000,42008.0000,41817.0000,41908.0000,41607.0000,41757.0000,42208.0000,41627.0000,41747.0000,41697.0000,41867.0000,41707.0000,42008.0000,41807.0000,41697.0000,41757.0000,41927.0000,41758.0000,41837.0000,42138.0000,41917.0000,45514.0000,42018.0000,41857.0000,41827.0000,41697.0000,41837.0000,41697.0000,41898.0000,41837.0000,42088.0000,41747.0000,41898.0000,41767.0000,41677.0000,41998.0000,41857.0000,42118.0000,41657.0000,41838.0000,41707.0000,41807.0000,41637.0000,41727.0000,42038.0000,45925.0000,42128.0000,41888.0000,41947.0000,41837.0000,41887.0000,41778.0000,41957.0000,41607.0000,41808.0000,41987.0000,41898.0000,41887.0000,41788.0000,42108.0000,41857.0000,41637.0000,41737.0000,41778.0000,41817.0000,41787.0000,41988.0000,41787.0000,42068.0000,46947.0000,42108.0000,41737.0000,41898.0000,41787.0000,41898.0000,41917.0000,41888.0000,42078.0000,41687.0000,42088.0000,41667.0000,41998.0000,41657.0000,41997.0000,41988.0000,41517.0000,41998.0000,41907.0000,42068.0000,41667.0000" +normalizing a fully mergeable tiling of boxes - 3,"small, native",100,95,2508000,262.3112,261.3842,264.3897,6.9468,4.0923,11.0232,"benchmark,group:grid","301.2842,262.2632,262.8947,261.7368,261.0000,260.7895,260.7895,260.3684,261.3263,258.3579,261.4211,261.7368,261.5263,261.2105,261.4211,262.0632,259.2000,261.1053,261.9474,261.0000,301.4947,262.1684,261.7368,261.7368,259.0000,262.3684,260.7895,260.5789,260.3684,261.6421,260.4737,259.3053,262.6947,261.2105,260.1579,261.1053,261.6316,261.0000,258.3684,261.9474,259.6316,260.5789,261.1053,261.3158,260.0421,258.8947,261.4211,261.0000,260.5684,260.7895,260.5789,259.9474,259.0947,261.1053,260.7895,260.7895,261.3158,260.4737,260.6842,259.5263,301.6000,262.1579,261.6421,262.3684,261.4211,261.3158,261.5368,260.2632,260.7895,261.3158,262.2632,262.0526,261.8526,262.0526,259.7368,261.9474,261.1053,261.7474,261.1053,261.5263,261.7368,260.4737,261.3158,261.3158,262.1684,262.1579,261.7368,262.0632,259.6211,261.6316,261.8421,262.0526,261.4211,261.3158,262.2632,259.6316,261.4211,261.0000,261.7368,261.5368" +normalizing a fully mergeable tiling of boxes - 3,"medium, native",100,19,2629600,1498.6895,1494.0889,1508.8442,33.3720,19.3335,52.6845,"benchmark,group:grid","1492.7368,1491.6316,1561.8421,1496.4211,1491.1579,1683.5789,1495.8947,1496.9474,1488.0000,1497.4737,1492.7368,1495.8947,1499.5789,1494.8421,1494.3158,1492.7368,1493.7895,1495.8947,1489.5789,1494.7895,1490.5789,1490.1053,1493.7895,1495.3684,1493.2632,1488.5263,1492.1579,1496.3684,1492.1579,1492.7368,1497.4737,1498.5263,1503.3158,1492.1579,1495.3158,1491.1053,1493.7895,1493.2632,1492.7368,1494.3158,1689.4211,1486.9474,1490.0526,1489.0526,1489.5789,1490.1053,1498.0000,1499.5789,1486.3684,1493.2632,1490.1053,1501.6842,1494.8421,1497.4737,1498.0000,1500.1053,1490.5789,1493.7895,1486.4211,1493.7895,1494.8421,1486.3684,1493.7895,1490.1053,1494.8421,1491.6842,1488.5263,1489.0000,1490.1053,1490.6316,1491.1579,1491.1053,1491.6316,1493.7895,1490.1053,1676.2105,1491.1053,1489.5789,1486.4211,1492.7368,1491.6316,1491.6842,1483.7895,1490.6316,1486.8947,1493.7895,1491.1579,1491.6842,1489.5789,1487.9474,1492.7368,1490.6316,1484.7895,1486.8947,1486.9474,1489.0526,1489.0000,1487.4737,1493.2632,1489.5789" +normalizing a fully mergeable tiling of boxes - 3,"large, native",100,1,4543800,45943.1200,45795.1100,46205.8100,982.5774,609.9655,1438.2398,"benchmark,group:grid","45525.0000,45524.0000,49521.0000,45243.0000,45194.0000,44813.0000,44994.0000,44692.0000,45475.0000,46005.0000,45725.0000,45604.0000,45815.0000,45655.0000,45534.0000,45774.0000,46036.0000,45825.0000,45614.0000,45996.0000,45654.0000,46066.0000,45724.0000,45514.0000,49702.0000,45805.0000,45945.0000,45565.0000,45745.0000,45554.0000,45715.0000,45664.0000,45634.0000,46096.0000,45925.0000,45905.0000,45945.0000,45835.0000,45845.0000,45795.0000,45374.0000,45695.0000,45755.0000,45815.0000,45734.0000,51155.0000,46076.0000,45594.0000,45825.0000,45905.0000,45985.0000,46005.0000,45805.0000,45915.0000,45725.0000,46065.0000,45645.0000,45685.0000,45644.0000,45625.0000,45715.0000,45684.0000,45905.0000,45565.0000,45725.0000,45544.0000,45645.0000,50433.0000,46076.0000,46035.0000,45945.0000,45744.0000,45895.0000,45755.0000,45745.0000,45905.0000,46076.0000,45825.0000,45614.0000,45825.0000,45865.0000,45655.0000,45695.0000,45634.0000,45825.0000,45715.0000,45955.0000,45575.0000,45734.0000,49451.0000,45765.0000,45845.0000,45805.0000,45865.0000,45444.0000,45525.0000,45745.0000,45664.0000,45845.0000,45825.0000" +performing set operations between randomized regions - 2d,"union, small, native",100,29,2543300,880.7055,877.5683,888.0476,23.0705,8.6342,40.0818,"benchmark,group:grid","871.2414,872.2759,933.4138,898.1724,890.2414,896.1034,887.8276,887.1379,883.3103,887.8276,900.6207,903.0345,881.9310,878.5172,878.8276,878.8276,879.5172,871.2414,875.3793,884.0345,883.0000,878.8276,882.3103,878.4828,885.0690,877.4483,874.6897,1038.1379,876.4138,877.1034,877.7931,874.6897,879.8621,881.6207,880.8966,876.7931,874.3448,878.4828,876.4138,878.1724,874.6897,874.0000,871.9310,871.2414,868.8276,874.3448,872.2759,873.3103,875.4138,877.1034,875.7241,868.4828,875.0345,873.3103,873.6552,871.9310,874.0000,872.2759,872.9655,866.0690,874.3448,873.3103,877.4483,871.9310,874.3793,872.6207,1023.5862,878.8276,869.8621,870.5517,874.0000,881.5862,876.0690,876.1034,876.4138,876.4138,880.5862,869.8621,874.0000,876.0690,878.1379,875.0690,878.1379,874.6897,875.7241,869.8621,877.1379,876.0690,872.2759,877.4483,873.3103,879.1724,874.0000,872.2759,875.7241,875.0690,870.8966,872.9655,871.9310,876.0690" +performing set operations between randomized regions - 2d,"union, small, embedded in 3d",100,25,2542500,1030.5312,1015.5648,1099.2096,138.1727,13.6503,326.6741,"benchmark,group:grid","1004.6400,1011.0400,1100.0000,1041.1200,1026.2800,1025.0400,1021.0800,1008.6400,1011.8400,1019.0400,1017.0400,1015.4400,1017.8400,1017.4400,1009.0400,1011.4400,1015.8800,1015.4400,1014.2400,1014.6400,1011.8400,1013.8400,1010.2400,1011.0400,1027.4800,1013.0400,1013.8400,1009.8000,1018.2400,1014.2400,2389.2400,1033.0800,1026.2800,1026.2800,1019.0400,1020.2800,1011.8400,1015.4400,1013.8400,1015.0400,1013.0400,1012.6400,1013.8400,1015.8400,1005.4400,1015.4400,1014.6400,1013.4400,1011.4400,1010.6400,1016.2800,1010.2400,1006.6000,1011.0400,1013.4400,1013.0400,1010.6400,1013.8400,1020.2400,1015.0800,1006.6000,1012.2400,1011.0400,1011.4400,1009.0000,1014.2400,1012.6400,1006.2400,1200.2000,1011.8400,1015.0400,1018.6400,1017.4800,1015.4400,1016.6400,1015.8400,1011.4400,1010.6400,1012.6800,1013.8400,1009.4400,1010.6400,1014.2400,1012.2400,1017.8400,1001.4400,1010.6400,1009.4400,1007.8400,1013.4400,1015.4400,1011.8400,1007.8400,1007.0400,1013.8400,1010.6400,1011.0400,1014.6400,1011.0400,1011.4400" +performing set operations between randomized regions - 2d,"intersection, small, native",100,115,2518500,219.4297,218.4606,221.9087,6.9723,0.9619,12.6313,"benchmark,group:grid","217.6087,218.3130,223.5304,221.7130,220.1391,219.0957,218.4783,218.6522,219.7043,219.9652,217.3565,219.4435,218.8348,218.3043,218.2261,218.2261,218.6522,218.6522,216.9217,218.7391,218.4783,218.4000,218.4870,218.7391,218.2174,218.0522,267.0957,219.0957,219.3565,218.9217,218.3043,218.2174,215.6087,218.6609,218.5739,217.9565,218.4783,218.6609,218.6609,218.6609,218.8261,218.5739,218.6609,217.8696,218.3913,218.8348,218.4870,218.2174,217.4435,218.8348,215.8696,217.8783,218.3913,218.7478,218.1391,218.5652,218.6522,218.7478,217.9652,218.3043,218.1391,218.2261,218.5652,218.3043,218.0522,268.4870,219.1739,219.6174,219.2696,219.3565,218.7478,218.9217,218.9217,217.3478,219.0957,218.5739,219.0087,218.6522,218.3130,218.2261,218.4783,217.9565,217.8783,217.9565,218.0522,218.1391,217.3478,217.9652,217.4348,218.1391,217.6087,216.3043,217.5217,218.4000,217.8783,217.8696,218.4870,218.4000,218.2174,217.3565" +performing set operations between randomized regions - 2d,"intersection, small, embedded in 3d",100,102,2519400,248.1684,247.1849,250.7192,7.2602,1.5087,13.8358,"benchmark,group:grid","248.5882,247.4118,257.1373,251.7353,248.0980,246.3333,246.9216,247.3039,247.6961,247.3137,246.6275,246.9216,247.2157,247.0196,247.5098,247.2157,247.4118,246.8137,247.6961,247.5980,247.0098,247.3137,246.8235,246.9216,245.2451,247.2059,305.2647,251.0392,245.6471,248.3922,247.2157,247.5098,246.9216,246.3235,247.1176,247.5098,245.0588,247.2157,247.3137,246.8137,246.8235,246.4314,247.4118,244.2647,247.0196,246.6275,246.4314,247.0196,247.6078,247.3039,246.9118,245.5490,246.8235,247.5098,247.8039,247.2157,247.1176,247.2059,246.7157,245.3529,246.9216,246.7157,247.6961,247.3039,247.0196,247.3137,289.5490,246.5294,247.0196,247.0196,246.9216,247.6078,247.7059,248.0000,247.2157,244.9510,247.1176,247.6078,246.9216,246.6275,246.7157,247.2059,246.2353,244.8627,246.9118,247.5980,247.4118,247.1176,247.3137,248.0000,245.7451,246.9216,247.9020,247.4118,247.9020,247.2157,247.3137,247.1176,243.9706,246.6275" +performing set operations between randomized regions - 2d,"difference, small, native",100,25,2535000,1024.3976,1019.9468,1033.3296,30.9727,17.8313,48.3867,"benchmark,group:grid","1013.8400,1021.0800,1110.4000,1044.6800,1052.3200,1200.2000,1026.6800,1024.6400,1025.8400,1025.4800,1024.2800,1017.8400,1022.2400,1025.0400,1021.8800,1017.0400,1017.8400,1017.0800,1019.0400,1012.2400,1017.0400,1019.8400,1016.2400,1017.8800,1019.4400,1021.4400,1017.4400,1013.0400,1009.4400,1013.0400,1018.6400,1017.0800,1023.4400,1016.2800,1022.2400,1019.0800,1012.2400,1017.8400,1016.2400,1016.6400,1014.2400,1019.8400,1019.8800,1015.8400,1192.1600,1015.4800,1021.0400,1014.2400,1020.6800,1022.2400,1015.8800,1018.2400,1017.4400,1011.0400,1017.8800,1019.8400,1020.6800,1017.8400,1018.6400,1016.2800,1019.4400,1015.4400,1012.6400,1015.8800,1014.2400,1015.4400,1019.8400,1015.8400,1020.6400,1016.2400,1014.6800,1016.2400,1017.4400,1016.6400,1014.2400,1015.8400,1013.8400,1018.6400,1010.6000,1013.0400,1020.2400,1019.0400,1018.2400,1175.7600,1021.8400,1016.6400,1019.8400,1016.2400,1020.2800,1021.8400,1018.6800,1017.4400,1019.0400,1017.4800,1015.0400,1011.4400,1011.0400,1017.0400,1015.0800,1017.0400" +performing set operations between randomized regions - 2d,"difference, small, embedded in 3d",100,21,2553600,1213.1148,1208.4676,1223.4700,34.1938,19.7948,54.2383,"benchmark,group:grid","1201.7143,1204.5714,1398.2857,1215.0476,1217.9524,1206.0000,1213.6190,1206.0000,1212.6667,1210.2857,1206.0000,1200.2857,1210.7619,1207.4286,1213.6190,1202.6667,1206.9524,1213.1905,1196.4286,1193.1429,1212.6667,1206.9524,1213.6190,1205.0476,1199.3333,1207.4286,1192.6667,1197.3810,1204.5714,1203.6190,1206.0000,1209.3333,1208.3810,1212.1905,1197.4286,1200.2857,1207.4286,1205.0476,1208.9048,1209.8095,1206.9524,1210.7619,1407.8095,1207.9524,1207.9048,1203.6190,1206.4762,1212.1905,1210.8095,1201.7143,1209.3333,1196.9524,1195.0000,1205.0476,1203.1429,1207.4286,1212.1905,1203.6190,1208.3810,1196.9524,1199.8095,1210.2857,1206.9524,1206.9524,1208.4286,1213.1429,1205.5238,1194.5714,1201.7143,1216.9524,1204.5714,1216.0476,1204.5714,1206.4762,1214.5714,1203.0952,1208.3810,1207.4286,1211.2381,1203.1429,1211.2381,1408.2857,1214.5714,1214.6190,1221.2381,1201.2381,1210.8095,1205.5238,1212.6667,1208.3810,1209.8095,1212.1905,1203.1429,1212.1905,1201.2381,1213.1905,1211.7143,1209.3333,1209.3333,1217.9524" +performing set operations between randomized regions - 2d,"union, medium, native",100,2,2660800,13328.7700,13280.4100,13450.8600,363.1963,158.7776,682.1152,"benchmark,group:grid","13394.5000,13264.0000,14346.0000,13389.0000,13384.5000,13344.5000,13294.0000,13234.0000,13174.0000,13274.0000,13299.5000,13284.0000,13274.5000,13284.0000,13274.5000,13229.0000,13329.5000,13219.0000,13244.0000,13284.5000,13184.0000,13194.0000,13349.5000,13274.0000,13344.5000,13259.0000,13319.5000,13214.0000,13274.0000,13259.5000,13239.0000,13409.5000,13214.0000,13204.0000,13359.5000,13284.5000,13214.0000,13294.0000,15283.0000,13279.5000,13254.0000,13414.5000,13329.5000,13274.0000,13269.5000,13254.0000,13309.0000,13219.0000,13294.0000,13229.0000,13214.0000,13339.0000,13249.5000,13314.0000,13219.0000,13164.0000,13284.0000,13279.0000,13279.5000,13239.0000,13234.0000,13309.0000,13339.5000,13239.0000,13209.0000,13339.5000,13219.0000,13154.0000,13269.0000,13274.0000,13294.0000,13204.0000,13244.0000,13319.5000,13414.0000,13314.0000,16099.5000,13314.5000,13244.0000,13259.5000,13229.0000,13264.0000,13229.0000,13274.0000,13324.5000,13239.0000,13304.0000,13299.5000,13249.0000,13164.0000,13154.0000,13234.5000,13209.0000,13154.0000,13264.0000,13299.5000,13244.0000,13259.0000,13224.5000,13264.0000" +performing set operations between randomized regions - 2d,"union, medium, embedded in 3d",100,2,2955000,14774.0900,14717.6350,14902.5200,416.8439,218.0170,669.3592,"benchmark,group:grid","14782.0000,14702.0000,15388.5000,14777.0000,14767.0000,14757.0000,16816.0000,14707.0000,14616.5000,14607.0000,14626.5000,14777.0000,14692.0000,14757.0000,14682.0000,14682.0000,14762.0000,14712.0000,14702.0000,14711.5000,14777.0000,14671.5000,14757.0000,14717.0000,14672.0000,14662.0000,14707.0000,14706.5000,14692.0000,14702.0000,14692.0000,14747.0000,14702.0000,14661.5000,14702.0000,14747.0000,14742.0000,14722.0000,14647.0000,14697.0000,17166.5000,14702.0000,14727.0000,14671.5000,14737.0000,14707.0000,14762.0000,14747.0000,14732.0000,14717.0000,14722.0000,14722.0000,14722.0000,14712.0000,14591.5000,14642.0000,14682.0000,14696.5000,14787.0000,14696.5000,14691.5000,14672.0000,14647.0000,14651.5000,14687.0000,14642.0000,14772.0000,14747.0000,14677.0000,14641.5000,14672.0000,14762.0000,14732.0000,14707.0000,17281.5000,14701.5000,14732.0000,14592.0000,14732.0000,14651.5000,14677.0000,14732.0000,14722.0000,14612.0000,14586.5000,14591.5000,14602.0000,14667.0000,14661.5000,14637.0000,14611.5000,14697.0000,14702.0000,14727.0000,14692.0000,14672.0000,14691.5000,14627.0000,14657.0000,14661.5000" +performing set operations between randomized regions - 2d,"intersection, medium, native",100,11,2603700,2365.9891,2358.4373,2383.1382,57.0868,32.6816,90.8876,"benchmark,group:grid","2364.2727,2361.5455,2376.1818,2357.9091,2355.1818,2355.1818,2352.4545,2360.6364,2360.6364,2350.6364,2337.9091,2357.0000,2354.3636,2353.3636,2352.4545,2350.6364,2359.7273,2359.8182,2689.4545,2347.0000,2327.0000,2348.8182,2353.3636,2356.0909,2357.9091,2355.2727,2360.6364,2359.7273,2358.0000,2346.0909,2346.0909,2349.7273,2351.5455,2353.3636,2357.0000,2356.1818,2357.0000,2356.0909,2351.5455,2336.0909,2351.5455,2348.8182,2348.8182,2354.2727,2347.9091,2348.8182,2351.5455,2358.8182,2341.5455,2351.5455,2356.0909,2355.2727,2355.1818,2353.3636,2350.6364,2358.8182,2676.7273,2356.1818,2357.9091,2340.6364,2360.6364,2361.5455,2359.7273,2368.8182,2368.0000,2361.5455,2364.3636,2359.7273,2340.6364,2354.2727,2364.2727,2365.2727,2362.4545,2361.5455,2361.5455,2359.7273,2362.5455,2357.0000,2342.4545,2366.0909,2366.1818,2362.4545,2360.6364,2366.1818,2362.4545,2362.4545,2361.5455,2357.9091,2342.4545,2360.6364,2361.6364,2356.0909,2359.7273,2361.6364,2696.7273,2363.3636,2363.4545,2365.1818,2357.0000,2350.6364" +performing set operations between randomized regions - 2d,"intersection, medium, embedded in 3d",100,11,2526700,2301.7727,2293.0900,2322.6609,66.1496,31.7336,114.7925,"benchmark,group:grid","2633.9091,2298.7273,2315.1818,2296.9091,2296.9091,2296.0000,2292.3636,2276.8182,2290.5455,2295.0909,2298.7273,2300.5455,2294.1818,2298.7273,2302.3636,2283.2727,2297.8182,2297.8182,2293.2727,2296.9091,2295.0909,2771.4545,2296.9091,2292.3636,2277.7273,2296.8182,2304.1818,2301.4545,2295.0909,2296.0000,2299.6364,2300.5455,2275.0000,2289.5455,2286.0000,2289.6364,2281.4545,2288.6364,2290.4545,2269.6364,2293.2727,2288.7273,2288.6364,2290.5455,2288.7273,2299.6364,2293.2727,2267.7273,2286.8182,2288.7273,2294.1818,2290.5455,2283.2727,2292.3636,2267.7273,2283.2727,2292.3636,2286.8182,2288.6364,2287.8182,2293.2727,2597.4545,2296.0000,2280.5455,2292.3636,2291.4545,2292.3636,2293.2727,2295.0909,2285.9091,2291.4545,2269.6364,2289.6364,2294.0909,2290.4545,2288.7273,2284.1818,2291.4545,2267.7273,2292.3636,2286.9091,2297.8182,2290.5455,2286.9091,2295.0909,2293.1818,2265.0000,2290.5455,2294.1818,2293.2727,2290.4545,2289.6364,2288.7273,2276.9091,2284.0909,2296.8182,2295.9091,2293.1818,2294.1818,2289.6364" +performing set operations between randomized regions - 2d,"difference, medium, native",100,4,3250000,7472.6725,7440.8950,7538.0950,222.8094,116.6717,357.5488,"benchmark,group:grid","7456.2500,7421.0000,8084.7500,7526.2500,7491.2500,7446.0000,7438.7500,7506.2500,7451.0000,7506.2500,7453.7500,8565.7500,7471.2500,7453.5000,7476.2500,7451.2500,7451.0000,7453.7500,7456.2500,7481.0000,7466.0000,7403.5000,7458.5000,7456.2500,7468.5000,7426.0000,7421.0000,7448.7500,7446.0000,7431.2500,7421.0000,7446.2500,7453.5000,7441.2500,7413.5000,7443.7500,7408.5000,7443.7500,7416.0000,7403.5000,7438.7500,7371.0000,7406.0000,7433.5000,7466.2500,8869.0000,7443.5000,7436.2500,7441.0000,7431.2500,7413.5000,7418.5000,7386.0000,7388.5000,7401.2500,7433.5000,7408.5000,7411.2500,7388.5000,7396.0000,7388.5000,7411.0000,7393.5000,7391.0000,7388.5000,7408.5000,7418.5000,7393.7500,7403.5000,7416.0000,7408.5000,7406.2500,7406.0000,7386.0000,7416.0000,7396.0000,7423.5000,7426.0000,8560.7500,7421.2500,7406.0000,7431.0000,7436.2500,7426.0000,7408.7500,7421.0000,7441.0000,7433.5000,7436.0000,7428.7500,7386.0000,7411.0000,7416.2500,7438.5000,7416.0000,7403.7500,7421.0000,7428.5000,7443.7500,7431.0000" +performing set operations between randomized regions - 2d,"difference, medium, embedded in 3d",100,3,2541000,8489.4800,8457.6633,8564.7833,235.8160,87.8607,412.1721,"benchmark,group:grid","8468.6667,8452.0000,9267.0000,8482.0000,8522.3333,8462.0000,8495.6667,8442.0000,8502.0000,8472.0000,8502.0000,8415.3333,8495.3333,8465.6667,8488.6667,8408.6667,8458.6667,8412.0000,8442.0000,8425.3333,8499.0000,8458.6667,8455.3333,8385.3333,8445.3333,8405.3333,8468.6667,8415.3333,8492.3333,8445.3333,9924.6667,8512.3333,8465.3333,8418.6667,8458.6667,8465.3333,8415.0000,8472.3333,8422.0000,8482.0000,8402.0000,8395.3333,8462.0000,8522.3333,8412.0000,8468.6667,8478.6667,8472.0000,8435.3333,8381.6667,8418.6667,8462.0000,8438.6667,8498.6667,8498.6667,8418.6667,8425.3333,8385.3333,8422.0000,8455.3333,8462.3333,8452.0000,8478.6667,8468.6667,8485.6667,8395.3333,8448.6667,8435.3333,8435.3333,10115.3333,8478.6667,8482.0000,8432.0000,8455.3333,8428.6667,8432.0000,8442.0000,8465.3333,8442.0000,8458.6667,8395.3333,8432.0000,8392.0000,8408.6667,8482.0000,8459.0000,8445.3333,8485.3333,8422.0000,8452.0000,8438.6667,8422.0000,8475.6667,8472.0000,8465.3333,8442.0000,8425.3333,8452.3333,8418.6667,8428.6667" +performing set operations between randomized regions - 2d,"union, large, native",100,1,15888500,161361.0100,161047.7200,161766.7100,1810.2155,1477.5200,2156.9519,"benchmark,group:grid","160502.0000,164259.0000,167074.0000,161244.0000,160352.0000,160352.0000,160442.0000,160192.0000,164240.0000,161384.0000,161183.0000,160553.0000,160893.0000,160863.0000,165522.0000,161314.0000,161033.0000,160933.0000,160943.0000,160513.0000,164550.0000,161123.0000,160713.0000,161033.0000,160362.0000,160663.0000,164410.0000,160251.0000,160452.0000,160452.0000,160763.0000,160161.0000,160301.0000,165512.0000,161104.0000,160252.0000,160933.0000,160462.0000,160262.0000,164971.0000,160883.0000,160252.0000,160432.0000,160673.0000,160532.0000,164420.0000,160362.0000,160723.0000,159911.0000,160442.0000,160482.0000,165372.0000,161043.0000,160633.0000,160913.0000,161114.0000,159921.0000,166423.0000,160792.0000,160773.0000,160442.0000,160603.0000,160011.0000,159871.0000,165522.0000,160603.0000,160783.0000,160282.0000,160372.0000,160732.0000,166603.0000,160463.0000,161263.0000,160393.0000,160251.0000,161114.0000,165281.0000,160082.0000,161103.0000,160262.0000,160623.0000,160412.0000,164500.0000,160422.0000,160342.0000,160362.0000,160392.0000,160062.0000,165181.0000,160983.0000,160683.0000,160152.0000,160121.0000,159911.0000,160181.0000,164931.0000,160983.0000,160573.0000,160151.0000,160483.0000" +performing set operations between randomized regions - 2d,"union, large, embedded in 3d",100,1,17209500,172148.7500,171838.4600,172551.4000,1797.6452,1485.0570,2124.2155,"benchmark,group:grid","175791.0000,171643.0000,174278.0000,171573.0000,171393.0000,171143.0000,171473.0000,176452.0000,171703.0000,171173.0000,170952.0000,171523.0000,171313.0000,175881.0000,171694.0000,171874.0000,171743.0000,171624.0000,176763.0000,172044.0000,171163.0000,171162.0000,171073.0000,171393.0000,176001.0000,171863.0000,170792.0000,171243.0000,171022.0000,170942.0000,175792.0000,170351.0000,171152.0000,171473.0000,172245.0000,171573.0000,178016.0000,171293.0000,171423.0000,171813.0000,171183.0000,171303.0000,176282.0000,171634.0000,171012.0000,171383.0000,170772.0000,175961.0000,171323.0000,171203.0000,171192.0000,171293.0000,171273.0000,175030.0000,172354.0000,171292.0000,171313.0000,171082.0000,171523.0000,175541.0000,171232.0000,171724.0000,171403.0000,171293.0000,171563.0000,176212.0000,171293.0000,171854.0000,171513.0000,171233.0000,171543.0000,175771.0000,170952.0000,171593.0000,171383.0000,171723.0000,176102.0000,171093.0000,170721.0000,171102.0000,171233.0000,171593.0000,175070.0000,171283.0000,171202.0000,171153.0000,171052.0000,170842.0000,175261.0000,171523.0000,170531.0000,171453.0000,171363.0000,171143.0000,175340.0000,171223.0000,171082.0000,171113.0000,171403.0000,170942.0000" +performing set operations between randomized regions - 2d,"intersection, large, native",100,2,4285600,21441.5750,21376.4450,21556.6450,430.3247,274.0568,613.3929,"benchmark,group:grid","21304.5000,23433.5000,21920.5000,21334.5000,21450.0000,21274.5000,21404.5000,21314.5000,23188.0000,21249.0000,21440.0000,21279.5000,21434.5000,21279.5000,21419.5000,21239.5000,21454.5000,21359.5000,21425.0000,21284.0000,21384.5000,21314.0000,21334.5000,21224.5000,21319.5000,21309.5000,21274.5000,21384.5000,21324.5000,21399.5000,21419.5000,23343.5000,21339.5000,21449.5000,21309.5000,21379.5000,21259.5000,21384.5000,21224.5000,21359.5000,21319.5000,21429.5000,21314.5000,21394.5000,21339.5000,21344.5000,21294.5000,21269.5000,21384.5000,21279.5000,21354.5000,21254.5000,21454.5000,21269.5000,21444.5000,23343.5000,21419.5000,21309.5000,21435.0000,21279.0000,21455.0000,21244.0000,21374.5000,21244.0000,21389.5000,21189.5000,21284.5000,21209.0000,21314.5000,21324.5000,21289.5000,21384.5000,21349.5000,21419.5000,21254.5000,21364.5000,21249.5000,21329.5000,23052.5000,21440.0000,21269.0000,21464.5000,21304.5000,21479.5000,21274.5000,21429.5000,21279.0000,21379.5000,21279.5000,21374.5000,21319.5000,21379.5000,21349.5000,21324.0000,21380.0000,21244.0000,21364.5000,21324.5000,21374.5000,21239.5000" +performing set operations between randomized regions - 2d,"intersection, large, embedded in 3d",100,2,4234400,21166.3100,21109.7050,21271.2400,379.6627,211.9653,566.1152,"benchmark,group:grid","21099.0000,21049.0000,21620.0000,21044.0000,21094.0000,21334.5000,21044.0000,21254.0000,23043.0000,21284.5000,21033.5000,21154.0000,20983.5000,21279.5000,21089.0000,21224.5000,21054.0000,21164.0000,21074.0000,21084.0000,21104.0000,21049.0000,21124.0000,20994.0000,21149.0000,21159.5000,21134.0000,21189.0000,21144.5000,21124.0000,21104.0000,21259.5000,22932.5000,21179.0000,21024.0000,21179.0000,20964.0000,21189.0000,20944.0000,21149.0000,21034.0000,21134.0000,21019.0000,21079.0000,21029.0000,21119.0000,21099.0000,20979.0000,21134.0000,21069.0000,21214.0000,21049.0000,21104.0000,21059.0000,20979.0000,21089.0000,22972.5000,21054.0000,21044.0000,21129.0000,20919.0000,21124.0000,20933.5000,21099.0000,21053.5000,21169.5000,21114.0000,21049.0000,21059.0000,20968.5000,21119.5000,21033.5000,21139.0000,20993.5000,21029.0000,21079.0000,21079.0000,21039.0000,20959.0000,22917.5000,21034.0000,21059.0000,21008.5000,21179.5000,20998.5000,21174.5000,20973.5000,21019.0000,20984.0000,21149.0000,21119.0000,21084.0000,21094.0000,21009.0000,21094.0000,20989.0000,21129.0000,21054.0000,21084.0000,21029.0000" +performing set operations between randomized regions - 2d,"difference, large, native",100,1,63517400,617153.4200,616481.2200,618116.2700,4034.7075,3017.1745,6725.4426,"benchmark,group:grid","618220.0000,619101.0000,626927.0000,613921.0000,620274.0000,613932.0000,621416.0000,619823.0000,613461.0000,619142.0000,622067.0000,612899.0000,619281.0000,614212.0000,619432.0000,618851.0000,612710.0000,618280.0000,615114.0000,619993.0000,616867.0000,616697.0000,621386.0000,618851.0000,611277.0000,618400.0000,613311.0000,616957.0000,619141.0000,613321.0000,619081.0000,623480.0000,616878.0000,617819.0000,613200.0000,617168.0000,621586.0000,613351.0000,619653.0000,614913.0000,617058.0000,621887.0000,614873.0000,617007.0000,617619.0000,612629.0000,617759.0000,612910.0000,617949.0000,618551.0000,615515.0000,619021.0000,614012.0000,617909.0000,618761.0000,611908.0000,621006.0000,619462.0000,611186.0000,618731.0000,613501.0000,619773.0000,618170.0000,613200.0000,618831.0000,612810.0000,619963.0000,619072.0000,613381.0000,617418.0000,618981.0000,612700.0000,620794.0000,612599.0000,617258.0000,618280.0000,614413.0000,618069.0000,613611.0000,617999.0000,616787.0000,613501.0000,621857.0000,618701.0000,612629.0000,617869.0000,615745.0000,617339.0000,620464.0000,611567.0000,617168.0000,618400.0000,613652.0000,616506.0000,612239.0000,617548.0000,642455.0000,612720.0000,616637.0000,612589.0000" +performing set operations between randomized regions - 2d,"difference, large, embedded in 3d",100,1,66961300,669559.3100,668961.7200,670431.6200,3644.3707,2648.8923,6227.3040,"benchmark,group:grid","669487.0000,669737.0000,668395.0000,669487.0000,670439.0000,664487.0000,670278.0000,668455.0000,663686.0000,672583.0000,671541.0000,664748.0000,673514.0000,669878.0000,664317.0000,668735.0000,669417.0000,667443.0000,670279.0000,669106.0000,667473.0000,677983.0000,671962.0000,667132.0000,671711.0000,693232.0000,664357.0000,668335.0000,672072.0000,663526.0000,670599.0000,673485.0000,663997.0000,670619.0000,671741.0000,665239.0000,669196.0000,669136.0000,665029.0000,669768.0000,671761.0000,667854.0000,671351.0000,670699.0000,665119.0000,672062.0000,668696.0000,673775.0000,667413.0000,673324.0000,670739.0000,670389.0000,673144.0000,670429.0000,664247.0000,670850.0000,670108.0000,665970.0000,673995.0000,671080.0000,670439.0000,672192.0000,671561.0000,665960.0000,671461.0000,668735.0000,667143.0000,671732.0000,669657.0000,668164.0000,669797.0000,668976.0000,667384.0000,670589.0000,670368.0000,665188.0000,669917.0000,672734.0000,664838.0000,669848.0000,669206.0000,664728.0000,670459.0000,673444.0000,670609.0000,669307.0000,670068.0000,664217.0000,670049.0000,669547.0000,666361.0000,669337.0000,670960.0000,666611.0000,669066.0000,670499.0000,671110.0000,671020.0000,670509.0000,666532.0000" +performing set operations between randomized regions - 3d,"union, small, native",100,7,2737700,3919.7343,3903.5871,3953.7900,114.6953,65.9641,181.5117,"benchmark,group:grid","3898.4286,3899.8571,4189.0000,4506.8571,3931.5714,3945.7143,3907.1429,3944.2857,3928.5714,3898.5714,3935.7143,3900.0000,3922.8571,3912.8571,3898.5714,3905.7143,3888.4286,3889.8571,3895.7143,3902.8571,3901.4286,3917.1429,3888.5714,3914.2857,3904.2857,3897.0000,3914.2857,3910.0000,3907.1429,3895.7143,3910.0000,3894.2857,3885.7143,3874.1429,3902.8571,3897.1429,3910.0000,3879.8571,3915.7143,4579.7143,3907.1429,3900.0000,3890.0000,3900.0000,3894.2857,3904.2857,3904.2857,3902.7143,3904.1429,3878.5714,3907.1429,3874.1429,3891.2857,3882.8571,3904.2857,3898.5714,3910.0000,3882.7143,3898.5714,3894.2857,3902.8571,3901.4286,3894.1429,3884.1429,3887.1429,3894.2857,3878.4286,3891.4286,3862.7143,3898.5714,3864.2857,3878.4286,3890.0000,3891.4286,3875.5714,3888.5714,4546.8571,3898.5714,3910.0000,3890.0000,3900.0000,3892.8571,3892.7143,3884.2857,3908.5714,3887.1429,3881.2857,3902.8571,3897.1429,3869.8571,3894.2857,3882.8571,3894.2857,3882.7143,3884.2857,3875.5714,3908.4286,3885.7143,3892.8571,3895.7143" +performing set operations between randomized regions - 3d,"intersection, small, native",100,171,2496600,148.6798,148.1227,150.1857,4.2746,1.1720,8.5634,"benchmark,group:grid","148.3392,147.8129,151.8538,149.5673,149.9181,148.3392,148.0468,147.8129,148.5731,148.9825,147.8713,147.1696,148.5731,147.2865,148.5146,148.1111,149.0409,147.9298,147.8713,150.0994,148.6316,146.2924,147.9298,148.0468,148.2807,147.8129,149.7485,147.2222,146.9298,145.9415,148.8655,145.7602,169.5497,146.2924,148.7485,146.8772,146.6433,147.9883,145.3509,148.6316,147.4035,146.8187,146.2281,146.5263,147.8713,147.0526,147.9883,148.2807,150.3918,150.6842,148.6316,150.8596,147.2865,148.8655,147.6374,149.6901,149.1579,148.5205,148.8070,147.6959,146.5263,147.6959,147.9298,147.6959,148.5146,147.6374,147.9298,147.5205,147.5789,147.2865,148.1053,183.9006,148.5789,147.4035,147.7544,148.0468,146.1696,148.3977,148.7544,149.0994,148.1637,148.2865,148.5731,148.4561,149.2807,148.1053,148.3977,147.9298,149.3333,149.0409,148.5146,148.5146,149.2807,149.0409,147.6374,147.9883,148.0468,147.2222,146.3509,147.6374" +performing set operations between randomized regions - 3d,"difference, small, native",100,19,2623900,1385.6968,1380.3295,1397.3616,38.7156,22.2045,61.4857,"benchmark,group:grid","1378.2632,1382.5263,1451.6316,1398.3158,1389.8947,1402.5789,1388.8421,1386.7368,1385.1579,1389.3684,1383.0526,1374.1053,1376.6842,1377.7368,1373.5789,1385.1579,1384.1053,1374.0526,1372.0000,1378.3158,1379.8421,1583.4737,1374.5789,1377.2632,1385.1579,1374.6316,1376.1579,1378.3158,1378.8421,1379.3684,1383.0000,1373.5263,1380.4211,1368.2632,1379.8947,1377.7895,1378.8421,1380.3684,1379.8421,1376.2105,1377.2632,1375.6316,1370.9474,1361.9474,1371.9474,1372.4737,1381.4737,1383.5789,1376.7368,1375.1053,1379.8947,1377.2632,1374.5789,1363.0526,1367.2105,1369.8421,1375.6842,1370.9474,1376.1579,1605.5789,1376.2105,1376.7368,1383.0000,1381.9474,1379.8947,1372.5263,1379.8947,1378.2632,1377.7895,1373.5789,1376.6842,1377.2632,1379.3684,1381.4737,1379.8421,1383.0000,1375.1579,1382.0000,1383.5789,1380.4211,1376.6842,1377.2632,1379.3684,1378.3158,1382.4737,1379.8421,1375.1579,1378.3158,1378.2632,1378.7895,1379.8947,1376.7368,1380.4211,1377.2105,1381.4737,1374.6316,1368.7895,1608.2105,1369.8947,1384.1053" +performing set operations between randomized regions - 3d,"union, medium, native",100,2,4400400,22123.2050,21953.4650,22766.7550,1482.7633,366.5379,3413.5621,"benchmark,group:grid","21800.5000,21890.5000,23634.0000,22256.0000,22086.0000,21895.5000,21830.5000,21880.5000,22011.0000,22030.5000,21930.5000,21870.5000,21890.5000,21855.5000,21865.5000,21975.5000,21805.5000,21690.0000,21795.5000,21855.5000,24014.5000,21835.5000,21845.5000,21830.5000,21870.5000,21990.5000,21946.0000,21900.5000,21955.5000,21915.5000,21911.0000,21920.5000,21810.5000,21940.5000,21805.5000,22055.5000,21901.0000,21950.5000,21915.5000,21905.5000,21895.5000,21895.5000,21825.0000,24295.5000,21840.0000,22045.5000,21915.5000,21916.0000,21945.5000,22005.5000,21795.5000,21845.5000,21765.5000,21900.5000,21785.5000,21870.5000,21840.0000,21891.0000,21875.5000,21870.5000,21880.5000,21935.5000,21930.5000,21885.5000,21800.5000,24099.5000,21875.5000,21805.0000,21830.5000,21865.5000,21925.5000,21855.5000,21951.0000,21860.5000,21865.5000,21890.5000,22010.5000,21860.5000,22006.0000,21790.0000,22085.5000,21900.5000,21901.0000,21925.5000,21975.5000,21855.5000,21940.5000,21815.5000,36258.0000,21945.5000,21910.5000,21870.5000,21910.5000,21985.5000,21830.5000,21790.5000,21960.5000,21855.5000,21750.0000,21840.0000" +performing set operations between randomized regions - 3d,"intersection, medium, native",100,11,2731300,2465.1336,2456.2836,2485.9055,67.9400,35.4615,109.3890,"benchmark,group:grid","2454.5455,2454.4545,2483.6364,2454.4545,2455.3636,2453.6364,2455.3636,2455.3636,2454.4545,2454.5455,2455.3636,2452.6364,2458.1818,2455.3636,2459.9091,2450.9091,2450.8182,2449.9091,2449.9091,2453.5455,2458.1818,2452.6364,2858.9091,2452.6364,2456.2727,2456.3636,2452.6364,2455.3636,2453.5455,2451.8182,2449.9091,2449.9091,2454.4545,2451.7273,2447.2727,2446.2727,2447.1818,2449.9091,2453.5455,2451.7273,2452.6364,2452.6364,2451.7273,2450.8182,2450.0000,2451.7273,2449.9091,2452.6364,2449.9091,2453.6364,2455.3636,2454.4545,2454.5455,2450.8182,2449.9091,2452.6364,2452.6364,2450.9091,2451.7273,2805.0909,2450.8182,2449.0000,2451.7273,2451.7273,2449.9091,2450.0000,2449.9091,2449.9091,2450.8182,2454.4545,2452.7273,2452.6364,2454.4545,2453.5455,2448.1818,2447.1818,2451.7273,2453.5455,2451.7273,2452.7273,2449.0000,2451.7273,2451.7273,2449.9091,2450.0000,2450.8182,2448.0909,2448.0909,2457.1818,2452.7273,2451.7273,2448.0909,2455.3636,2449.9091,2452.6364,2452.6364,2877.0909,2531.0000,2450.8182,2451.7273" +performing set operations between randomized regions - 3d,"difference, medium, native",100,3,3404400,11371.5733,11331.0767,11448.8900,274.9876,155.1445,409.6370,"benchmark,group:grid","11297.3333,11271.0000,11878.6667,11447.6667,11387.6667,11387.3333,11324.0000,11374.3333,11344.0000,12700.3333,11424.3333,11290.6667,11304.0000,11294.0000,11294.0000,11307.6667,11340.6667,11331.0000,11381.0000,11340.6667,11267.3333,11301.0000,11287.3333,11344.3333,11330.6667,11364.3333,11237.3333,11320.6667,11297.6667,11280.6667,11334.3333,11340.6667,11234.0000,11301.0000,11334.0000,11324.3333,11320.6667,11394.3333,11317.3333,12743.3333,11280.6667,11284.3333,11344.0000,11297.6667,11310.6667,11267.3333,11311.0000,11260.6667,11317.3333,11277.6667,11287.3333,11264.0000,11244.0000,11224.0000,11381.0000,11274.0000,11304.0000,11250.6667,11314.0000,11277.3333,11304.3333,11320.6667,11324.3333,11267.3333,11317.3333,11324.3333,11274.0000,11297.3333,12633.3333,11274.3333,11304.0000,11297.3333,11311.0000,11320.6667,11287.6667,11357.3333,11287.6667,11314.0000,11314.0000,11314.3333,11314.0000,11331.0000,11267.3333,11234.0000,11274.0000,11311.0000,11287.3333,11320.6667,11294.0000,11277.3333,11300.6667,11321.0000,11344.3333,11314.0000,11437.6667,11321.0000,11287.3333,12620.0000,11354.0000,11334.0000" +performing set operations between randomized regions - 3d,"union, large, native",100,1,215738300,2027328.5100,2026244.5600,2028643.1400,6070.5951,4803.3165,8783.8591,"benchmark,group:grid","2019326.0000,2029064.0000,2032911.0000,2025157.0000,2027120.0000,2029114.0000,2032911.0000,2028994.0000,2026750.0000,2030256.0000,2020498.0000,2032270.0000,2028844.0000,2029094.0000,2028163.0000,2032250.0000,2030497.0000,2030226.0000,2021570.0000,2029685.0000,2029004.0000,2030387.0000,2035426.0000,2058770.0000,2028563.0000,2024675.0000,2022031.0000,2032631.0000,2027721.0000,2027310.0000,2026239.0000,2014737.0000,2020909.0000,2027341.0000,2032831.0000,2027982.0000,2028894.0000,2030436.0000,2029414.0000,2030958.0000,2027611.0000,2022251.0000,2029224.0000,2027140.0000,2028503.0000,2023403.0000,2019155.0000,2029325.0000,2028062.0000,2026379.0000,2034354.0000,2023694.0000,2021880.0000,2029454.0000,2031438.0000,2028072.0000,2032671.0000,2029485.0000,2029565.0000,2028273.0000,2029324.0000,2023633.0000,2027261.0000,2026850.0000,2027782.0000,2018754.0000,2033122.0000,2023283.0000,2016360.0000,2016130.0000,2015388.0000,2027371.0000,2048391.0000,2029114.0000,2026840.0000,2020548.0000,2029935.0000,2029115.0000,2031038.0000,2022862.0000,2018234.0000,2021619.0000,2021990.0000,2019216.0000,2019275.0000,2028393.0000,2033082.0000,2031970.0000,2030576.0000,2029314.0000,2031439.0000,2029525.0000,2030106.0000,2019386.0000,2028392.0000,2017533.0000,2020568.0000,2028733.0000,2019676.0000,2029825.0000" +performing set operations between randomized regions - 3d,"intersection, large, native",100,2,2857800,14770.9800,14725.0200,14868.5550,328.4881,193.3531,516.8196,"benchmark,group:grid","14687.0000,14691.5000,15333.0000,14852.0000,14777.0000,14812.5000,14877.0000,14657.0000,16505.5000,14731.5000,14716.5000,14802.5000,14787.0000,14687.0000,14762.0000,14807.0000,14812.0000,14837.5000,14797.0000,14802.0000,14802.0000,14852.5000,14797.0000,14707.0000,14686.5000,14712.0000,14717.0000,14747.0000,14687.0000,14727.0000,14677.0000,14691.5000,14652.0000,14712.0000,14667.0000,14676.5000,14717.0000,14672.0000,14717.0000,14672.0000,14747.0000,14686.5000,16625.5000,14727.0000,14691.5000,14717.0000,14712.0000,14702.0000,14692.0000,14687.0000,14707.0000,14706.5000,14727.0000,14737.0000,14697.0000,14712.0000,14727.0000,14647.0000,14691.5000,14641.5000,14692.0000,14652.0000,14681.5000,14687.0000,14722.0000,14672.0000,14717.0000,14656.5000,14727.0000,14672.0000,14667.0000,14712.0000,14671.5000,14722.0000,14707.0000,14672.0000,16610.5000,14712.0000,14682.0000,14717.0000,14671.5000,14747.0000,14652.0000,14652.0000,14631.5000,14657.0000,14687.0000,14671.5000,14637.0000,14657.0000,14676.5000,14682.0000,14677.0000,14672.0000,14691.5000,14616.5000,14642.0000,14686.5000,14677.0000,14657.0000" +performing set operations between randomized regions - 3d,"difference, large, native",100,1,633752400,6139945.1100,6098133.3000,6186737.5000,224808.1772,207404.5431,258791.6601,"benchmark,group:grid","6458940.0000,6448581.0000,6193438.0000,6842688.0000,5978180.0000,5977087.0000,6006052.0000,5997446.0000,5963171.0000,5982608.0000,5972939.0000,5970806.0000,5959774.0000,5976566.0000,5970154.0000,5963662.0000,5959274.0000,5983810.0000,5965736.0000,5998418.0000,5961527.0000,5979692.0000,5977348.0000,5975454.0000,5968291.0000,5981656.0000,5968321.0000,5991094.0000,5966247.0000,5978009.0000,5966727.0000,5973280.0000,5967068.0000,5984772.0000,5971838.0000,5981044.0000,5981856.0000,5984471.0000,5967869.0000,5979932.0000,5972960.0000,5993769.0000,5970094.0000,5972038.0000,5964864.0000,5980073.0000,5973310.0000,5972148.0000,5966597.0000,5988058.0000,5967128.0000,5970455.0000,5982337.0000,6055787.0000,5995392.0000,5983859.0000,5985733.0000,5987297.0000,5971497.0000,5975384.0000,5967670.0000,5977448.0000,5967229.0000,5983159.0000,5971296.0000,5977758.0000,5969252.0000,5971888.0000,6104819.0000,6472826.0000,6422441.0000,6438301.0000,6417331.0000,6437300.0000,6434224.0000,6434845.0000,6419706.0000,6427681.0000,6432871.0000,6431148.0000,6427240.0000,6435837.0000,6439463.0000,6438693.0000,6426228.0000,6472306.0000,6424947.0000,6432550.0000,6411401.0000,6435767.0000,6427901.0000,6423052.0000,6420498.0000,6433412.0000,6432992.0000,6430576.0000,6422531.0000,6437460.0000,6428383.0000,6429475.0000" +"normalizing a fully mergeable, complex tiling of boxes - 2d","small, native",100,13,2532400,1946.9946,1939.0200,1965.2738,58.5678,25.1622,101.1917,"benchmark,group:grid","1931.2308,1926.5385,2156.3077,2002.8462,1956.6154,1959.0000,1962.7692,1955.9231,1957.3846,1955.8462,1952.0000,1945.0769,1949.7692,1948.1538,1938.9231,1935.7692,1951.3077,1929.6154,1933.5385,1949.6923,1937.3846,1951.2308,1942.0000,1935.8462,1947.3846,1941.2308,1929.6923,1942.0000,1942.0000,1945.0769,1940.4615,1932.6923,1935.0769,1941.2308,1942.0000,1953.5385,1947.3846,1938.9231,1947.3846,1945.0769,2332.7692,1942.0000,1929.6154,1935.0000,1930.4615,1935.8462,1934.2308,1935.0000,1935.8462,1944.3077,1930.4615,1935.0769,1928.0769,1925.0769,1936.5385,1926.5385,1931.2308,1935.8462,1931.1538,1924.3077,1930.3846,1922.7692,1932.7692,1934.2308,1935.0769,1932.0000,1932.7692,1925.7692,1931.2308,1932.7692,1929.6154,1937.3846,1935.0769,1922.6923,1926.6154,1928.8462,1934.2308,1928.1538,1930.3846,1921.1538,2305.7692,1929.6923,1935.7692,1935.8462,1929.6923,1930.3846,1932.7692,1938.9231,1932.7692,1928.0769,1931.2308,1928.9231,1925.0000,1930.4615,1929.6923,1934.2308,1925.8462,1935.0769,1932.6923,1927.3846" +"normalizing a fully mergeable, complex tiling of boxes - 2d","small, embedded in 3d",100,10,2601000,2609.1260,2598.9760,2632.3690,75.1992,42.7536,120.2739,"benchmark,group:grid","2592.7000,2591.7000,2716.0000,2607.7000,2599.7000,2632.7000,2610.7000,2596.7000,2586.8000,2606.7000,2599.7000,2594.7000,2602.7000,2581.7000,2590.7000,2581.7000,2599.7000,2605.7000,2603.7000,2596.7000,2594.8000,2575.6000,3045.5000,2607.8000,2578.7000,2593.7000,2599.8000,2592.7000,2593.7000,2599.7000,2599.7000,2593.7000,2584.7000,2590.7000,2585.7000,2600.7000,2598.7000,2598.8000,2592.7000,2577.7000,2588.7000,2601.8000,2598.7000,2578.7000,2586.7000,2593.8000,2584.7000,2599.7000,2594.7000,2601.7000,2603.7000,2592.8000,2585.7000,2586.7000,2596.7000,2594.8000,2596.7000,2601.7000,2590.8000,2581.7000,3002.5000,2594.7000,2594.7000,2598.8000,2590.7000,2603.7000,2599.8000,2595.7000,2601.7000,2592.8000,2591.7000,2604.7000,2597.8000,2581.7000,2586.7000,2594.7000,2587.7000,2586.7000,2602.7000,2600.7000,2597.8000,2597.7000,2593.7000,2587.7000,2591.7000,2596.7000,2592.7000,2600.8000,2600.7000,2597.8000,2595.7000,2596.7000,2587.7000,2582.7000,2596.8000,2599.7000,2590.7000,2584.7000,3036.6000,2609.8000" +"normalizing a fully mergeable, complex tiling of boxes - 2d","large, native",100,1,154474700,1547692.2100,1546946.5900,1548945.3700,4821.5318,2900.0635,7628.3916,"benchmark,group:grid","1545006.0000,1551780.0000,1554304.0000,1548403.0000,1547942.0000,1540738.0000,1548814.0000,1543003.0000,1548924.0000,1542011.0000,1548403.0000,1544716.0000,1551188.0000,1543865.0000,1548052.0000,1548012.0000,1543434.0000,1548313.0000,1543083.0000,1550307.0000,1547681.0000,1574132.0000,1544917.0000,1547140.0000,1544466.0000,1548824.0000,1546579.0000,1544746.0000,1548744.0000,1544636.0000,1549585.0000,1543364.0000,1548693.0000,1545708.0000,1548873.0000,1544767.0000,1550216.0000,1549124.0000,1545047.0000,1549605.0000,1545126.0000,1552461.0000,1545107.0000,1552070.0000,1545738.0000,1549375.0000,1548804.0000,1544295.0000,1548864.0000,1544896.0000,1548033.0000,1543563.0000,1546248.0000,1541880.0000,1547842.0000,1545177.0000,1548874.0000,1547932.0000,1543334.0000,1548543.0000,1546179.0000,1550256.0000,1545307.0000,1547621.0000,1541500.0000,1548904.0000,1542793.0000,1549274.0000,1549135.0000,1543373.0000,1550377.0000,1546109.0000,1548864.0000,1545167.0000,1551118.0000,1546259.0000,1546780.0000,1544065.0000,1548393.0000,1549305.0000,1543754.0000,1548894.0000,1545658.0000,1554815.0000,1546569.0000,1575744.0000,1544265.0000,1549124.0000,1547281.0000,1545317.0000,1550016.0000,1543123.0000,1549094.0000,1545537.0000,1549476.0000,1546008.0000,1552290.0000,1545517.0000,1550537.0000,1550116.0000" +"normalizing a fully mergeable, complex tiling of boxes - 2d","large, embedded in 3d",100,1,174470400,1745580.3700,1744363.6000,1748654.9200,9210.4852,4396.5331,18789.2620,"benchmark,group:grid","1746618.0000,1742651.0000,1821200.0000,1745327.0000,1741228.0000,1743984.0000,1745156.0000,1744625.0000,1742381.0000,1743062.0000,1744555.0000,1744534.0000,1742861.0000,1742231.0000,1742500.0000,1739575.0000,1744705.0000,1744144.0000,1751558.0000,1740758.0000,1745156.0000,1746498.0000,1745526.0000,1740477.0000,1746970.0000,1742741.0000,1743062.0000,1743673.0000,1746207.0000,1744956.0000,1743272.0000,1740296.0000,1745597.0000,1745236.0000,1747841.0000,1740838.0000,1746408.0000,1746037.0000,1745657.0000,1741469.0000,1745697.0000,1744214.0000,1747501.0000,1742801.0000,1747329.0000,1746929.0000,1749514.0000,1741709.0000,1744234.0000,1745957.0000,1744405.0000,1742461.0000,1744745.0000,1745567.0000,1771315.0000,1782747.0000,1745947.0000,1744234.0000,1744195.0000,1741018.0000,1744244.0000,1743643.0000,1743323.0000,1740487.0000,1745697.0000,1746528.0000,1744956.0000,1740046.0000,1743724.0000,1744965.0000,1745927.0000,1740918.0000,1745045.0000,1744365.0000,1740076.0000,1745146.0000,1745046.0000,1745737.0000,1739535.0000,1744445.0000,1746248.0000,1741780.0000,1740206.0000,1745076.0000,1747992.0000,1747370.0000,1741509.0000,1744945.0000,1744294.0000,1744024.0000,1740627.0000,1743072.0000,1746599.0000,1745567.0000,1740096.0000,1744555.0000,1745206.0000,1745817.0000,1740267.0000,1744845.0000" +benchmark independent task pattern with 100 tasks,task generation,100,1,904098100,8920667.5300,8835700.8700,8982433.2900,367410.2854,283385.5612,452885.6419,"benchmark,group:system,indep-tasks","9046415.0000,9039913.0000,9293453.0000,9009425.0000,9020907.0000,9002351.0000,8998324.0000,8365935.0000,8413495.0000,9266122.0000,9267273.0000,9214243.0000,9211177.0000,9174438.0000,9177383.0000,9012470.0000,9051685.0000,9039602.0000,9054630.0000,9053849.0000,9031396.0000,9045493.0000,9061263.0000,8991180.0000,9058749.0000,9016458.0000,9016318.0000,9014094.0000,9072605.0000,9003814.0000,9046886.0000,9065411.0000,9029773.0000,9061313.0000,9034112.0000,9013693.0000,9048960.0000,9043529.0000,8994486.0000,8603976.0000,7833225.0000,7848735.0000,7942673.0000,7827274.0000,7856679.0000,7815181.0000,7846801.0000,7877870.0000,8947397.0000,8976543.0000,9082333.0000,9015316.0000,8986722.0000,9112520.0000,9042807.0000,9221857.0000,9021668.0000,9029693.0000,9066222.0000,9034873.0000,8997653.0000,9054460.0000,9041896.0000,9073255.0000,9024924.0000,8997602.0000,9055632.0000,9045003.0000,9053278.0000,9030184.0000,9027940.0000,8999546.0000,8948910.0000,7949556.0000,8838952.0000,9266222.0000,9177974.0000,9214995.0000,9212430.0000,9256182.0000,9055352.0000,9094826.0000,9035364.0000,8992001.0000,9087392.0000,8989798.0000,9042367.0000,8963938.0000,8993425.0000,9054180.0000,8126591.0000,8830245.0000,9024704.0000,9016298.0000,9016799.0000,9024674.0000,9023081.0000,9048950.0000,9019594.0000,9007592.0000" +benchmark independent task pattern with 500 tasks,task generation,100,1,5353769700,51824939.1100,51358722.0300,52219796.1300,2179781.9487,1869576.6678,2495616.0456,"benchmark,group:system,indep-tasks","53247926.0000,53439690.0000,52906268.0000,48066966.0000,50047831.0000,52768998.0000,52923311.0000,52918882.0000,51934016.0000,47048967.0000,52284139.0000,52937147.0000,52823982.0000,52933320.0000,49601584.0000,46721265.0000,53070790.0000,52984086.0000,52908283.0000,52836887.0000,47582557.0000,48797360.0000,53222157.0000,52850523.0000,53068827.0000,52006482.0000,52721999.0000,51397098.0000,52195221.0000,52867074.0000,52843640.0000,49784401.0000,47755796.0000,52951935.0000,52817500.0000,54574871.0000,53783161.0000,51485175.0000,52903743.0000,52920195.0000,52910026.0000,53147526.0000,50540103.0000,47029720.0000,53028590.0000,53156072.0000,52909064.0000,53042706.0000,48477855.0000,49174545.0000,53072513.0000,52982183.0000,52998493.0000,52077477.0000,46939228.0000,52206382.0000,53229982.0000,52912009.0000,53091379.0000,49833384.0000,47876014.0000,53070469.0000,53028039.0000,52926587.0000,53096419.0000,52373308.0000,50908151.0000,53062995.0000,52979898.0000,53005376.0000,51271570.0000,46955408.0000,52438862.0000,54846676.0000,52904946.0000,53023500.0000,48666772.0000,47828293.0000,52945062.0000,52903784.0000,53080819.0000,52896270.0000,46247197.0000,49813936.0000,53688271.0000,54166687.0000,54101223.0000,52484358.0000,54128104.0000,54074923.0000,54121942.0000,54134566.0000,54143523.0000,46868043.0000,49843683.0000,52964419.0000,52909153.0000,52962184.0000,50974487.0000,47084704.0000" +benchmark independent task pattern with 2500 tasks,task generation,100,1,26220231600,266547580.6500,265708216.5400,267408547.4100,4309034.7128,3921916.9091,4783008.6647,"benchmark,group:system,indep-tasks","262211091.0000,273634013.0000,256915824.0000,264768449.0000,264591704.0000,270185486.0000,263051274.0000,271431408.0000,275666185.0000,268210583.0000,265282443.0000,267584186.0000,273966403.0000,263169718.0000,272599652.0000,263573414.0000,263706626.0000,261899271.0000,264530076.0000,274300746.0000,271072788.0000,273438892.0000,269018544.0000,270592447.0000,272132086.0000,263680236.0000,267218503.0000,272251633.0000,262750283.0000,269815004.0000,264710188.0000,268507846.0000,262113536.0000,272789983.0000,271056458.0000,268045290.0000,263101449.0000,274720893.0000,272505224.0000,261553395.0000,263129732.0000,262744423.0000,269664449.0000,261929818.0000,268326683.0000,268919046.0000,266687777.0000,264336951.0000,261365719.0000,263080860.0000,258984676.0000,269881821.0000,266703035.0000,263230654.0000,262050818.0000,261016126.0000,269626477.0000,267157056.0000,264609617.0000,261835369.0000,264995589.0000,264666525.0000,261540290.0000,261673082.0000,263301598.0000,261655318.0000,267750952.0000,264123026.0000,266233074.0000,270992005.0000,260410278.0000,261613598.0000,262224647.0000,261442364.0000,270308038.0000,267787411.0000,268197067.0000,261938414.0000,266215993.0000,268885993.0000,267672543.0000,263529650.0000,268577940.0000,269758126.0000,270800973.0000,261371570.0000,273826998.0000,268098611.0000,261275097.0000,272085608.0000,260888925.0000,267591650.0000,264815628.0000,261231365.0000,266426281.0000,273707401.0000,267859598.0000,272957300.0000,273023886.0000,265669316.0000" +benchmark stencil: 1D 50 iters oversub 1,iterations,100,1,313098500,3118809.4800,3100203.4400,3131226.6100,76828.7094,56426.3062,98425.2042,"benchmark,group:system,stencil","3157062.0000,3160609.0000,3124490.0000,3120112.0000,3120323.0000,3148997.0000,3145330.0000,3145089.0000,3119160.0000,3147423.0000,3138017.0000,3140240.0000,3159768.0000,3158785.0000,3177661.0000,3179695.0000,3180366.0000,3180046.0000,3153756.0000,3137575.0000,3135952.0000,3123950.0000,3096567.0000,3152393.0000,3136633.0000,3148906.0000,3121905.0000,3143887.0000,3171168.0000,3140270.0000,3152934.0000,3138998.0000,3143606.0000,3154928.0000,3195605.0000,3169005.0000,3148676.0000,3140591.0000,3149167.0000,3118519.0000,3146402.0000,3117737.0000,3100795.0000,3116415.0000,3151321.0000,3115683.0000,3101476.0000,3140090.0000,3146012.0000,3145310.0000,3111275.0000,3143657.0000,3172772.0000,3118408.0000,3148506.0000,3144278.0000,3145611.0000,3166730.0000,3145400.0000,3163344.0000,3170978.0000,3120954.0000,3106857.0000,2863466.0000,2903782.0000,2881309.0000,3146502.0000,3144188.0000,3146301.0000,3143195.0000,3120693.0000,3142695.0000,3089654.0000,3117658.0000,3122146.0000,3145300.0000,3145189.0000,3146181.0000,3142134.0000,2856593.0000,2938668.0000,2917919.0000,2849088.0000,2854698.0000,2886499.0000,3147053.0000,3141192.0000,3146632.0000,3145590.0000,3147163.0000,3133317.0000,3149277.0000,3120643.0000,3146482.0000,3130862.0000,3160368.0000,3135040.0000,3160358.0000,3131965.0000,3162973.0000" +benchmark stencil: 1D 500 iters oversub 1,iterations,100,1,3135271400,30527084.6900,30221558.6600,30774446.0000,1401339.6342,1168428.9661,1660563.3373,"benchmark,group:system,stencil","31329882.0000,31258336.0000,30158331.0000,29167102.0000,30758919.0000,30707131.0000,30722670.0000,28362166.0000,27636481.0000,28729293.0000,30650635.0000,30764249.0000,31072173.0000,31080399.0000,31103844.0000,31176701.0000,30301242.0000,26712881.0000,26773466.0000,29762641.0000,31127538.0000,31127228.0000,31105537.0000,31002872.0000,31126646.0000,31110806.0000,29108100.0000,26809434.0000,26666593.0000,30828541.0000,30820185.0000,30801560.0000,30800097.0000,30770371.0000,30702292.0000,30775241.0000,28198246.0000,26398594.0000,28751274.0000,31591978.0000,31588953.0000,31653105.0000,31604302.0000,31517828.0000,31567251.0000,31166773.0000,30276405.0000,30801239.0000,30883455.0000,31663484.0000,31675867.0000,30320649.0000,31210065.0000,31575497.0000,31609702.0000,30021231.0000,31628517.0000,31607307.0000,33224273.0000,31607809.0000,31668464.0000,31419051.0000,31238518.0000,31225464.0000,29333147.0000,28018245.0000,27507086.0000,30609045.0000,31303612.0000,31590937.0000,31234090.0000,31261893.0000,31238809.0000,31188484.0000,28042521.0000,28047009.0000,28025708.0000,30827620.0000,31647774.0000,31605184.0000,31234291.0000,31216297.0000,31242836.0000,30299769.0000,30521940.0000,31255340.0000,31238699.0000,31595274.0000,31650509.0000,31646913.0000,31698049.0000,31606556.0000,31606916.0000,28511099.0000,29085237.0000,31203632.0000,31202269.0000,31285488.0000,31306127.0000,31213180.0000" +benchmark stencil: 1D 50 iters oversub 3,iterations,100,1,695334800,7330870.5800,7257736.6400,7410141.7100,387980.7579,313560.0931,574461.3975,"benchmark,group:system,stencil","7492049.0000,7608971.0000,6625246.0000,7432546.0000,7464306.0000,7450631.0000,7392841.0000,7495565.0000,7410273.0000,7548315.0000,7403010.0000,7479125.0000,7396778.0000,9373215.0000,7410314.0000,7465318.0000,7497920.0000,7497369.0000,7603230.0000,7483482.0000,7567792.0000,7532856.0000,7494563.0000,7420614.0000,7522466.0000,7400826.0000,7479955.0000,7434860.0000,7557824.0000,7414081.0000,7445821.0000,7463915.0000,7460238.0000,7442946.0000,7417227.0000,7504332.0000,7392851.0000,7453465.0000,7499042.0000,7004625.0000,6660172.0000,6671494.0000,6586753.0000,6672966.0000,6580752.0000,6712621.0000,6610517.0000,6641226.0000,7031095.0000,7478864.0000,7463455.0000,7555689.0000,7481499.0000,7502509.0000,7505534.0000,7538698.0000,7470027.0000,7612427.0000,7379265.0000,7496527.0000,7471600.0000,7466611.0000,7414923.0000,7498661.0000,7441533.0000,7338498.0000,6781903.0000,7409372.0000,7470719.0000,7491979.0000,7423789.0000,7468774.0000,7440191.0000,7502509.0000,7468804.0000,7452654.0000,7486949.0000,7474786.0000,7538607.0000,7012871.0000,6663729.0000,6649822.0000,6620076.0000,6596641.0000,6595630.0000,6636878.0000,6608614.0000,6645003.0000,7120915.0000,7515603.0000,7508410.0000,7575036.0000,7508580.0000,7578553.0000,7467082.0000,7583312.0000,7482090.0000,7537956.0000,7495886.0000,7548616.0000" +benchmark stencil: 1D 500 iters oversub 3,iterations,100,1,7592406800,73582236.3700,73023821.4800,74027422.0400,2544285.1728,2111734.7430,2999338.6626,"benchmark,group:system,stencil","74755602.0000,74830234.0000,74885959.0000,73957450.0000,75341863.0000,75377681.0000,74523612.0000,69297046.0000,72254923.0000,75325071.0000,75336082.0000,75686246.0000,74797231.0000,74732107.0000,74828931.0000,68394585.0000,73847791.0000,74891300.0000,74788444.0000,68334441.0000,73476478.0000,75503970.0000,75526393.0000,73960545.0000,74835374.0000,74846455.0000,74717750.0000,66909941.0000,73719459.0000,74926987.0000,75346121.0000,73546350.0000,74936615.0000,72862453.0000,75164758.0000,67700299.0000,74768326.0000,74758177.0000,76655012.0000,67052332.0000,74789507.0000,75075097.0000,74442910.0000,66753725.0000,74945723.0000,74856673.0000,74712621.0000,67974228.0000,75454858.0000,75397589.0000,74939861.0000,66535501.0000,74906859.0000,74765892.0000,74572946.0000,66384626.0000,74858588.0000,75397829.0000,74911478.0000,74250104.0000,75389183.0000,74508414.0000,74307022.0000,75144780.0000,75405905.0000,77366541.0000,72865219.0000,68734389.0000,74733069.0000,74664430.0000,72486702.0000,69562178.0000,74593104.0000,74908401.0000,72873104.0000,69148744.0000,74806148.0000,74869929.0000,73622515.0000,75440199.0000,74828891.0000,74786321.0000,71463372.0000,70229503.0000,74902951.0000,74783364.0000,73623997.0000,74764599.0000,73164967.0000,74912770.0000,72722048.0000,75119541.0000,74814534.0000,76786672.0000,70000680.0000,71816020.0000,74872674.0000,75004464.0000,70005759.0000,70863525.0000" +benchmark stencil: 2D 30 iters oversub 1,iterations,100,1,473862700,4928028.1600,4903306.8200,4942433.0600,94031.0745,60609.7416,137303.5947,"benchmark,group:system,stencil","4913561.0000,4904754.0000,4957435.0000,5061412.0000,4944079.0000,4933659.0000,4908401.0000,4966312.0000,4964938.0000,4949499.0000,4949209.0000,4925114.0000,4919372.0000,4929973.0000,4942757.0000,4990638.0000,4917769.0000,4940703.0000,4935162.0000,4953617.0000,4959849.0000,4979426.0000,5003431.0000,4905066.0000,4985608.0000,4951884.0000,4988063.0000,4935483.0000,4957354.0000,4939150.0000,4931135.0000,4903983.0000,4931646.0000,4938108.0000,4955050.0000,4935203.0000,4935383.0000,4923300.0000,4908582.0000,4895808.0000,4974927.0000,4911047.0000,4963356.0000,4927237.0000,4681050.0000,4450474.0000,4573046.0000,4968325.0000,4986681.0000,4980858.0000,5001888.0000,4962634.0000,4993573.0000,4997811.0000,4977552.0000,4990006.0000,4978965.0000,5001528.0000,4920876.0000,4953968.0000,4952495.0000,4593284.0000,4459510.0000,4927497.0000,4903332.0000,4926796.0000,4944550.0000,4912329.0000,4889786.0000,4935022.0000,4937827.0000,4934571.0000,4889996.0000,5003041.0000,4964098.0000,4963997.0000,4925965.0000,4913121.0000,4887592.0000,4980168.0000,4962714.0000,4887071.0000,4911567.0000,5001288.0000,4968476.0000,4954158.0000,4954239.0000,4959418.0000,4951704.0000,4981971.0000,4965019.0000,4952645.0000,4948398.0000,4911046.0000,4938018.0000,4921407.0000,4942646.0000,5010936.0000,4957796.0000,4909644.0000" +benchmark stencil: 2D 300 iters oversub 1,iterations,100,1,4779706100,48938448.2300,48605712.8300,49225507.6500,1581413.2911,1365186.2009,1818511.1094,"benchmark,group:system,stencil","47640427.0000,50503033.0000,49968901.0000,50266956.0000,49136543.0000,46288756.0000,46893311.0000,50128403.0000,49331613.0000,50146808.0000,49270638.0000,46219013.0000,46264950.0000,50343451.0000,49406074.0000,50142771.0000,49352934.0000,49419820.0000,49526161.0000,50478467.0000,49434819.0000,50289549.0000,49251371.0000,46651292.0000,46970297.0000,50264120.0000,49374183.0000,50516448.0000,48990757.0000,45405942.0000,47064265.0000,52224886.0000,49371979.0000,50395890.0000,48708191.0000,48433721.0000,49451520.0000,50403434.0000,49382579.0000,50323773.0000,48450613.0000,45034077.0000,47684581.0000,50465031.0000,49324309.0000,50493765.0000,48380660.0000,49838103.0000,49296175.0000,50172146.0000,49344888.0000,50294197.0000,47736198.0000,45032183.0000,49028278.0000,50249533.0000,49240620.0000,50157909.0000,47963259.0000,45339987.0000,48232789.0000,50218604.0000,49331122.0000,50218674.0000,48269981.0000,47572388.0000,48659268.0000,50380652.0000,49250449.0000,50237771.0000,47636239.0000,45353542.0000,50125638.0000,50219034.0000,49263815.0000,50425266.0000,48237969.0000,50398114.0000,49246722.0000,50253099.0000,49224890.0000,50234804.0000,46592251.0000,45007597.0000,49298310.0000,50226790.0000,49218548.0000,50311369.0000,46996647.0000,45650686.0000,49201586.0000,50165013.0000,49209862.0000,50134344.0000,46775547.0000,45793677.0000,49279945.0000,50198907.0000,49235912.0000,50392444.0000" +benchmark stencil: 2D 30 iters oversub 3,iterations,100,1,1648776600,16278699.6200,16174138.3800,16358662.0400,465558.2744,378436.1167,550724.9061,"benchmark,group:system,stencil","16469224.0000,16299071.0000,17048402.0000,16522876.0000,16398040.0000,16552793.0000,16457172.0000,16531132.0000,16456610.0000,16470476.0000,16400464.0000,16584823.0000,15302202.0000,15160795.0000,15038322.0000,15141758.0000,16221064.0000,16533175.0000,16417206.0000,16513028.0000,16374775.0000,16530020.0000,16454657.0000,16566078.0000,16442704.0000,16459085.0000,16433687.0000,16478272.0000,16422926.0000,16538696.0000,15312682.0000,15119095.0000,15062177.0000,15076714.0000,15634973.0000,16493981.0000,16404272.0000,16552592.0000,16407918.0000,16481037.0000,16452392.0000,16493411.0000,16393771.0000,16507467.0000,16450819.0000,16549838.0000,16402027.0000,16491236.0000,15391492.0000,15127992.0000,15058430.0000,15133783.0000,15550343.0000,16482490.0000,16416214.0000,16545720.0000,16354948.0000,16517335.0000,16491586.0000,16535069.0000,16421414.0000,16453956.0000,16462181.0000,16503760.0000,16418468.0000,16543155.0000,15466153.0000,16512817.0000,16447373.0000,16490245.0000,16405904.0000,16604381.0000,16401105.0000,16558734.0000,16435320.0000,16550138.0000,16460408.0000,16601495.0000,16462352.0000,16483131.0000,16432284.0000,16586065.0000,16420983.0000,16553434.0000,15454000.0000,16529719.0000,16427334.0000,16538986.0000,16390636.0000,16585034.0000,16413449.0000,16431894.0000,16452302.0000,16509701.0000,16457071.0000,16554415.0000,16466469.0000,15906147.0000,16453074.0000,16513138.0000" +benchmark stencil: 2D 300 iters oversub 3,iterations,100,1,16188150600,164029852.8200,163386559.2300,164648538.5300,3226944.2549,2939668.0370,3563163.3034,"benchmark,group:system,stencil","163523395.0000,160662352.0000,158234491.0000,167963031.0000,165214711.0000,163002668.0000,158041975.0000,160987479.0000,168592213.0000,164571673.0000,164865839.0000,157386223.0000,167836621.0000,162421187.0000,162265231.0000,164591590.0000,158288022.0000,167950496.0000,166183157.0000,164892892.0000,165215944.0000,163317836.0000,166935783.0000,166918782.0000,167924046.0000,159412324.0000,164086763.0000,161069003.0000,167014673.0000,166732949.0000,160270961.0000,162455220.0000,161222485.0000,168036770.0000,162731174.0000,165918485.0000,158278003.0000,165849024.0000,164336176.0000,160477172.0000,166324435.0000,157543380.0000,167447744.0000,166550724.0000,164252417.0000,161888236.0000,160499794.0000,166921917.0000,166857274.0000,168038884.0000,159656817.0000,164187525.0000,160827446.0000,167662530.0000,166158500.0000,159600270.0000,164615004.0000,161128185.0000,168596081.0000,160253137.0000,164378807.0000,160962982.0000,167379134.0000,167872970.0000,161240619.0000,166929812.0000,158125634.0000,168728902.0000,166577454.0000,162897009.0000,163958911.0000,160413891.0000,167631702.0000,169760507.0000,167702617.0000,161248374.0000,158277542.0000,164003255.0000,166752346.0000,168870681.0000,159832520.0000,164873965.0000,166743198.0000,164348660.0000,167769263.0000,162460551.0000,161989238.0000,161537622.0000,167522214.0000,167202570.0000,163150839.0000,160972190.0000,164115087.0000,164608913.0000,164973143.0000,167836491.0000,159960602.0000,167694712.0000,162973644.0000,164017592.0000" +benchmark rsim: 64 tris 50 iters,iterations,100,1,1070754400,10540106.4000,10458671.7000,10625251.3700,426101.6915,340364.2841,624673.8048,"benchmark,group:system,rsim","10662087.0000,10618585.0000,10882044.0000,10644143.0000,10624206.0000,10669842.0000,10633062.0000,10682947.0000,10720939.0000,10741878.0000,10129327.0000,10132122.0000,10698937.0000,10704447.0000,10697444.0000,10698537.0000,10671655.0000,10647048.0000,10689469.0000,10718545.0000,10625067.0000,10694880.0000,10728753.0000,10740095.0000,9856160.0000,10763860.0000,10677707.0000,10700470.0000,10754653.0000,9982279.0000,10744784.0000,10720138.0000,10674391.0000,10744724.0000,10713575.0000,10674161.0000,10662388.0000,10634605.0000,9666360.0000,10721660.0000,10700580.0000,10766475.0000,10648552.0000,10857928.0000,10667718.0000,10622933.0000,10713485.0000,10631760.0000,10593497.0000,10667147.0000,10642029.0000,10629837.0000,10697564.0000,10648211.0000,10635046.0000,10654273.0000,10697234.0000,10677226.0000,10671756.0000,12792706.0000,10723313.0000,10671084.0000,10680803.0000,10663881.0000,10733603.0000,9893380.0000,9714371.0000,9677612.0000,9688682.0000,9709532.0000,9738788.0000,9687259.0000,10690281.0000,10665133.0000,10674240.0000,10728433.0000,10737530.0000,10678759.0000,10754202.0000,10663320.0000,10664452.0000,10640967.0000,10701122.0000,10591844.0000,10724276.0000,10737650.0000,10678759.0000,10634124.0000,10665624.0000,10649493.0000,10707764.0000,10756717.0000,10778007.0000,9663274.0000,9749147.0000,9686809.0000,9777020.0000,9670387.0000,9732235.0000,9862832.0000" +benchmark rsim: 1024 tris 50 iters,iterations,100,1,1066637300,10496007.9600,10407839.9300,10587274.3900,457821.8188,381558.4246,640486.6285,"benchmark,group:system,rsim","10640406.0000,10746428.0000,10746317.0000,10689820.0000,10658471.0000,10655295.0000,10339736.0000,9705655.0000,9668744.0000,9653114.0000,9644698.0000,9637505.0000,9631013.0000,10105412.0000,10713114.0000,10710970.0000,10795320.0000,10668690.0000,10677156.0000,10709297.0000,10663641.0000,10709998.0000,10737460.0000,10733592.0000,10737820.0000,10719887.0000,10733693.0000,10721580.0000,10708546.0000,10745145.0000,10745455.0000,10725608.0000,10770673.0000,10768960.0000,10229988.0000,10119720.0000,10710279.0000,10738422.0000,10678428.0000,10702213.0000,10626770.0000,10709397.0000,10725678.0000,10766786.0000,10707443.0000,10683959.0000,10767207.0000,10592896.0000,9984743.0000,10652850.0000,10654463.0000,10726710.0000,10652660.0000,10691513.0000,10795641.0000,10723043.0000,10688087.0000,10742840.0000,10744654.0000,10090354.0000,10318136.0000,10653291.0000,9724440.0000,9706306.0000,9708861.0000,9689043.0000,9683783.0000,9682651.0000,10527793.0000,10693878.0000,10652840.0000,10669531.0000,10718594.0000,10737080.0000,10712633.0000,10724276.0000,10689068.0000,10679591.0000,12706873.0000,10729726.0000,10721891.0000,10650756.0000,10670353.0000,10716210.0000,10724154.0000,10708304.0000,10681554.0000,10711010.0000,10662729.0000,10388258.0000,9706866.0000,9693382.0000,9800735.0000,9673573.0000,9685586.0000,9650661.0000,10204981.0000,10731038.0000,10755915.0000,10728483.0000" +benchmark rsim: 64 tris 500 iters,iterations,100,1,11197721500,109110349.6500,108619421.7500,109567154.5000,2413167.1397,2184880.0176,2668202.7588,"benchmark,group:system,rsim","109139675.0000,110338808.0000,110911764.0000,105611998.0000,109494057.0000,110915711.0000,104027225.0000,111709145.0000,108599391.0000,109111923.0000,111433994.0000,111193297.0000,111542369.0000,110291939.0000,104281006.0000,111806660.0000,105838919.0000,107500287.0000,111149985.0000,106057102.0000,109561394.0000,110998728.0000,104216282.0000,111482706.0000,109005892.0000,110702116.0000,111375082.0000,110127187.0000,109566554.0000,110694522.0000,104360336.0000,113565704.0000,106077190.0000,107838829.0000,111183198.0000,104758310.0000,109402372.0000,111223505.0000,110294804.0000,111756895.0000,106346561.0000,107432409.0000,110903748.0000,106748993.0000,109727980.0000,109722229.0000,107386571.0000,111659230.0000,106768320.0000,108736431.0000,111224206.0000,105263999.0000,109062950.0000,111015400.0000,104511192.0000,111641166.0000,107127601.0000,106595432.0000,111458871.0000,105982951.0000,108285896.0000,110655928.0000,107331137.0000,111768177.0000,107159031.0000,106012587.0000,110943714.0000,112686387.0000,109825995.0000,111189240.0000,105215166.0000,111646275.0000,107475781.0000,106186097.0000,111308165.0000,110894230.0000,110241473.0000,111342239.0000,104912332.0000,111835244.0000,108632313.0000,111190913.0000,108867008.0000,110878841.0000,108730029.0000,111013276.0000,106257121.0000,111622571.0000,107252558.0000,106353694.0000,110933464.0000,106150178.0000,108774262.0000,110667540.0000,104809747.0000,111821217.0000,108647121.0000,110676147.0000,111798735.0000,110580035.0000" +benchmark rsim: 1024 tris 500 iters,iterations,100,1,10971228200,109024066.6200,108499865.6400,109485163.0300,2492590.6294,2191046.9497,2810804.3725,"benchmark,group:system,rsim","109957044.0000,110203431.0000,112221506.0000,110824799.0000,107343491.0000,110715522.0000,110687638.0000,103422047.0000,111679559.0000,108190416.0000,105865929.0000,110167503.0000,110319421.0000,109217201.0000,110170820.0000,103547085.0000,110802797.0000,110576738.0000,110806464.0000,111690840.0000,105449240.0000,108302878.0000,111037091.0000,104635187.0000,111030088.0000,108416414.0000,106521012.0000,110049118.0000,106977647.0000,107888353.0000,111360945.0000,109250746.0000,110133538.0000,108780043.0000,105209806.0000,111687734.0000,106712885.0000,109081725.0000,110953332.0000,104427092.0000,111480662.0000,110243918.0000,104448353.0000,109937026.0000,110625070.0000,109939150.0000,111072328.0000,103132809.0000,111354633.0000,109530656.0000,108495213.0000,109995167.0000,110091359.0000,109894385.0000,112423640.0000,105191521.0000,110713969.0000,110608358.0000,104880171.0000,110612437.0000,107527358.0000,107759208.0000,111330407.0000,103130846.0000,111476694.0000,110149018.0000,110565407.0000,109866222.0000,109819363.0000,110819559.0000,110185296.0000,104472648.0000,112886186.0000,110902145.0000,104166749.0000,110178815.0000,108095366.0000,109680099.0000,111680541.0000,109093166.0000,111331970.0000,109479499.0000,104998696.0000,110105445.0000,109058470.0000,110162053.0000,110113590.0000,104462900.0000,111251618.0000,111760332.0000,106788118.0000,110936270.0000,107328391.0000,106608117.0000,111544614.0000,105631495.0000,111475593.0000,110001508.0000,104562840.0000,110034100.0000" diff --git a/ci/perf/gpuc2_bench.md b/ci/perf/gpuc2_bench.md index c8aa71d1a..1b073d6a5 100644 --- a/ci/perf/gpuc2_bench.md +++ b/ci/perf/gpuc2_bench.md @@ -2,201 +2,177 @@ | Metadata | | | :------- | :------------------- | -| Created | 2025-03-27T12:15:15Z | +| Created | 2025-01-14T12:02:00Z | -| 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 | +| Test case | Benchmark name | Min | Mean | Std dev | +| :------------------------------------------------------------------------------------------------------------------------------------- | :----------------------------------- | -------------: | -------------: | -----------: | +| benchmark intrusive graph dependency handling with N nodes - 1 | creating nodes | 3.38 | 3.40 | 0.10 | +| benchmark intrusive graph dependency handling with N nodes - 1 | creating and adding dependencies | 22.02 | 22.25 | 0.53 | +| benchmark intrusive graph dependency handling with N nodes - 1 | adding and removing dependencies | 15.35 | 15.49 | 0.37 | +| benchmark intrusive graph dependency handling with N nodes - 1 | checking for dependencies | 1.45 | 1.46 | 0.02 | +| benchmark intrusive graph dependency handling with N nodes - 10 | creating nodes | 32.10 | 32.52 | 2.75 | +| benchmark intrusive graph dependency handling with N nodes - 10 | creating and adding dependencies | 215.94 | 217.30 | 5.96 | +| benchmark intrusive graph dependency handling with N nodes - 10 | adding and removing dependencies | 203.81 | 205.83 | 4.00 | +| benchmark intrusive graph dependency handling with N nodes - 10 | checking for dependencies | 22.70 | 23.14 | 0.53 | +| benchmark intrusive graph dependency handling with N nodes - 100 | creating nodes | 453.00 | 457.73 | 9.14 | +| benchmark intrusive graph dependency handling with N nodes - 100 | creating and adding dependencies | 4'342.83 | 4'383.90 | 89.12 | +| benchmark intrusive graph dependency handling with N nodes - 100 | adding and removing dependencies | 4'599.86 | 4'658.31 | 145.32 | +| benchmark intrusive graph dependency handling with N nodes - 100 | checking for dependencies | 1'767.35 | 1'785.67 | 45.77 | +| benchmark task handling | generating and deleting tasks | 5'998'237.00 | 6'039'819.42 | 50'137.16 | +| generating large task graphs | soup topology | 318'482.00 | 326'441.73 | 16'687.28 | +| generating large task graphs | chain topology | 30'976.00 | 33'251.15 | 6'737.84 | +| generating large task graphs | expanding tree topology | 40'003.00 | 42'791.06 | 8'005.10 | +| generating large task graphs | contracting tree topology | 44'121.00 | 47'394.67 | 8'126.60 | +| generating large task graphs | wave\_sim topology | 400'307.00 | 416'990.44 | 103'359.01 | +| generating large task graphs | jacobi topology | 103'574.00 | 107'229.07 | 12'270.68 | +| generating large command graphs for N nodes - 1 | soup topology | 590'307.00 | 597'062.71 | 10'951.03 | +| generating large command graphs for N nodes - 1 | chain topology | 37'729.00 | 39'759.02 | 6'739.18 | +| generating large command graphs for N nodes - 1 | expanding tree topology | 76'574.00 | 79'326.79 | 9'420.46 | +| generating large command graphs for N nodes - 1 | contracting tree topology | 86'532.00 | 89'289.63 | 8'282.13 | +| generating large command graphs for N nodes - 1 | wave\_sim topology | 450'902.00 | 545'825.45 | 14'138.78 | +| generating large command graphs for N nodes - 1 | jacobi topology | 132'069.00 | 135'892.35 | 13'438.56 | +| generating large command graphs for N nodes - 4 | soup topology | 765'489.00 | 872'609.67 | 81'116.58 | +| generating large command graphs for N nodes - 4 | chain topology | 270'922.00 | 277'198.44 | 19'109.34 | +| generating large command graphs for N nodes - 4 | expanding tree topology | 253'619.00 | 259'530.67 | 18'356.51 | +| generating large command graphs for N nodes - 4 | contracting tree topology | 232'849.00 | 237'788.48 | 15'651.73 | +| generating large command graphs for N nodes - 4 | wave\_sim topology | 1'760'706.00 | 1'773'952.20 | 14'515.44 | +| generating large command graphs for N nodes - 4 | jacobi topology | 415'555.00 | 421'893.13 | 17'969.38 | +| generating large command graphs for N nodes - 16 | soup topology | 1'443'244.00 | 1'452'880.98 | 16'323.38 | +| generating large command graphs for N nodes - 16 | chain topology | 866'481.00 | 877'211.14 | 18'742.51 | +| generating large command graphs for N nodes - 16 | expanding tree topology | 604'844.00 | 615'401.46 | 22'134.42 | +| generating large command graphs for N nodes - 16 | contracting tree topology | 681'058.00 | 691'209.56 | 21'530.22 | +| generating large command graphs for N nodes - 16 | wave\_sim topology | 3'654'455.00 | 3'747'593.05 | 202'679.29 | +| generating large command graphs for N nodes - 16 | jacobi topology | 1'197'308.00 | 1'207'956.82 | 21'875.70 | +| generating large instruction graphs for N devices - 1 | soup topology | 2'480'279.00 | 2'544'024.76 | 462'630.05 | +| generating large instruction graphs for N devices - 1 | chain topology | 498'764.00 | 508'709.70 | 12'587.04 | +| generating large instruction graphs for N devices - 1 | expanding tree topology | 675'158.00 | 685'580.76 | 15'651.86 | +| generating large instruction graphs for N devices - 1 | contracting tree topology | 790'436.00 | 803'556.75 | 22'940.92 | +| generating large instruction graphs for N devices - 1 | wave\_sim topology | 3'761'147.00 | 3'789'990.00 | 35'614.73 | +| generating large instruction graphs for N devices - 1 | jacobi topology | 814'201.00 | 823'872.67 | 13'227.24 | +| generating large instruction graphs for N devices - 4 | soup topology | 2'516'237.00 | 2'578'054.07 | 444'592.85 | +| generating large instruction graphs for N devices - 4 | chain topology | 446'415.00 | 453'918.76 | 12'431.86 | +| generating large instruction graphs for N devices - 4 | expanding tree topology | 675'930.00 | 686'588.45 | 16'317.91 | +| generating large instruction graphs for N devices - 4 | contracting tree topology | 798'612.00 | 810'219.18 | 15'689.56 | +| generating large instruction graphs for N devices - 4 | wave\_sim topology | 11'973'413.00 | 13'301'676.84 | 160'270.56 | +| generating large instruction graphs for N devices - 4 | jacobi topology | 3'900'712.00 | 3'935'165.45 | 176'043.86 | +| generating large instruction graphs for N devices - 16 | soup topology | 2'678'395.00 | 2'735'709.10 | 408'366.55 | +| generating large instruction graphs for N devices - 16 | chain topology | 515'736.00 | 523'251.29 | 13'104.81 | +| generating large instruction graphs for N devices - 16 | expanding tree topology | 686'409.00 | 697'789.91 | 16'672.46 | +| generating large instruction graphs for N devices - 16 | contracting tree topology | 827'387.00 | 838'623.17 | 17'309.93 | +| generating large instruction graphs for N devices - 16 | wave\_sim topology | 46'156'174.00 | 50'642'640.19 | 3'221'775.09 | +| generating large instruction graphs for N devices - 16 | jacobi topology | 45'120'952.00 | 50'361'740.30 | 2'001'277.54 | +| generating large instruction graphs for N devices without d2d copy support - 1 | soup topology | 2'220'267.00 | 2'363'035.22 | 411'630.51 | +| generating large instruction graphs for N devices without d2d copy support - 1 | chain topology | 501'779.00 | 509'396.41 | 12'163.51 | +| generating large instruction graphs for N devices without d2d copy support - 1 | expanding tree topology | 606'116.00 | 637'667.08 | 34'588.51 | +| generating large instruction graphs for N devices without d2d copy support - 1 | contracting tree topology | 789'695.00 | 802'044.81 | 19'755.56 | +| generating large instruction graphs for N devices without d2d copy support - 1 | wave\_sim topology | 3'753'412.00 | 3'788'446.47 | 34'250.51 | +| generating large instruction graphs for N devices without d2d copy support - 1 | jacobi topology | 717'578.00 | 728'975.28 | 18'324.47 | +| generating large instruction graphs for N devices without d2d copy support - 4 | soup topology | 2'251'676.00 | 2'450'316.53 | 462'339.78 | +| generating large instruction graphs for N devices without d2d copy support - 4 | chain topology | 504'144.00 | 514'056.25 | 18'750.58 | +| generating large instruction graphs for N devices without d2d copy support - 4 | expanding tree topology | 677'512.00 | 688'155.06 | 15'406.50 | +| generating large instruction graphs for N devices without d2d copy support - 4 | contracting tree topology | 796'608.00 | 810'297.22 | 17'298.69 | +| generating large instruction graphs for N devices without d2d copy support - 4 | wave\_sim topology | 12'433'696.00 | 13'857'918.56 | 921'999.27 | +| generating large instruction graphs for N devices without d2d copy support - 4 | jacobi topology | 3'965'294.00 | 4'006'682.07 | 247'236.88 | +| generating large instruction graphs for N devices without d2d copy support - 16 | soup topology | 2'675'309.00 | 2'729'695.32 | 363'407.52 | +| generating large instruction graphs for N devices without d2d copy support - 16 | chain topology | 515'645.00 | 523'553.68 | 12'512.44 | +| generating large instruction graphs for N devices without d2d copy support - 16 | expanding tree topology | 686'238.00 | 696'290.00 | 16'032.96 | +| generating large instruction graphs for N devices without d2d copy support - 16 | contracting tree topology | 829'390.00 | 839'200.01 | 17'063.81 | +| generating large instruction graphs for N devices without d2d copy support - 16 | wave\_sim topology | 59'523'621.00 | 67'442'122.45 | 968'810.03 | +| generating large instruction graphs for N devices without d2d copy support - 16 | jacobi topology | 40'256'442.00 | 45'529'590.79 | 2'152'707.70 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: single-threaded graph generation | soup topology | 3'016'496.00 | 3'071'272.30 | 389'734.89 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: single-threaded graph generation | chain topology | 165'362.00 | 170'807.94 | 19'744.82 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: single-threaded graph generation | expanding tree topology | 340'373.00 | 348'457.96 | 27'940.95 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: single-threaded graph generation | contracting tree topology | 518'932.00 | 528'652.98 | 31'907.05 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: single-threaded graph generation | wave\_sim topology | 2'137'549.00 | 2'183'327.09 | 293'566.82 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > reference: single-threaded graph generation | jacobi topology | 654'969.00 | 665'303.18 | 35'082.01 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > using a dedicated scheduler thread | soup topology | 2'220'036.00 | 2'269'607.38 | 145'386.01 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > using a dedicated scheduler thread | chain topology | 212'941.00 | 233'508.09 | 87'995.13 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > using a dedicated scheduler thread | expanding tree topology | 386'150.00 | 439'466.18 | 217'473.55 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > using a dedicated scheduler thread | contracting tree topology | 463'787.00 | 509'130.87 | 217'305.85 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > using a dedicated scheduler thread | wave\_sim topology | 2'524'413.00 | 2'981'995.23 | 129'842.81 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 1 > using a dedicated scheduler thread | jacobi topology | 778'013.00 | 834'805.66 | 279'418.99 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: single-threaded graph generation | soup topology | 3'767'148.00 | 3'831'595.94 | 405'353.34 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: single-threaded graph generation | chain topology | 1'078'903.00 | 1'087'766.35 | 34'347.13 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: single-threaded graph generation | expanding tree topology | 984'614.00 | 1'108'145.71 | 50'670.46 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: single-threaded graph generation | contracting tree topology | 1'231'593.00 | 1'242'713.88 | 38'338.43 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: single-threaded graph generation | wave\_sim topology | 5'153'406.00 | 5'210'397.67 | 250'169.86 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > reference: single-threaded graph generation | jacobi topology | 1'457'561.00 | 1'474'823.59 | 39'081.00 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > using a dedicated scheduler thread | soup topology | 2'700'777.00 | 3'109'717.53 | 92'425.01 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > using a dedicated scheduler thread | chain topology | 1'332'553.00 | 1'375'165.01 | 93'346.69 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > using a dedicated scheduler thread | expanding tree topology | 1'337'093.00 | 1'381'365.54 | 181'206.87 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > using a dedicated scheduler thread | contracting tree topology | 1'301'525.00 | 1'347'163.40 | 153'388.06 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > using a dedicated scheduler thread | wave\_sim topology | 6'779'127.00 | 7'774'915.39 | 120'149.88 | +| building command- and instruction graphs in a dedicated scheduler thread for N nodes - 4 > using a dedicated scheduler thread | jacobi topology | 1'873'840.00 | 1'907'588.95 | 103'430.84 | +| normalizing randomized box sets - 2d | small, native | 553.89 | 561.26 | 13.13 | +| normalizing randomized box sets - 2d | small, embedded in 3d | 652.24 | 679.55 | 160.52 | +| normalizing randomized box sets - 2d | medium, native | 6'005.00 | 6'094.64 | 186.01 | +| normalizing randomized box sets - 2d | medium, embedded in 3d | 6'734.75 | 6'831.73 | 216.13 | +| normalizing randomized box sets - 2d | large, native | 198'364.00 | 199'979.05 | 1'851.51 | +| normalizing randomized box sets - 2d | large, embedded in 3d | 213'092.00 | 215'064.54 | 2'011.40 | +| normalizing randomized box sets - 3d | small - native | 2'476.50 | 2'517.82 | 75.23 | +| normalizing randomized box sets - 3d | medium - native | 9'173.33 | 9'316.80 | 287.71 | +| normalizing randomized box sets - 3d | large - native | 2'173'557.00 | 2'195'116.49 | 9'667.71 | +| normalizing a fully mergeable tiling of boxes - 1 | small, native | 33.00 | 33.42 | 0.68 | +| normalizing a fully mergeable tiling of boxes - 1 | small, embedded in 3d | 46.17 | 46.84 | 1.18 | +| normalizing a fully mergeable tiling of boxes - 1 | medium, native | 298.61 | 304.73 | 9.39 | +| normalizing a fully mergeable tiling of boxes - 1 | medium, embedded in 3d | 471.42 | 479.62 | 12.56 | +| normalizing a fully mergeable tiling of boxes - 1 | large, native | 7'551.50 | 7'654.11 | 193.94 | +| normalizing a fully mergeable tiling of boxes - 1 | large, embedded in 3d | 11'921.67 | 12'038.33 | 238.29 | +| normalizing a fully mergeable tiling of boxes - 2 | small, native | 104.11 | 105.59 | 2.48 | +| normalizing a fully mergeable tiling of boxes - 2 | small, embedded in 3d | 121.59 | 123.65 | 2.74 | +| normalizing a fully mergeable tiling of boxes - 2 | medium, native | 895.45 | 910.50 | 24.28 | +| normalizing a fully mergeable tiling of boxes - 2 | medium, embedded in 3d | 1'025.21 | 1'044.36 | 30.97 | +| normalizing a fully mergeable tiling of boxes - 2 | large, native | 36'537.00 | 36'935.55 | 710.60 | +| normalizing a fully mergeable tiling of boxes - 2 | large, embedded in 3d | 41'517.00 | 42'038.63 | 839.70 | +| normalizing a fully mergeable tiling of boxes - 3 | small, native | 258.36 | 262.31 | 6.95 | +| normalizing a fully mergeable tiling of boxes - 3 | medium, native | 1'483.79 | 1'498.69 | 33.37 | +| normalizing a fully mergeable tiling of boxes - 3 | large, native | 44'692.00 | 45'943.12 | 982.58 | +| performing set operations between randomized regions - 2d | union, small, native | 866.07 | 880.71 | 23.07 | +| performing set operations between randomized regions - 2d | union, small, embedded in 3d | 1'001.44 | 1'030.53 | 138.17 | +| performing set operations between randomized regions - 2d | intersection, small, native | 215.61 | 219.43 | 6.97 | +| performing set operations between randomized regions - 2d | intersection, small, embedded in 3d | 243.97 | 248.17 | 7.26 | +| performing set operations between randomized regions - 2d | difference, small, native | 1'009.44 | 1'024.40 | 30.97 | +| performing set operations between randomized regions - 2d | difference, small, embedded in 3d | 1'192.67 | 1'213.11 | 34.19 | +| performing set operations between randomized regions - 2d | union, medium, native | 13'154.00 | 13'328.77 | 363.20 | +| performing set operations between randomized regions - 2d | union, medium, embedded in 3d | 14'586.50 | 14'774.09 | 416.84 | +| performing set operations between randomized regions - 2d | intersection, medium, native | 2'327.00 | 2'365.99 | 57.09 | +| performing set operations between randomized regions - 2d | intersection, medium, embedded in 3d | 2'265.00 | 2'301.77 | 66.15 | +| performing set operations between randomized regions - 2d | difference, medium, native | 7'371.00 | 7'472.67 | 222.81 | +| performing set operations between randomized regions - 2d | difference, medium, embedded in 3d | 8'381.67 | 8'489.48 | 235.82 | +| performing set operations between randomized regions - 2d | union, large, native | 159'871.00 | 161'361.01 | 1'810.22 | +| performing set operations between randomized regions - 2d | union, large, embedded in 3d | 170'351.00 | 172'148.75 | 1'797.65 | +| performing set operations between randomized regions - 2d | intersection, large, native | 21'189.50 | 21'441.58 | 430.32 | +| performing set operations between randomized regions - 2d | intersection, large, embedded in 3d | 20'919.00 | 21'166.31 | 379.66 | +| performing set operations between randomized regions - 2d | difference, large, native | 611'186.00 | 617'153.42 | 4'034.71 | +| performing set operations between randomized regions - 2d | difference, large, embedded in 3d | 663'526.00 | 669'559.31 | 3'644.37 | +| performing set operations between randomized regions - 3d | union, small, native | 3'862.71 | 3'919.73 | 114.70 | +| performing set operations between randomized regions - 3d | intersection, small, native | 145.35 | 148.68 | 4.27 | +| performing set operations between randomized regions - 3d | difference, small, native | 1'361.95 | 1'385.70 | 38.72 | +| performing set operations between randomized regions - 3d | union, medium, native | 21'690.00 | 22'123.21 | 1'482.76 | +| performing set operations between randomized regions - 3d | intersection, medium, native | 2'446.27 | 2'465.13 | 67.94 | +| performing set operations between randomized regions - 3d | difference, medium, native | 11'224.00 | 11'371.57 | 274.99 | +| performing set operations between randomized regions - 3d | union, large, native | 2'014'737.00 | 2'027'328.51 | 6'070.60 | +| performing set operations between randomized regions - 3d | intersection, large, native | 14'616.50 | 14'770.98 | 328.49 | +| performing set operations between randomized regions - 3d | difference, large, native | 5'959'274.00 | 6'139'945.11 | 224'808.18 | +| normalizing a fully mergeable, complex tiling of boxes - 2d | small, native | 1'921.15 | 1'946.99 | 58.57 | +| normalizing a fully mergeable, complex tiling of boxes - 2d | small, embedded in 3d | 2'575.60 | 2'609.13 | 75.20 | +| normalizing a fully mergeable, complex tiling of boxes - 2d | large, native | 1'540'738.00 | 1'547'692.21 | 4'821.53 | +| normalizing a fully mergeable, complex tiling of boxes - 2d | large, embedded in 3d | 1'739'535.00 | 1'745'580.37 | 9'210.49 | +| benchmark independent task pattern with 100 tasks | task generation | 7'815'181.00 | 8'920'667.53 | 367'410.29 | +| benchmark independent task pattern with 500 tasks | task generation | 46'247'197.00 | 51'824'939.11 | 2'179'781.95 | +| benchmark independent task pattern with 2500 tasks | task generation | 256'915'824.00 | 266'547'580.65 | 4'309'034.71 | +| benchmark stencil: 1D 50 iters oversub 1 | iterations | 2'849'088.00 | 3'118'809.48 | 76'828.71 | +| benchmark stencil: 1D 500 iters oversub 1 | iterations | 26'398'594.00 | 30'527'084.69 | 1'401'339.63 | +| benchmark stencil: 1D 50 iters oversub 3 | iterations | 6'580'752.00 | 7'330'870.58 | 387'980.76 | +| benchmark stencil: 1D 500 iters oversub 3 | iterations | 66'384'626.00 | 73'582'236.37 | 2'544'285.17 | +| benchmark stencil: 2D 30 iters oversub 1 | iterations | 4'450'474.00 | 4'928'028.16 | 94'031.07 | +| benchmark stencil: 2D 300 iters oversub 1 | iterations | 45'007'597.00 | 48'938'448.23 | 1'581'413.29 | +| benchmark stencil: 2D 30 iters oversub 3 | iterations | 15'038'322.00 | 16'278'699.62 | 465'558.27 | +| benchmark stencil: 2D 300 iters oversub 3 | iterations | 157'386'223.00 | 164'029'852.82 | 3'226'944.25 | +| benchmark rsim: 64 tris 50 iters | iterations | 9'663'274.00 | 10'540'106.40 | 426'101.69 | +| benchmark rsim: 1024 tris 50 iters | iterations | 9'631'013.00 | 10'496'007.96 | 457'821.82 | +| benchmark rsim: 64 tris 500 iters | iterations | 104'027'225.00 | 109'110'349.65 | 2'413'167.14 | +| benchmark rsim: 1024 tris 500 iters | iterations | 103'130'846.00 | 109'024'066.62 | 2'492'590.63 | All numbers are in nanoseconds. diff --git a/include/utils.h b/include/utils.h index 4794966b1..852c44509 100644 --- a/include/utils.h +++ b/include/utils.h @@ -19,6 +19,14 @@ #define CELERITY_DETAIL_UTILS_CAT_2(a, b) a##b #define CELERITY_DETAIL_UTILS_CAT(a, b) CELERITY_DETAIL_UTILS_CAT_2(a, b) +#define CELERITY_DETAIL_UTILS_NON_COPYABLE(classname) \ + classname(const classname&) = delete; \ + classname& operator=(const classname&) = delete + +#define CELERITY_DETAIL_UTILS_NON_MOVABLE(classname) \ + classname(classname&&) = delete; \ + classname& operator=(classname&&) = delete + namespace celerity::detail::utils { template diff --git a/test/dag_benchmarks.cc b/test/dag_benchmarks.cc index 566b27ad9..562106670 100644 --- a/test/dag_benchmarks.cc +++ b/test/dag_benchmarks.cc @@ -100,108 +100,163 @@ static constexpr instruction_graph_generator::policy_set benchmark_instruction_g /* overlapping_write_error */ CELERITY_ACCESS_PATTERN_DIAGNOSTICS ? error_policy::panic : error_policy::ignore, }; -struct task_manager_benchmark_context { - const size_t num_nodes = 1; - task_graph tdag; - task_recorder trec; - task_manager tm{1, tdag, test_utils::g_print_graphs ? &trec : nullptr, nullptr /* delegate */, benchmark_task_manager_policy}; - test_utils::mock_buffer_factory mbf{tm}; - - task_manager_benchmark_context() { tm.generate_epoch_task(epoch_action::init); } - - task_manager_benchmark_context(const task_manager_benchmark_context&) = delete; - task_manager_benchmark_context(task_manager_benchmark_context&&) = delete; - task_manager_benchmark_context& operator=(const task_manager_benchmark_context&) = delete; - task_manager_benchmark_context& operator=(task_manager_benchmark_context&&) = delete; - - ~task_manager_benchmark_context() { tm.generate_epoch_task(celerity::detail::epoch_action::shutdown); } +struct dag_benchmark_context { + dag_benchmark_context() = default; + virtual ~dag_benchmark_context() = 0; + CELERITY_DETAIL_UTILS_NON_COPYABLE(dag_benchmark_context); + CELERITY_DETAIL_UTILS_NON_MOVABLE(dag_benchmark_context); template void create_task(range global_range, CGF cgf) { - tm.generate_command_group_task(invoke_command_group_function([=](handler& cgh) { + m_command_groups.push_back(invoke_command_group_function([=](handler& cgh) { cgf(cgh); - cgh.host_task(global_range, [](partition) {}); + cgh.parallel_for(global_range, [](item) {}); })); } + + protected: + std::vector m_command_groups; }; +dag_benchmark_context::~dag_benchmark_context() = default; -struct command_graph_generator_benchmark_context : private task_manager::delegate { // NOLINT(cppcoreguidelines-virtual-class-destructor) +struct tdag_benchmark_context : dag_benchmark_context, private task_manager::delegate { const size_t num_nodes; task_graph tdag; task_recorder trec; - task_manager tm{num_nodes, tdag, test_utils::g_print_graphs ? &trec : nullptr, this, benchmark_task_manager_policy}; + task_manager tm{num_nodes, tdag, test_utils::g_print_graphs ? &trec : nullptr, static_cast(this), benchmark_task_manager_policy}; + test_utils::mock_buffer_factory mbf{tm}; + + explicit tdag_benchmark_context(const size_t num_nodes = 1) : num_nodes(num_nodes) {} + + void task_created(const task* tsk) override { m_tasks.push_back(tsk); } + + // is called before the initialization of benchmark tasks + void initialize() { tm.generate_epoch_task(celerity::detail::epoch_action::init); } + + // is called after the initialization of benchmark tasks + void prepare() { m_tasks.reserve(m_command_groups.size()); } + + // executes everything that is actually benchmarked (measured) + void execute() { create_all_tasks(); } + + // finalizes the benchmark context, e.g. generates shutdown epoch, and clears the command groups + void finalize() { + tm.generate_epoch_task(celerity::detail::epoch_action::shutdown); + m_command_groups.clear(); + } + + protected: + std::vector m_tasks; // for use in derived classes + + void create_all_tasks() { + for(auto& cg : m_command_groups) { + tm.generate_command_group_task(std::move(cg)); + } + } +}; + +struct cdag_benchmark_context : tdag_benchmark_context { command_graph cdag; command_recorder crec; command_graph_generator cggen{num_nodes, 0 /* local_nid */, cdag, test_utils::g_print_graphs ? &crec : nullptr, benchmark_command_graph_generator_policy}; test_utils::mock_buffer_factory mbf{tm, cggen}; - explicit command_graph_generator_benchmark_context(const size_t num_nodes) : num_nodes(num_nodes) { tm.generate_epoch_task(epoch_action::init); } + explicit cdag_benchmark_context(const size_t num_nodes) : tdag_benchmark_context(num_nodes) {} + + void initialize() { + tdag_benchmark_context::initialize(); + create_all_commands(); // used to initialize the m_command_batches even if empty + m_tasks.clear(); + } + + void prepare() { + create_all_tasks(); + m_command_batches.reserve(m_tasks.size()); + } - void task_created(const task* tsk) override { cggen.build_task(*tsk); } + void execute() { create_all_commands(); } - command_graph_generator_benchmark_context(const command_graph_generator_benchmark_context&) = delete; - command_graph_generator_benchmark_context(command_graph_generator_benchmark_context&&) = delete; - command_graph_generator_benchmark_context& operator=(const command_graph_generator_benchmark_context&) = delete; - command_graph_generator_benchmark_context& operator=(command_graph_generator_benchmark_context&&) = delete; + void finalize() { + m_tasks.clear(); + tdag_benchmark_context::finalize(); + create_all_commands(); + } - ~command_graph_generator_benchmark_context() { tm.generate_epoch_task(celerity::detail::epoch_action::shutdown); } + protected: + std::vector> m_command_batches; // for use in derived classes - template - void create_task(range global_range, CGF cgf) { - // note: This ignores communication overhead with the scheduler thread - tm.generate_command_group_task(invoke_command_group_function([=](handler& cgh) { - cgf(cgh); - cgh.parallel_for(global_range, [](item) {}); - })); + void create_all_commands() { + for(const auto* tsk : m_tasks) { + m_command_batches.push_back(cggen.build_task(*tsk)); + } } }; -struct instruction_graph_generator_benchmark_context final : private task_manager::delegate { - const size_t num_nodes; +struct idag_benchmark_context : cdag_benchmark_context { const size_t num_devices; const bool supports_d2d_copies; - task_graph tdag; - task_recorder trec; - task_manager tm{num_nodes, tdag, test_utils::g_print_graphs ? &trec : nullptr, this, benchmark_task_manager_policy}; - command_graph cdag; - command_recorder crec; - command_graph_generator cggen{num_nodes, 0 /* local_nid */, cdag, test_utils::g_print_graphs ? &crec : nullptr, benchmark_command_graph_generator_policy}; instruction_recorder irec; instruction_graph idag; instruction_graph_generator iggen{num_nodes, 0 /* local nid */, test_utils::make_system_info(num_devices, supports_d2d_copies), idag, nullptr /* delegate */, test_utils::g_print_graphs ? &irec : nullptr, benchmark_instruction_graph_generator_policy}; test_utils::mock_buffer_factory mbf{tm, cggen, iggen}; - explicit instruction_graph_generator_benchmark_context(const size_t num_nodes, const size_t num_devices, const bool supports_d2d_copies = true) - : num_nodes(num_nodes), num_devices(num_devices), supports_d2d_copies(supports_d2d_copies) { - tm.generate_epoch_task(epoch_action::init); + explicit idag_benchmark_context(const size_t num_nodes, const size_t num_devices, const bool supports_d2d_copies = true) + : cdag_benchmark_context(num_nodes), num_devices(num_devices), supports_d2d_copies(supports_d2d_copies) {} + + void initialize() { + cdag_benchmark_context::initialize(); + create_all_instructions(); // used to initialize the m_command_batches even if empty + m_command_batches.clear(); + } + + void prepare() { + create_all_tasks(); + create_all_commands(); + } + + void execute() { create_all_instructions(); } + + void finalize() { + m_command_batches.clear(); + cdag_benchmark_context::finalize(); + create_all_instructions(); } - void task_created(const task* tsk) override { - for(const auto cmd : cggen.build_task(*tsk)) { - iggen.compile(*cmd); + protected: + void create_all_instructions() { + for(const auto& batch : m_command_batches) { + for(const auto* cmd : batch) { + iggen.compile(*cmd); + } } } +}; - instruction_graph_generator_benchmark_context(const instruction_graph_generator_benchmark_context&) = delete; - instruction_graph_generator_benchmark_context(instruction_graph_generator_benchmark_context&&) = delete; - instruction_graph_generator_benchmark_context& operator=(const instruction_graph_generator_benchmark_context&) = delete; - instruction_graph_generator_benchmark_context& operator=(instruction_graph_generator_benchmark_context&&) = delete; +/// Like idag_benchmark_context, but measures construction of all three graphs +struct all_dags_benchmark_context : idag_benchmark_context { + all_dags_benchmark_context(const size_t num_nodes, const size_t num_devices, const bool supports_d2d_copies = true) + : idag_benchmark_context(num_nodes, num_devices, supports_d2d_copies) {} + + void initialize() { + tdag_benchmark_context::initialize(); + create_all_commands(); + create_all_instructions(); + m_tasks.clear(); + m_command_batches.clear(); + } - ~instruction_graph_generator_benchmark_context() { tm.generate_epoch_task(celerity::detail::epoch_action::shutdown); } + void prepare() { /* no-op */ } - template - void create_task(range global_range, CGF cgf) { - // note: This ignores communication overhead with the scheduler thread - tm.generate_command_group_task(invoke_command_group_function([=](handler& cgh) { - cgf(cgh); - cgh.host_task(global_range, [](partition) {}); - })); + void execute() { + create_all_tasks(); + create_all_commands(); + create_all_instructions(); } }; -// Keeps an OS thread around between benchmark iterations to avoid measuring thread creation overhead +// Keeps an OS thread around between benchmark iterations to avoid creating thousands of threads class restartable_scheduler_thread { struct empty {}; struct shutdown {}; @@ -264,86 +319,45 @@ class restartable_scheduler_thread { } }; -struct scheduler_benchmark_context : private task_manager::delegate { // NOLINT(cppcoreguidelines-virtual-class-destructor) - const size_t num_nodes; - task_graph tdag; - task_manager tm{num_nodes, tdag, nullptr, this, benchmark_task_manager_policy}; +struct scheduler_benchmark_context : tdag_benchmark_context { restartable_scheduler_thread* thread; scheduler schdlr; test_utils::mock_buffer_factory mbf; explicit scheduler_benchmark_context(restartable_scheduler_thread& thrd, const size_t num_nodes, const size_t num_devices_per_node) - : num_nodes(num_nodes), thread(&thrd), // + : tdag_benchmark_context(num_nodes), thread(&thrd), // schdlr(scheduler_testspy::make_threadless_scheduler(num_nodes, 0 /* local_nid */, test_utils::make_system_info(num_devices_per_node, true /* supports d2d copies */), nullptr /* delegate */, nullptr /* crec */, nullptr /* irec */)), - mbf(tm, schdlr) // - { - thread->start([this] { scheduler_testspy::run_scheduling_loop(schdlr); }); - tm.generate_epoch_task(epoch_action::init); - } + mbf(tm, schdlr) {} - scheduler_benchmark_context(const scheduler_benchmark_context&) = delete; - scheduler_benchmark_context(scheduler_benchmark_context&&) = delete; - scheduler_benchmark_context& operator=(const scheduler_benchmark_context&) = delete; - scheduler_benchmark_context& operator=(scheduler_benchmark_context&&) = delete; + void task_created(const task* tsk) override { schdlr.notify_task_created(tsk); } - ~scheduler_benchmark_context() { + void execute() { + thread->start([this] { scheduler_testspy::run_scheduling_loop(schdlr); }); + create_all_tasks(); const auto tid = tm.generate_epoch_task(celerity::detail::epoch_action::shutdown); // There is no executor thread and notifications are processed in-order, so we can immediately notify the scheduler about shutdown-epoch completion schdlr.notify_epoch_reached(tid); thread->join(); } - template - void create_task(range global_range, CGF cgf) { - tm.generate_command_group_task(invoke_command_group_function([=](handler& cgh) { - cgf(cgh); - cgh.host_task(global_range, [](partition) {}); - })); - } - - void task_created(const task* tsk) override { schdlr.notify_task_created(tsk); } + void finalize() { /* no-op */ } }; -template -struct submission_throttle_benchmark_context final : public BaseBenchmarkContext { - const std::chrono::steady_clock::duration delay_per_submission; - std::chrono::steady_clock::time_point last_submission{}; - - template - explicit submission_throttle_benchmark_context(std::chrono::steady_clock::duration delay_per_submission, BaseCtorParams&&... args) - : BaseBenchmarkContext{std::forward(args)...}, delay_per_submission{delay_per_submission} {} - - template - void create_task(range global_range, CGF cgf) { - // "busy sleep" because system timer resolution is not high enough to get down to 10 us intervals - while(std::chrono::steady_clock::now() - last_submission < delay_per_submission) - ; - - BaseBenchmarkContext::create_task(global_range, cgf); - last_submission = std::chrono::steady_clock::now(); - } -}; - - -// The generate_* methods are [[noinline]] to make them visible in a profiler. - // Artificial: large set of disconnected tasks, does not generate horizons template -[[gnu::noinline]] BenchmarkContext&& generate_soup_graph(BenchmarkContext&& ctx, const size_t num_tasks) { +void generate_soup_graph(BenchmarkContext& ctx, const size_t num_tasks) { test_utils::mock_buffer<2> buf = ctx.mbf.create_buffer(range<2>{ctx.num_nodes, num_tasks}, true /* host_initialized */); for(size_t t = 0; t < num_tasks; ++t) { ctx.create_task(range<1>{ctx.num_nodes}, [&](handler& cgh) { buf.get_access(cgh, [=](chunk<1> ck) { return subrange<2>{{ck.offset[0], t}, {ck.range[0], 1}}; }); }); } - - return std::forward(ctx); } // Artificial: Linear chain of dependent tasks, with all-to-all communication template -[[gnu::noinline]] BenchmarkContext&& generate_chain_graph(BenchmarkContext&& ctx, const size_t num_tasks) { +void generate_chain_graph(BenchmarkContext& ctx, const size_t num_tasks) { const range<2> global_range{ctx.num_nodes, ctx.num_nodes}; test_utils::mock_buffer<2> buf = ctx.mbf.create_buffer(global_range, true /* host initialized */); for(size_t t = 0; t < num_tasks; ++t) { @@ -352,15 +366,13 @@ template buf.get_access(cgh, celerity::access::one_to_one{}); }); } - - return std::forward(ctx); } // Artificial: Generate expanding or contracting tree of tasks, with gather/scatter communication enum class tree_topology { expanding, contracting }; template -[[gnu::noinline]] BenchmarkContext&& generate_tree_graph(BenchmarkContext&& ctx, const size_t target_num_tasks) { +void generate_tree_graph(BenchmarkContext& ctx, const size_t target_num_tasks) { const size_t tree_breadth = static_cast(pow(2, ceil(log2(target_num_tasks + 1)) - 1)); test_utils::mock_buffer<2> buf = ctx.mbf.create_buffer(range<2>{ctx.num_nodes, tree_breadth}, true /* host initialized */); @@ -373,13 +385,11 @@ template }); } } - - return std::forward(ctx); } // graphs identical to the wave_sim example template -[[gnu::noinline]] BenchmarkContext&& generate_wave_sim_graph(BenchmarkContext&& ctx, const float T) { +void generate_wave_sim_graph(BenchmarkContext& ctx, const float T) { constexpr int N = 512; constexpr float dt = 0.25f; @@ -408,13 +418,11 @@ template std::swap(u, up); t += dt; } - - return std::forward(ctx); } // Graph of a simple iterative Jacobi solver template -[[gnu::noinline]] BenchmarkContext&& generate_jacobi_graph(BenchmarkContext&& ctx, const int steps) { +void generate_jacobi_graph(BenchmarkContext& ctx, const int steps) { constexpr int N = 1024; // Naming scheme from https://en.wikipedia.org/wiki/Jacobi_method#Python_example @@ -439,42 +447,65 @@ template }); std::swap(x, x_new); } - - return std::forward(ctx); } -template -void run_benchmarks(BenchmarkContextFactory&& make_ctx) { - BENCHMARK("soup topology") { generate_soup_graph(make_ctx(), 100); }; - BENCHMARK("chain topology") { generate_chain_graph(make_ctx(), 30); }; - BENCHMARK("expanding tree topology") { generate_tree_graph(make_ctx(), 30); }; - BENCHMARK("contracting tree topology") { generate_tree_graph(make_ctx(), 30); }; - BENCHMARK("wave_sim topology") { generate_wave_sim_graph(make_ctx(), 50); }; - BENCHMARK("jacobi topology") { generate_jacobi_graph(make_ctx(), 50); }; +template +void run_benchmarks(ContextArgs&&... args) { + const auto run = [&](Catch::Benchmark::Chronometer& meter, const auto& cb) { + std::vector> contexts; // unique_ptr because contexts are non-movable + for(int i = 0; i < meter.runs(); ++i) { + contexts.emplace_back(std::make_unique(std::forward(args)...)); + contexts.back()->initialize(); + cb(*contexts.back()); + contexts.back()->prepare(); + } + meter.measure([&](const int i) { contexts[i]->execute(); }); + for(auto& ctx : contexts) { + ctx->finalize(); + } + }; + BENCHMARK_ADVANCED("soup topology")(Catch::Benchmark::Chronometer meter) { + run(meter, [](auto& ctx) { generate_soup_graph(ctx, 100); }); + }; + BENCHMARK_ADVANCED("chain topology")(Catch::Benchmark::Chronometer meter) { + run(meter, [](auto& ctx) { generate_chain_graph(ctx, 30); }); + }; + BENCHMARK_ADVANCED("expanding tree topology")(Catch::Benchmark::Chronometer meter) { + run(meter, [](auto& ctx) { generate_tree_graph(ctx, 30); }); + }; + BENCHMARK_ADVANCED("contracting tree topology")(Catch::Benchmark::Chronometer meter) { + run(meter, [](auto& ctx) { generate_tree_graph(ctx, 30); }); + }; + BENCHMARK_ADVANCED("wave_sim topology")(Catch::Benchmark::Chronometer meter) { + run(meter, [](auto& ctx) { generate_wave_sim_graph(ctx, 50); }); + }; + BENCHMARK_ADVANCED("jacobi topology")(Catch::Benchmark::Chronometer meter) { + run(meter, [](auto& ctx) { generate_jacobi_graph(ctx, 50); }); + }; } TEST_CASE("generating large task graphs", "[benchmark][group:task-graph]") { test_utils::benchmark_thread_pinner pinner; - run_benchmarks([] { return task_manager_benchmark_context{}; }); + run_benchmarks(); } TEMPLATE_TEST_CASE_SIG("generating large command graphs for N nodes", "[benchmark][group:command-graph]", ((size_t NumNodes), NumNodes), 1, 4, 16) { test_utils::benchmark_thread_pinner pinner; - run_benchmarks([] { return command_graph_generator_benchmark_context{NumNodes}; }); + run_benchmarks(NumNodes); } TEMPLATE_TEST_CASE_SIG( "generating large instruction graphs for N devices", "[benchmark][group:instruction-graph]", ((size_t NumDevices), NumDevices), 1, 4, 16) { test_utils::benchmark_thread_pinner pinner; constexpr static size_t num_nodes = 2; - run_benchmarks([] { return instruction_graph_generator_benchmark_context(num_nodes, NumDevices); }); + run_benchmarks(num_nodes, NumDevices); } TEMPLATE_TEST_CASE_SIG("generating large instruction graphs for N devices without d2d copy support", "[benchmark][group:instruction-graph]", ((size_t NumDevices), NumDevices), 1, 4, 16) { test_utils::benchmark_thread_pinner pinner; constexpr static size_t num_nodes = 2; - run_benchmarks([] { return instruction_graph_generator_benchmark_context(num_nodes, NumDevices, false /* supports_d2d_copies */); }); + run_benchmarks(num_nodes, NumDevices, false /* supports_d2d_copies */); } TEMPLATE_TEST_CASE_SIG("building command- and instruction graphs in a dedicated scheduler thread for N nodes", "[benchmark][group:scheduler]", @@ -482,42 +513,46 @@ TEMPLATE_TEST_CASE_SIG("building command- and instruction graphs in a dedicated { test_utils::benchmark_thread_pinner pinner; constexpr static size_t num_devices = 1; - SECTION("reference: single-threaded immediate graph generation") { - run_benchmarks([&] { return command_graph_generator_benchmark_context(NumNodes); }); + SECTION("reference: single-threaded graph generation") { // + run_benchmarks(NumNodes, num_devices); } - SECTION("immediate submission to a scheduler thread") { + SECTION("using a dedicated scheduler thread") { restartable_scheduler_thread thrd; - run_benchmarks([&] { return scheduler_benchmark_context(thrd, NumNodes, num_devices); }); - } - SECTION("reference: throttled single-threaded graph generation at 10 us per task") { - run_benchmarks([] { return submission_throttle_benchmark_context(10us, NumNodes); }); - } - SECTION("throttled submission to a scheduler thread at 10 us per task") { - restartable_scheduler_thread thrd; - run_benchmarks([&] { return submission_throttle_benchmark_context(10us, thrd, NumNodes, num_devices); }); + run_benchmarks(thrd, NumNodes, num_devices); } } -template -void debug_graphs(BenchmarkContextFactory&& make_ctx, BenchmarkContextConsumer&& debug_ctx) { - debug_ctx(generate_soup_graph(make_ctx(), 10)); - debug_ctx(generate_chain_graph(make_ctx(), 5)); - debug_ctx(generate_tree_graph(make_ctx(), 7)); - debug_ctx(generate_tree_graph(make_ctx(), 7)); - debug_ctx(generate_wave_sim_graph(make_ctx(), 2)); - debug_ctx(generate_jacobi_graph(make_ctx(), 5)); +template +void debug_graphs(BenchmarkContextConsumer&& debug_ctx, ContextArgs&&... args) { + const auto run = [&](const auto& cb) { + BenchmarkContext ctx(std::forward(args)...); + ctx.initialize(); + cb(ctx); + ctx.prepare(); + ctx.execute(); + ctx.finalize(); + debug_ctx(ctx); + }; + run([](auto& ctx) { generate_soup_graph(ctx, 10); }); + run([](auto& ctx) { generate_chain_graph(ctx, 5); }); + run([](auto& ctx) { generate_tree_graph(ctx, 7); }); + run([](auto& ctx) { generate_tree_graph(ctx, 7); }); + run([](auto& ctx) { generate_wave_sim_graph(ctx, 2); }); + run([](auto& ctx) { generate_jacobi_graph(ctx, 5); }); } TEST_CASE("printing benchmark task graphs", "[.][debug-graphs][task-graph]") { - debug_graphs([] { return task_manager_benchmark_context{}; }, [](auto&& ctx) { fmt::print("{}\n\n", detail::print_task_graph(ctx.trec)); }); + REQUIRE(test_utils::g_print_graphs); // requires --print-graphs + debug_graphs([](auto&& ctx) { fmt::print("{}\n\n", detail::print_task_graph(ctx.trec)); }); } TEST_CASE("printing benchmark command graphs", "[.][debug-graphs][command-graph]") { - debug_graphs( - [] { return command_graph_generator_benchmark_context{2}; }, [](auto&& ctx) { fmt::print("{}\n\n", detail::print_command_graph(0, ctx.crec)); }); + REQUIRE(test_utils::g_print_graphs); // requires --print-graphs + debug_graphs([](auto&& ctx) { fmt::print("{}\n\n", detail::print_command_graph(0, ctx.crec)); }, 2 /* num_nodes */); } TEST_CASE("printing benchmark instruction graphs", "[.][debug-graphs][instruction-graph]") { - debug_graphs([] { return instruction_graph_generator_benchmark_context(2, 2); }, - [](auto&& ctx) { fmt::print("{}\n\n", detail::print_instruction_graph(ctx.irec, ctx.crec, ctx.trec)); }); + REQUIRE(test_utils::g_print_graphs); // requires --print-graphs + debug_graphs( + [](auto&& ctx) { fmt::print("{}\n\n", detail::print_instruction_graph(ctx.irec, ctx.crec, ctx.trec)); }, 2 /* num_nodes */, 2 /* num_devices */); }