| <html> |
| <head> |
| <link rel="stylesheet" href="../resource/combine/combine.css"> |
| <script src="../resource/combine/combine.js"></script> |
| <!-- |
| <script src="http://code.jquery.com/jquery-1.8.2.js"></script> |
| <script src="http://www.google.com/jsapi?autoload={'modules':[{'name':'visualization','version':'1','packages':['controls', 'charteditor']}]}"></script> |
| <script src="http://jquery-csv.googlecode.com/git/src/jquery.csv.js"></script> |
| <link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css"> |
| <link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css"> |
| <script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script> |
| --> |
| <script> |
| $(function() { |
| google.load("visualization", "1", {packages:["corechart"]}); |
| |
| var csv = $('#textInput').val(); |
| var dt = google.visualization.arrayToDataTable($.csv.toArrays(csv, {onParseValue: $.csv.hooks.castToScalar})); |
| |
| function sortCaseInsensitive(dt, column) { |
| for (var row = 0; row < dt.getNumberOfRows(); row++) { |
| var s = dt.getValue(row, column); |
| dt.setValue(row, column, s.toUpperCase()); |
| dt.setFormattedValue(row, column, s); |
| } |
| dt.sort(column); |
| } |
| |
| function AddToOverall(dt) { |
| if (overallDt == null) { |
| overallDt = dt.clone(); |
| } |
| else { |
| var col1 = []; |
| for (var i = 1; i < overallDt.getNumberOfColumns(); i++) |
| col1.push(i); |
| overallDt = google.visualization.data.join(overallDt, dt, 'full', [[0, 0]], col1, [1]); |
| } |
| |
| var newCol = overallDt.getNumberOfColumns() - 1; |
| overallDt.setColumnLabel(newCol, type + ' ' + overallDt.getColumnLabel(newCol)) |
| var formatter1 = new google.visualization.NumberFormat({ fractionDigits: 0 }); |
| formatter1.format(overallDt, newCol); |
| |
| for (var row = 0; row < overallDt.getNumberOfRows(); row++) { |
| if (overallDt.getValue(row, newCol) == null) { |
| overallDt.setValue(row, newCol, Number.POSITIVE_INFINITY); |
| overallDt.setFormattedValue(row, newCol, ""); |
| } |
| } |
| } |
| |
| function createSortEvent(type, dt, chart) { |
| return function(e) { |
| if (e.column == 0 || e.column == 1) { |
| var t = dt.clone(); |
| drawBarChart(type, t, chart, [{column: e.column, desc: !e.ascending }]); |
| } |
| } |
| } |
| |
| addSection("0. Overall"); |
| |
| var overallDiv = document.createElement("div"); |
| overallDiv.className = "tablechart"; |
| $("#main").append(overallDiv); |
| |
| // Per type sections |
| var types = dt.getDistinctValues(0); |
| var overallDt; |
| for (var i in types) { |
| var type = types[i]; |
| addSection(type); |
| |
| var view = new google.visualization.DataView(dt); |
| view.setRows(view.getFilteredRows([{column: 0, value: type}])); |
| |
| if (type.search("Code size") != -1) { |
| var sizedt = google.visualization.data.group( |
| view, |
| [1], |
| [{"column": 7, "aggregation": google.visualization.data.sum, 'type': 'number' }] |
| ); |
| AddToOverall(sizedt); |
| sortCaseInsensitive(sizedt, 0); |
| addSubsection(sizedt.getColumnLabel(1)); |
| var sizeTable = drawTable(type, sizedt.clone(), false); |
| var sizeChart = drawBarChart(type, sizedt.clone()); |
| google.visualization.events.addListener(sizeTable, 'sort', createSortEvent(type, sizedt, sizeChart)); |
| } |
| else { |
| addSubsection("Time"); |
| |
| var timedt = google.visualization.data.group( |
| view, |
| [1], |
| [{"column": 3, "aggregation": google.visualization.data.sum, 'type': 'number' }] |
| ); |
| |
| AddToOverall(timedt); |
| sortCaseInsensitive(timedt, 0); |
| var timeTable = drawTable(type, timedt.clone(), true); |
| var timeChart = drawBarChart(type, timedt.clone()); |
| google.visualization.events.addListener(timeTable, 'sort', createSortEvent(type, timedt, timeChart)); |
| |
| // Per JSON |
| drawPivotBarChart( |
| type + " per JSON", |
| pivotTable(google.visualization.data.group( |
| view, |
| [2, 1], |
| [{"column": 3, "aggregation": google.visualization.data.sum, 'type': 'number' }] |
| )), |
| dt.getColumnLabel(3) |
| ); |
| |
| // Only show memory of Parse |
| if (type.search("Parse") != -1) { |
| for (var column = 4; column <= 6; column++) { |
| var memorydt = google.visualization.data.group( |
| view, |
| [1], |
| [{"column": column, "aggregation": google.visualization.data.sum, 'type': 'number' }] |
| ); |
| AddToOverall(memorydt); |
| sortCaseInsensitive(memorydt, 0); |
| addSubsection(memorydt.getColumnLabel(1)); |
| var memoryTable = drawTable(type, memorydt.clone(), false); |
| var memoryChart = drawBarChart(type, memorydt.clone()); |
| |
| google.visualization.events.addListener(memoryTable, 'sort', createSortEvent(type, memorydt, memoryChart)); |
| } |
| } |
| } |
| } |
| |
| var overallTable = new google.visualization.Table(overallDiv); |
| sortCaseInsensitive(overallDt, 0); |
| overallTable.draw(overallDt); |
| |
| $(".chart").each(function() { |
| var chart = $(this); |
| var d = $("#downloadDD").clone().css("display", ""); |
| $('li a', d).each(function() { |
| $(this).click(function() { |
| var svg = chart[0].getElementsByTagName('svg')[0].parentNode.innerHTML; |
| svg=sanitize(svg); |
| $('#imageFilename').val($("#title").html() + "_" + chart.data("filename")); |
| $('#imageGetFormTYPE').val($(this).attr('dltype')); |
| $('#imageGetFormSVG').val(svg); |
| $('#imageGetForm').submit(); |
| }); |
| }); |
| $(this).after(d); |
| }); |
| |
| // Add configurations |
| var thisConfig = "performance_Corei7-6820HQ@2.70GHz_mac64_clang9.0"; |
| var configurations = ["conformance","performance_Corei7-6820HQ@2.70GHz_mac64_clang9.0"]; |
| |
| for (var i in configurations) { |
| var c = configurations[i]; |
| $("#benchmark").append($("<li>", {class : (c == thisConfig ? "active" : "")}).append($("<a>", {href: c + ".html"}).append(c))); |
| } |
| }); |
| |
| function pivotTable(src) { |
| var dst = new google.visualization.DataTable(); |
| |
| // Add columns |
| var key = src.getDistinctValues(1); |
| var keyColumnMap = {}; |
| dst.addColumn(src.getColumnType(0), src.getColumnLabel(0)); |
| for (var k in key) |
| keyColumnMap[key[k]] = dst.addColumn(src.getColumnType(2), key[k]); |
| |
| // Add rows |
| var pivot = src.getDistinctValues(0); |
| var pivotRowMap = {}; |
| for (var p in pivot) |
| dst.setValue(pivotRowMap[[pivot[p]]] = dst.addRow(), 0, pivot[p]); |
| |
| // Fill cells |
| for (var row = 0; row < src.getNumberOfRows(); row++) |
| dst.setValue( |
| pivotRowMap[src.getValue(row, 0)], |
| keyColumnMap[src.getValue(row, 1)], |
| src.getValue(row, 2)); |
| |
| return dst; |
| } |
| |
| function addSection(name) { |
| $("#main").append( |
| $("<a>", {"name": name}), |
| $("<h2>", {style: "padding-top: 70px; margin-top: -70px;"}).append(name) |
| ); |
| $("#section").append($("<li>").append($("<a>", {href: "#" + name}).append(name))); |
| } |
| |
| function addSubsection(name) { |
| $("#main").append( |
| $("<h3>", {style: "padding-top: 70px; margin-top: -70px;"}).append(name) |
| ); |
| } |
| |
| function drawTable(type, data, isSpeedup) { |
| if (isSpeedup) |
| data.addColumn('number', 'Speedup'); |
| else |
| data.addColumn('number', 'Ratio'); |
| //data.sort([{ column: 1, desc: true }]); |
| var formatter1 = new google.visualization.NumberFormat({ fractionDigits: 0 }); |
| formatter1.format(data, 1); |
| |
| var div = document.createElement("div"); |
| div.className = "tablechart"; |
| $("#main").append(div); |
| var table = new google.visualization.Table(div); |
| redrawTable(0); |
| table.setSelection([{ row: 0, column: null}]); |
| |
| function redrawTable(selectedRow) { |
| var s = table.getSortInfo(); |
| // Compute relative time using the first row as basis |
| var basis = data.getValue(selectedRow, 1); |
| for (var rowIndex = 0; rowIndex < data.getNumberOfRows(); rowIndex++) |
| data.setValue(rowIndex, 2, isSpeedup ? basis / data.getValue(rowIndex, 1) : data.getValue(rowIndex, 1) / basis); |
| |
| var formatter = new google.visualization.NumberFormat({suffix: 'x'}); |
| formatter.format(data, 2); // Apply formatter to second column |
| |
| table.draw(data, s != null ? {sortColumn: s.column, sortAscending: s.ascending} : null); |
| } |
| |
| google.visualization.events.addListener(table, 'select', |
| function() { |
| var selection = table.getSelection(); |
| if (selection.length > 0) { |
| var item = selection[0]; |
| if (item.row != null) |
| redrawTable(item.row); |
| } |
| }); |
| |
| return table; |
| } |
| |
| function drawBarChart(type, data, chart, sortOptions) { |
| // Using same colors as in series |
| var colors = ["#3366cc","#dc3912","#ff9900","#109618","#990099","#0099c6","#dd4477","#66aa00","#b82e2e","#316395","#994499","#22aa99","#aaaa11","#6633cc","#e67300","#8b0707","#651067","#329262","#5574a6","#3b3eac","#b77322","#16d620","#b91383","#f4359e","#9c5935","#a9c413","#2a778d","#668d1c","#bea413","#0c5922","#743411","#3366cc","#dc3912","#ff9900","#109618","#990099","#0099c6","#dd4477","#66aa00","#b82e2e","#316395","#994499","#22aa99","#aaaa11","#6633cc","#e67300","#8b0707","#651067","#329262","#5574a6","#3b3eac","#b77322","#16d620","#b91383","#f4359e","#9c5935","#a9c413","#2a778d","#668d1c","#bea413","#0c5922","#743411"]; |
| var h = data.getNumberOfRows() * 12; |
| var options = { |
| title: type, |
| chartArea: {left: '20%', width: '70%', height: h }, |
| width: 800, |
| height: h + 100, |
| fontSize: 10, |
| bar: {groupWidth: "80%"}, |
| hAxis: { title: data.getColumnLabel(1) }, |
| legend: { position: "none" }, |
| }; |
| |
| data.addColumn({ type: "string", role: "style" }); |
| data.addColumn({ type: "number", role: "annotation" }); |
| for (var rowIndex = 0; rowIndex < data.getNumberOfRows(); rowIndex++) { |
| data.setValue(rowIndex, 2, colors[rowIndex]); |
| data.setValue(rowIndex, 3, data.getValue(rowIndex, 1)); |
| } |
| |
| if (sortOptions != null) |
| data.sort(sortOptions); // sort after assigning colors |
| |
| var formatter1 = new google.visualization.NumberFormat({ fractionDigits: 0 }); |
| formatter1.format(data, 3); |
| |
| if (chart == null) { |
| var div = document.createElement("div"); |
| div.className = "chart"; |
| $(div).data("filename", type + "_" + data.getColumnLabel(1)); |
| $("#main").append(div); |
| chart = new google.visualization.BarChart(div); |
| } |
| |
| chart.draw(data, options); |
| return chart; |
| } |
| |
| |
| function drawPivotBarChart(type, data, title) { |
| var h = (data.getNumberOfColumns() + 1) * data.getNumberOfRows() * 5; |
| var options = { |
| title: type, |
| chartArea: {left: '10%', width: '70%', 'height': h}, |
| width: 800, |
| height: h + 100, |
| fontSize: 10, |
| hAxis: { "title": title }, |
| legend: { textStyle: {fontSize: 8}}, |
| bar : { groupWidth: "95%" } |
| }; |
| var div = document.createElement("div"); |
| div.className = "chart"; |
| $(div).data("filename", type + "_" + title); |
| $("#main").append(div); |
| var chart = new google.visualization.BarChart(div); |
| |
| chart.draw(data, options); |
| } |
| |
| // http://jsfiddle.net/P6XXM/ |
| function sanitize(svg) { |
| svg = svg |
| .replace(/\<svg/,'<svg xmlns="http://www.w3.org/2000/svg" version="1.1"') |
| .replace(/zIndex="[^"]+"/g, '') |
| .replace(/isShadow="[^"]+"/g, '') |
| .replace(/symbolName="[^"]+"/g, '') |
| .replace(/jQuery[0-9]+="[^"]+"/g, '') |
| .replace(/isTracker="[^"]+"/g, '') |
| .replace(/url\([^#]+#/g, 'url(#') |
| .replace('<svg xmlns:xlink="http://www.w3.org/1999/xlink" ', '<svg ') |
| .replace(/ href=/g, ' xlink:href=') |
| /*.replace(/preserveAspectRatio="none">/g, 'preserveAspectRatio="none"/>')*/ |
| /* This fails in IE < 8 |
| .replace(/([0-9]+)\.([0-9]+)/g, function(s1, s2, s3) { // round off to save weight |
| return s2 +'.'+ s3[0]; |
| })*/ |
| |
| // IE specific |
| .replace(/id=([^" >]+)/g, 'id="$1"') |
| .replace(/class=([^" ]+)/g, 'class="$1"') |
| .replace(/ transform /g, ' ') |
| .replace(/:(path|rect)/g, '$1') |
| .replace(/<img ([^>]*)>/gi, '<image $1 />') |
| .replace(/<\/image>/g, '') // remove closing tags for images as they'll never have any content |
| .replace(/<image ([^>]*)([^\/])>/gi, '<image $1$2 />') // closes image tags for firefox |
| .replace(/width=(\d+)/g, 'width="$1"') |
| .replace(/height=(\d+)/g, 'height="$1"') |
| .replace(/hc-svg-href="/g, 'xlink:href="') |
| .replace(/style="([^"]+)"/g, function (s) { |
| return s.toLowerCase(); |
| }); |
| |
| // IE9 beta bugs with innerHTML. Test again with final IE9. |
| svg = svg.replace(/(url\(#highcharts-[0-9]+)"/g, '$1') |
| .replace(/"/g, "'"); |
| if (svg.match(/ xmlns="/g).length == 2) { |
| svg = svg.replace(/xmlns="[^"]+"/, ''); |
| } |
| |
| return svg; |
| } |
| </script> |
| <style type="text/css"> |
| @media (min-width: 800px) { |
| /* .container { |
| max-width: 800px; |
| }*/ |
| } |
| textarea { |
| font-family: Consolas, 'Liberation Mono', Menlo, Courier, monospace; |
| } |
| .tablechart { |
| /* width: 500px; |
| */ margin: auto; |
| padding-top: 20px; |
| padding-bottom: 20px; |
| } |
| .chart { |
| padding-top: 20px; |
| padding-bottom: 20px; |
| } |
| body { padding-top: 70px; } |
| </style> |
| </head> |
| <body> |
| <div class="container"> |
| <nav class="navbar navbar-default navbar-fixed-top" role="navigation"> |
| <div class="container"> |
| <!-- Brand and toggle get grouped for better mobile display --> |
| <div class="navbar-header"> |
| <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1"> |
| <span class="sr-only">Toggle navigation</span> |
| <span class="icon-bar"></span> |
| <span class="icon-bar"></span> |
| <span class="icon-bar"></span> |
| </button> |
| <a class="navbar-brand" href="https://github.com/miloyip/nativejson-benchmark"><span class="glyphicon glyphicon-home"></span> nativejson-benchmark</a> |
| </div> |
| |
| <!-- Collect the nav links, forms, and other content for toggling --> |
| <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1"> |
| <ul class="nav navbar-nav"> |
| <li class="dropdown"> |
| <a href="#" class="dropdown-toggle" data-toggle="dropdown">Benchmark <span class="caret"></span></a> |
| <ul class="dropdown-menu" role="menu" id="benchmark"> |
| </ul> |
| </li> |
| <li class="dropdown"> |
| <a href="#" class="dropdown-toggle" data-toggle="dropdown">Section <span class="caret"></span></a> |
| <ul class="dropdown-menu" role="menu" id="section"> |
| </ul> |
| </li> |
| </ul> |
| <p class="navbar-text navbar-right">Developed by <a href="https://github.com/miloyip" class="navbar-link">Milo Yip</a></p> |
| </div><!-- /.navbar-collapse --> |
| </div><!-- /.container-fluid --> |
| </nav> |
| <div class="page-header"> |
| <h1 id="title">performance_Corei7-6820HQ@2.70GHz_mac64_clang9.0</h1> |
| </div> |
| <div id="main"></div> |
| <h2>Source CSV</h2> |
| <textarea id="textInput" class="form-control" rows="5" readonly> |
| Type,Library,Filename,Time (ms),Memory (byte),MemoryPeak (byte),AllocCount,FileSize (byte) |
| 1. Parse,ArduinoJson (C++),canada.json,556.632000,11320704,11320704,17,0 |
| 1. Parse,ArduinoJson (C++),citm_catalog.json,2.497000,4869504,4869504,15,0 |
| 1. Parse,ArduinoJson (C++),twitter.json,1.854000,1715584,1715584,13,0 |
| 2. Stringify,ArduinoJson (C++),canada.json,48.994000,2252832,5398560,19,0 |
| 2. Stringify,ArduinoJson (C++),citm_catalog.json,10.252000,524320,1568800,17,0 |
| 2. Stringify,ArduinoJson (C++),twitter.json,9.556000,524320,1568800,17,0 |
| 3. Prettify,ArduinoJson (C++),canada.json,136.227000,5599264,14606368,20,0 |
| 3. Prettify,ArduinoJson (C++),citm_catalog.json,29.884000,2252832,3825696,18,0 |
| 3. Prettify,ArduinoJson (C++),twitter.json,15.592000,1052704,2097184,17,0 |
| 4. Statistics,ArduinoJson (C++),canada.json,40.657000,0,0,0,0 |
| 4. Statistics,ArduinoJson (C++),citm_catalog.json,0.855000,0,0,0,0 |
| 4. Statistics,ArduinoJson (C++),twitter.json,0.488000,0,0,0,0 |
| 7. Code size,ArduinoJson (C++),jsonstat,0,0,0,0,23080 |
| 1. Parse,ccan/json (C),canada.json,48.263000,10699872,10699872,167193,0 |
| 1. Parse,ccan/json (C),citm_catalog.json,6.451000,3337056,3337056,68345,0 |
| 1. Parse,ccan/json (C),twitter.json,4.715000,1800400,1800400,43523,0 |
| 2. Stringify,ccan/json (C),canada.json,59.036000,2101264,2101264,19,0 |
| 2. Stringify,ccan/json (C),citm_catalog.json,4.453000,528400,528400,17,0 |
| 2. Stringify,ccan/json (C),twitter.json,1.705000,528400,528400,17,0 |
| 3. Prettify,ccan/json (C),canada.json,76.572000,9007120,9007120,21,0 |
| 3. Prettify,ccan/json (C),citm_catalog.json,8.064000,2101264,2101264,19,0 |
| 3. Prettify,ccan/json (C),twitter.json,2.921000,1052688,1052688,18,0 |
| 4. Statistics,ccan/json (C),canada.json,0.709000,0,0,0,0 |
| 4. Statistics,ccan/json (C),citm_catalog.json,0.221000,0,0,0,0 |
| 4. Statistics,ccan/json (C),twitter.json,0.125000,0,0,0,0 |
| 7. Code size,ccan/json (C),jsonstat,0,0,0,0,31028 |
| 1. Parse,cJSON (C),canada.json,51.955000,10699680,10699680,167192,0 |
| 1. Parse,cJSON (C),citm_catalog.json,6.174000,2869872,2869872,64383,0 |
| 1. Parse,cJSON (C),twitter.json,3.443000,1424800,1424800,32014,0 |
| 2. Stringify,cJSON (C),canada.json,133.964000,4202512,4202512,12,0 |
| 2. Stringify,cJSON (C),citm_catalog.json,7.264000,528400,528400,9,0 |
| 2. Stringify,cJSON (C),twitter.json,2.125000,532496,532496,9,0 |
| 3. Prettify,cJSON (C),canada.json,133.962000,4210704,4210704,12,0 |
| 3. Prettify,cJSON (C),citm_catalog.json,7.585000,1052688,1052688,10,0 |
| 3. Prettify,cJSON (C),twitter.json,2.559000,1060880,1060880,10,0 |
| 4. Statistics,cJSON (C),canada.json,1.334000,0,0,0,0 |
| 4. Statistics,cJSON (C),citm_catalog.json,0.322000,0,0,0,0 |
| 4. Statistics,cJSON (C),twitter.json,0.187000,0,0,0,0 |
| 7. Code size,cJSON (C),jsonstat,0,0,0,0,33460 |
| 1. Parse,Configuru (C++11),canada.json,59.461000,12743744,12802928,170253,0 |
| 1. Parse,Configuru (C++11),citm_catalog.json,17.742000,4899360,4899456,54236,0 |
| 1. Parse,Configuru (C++11),twitter.json,6.074000,2119216,2119312,20388,0 |
| 2. Stringify,Configuru (C++11),canada.json,146.619000,5599264,7172192,22,0 |
| 2. Stringify,Configuru (C++11),citm_catalog.json,5.027000,786464,1179888,10951,0 |
| 2. Stringify,Configuru (C++11),twitter.json,1.806000,786464,1180400,1280,0 |
| 3. Prettify,Configuru (C++11),canada.json,151.631000,5599264,7172192,22,0 |
| 3. Prettify,Configuru (C++11),citm_catalog.json,8.573000,1572896,2359536,10952,0 |
| 3. Prettify,Configuru (C++11),twitter.json,3.770000,786464,1180400,1280,0 |
| 4. Statistics,Configuru (C++11),canada.json,0.858000,0,0,0,0 |
| 4. Statistics,Configuru (C++11),citm_catalog.json,0.358000,0,0,0,0 |
| 4. Statistics,Configuru (C++11),twitter.json,0.147000,0,0,0,0 |
| 7. Code size,Configuru (C++11),jsonstat,0,0,0,0,132952 |
| 1. Parse,facil.io (C),canada.json,51.747000,6973248,6973504,224819,0 |
| 1. Parse,facil.io (C),citm_catalog.json,9.027000,7273792,7274048,82921,0 |
| 1. Parse,facil.io (C),twitter.json,3.893000,2957408,2957664,27358,0 |
| 2. Stringify,facil.io (C),canada.json,30.244000,1572928,1573440,259,0 |
| 2. Stringify,facil.io (C),citm_catalog.json,3.577000,503872,504384,127,0 |
| 2. Stringify,facil.io (C),twitter.json,1.767000,475200,475712,120,0 |
| 3. Prettify,facil.io (C),canada.json,34.850000,3821632,3822144,937,0 |
| 3. Prettify,facil.io (C),citm_catalog.json,4.187000,1040448,1040960,258,0 |
| 3. Prettify,facil.io (C),twitter.json,2.180000,786496,787008,168,0 |
| 4. Statistics,facil.io (C),canada.json,2.666000,0,256,1,0 |
| 4. Statistics,facil.io (C),citm_catalog.json,1.093000,0,256,1,0 |
| 4. Statistics,facil.io (C),twitter.json,0.312000,0,256,1,0 |
| 7. Code size,facil.io (C),jsonstat,0,0,0,0,86592 |
| 1. Parse,mikeando/FastJson (C++),canada.json,11.897000,10511104,14333216,22,0 |
| 1. Parse,mikeando/FastJson (C++),citm_catalog.json,4.138000,2740416,4469472,22,0 |
| 1. Parse,mikeando/FastJson (C++),twitter.json,2.369000,1571520,2613024,24,0 |
| 2. Stringify,mikeando/FastJson (C++),canada.json,62.269000,3821600,3821600,2,0 |
| 2. Stringify,mikeando/FastJson (C++),citm_catalog.json,4.995000,610336,610336,2,0 |
| 2. Stringify,mikeando/FastJson (C++),twitter.json,1.893000,610336,610336,2,0 |
| 4. Statistics,mikeando/FastJson (C++),canada.json,0.452000,0,0,0,0 |
| 4. Statistics,mikeando/FastJson (C++),citm_catalog.json,0.136000,0,0,0,0 |
| 4. Statistics,mikeando/FastJson (C++),twitter.json,0.071000,0,0,0,0 |
| 7. Code size,mikeando/FastJson (C++),jsonstat,0,0,0,0,62788 |
| 1. Parse,gason (C++11),canada.json,3.118000,6508576,6508576,658,0 |
| 1. Parse,gason (C++11),citm_catalog.json,1.954000,2547744,2547744,202,0 |
| 1. Parse,gason (C++11),twitter.json,0.944000,1372192,1372192,83,0 |
| 2. Stringify,gason (C++11),canada.json,32.647000,1863712,3592224,18,0 |
| 2. Stringify,gason (C++11),citm_catalog.json,9.140000,610336,1650720,17,0 |
| 2. Stringify,gason (C++11),twitter.json,4.702000,507936,1548320,17,0 |
| 3. Prettify,gason (C++11),canada.json,69.637000,7319584,19902496,222273,0 |
| 3. Prettify,gason (C++11),citm_catalog.json,14.477000,1863712,5685280,34759,0 |
| 3. Prettify,gason (C++11),twitter.json,5.926000,770080,1810464,1920,0 |
| 4. Statistics,gason (C++11),canada.json,0.514000,0,0,0,0 |
| 4. Statistics,gason (C++11),citm_catalog.json,0.249000,0,0,0,0 |
| 4. Statistics,gason (C++11),twitter.json,0.159000,0,0,0,0 |
| 7. Code size,gason (C++11),jsonstat,0,0,0,0,20984 |
| 1. Parse,Jansson (C),canada.json,78.878000,10463696,10463744,224392,0 |
| 1. Parse,Jansson (C),citm_catalog.json,23.830000,5699968,5700048,111230,0 |
| 1. Parse,Jansson (C),twitter.json,11.654000,2000288,2000848,43822,0 |
| 2. Stringify,Jansson (C),canada.json,63.200000,3821584,10510352,21,0 |
| 2. Stringify,Jansson (C),citm_catalog.json,3.428000,507920,1118224,18,0 |
| 2. Stringify,Jansson (C),twitter.json,2.089000,507920,1118224,18,0 |
| 3. Prettify,Jansson (C),canada.json,73.647000,8273936,20856848,22,0 |
| 3. Prettify,Jansson (C),citm_catalog.json,4.910000,1728528,5550096,20,0 |
| 3. Prettify,Jansson (C),twitter.json,2.456000,770064,2498576,19,0 |
| 4. Statistics,Jansson (C),canada.json,0.934000,0,0,0,0 |
| 4. Statistics,Jansson (C),citm_catalog.json,0.561000,0,0,0,0 |
| 4. Statistics,Jansson (C),twitter.json,0.246000,0,0,0,0 |
| 7. Code size,Jansson (C),jsonstat,0,0,0,0,69792 |
| 1. Parse,JeayeSON (C++14),canada.json,107.237000,5699888,20503344,386911,0 |
| 1. Parse,JeayeSON (C++14),citm_catalog.json,37.051000,2879872,10368032,187912,0 |
| 1. Parse,JeayeSON (C++14),twitter.json,19.705000,1554944,5434784,94228,0 |
| 2. Stringify,JeayeSON (C++14),canada.json,41.321000,1044512,2773024,18,0 |
| 2. Stringify,JeayeSON (C++14),citm_catalog.json,6.340000,507936,1294368,342,0 |
| 2. Stringify,JeayeSON (C++14),twitter.json,4.046000,507936,1294368,3862,0 |
| 4. Statistics,JeayeSON (C++14),canada.json,0.510000,0,0,0,0 |
| 4. Statistics,JeayeSON (C++14),citm_catalog.json,0.228000,0,0,0,0 |
| 4. Statistics,JeayeSON (C++14),twitter.json,0.095000,0,0,0,0 |
| 7. Code size,JeayeSON (C++14),jsonstat,0,0,0,0,69552 |
| 1. Parse,jsmn (C),canada.json,352.634000,6074400,6074400,3,0 |
| 1. Parse,jsmn (C),citm_catalog.json,12.585000,2773024,2773024,3,0 |
| 1. Parse,jsmn (C),twitter.json,3.999000,1277984,1277984,3,0 |
| 4. Statistics,jsmn (C),canada.json,0.299000,0,0,0,0 |
| 4. Statistics,jsmn (C),citm_catalog.json,0.122000,0,0,0,0 |
| 4. Statistics,jsmn (C),twitter.json,0.047000,0,0,0,0 |
| 7. Code size,jsmn (C),jsonstat,0,0,0,0,16468 |
| 1. Parse,JsonBox (C++),canada.json,290.715000,6610480,13030320,754123,0 |
| 1. Parse,JsonBox (C++),citm_catalog.json,64.813000,3232384,7213696,242074,0 |
| 1. Parse,JsonBox (C++),twitter.json,28.160000,1636960,3703088,75748,0 |
| 2. Stringify,JsonBox (C++),canada.json,152.716000,2252832,6074400,19,0 |
| 2. Stringify,JsonBox (C++),citm_catalog.json,31.389000,507936,1294368,673,0 |
| 2. Stringify,JsonBox (C++),twitter.json,22.278000,507936,1294368,9688,0 |
| 3. Prettify,JsonBox (C++),canada.json,142.843000,3924000,10215456,20,0 |
| 3. Prettify,JsonBox (C++),citm_catalog.json,28.574000,1044512,2773024,674,0 |
| 3. Prettify,JsonBox (C++),twitter.json,21.410000,610336,1396768,9688,0 |
| 4. Statistics,JsonBox (C++),canada.json,0.525000,0,0,0,0 |
| 4. Statistics,JsonBox (C++),citm_catalog.json,0.197000,0,0,0,0 |
| 4. Statistics,JsonBox (C++),twitter.json,0.097000,0,0,0,0 |
| 7. Code size,JsonBox (C++),jsonstat,0,0,0,0,112244 |
| 1. Parse,jsoncons (C++),canada.json,78.292000,4560272,7584432,230921,0 |
| 1. Parse,jsoncons (C++),citm_catalog.json,7.813000,1959424,3729744,34809,0 |
| 1. Parse,jsoncons (C++),twitter.json,3.432000,1053312,1865888,8741,0 |
| 2. Stringify,jsoncons (C++),canada.json,74.162000,2252832,6074400,25,0 |
| 2. Stringify,jsoncons (C++),citm_catalog.json,1.589000,610336,1396768,23,0 |
| 2. Stringify,jsoncons (C++),twitter.json,1.437000,507936,1311520,24,0 |
| 3. Prettify,jsoncons (C++),canada.json,73.197000,2252832,6074400,25,0 |
| 3. Prettify,jsoncons (C++),citm_catalog.json,1.617000,610336,1396768,23,0 |
| 3. Prettify,jsoncons (C++),twitter.json,1.546000,507936,1311520,24,0 |
| 4. Statistics,jsoncons (C++),canada.json,1.729000,0,0,0,0 |
| 4. Statistics,jsoncons (C++),citm_catalog.json,0.685000,0,64,324,0 |
| 4. Statistics,jsoncons (C++),twitter.json,0.531000,0,464,1901,0 |
| 7. Code size,jsoncons (C++),jsonstat,0,0,0,0,147712 |
| 1. Parse,JsonCpp (C++),canada.json,93.355000,17842912,17848464,223282,0 |
| 1. Parse,JsonCpp (C++),citm_catalog.json,16.563000,4767504,4773056,111998,0 |
| 1. Parse,JsonCpp (C++),twitter.json,10.015000,1949984,1955536,50991,0 |
| 2. Stringify,JsonCpp (C++),canada.json,91.627000,2252832,6075376,46,0 |
| 2. Stringify,JsonCpp (C++),citm_catalog.json,7.883000,507936,1295968,12220,0 |
| 2. Stringify,JsonCpp (C++),twitter.json,5.685000,507936,1297360,7750,0 |
| 4. Statistics,JsonCpp (C++),canada.json,2.881000,0,0,0,0 |
| 4. Statistics,JsonCpp (C++),citm_catalog.json,0.426000,0,64,324,0 |
| 4. Statistics,JsonCpp (C++),twitter.json,0.467000,0,464,1901,0 |
| 7. Code size,JsonCpp (C++),jsonstat,0,0,0,0,256192 |
| 1. Parse,json-c (C),canada.json,109.430000,33627856,33629008,390651,0 |
| 1. Parse,json-c (C),citm_catalog.json,18.439000,13055024,13056208,131793,0 |
| 1. Parse,json-c (C),twitter.json,7.873000,3088720,3090352,49446,0 |
| 2. Stringify,json-c (C),canada.json,17.211000,10113056,10113056,21,0 |
| 2. Stringify,json-c (C),citm_catalog.json,10.305000,1032224,1032224,18,0 |
| 2. Stringify,json-c (C),twitter.json,4.783000,1032224,1032224,18,0 |
| 3. Prettify,json-c (C),canada.json,31.457000,14680096,14680096,22,0 |
| 3. Prettify,json-c (C),citm_catalog.json,15.348000,5181472,5181472,20,0 |
| 3. Prettify,json-c (C),twitter.json,5.686000,2027552,2027552,19,0 |
| 4. Statistics,json-c (C),canada.json,2.958000,0,0,0,0 |
| 4. Statistics,json-c (C),citm_catalog.json,0.894000,0,0,0,0 |
| 4. Statistics,json-c (C),twitter.json,0.196000,0,0,0,0 |
| 7. Code size,json-c (C),jsonstat,0,0,0,0,57528 |
| 1. Parse,JSON Spirit (C++),canada.json,84.492000,7861680,12238704,435425,0 |
| 1. Parse,JSON Spirit (C++),citm_catalog.json,67.466000,2540208,6850992,283137,0 |
| 1. Parse,JSON Spirit (C++),twitter.json,18.713000,1193264,3192864,60284,0 |
| 2. Stringify,JSON Spirit (C++),canada.json,75.611000,2252832,6176800,19,0 |
| 2. Stringify,JSON Spirit (C++),citm_catalog.json,8.028000,507936,1294368,348,0 |
| 2. Stringify,JSON Spirit (C++),twitter.json,7.388000,770080,1556512,6927,0 |
| 3. Prettify,JSON Spirit (C++),canada.json,116.011000,8388640,20971552,21,0 |
| 3. Prettify,JSON Spirit (C++),citm_catalog.json,17.585000,2252832,6176800,350,0 |
| 3. Prettify,JSON Spirit (C++),twitter.json,9.318000,1257504,2986016,6928,0 |
| 4. Statistics,JSON Spirit (C++),canada.json,0.777000,0,0,0,0 |
| 4. Statistics,JSON Spirit (C++),citm_catalog.json,0.244000,0,0,0,0 |
| 4. Statistics,JSON Spirit (C++),twitter.json,0.111000,0,0,0,0 |
| 7. Code size,JSON Spirit (C++),jsonstat,0,0,0,0,254920 |
| 1. Parse,hjiang/JSON++ (C++),canada.json,174.158000,8733840,14910608,337434,0 |
| 1. Parse,hjiang/JSON++ (C++),citm_catalog.json,37.371000,3891024,7872336,92754,0 |
| 1. Parse,hjiang/JSON++ (C++),twitter.json,14.935000,1880592,3437072,42564,0 |
| 2. Stringify,hjiang/JSON++ (C++),canada.json,215.046000,3981344,14254112,499228,0 |
| 2. Stringify,hjiang/JSON++ (C++),citm_catalog.json,36.130000,1024032,4579360,102930,0 |
| 2. Stringify,hjiang/JSON++ (C++),twitter.json,16.467000,770080,2580896,42914,0 |
| 4. Statistics,hjiang/JSON++ (C++),canada.json,0.657000,0,0,0,0 |
| 4. Statistics,hjiang/JSON++ (C++),citm_catalog.json,0.255000,0,0,0,0 |
| 4. Statistics,hjiang/JSON++ (C++),twitter.json,0.118000,0,0,0,0 |
| 7. Code size,hjiang/JSON++ (C++),jsonstat,0,0,0,0,98772 |
| 1. Parse,juson (C),canada.json,48.729000,8506224,8506224,115044,0 |
| 1. Parse,juson (C),citm_catalog.json,3.746000,3369760,3369760,6050,0 |
| 1. Parse,juson (C),twitter.json,1.149000,1522224,1522224,1104,0 |
| 4. Statistics,juson (C),canada.json,0.571000,0,0,0,0 |
| 4. Statistics,juson (C),citm_catalog.json,0.254000,0,0,0,0 |
| 4. Statistics,juson (C),twitter.json,0.153000,0,0,0,0 |
| 7. Code size,juson (C),jsonstat,0,0,0,0,25692 |
| 1. Parse,JVar (C++),canada.json,72.165000,4484288,4484288,56050,0 |
| 1. Parse,JVar (C++),citm_catalog.json,15.528000,2600944,2600944,22037,0 |
| 1. Parse,JVar (C++),twitter.json,6.619000,477840,477904,6117,0 |
| 2. Stringify,JVar (C++),canada.json,44.332000,1044512,1044512,2,0 |
| 2. Stringify,JVar (C++),citm_catalog.json,6.625000,503840,503840,2,0 |
| 2. Stringify,JVar (C++),twitter.json,2.795000,466976,466976,2,0 |
| 4. Statistics,JVar (C++),canada.json,1.024000,0,0,0,0 |
| 4. Statistics,JVar (C++),citm_catalog.json,0.336000,0,0,0,0 |
| 4. Statistics,JVar (C++),twitter.json,0.159000,0,0,0,0 |
| 7. Code size,JVar (C++),jsonstat,0,0,0,0,86320 |
| 1. Parse,Jzon (C++),canada.json,90.293000,17910992,22449408,282601,0 |
| 1. Parse,Jzon (C++),citm_catalog.json,33.668000,3855088,8389456,69806,0 |
| 1. Parse,Jzon (C++),twitter.json,15.889000,1858544,3749648,35993,0 |
| 2. Stringify,Jzon (C++),canada.json,13.392000,2252832,5398560,19,0 |
| 2. Stringify,Jzon (C++),citm_catalog.json,6.249000,933920,1867808,665,0 |
| 2. Stringify,Jzon (C++),twitter.json,4.693000,933920,1867808,4466,0 |
| 3. Prettify,Jzon (C++),canada.json,46.409000,8273952,20856864,222273,0 |
| 3. Prettify,Jzon (C++),citm_catalog.json,12.144000,2252832,5398560,44092,0 |
| 3. Prettify,Jzon (C++),twitter.json,5.527000,933920,3186720,6536,0 |
| 4. Statistics,Jzon (C++),canada.json,1.100000,0,0,0,0 |
| 4. Statistics,Jzon (C++),citm_catalog.json,0.382000,0,64,324,0 |
| 4. Statistics,Jzon (C++),twitter.json,0.355000,0,464,1901,0 |
| 7. Code size,Jzon (C++),jsonstat,0,0,0,0,114596 |
| 1. Parse,Nlohmann (C++11),canada.json,55.377000,5293488,5293488,170254,0 |
| 1. Parse,Nlohmann (C++11),citm_catalog.json,9.197000,3045808,3045808,55293,0 |
| 1. Parse,Nlohmann (C++11),twitter.json,6.144000,1558576,1558576,28498,0 |
| 2. Stringify,Nlohmann (C++11),canada.json,69.610000,2252832,5398560,19,0 |
| 2. Stringify,Nlohmann (C++11),citm_catalog.json,5.228000,933920,1867808,342,0 |
| 2. Stringify,Nlohmann (C++11),twitter.json,3.565000,466976,1400864,3821,0 |
| 3. Prettify,Nlohmann (C++11),canada.json,103.390000,8273952,20856864,222273,0 |
| 3. Prettify,Nlohmann (C++11),citm_catalog.json,9.768000,2252832,5398592,35084,0 |
| 3. Prettify,Nlohmann (C++11),twitter.json,4.425000,933920,1867808,5724,0 |
| 4. Statistics,Nlohmann (C++11),canada.json,0.974000,0,0,0,0 |
| 4. Statistics,Nlohmann (C++11),citm_catalog.json,0.488000,0,64,325,0 |
| 4. Statistics,Nlohmann (C++11),twitter.json,0.809000,0,464,3804,0 |
| 7. Code size,Nlohmann (C++11),jsonstat,0,0,0,0,47196 |
| 1. Parse,Parson (C),canada.json,65.683000,5816816,5878880,336060,0 |
| 1. Parse,Parson (C),citm_catalog.json,17.716000,2276704,2277024,185585,0 |
| 1. Parse,Parson (C),twitter.json,8.631000,1050976,1051456,72477,0 |
| 2. Stringify,Parson (C),canada.json,84.926000,2252816,2252816,2,0 |
| 2. Stringify,Parson (C),citm_catalog.json,17.802000,933904,933904,2,0 |
| 2. Stringify,Parson (C),twitter.json,11.664000,933904,933904,2,0 |
| 3. Prettify,Parson (C),canada.json,85.333000,2252816,2252816,2,0 |
| 3. Prettify,Parson (C),citm_catalog.json,17.562000,933904,933904,2,0 |
| 3. Prettify,Parson (C),twitter.json,11.584000,933904,933904,2,0 |
| 4. Statistics,Parson (C),canada.json,1.087000,0,0,0,0 |
| 4. Statistics,Parson (C),citm_catalog.json,0.893000,0,0,0,0 |
| 4. Statistics,Parson (C),twitter.json,1.039000,0,0,0,0 |
| 7. Code size,Parson (C),jsonstat,0,0,0,0,43932 |
| 1. Parse,PicoJSON (C++),canada.json,102.288000,5151952,5404112,435407,0 |
| 1. Parse,PicoJSON (C++),citm_catalog.json,32.249000,3003056,3003088,211748,0 |
| 1. Parse,PicoJSON (C++),twitter.json,12.611000,1584624,2069600,67548,0 |
| 2. Stringify,PicoJSON (C++),canada.json,70.995000,3145760,5398560,18,0 |
| 2. Stringify,PicoJSON (C++),citm_catalog.json,5.485000,933920,1327136,16,0 |
| 2. Stringify,PicoJSON (C++),twitter.json,3.312000,933920,1327136,16,0 |
| 4. Statistics,PicoJSON (C++),canada.json,0.498000,0,0,0,0 |
| 4. Statistics,PicoJSON (C++),citm_catalog.json,0.208000,0,0,0,0 |
| 4. Statistics,PicoJSON (C++),twitter.json,0.139000,0,0,0,0 |
| 7. Code size,PicoJSON (C++),jsonstat,0,0,0,0,30896 |
| 6. SaxStatistics,pjson (C),canada.json,3.600000,0,256,1,0 |
| 6. SaxStatistics,pjson (C),citm_catalog.json,2.361000,0,256,1,0 |
| 6. SaxStatistics,pjson (C),twitter.json,1.197000,0,1536,3,0 |
| 7. Code size,pjson (C),jsonstat,0,0,0,0,15696 |
| 1. Parse,Qajson4c (C),canada.json,41.674000,3145760,3145760,7,0 |
| 1. Parse,Qajson4c (C),citm_catalog.json,5.022000,1097760,1097760,6,0 |
| 1. Parse,Qajson4c (C),twitter.json,2.708000,933920,933920,5,0 |
| 2. Stringify,Qajson4c (C),canada.json,24.183000,2252816,2252816,2,0 |
| 2. Stringify,Qajson4c (C),citm_catalog.json,2.135000,2252816,2252816,2,0 |
| 2. Stringify,Qajson4c (C),twitter.json,1.153000,933904,933904,2,0 |
| 4. Statistics,Qajson4c (C),canada.json,0.850000,0,0,0,0 |
| 4. Statistics,Qajson4c (C),citm_catalog.json,0.370000,0,0,0,0 |
| 4. Statistics,Qajson4c (C),twitter.json,0.247000,0,0,0,0 |
| 7. Code size,Qajson4c (C),jsonstat,0,0,0,0,42916 |
| 1. Parse,RapidJSON_AutoUTF (C++),canada.json,7.651000,2954432,3347920,61,0 |
| 1. Parse,RapidJSON_AutoUTF (C++),citm_catalog.json,6.036000,1123008,1131472,29,0 |
| 1. Parse,RapidJSON_AutoUTF (C++),twitter.json,4.129000,792768,798992,25,0 |
| 2. Stringify,RapidJSON_AutoUTF (C++),canada.json,17.062000,2875472,2876000,28,0 |
| 2. Stringify,RapidJSON_AutoUTF (C++),citm_catalog.json,2.158000,569424,569952,24,0 |
| 2. Stringify,RapidJSON_AutoUTF (C++),twitter.json,2.160000,569424,569952,24,0 |
| 3. Prettify,RapidJSON_AutoUTF (C++),canada.json,37.429000,9699408,9699936,31,0 |
| 3. Prettify,RapidJSON_AutoUTF (C++),citm_catalog.json,6.759000,1917008,1917536,27,0 |
| 3. Prettify,RapidJSON_AutoUTF (C++),twitter.json,3.458000,852048,852576,25,0 |
| 4. Statistics,RapidJSON_AutoUTF (C++),canada.json,0.575000,0,0,0,0 |
| 4. Statistics,RapidJSON_AutoUTF (C++),citm_catalog.json,0.192000,0,0,0,0 |
| 4. Statistics,RapidJSON_AutoUTF (C++),twitter.json,0.071000,0,0,0,0 |
| 5. Sax Round-trip,RapidJSON_AutoUTF (C++),canada.json,23.646000,64,2876272,30,0 |
| 5. Sax Round-trip,RapidJSON_AutoUTF (C++),citm_catalog.json,7.456000,64,570224,26,0 |
| 5. Sax Round-trip,RapidJSON_AutoUTF (C++),twitter.json,5.486000,64,570544,28,0 |
| 6. SaxStatistics,RapidJSON_AutoUTF (C++),canada.json,6.369000,0,272,2,0 |
| 6. SaxStatistics,RapidJSON_AutoUTF (C++),citm_catalog.json,5.622000,0,272,2,0 |
| 6. SaxStatistics,RapidJSON_AutoUTF (C++),twitter.json,3.853000,0,592,4,0 |
| 7. Code size,RapidJSON_AutoUTF (C++),jsonstat,0,0,0,0,38992 |
| 1. Parse,RapidJSON_FullPrec (C++),canada.json,12.538000,2958528,3257808,61,0 |
| 1. Parse,RapidJSON_FullPrec (C++),citm_catalog.json,2.374000,1123008,1131472,29,0 |
| 1. Parse,RapidJSON_FullPrec (C++),twitter.json,1.552000,792768,798992,25,0 |
| 2. Stringify,RapidJSON_FullPrec (C++),canada.json,11.177000,2875472,2876000,28,0 |
| 2. Stringify,RapidJSON_FullPrec (C++),citm_catalog.json,1.288000,569424,569952,24,0 |
| 2. Stringify,RapidJSON_FullPrec (C++),twitter.json,0.896000,688208,688736,21,0 |
| 3. Prettify,RapidJSON_FullPrec (C++),canada.json,15.936000,9699408,9699936,31,0 |
| 3. Prettify,RapidJSON_FullPrec (C++),citm_catalog.json,2.180000,1917008,1917536,27,0 |
| 3. Prettify,RapidJSON_FullPrec (C++),twitter.json,1.209000,1093712,1094240,22,0 |
| 4. Statistics,RapidJSON_FullPrec (C++),canada.json,0.558000,0,0,0,0 |
| 4. Statistics,RapidJSON_FullPrec (C++),citm_catalog.json,0.181000,0,0,0,0 |
| 4. Statistics,RapidJSON_FullPrec (C++),twitter.json,0.066000,0,0,0,0 |
| 5. Sax Round-trip,RapidJSON_FullPrec (C++),canada.json,21.633000,2875472,2876272,30,0 |
| 5. Sax Round-trip,RapidJSON_FullPrec (C++),citm_catalog.json,3.008000,569424,570224,26,0 |
| 5. Sax Round-trip,RapidJSON_FullPrec (C++),twitter.json,2.098000,688208,689328,25,0 |
| 6. SaxStatistics,RapidJSON_FullPrec (C++),canada.json,10.707000,0,272,2,0 |
| 6. SaxStatistics,RapidJSON_FullPrec (C++),citm_catalog.json,2.054000,0,272,2,0 |
| 6. SaxStatistics,RapidJSON_FullPrec (C++),twitter.json,1.289000,0,592,4,0 |
| 7. Code size,RapidJSON_FullPrec (C++),jsonstat,0,0,0,0,31916 |
| 1. Parse,RapidJSON_Insitu (C++),canada.json,4.959000,5285056,5584064,60,0 |
| 1. Parse,RapidJSON_Insitu (C++),citm_catalog.json,1.821000,3309760,3317952,27,0 |
| 1. Parse,RapidJSON_Insitu (C++),twitter.json,1.195000,1097408,1103040,17,0 |
| 2. Stringify,RapidJSON_Insitu (C++),canada.json,11.557000,2875472,2876000,28,0 |
| 2. Stringify,RapidJSON_Insitu (C++),citm_catalog.json,1.227000,569424,569952,24,0 |
| 2. Stringify,RapidJSON_Insitu (C++),twitter.json,1.020000,688208,688736,21,0 |
| 3. Prettify,RapidJSON_Insitu (C++),canada.json,14.548000,9699408,9699936,31,0 |
| 3. Prettify,RapidJSON_Insitu (C++),citm_catalog.json,2.059000,1917008,1917536,27,0 |
| 3. Prettify,RapidJSON_Insitu (C++),twitter.json,1.231000,1093712,1094240,22,0 |
| 4. Statistics,RapidJSON_Insitu (C++),canada.json,0.558000,0,0,0,0 |
| 4. Statistics,RapidJSON_Insitu (C++),citm_catalog.json,0.172000,0,0,0,0 |
| 4. Statistics,RapidJSON_Insitu (C++),twitter.json,0.077000,0,0,0,0 |
| 5. Sax Round-trip,RapidJSON_Insitu (C++),canada.json,14.942000,2875472,5128848,30,0 |
| 5. Sax Round-trip,RapidJSON_Insitu (C++),citm_catalog.json,2.765000,569424,2822800,26,0 |
| 5. Sax Round-trip,RapidJSON_Insitu (C++),twitter.json,2.113000,1278032,1913488,23,0 |
| 6. SaxStatistics,RapidJSON_Insitu (C++),canada.json,3.740000,0,2252848,2,0 |
| 6. SaxStatistics,RapidJSON_Insitu (C++),citm_catalog.json,1.714000,0,2252848,2,0 |
| 6. SaxStatistics,RapidJSON_Insitu (C++),twitter.json,1.114000,0,634928,2,0 |
| 7. Code size,RapidJSON_Insitu (C++),jsonstat,0,0,0,0,31916 |
| 1. Parse,RapidJSON_Iterative (C++),canada.json,5.598000,2929856,3229136,61,0 |
| 1. Parse,RapidJSON_Iterative (C++),citm_catalog.json,2.430000,1123008,1131472,29,0 |
| 1. Parse,RapidJSON_Iterative (C++),twitter.json,1.639000,792768,798992,25,0 |
| 2. Stringify,RapidJSON_Iterative (C++),canada.json,11.438000,2875472,2876000,28,0 |
| 2. Stringify,RapidJSON_Iterative (C++),citm_catalog.json,1.346000,569424,569952,24,0 |
| 2. Stringify,RapidJSON_Iterative (C++),twitter.json,0.911000,688208,688736,21,0 |
| 3. Prettify,RapidJSON_Iterative (C++),canada.json,15.417000,9699408,9699936,31,0 |
| 3. Prettify,RapidJSON_Iterative (C++),citm_catalog.json,2.115000,1917008,1917536,27,0 |
| 3. Prettify,RapidJSON_Iterative (C++),twitter.json,1.164000,1093712,1094240,22,0 |
| 4. Statistics,RapidJSON_Iterative (C++),canada.json,0.558000,0,0,0,0 |
| 4. Statistics,RapidJSON_Iterative (C++),citm_catalog.json,0.180000,0,0,0,0 |
| 4. Statistics,RapidJSON_Iterative (C++),twitter.json,0.068000,0,0,0,0 |
| 5. Sax Round-trip,RapidJSON_Iterative (C++),canada.json,15.939000,2875472,2876272,30,0 |
| 5. Sax Round-trip,RapidJSON_Iterative (C++),citm_catalog.json,3.184000,569424,570224,26,0 |
| 5. Sax Round-trip,RapidJSON_Iterative (C++),twitter.json,2.338000,688208,689328,25,0 |
| 6. SaxStatistics,RapidJSON_Iterative (C++),canada.json,4.013000,0,272,2,0 |
| 6. SaxStatistics,RapidJSON_Iterative (C++),citm_catalog.json,1.857000,0,272,2,0 |
| 6. SaxStatistics,RapidJSON_Iterative (C++),twitter.json,1.300000,0,592,4,0 |
| 7. Code size,RapidJSON_Iterative (C++),jsonstat,0,0,0,0,31916 |
| 1. Parse,RapidJSON (C++),canada.json,4.921000,2892992,3192272,61,0 |
| 1. Parse,RapidJSON (C++),citm_catalog.json,2.072000,1123008,1131472,29,0 |
| 1. Parse,RapidJSON (C++),twitter.json,1.504000,792768,798992,25,0 |
| 2. Stringify,RapidJSON (C++),canada.json,11.345000,2875472,2876000,28,0 |
| 2. Stringify,RapidJSON (C++),citm_catalog.json,1.363000,569424,569952,24,0 |
| 2. Stringify,RapidJSON (C++),twitter.json,0.921000,688208,688736,21,0 |
| 3. Prettify,RapidJSON (C++),canada.json,15.392000,9699408,9699936,31,0 |
| 3. Prettify,RapidJSON (C++),citm_catalog.json,2.192000,1917008,1917536,27,0 |
| 3. Prettify,RapidJSON (C++),twitter.json,1.221000,1093712,1094240,22,0 |
| 4. Statistics,RapidJSON (C++),canada.json,0.575000,0,0,0,0 |
| 4. Statistics,RapidJSON (C++),citm_catalog.json,0.200000,0,0,0,0 |
| 4. Statistics,RapidJSON (C++),twitter.json,0.071000,0,0,0,0 |
| 5. Sax Round-trip,RapidJSON (C++),canada.json,13.974000,2875472,2876272,30,0 |
| 5. Sax Round-trip,RapidJSON (C++),citm_catalog.json,2.924000,569424,570224,26,0 |
| 5. Sax Round-trip,RapidJSON (C++),twitter.json,2.206000,688208,689328,25,0 |
| 6. SaxStatistics,RapidJSON (C++),canada.json,3.700000,0,272,2,0 |
| 6. SaxStatistics,RapidJSON (C++),citm_catalog.json,1.711000,0,272,2,0 |
| 6. SaxStatistics,RapidJSON (C++),twitter.json,1.256000,0,592,4,0 |
| 7. Code size,RapidJSON (C++),jsonstat,0,0,0,0,31916 |
| 1. Parse,sajson (C++),canada.json,6.582000,10526848,12755072,20,0 |
| 1. Parse,sajson (C++),citm_catalog.json,1.805000,2965632,3825792,14,0 |
| 1. Parse,sajson (C++),twitter.json,0.844000,1376384,1642624,12,0 |
| 4. Statistics,sajson (C++),canada.json,0.710000,0,0,0,0 |
| 4. Statistics,sajson (C++),citm_catalog.json,0.223000,0,0,0,0 |
| 4. Statistics,sajson (C++),twitter.json,0.084000,0,0,0,0 |
| 7. Code size,sajson (C++),jsonstat,0,0,0,0,39908 |
| 1. Parse,Sheredom json.h (C),canada.json,9.891000,12840976,12840976,2,0 |
| 1. Parse,Sheredom json.h (C),citm_catalog.json,5.748000,3825680,3825680,2,0 |
| 1. Parse,Sheredom json.h (C),twitter.json,2.624000,1916944,1916944,2,0 |
| 2. Stringify,Sheredom json.h (C),canada.json,32.854000,2252816,2252816,2,0 |
| 2. Stringify,Sheredom json.h (C),citm_catalog.json,5.086000,524304,524304,2,0 |
| 2. Stringify,Sheredom json.h (C),twitter.json,2.109000,524304,524304,2,0 |
| 3. Prettify,Sheredom json.h (C),canada.json,36.907000,8273936,8273936,2,0 |
| 3. Prettify,Sheredom json.h (C),citm_catalog.json,5.688000,1916944,1916944,2,0 |
| 3. Prettify,Sheredom json.h (C),twitter.json,2.280000,851984,851984,2,0 |
| 4. Statistics,Sheredom json.h (C),canada.json,0.571000,0,0,0,0 |
| 4. Statistics,Sheredom json.h (C),citm_catalog.json,0.179000,0,0,0,0 |
| 4. Statistics,Sheredom json.h (C),twitter.json,0.077000,0,0,0,0 |
| 7. Code size,Sheredom json.h (C),jsonstat,0,0,0,0,29644 |
| 1. Parse,SimpleJSON (C++),canada.json,35.460000,5817456,15581872,393512,0 |
| 1. Parse,SimpleJSON (C++),citm_catalog.json,28.711000,4226096,12501440,213739,0 |
| 1. Parse,SimpleJSON (C++),twitter.json,19.052000,2636016,6462640,111912,0 |
| 2. Stringify,SimpleJSON (C++),canada.json,175.427000,3825680,22540544,393342,0 |
| 2. Stringify,SimpleJSON (C++),citm_catalog.json,29.082000,1048592,6447120,102242,0 |
| 2. Stringify,SimpleJSON (C++),twitter.json,13.405000,1916944,7814160,43987,0 |
| 4. Statistics,SimpleJSON (C++),canada.json,0.574000,0,0,0,0 |
| 4. Statistics,SimpleJSON (C++),citm_catalog.json,0.317000,0,0,0,0 |
| 4. Statistics,SimpleJSON (C++),twitter.json,0.143000,0,0,0,0 |
| 7. Code size,SimpleJSON (C++),jsonstat,0,0,0,0,54888 |
| 1. Parse,strdup (C),canada.json,0.266000,2252832,2252832,2,0 |
| 1. Parse,strdup (C),citm_catalog.json,0.061000,1916960,1916960,2,0 |
| 1. Parse,strdup (C),twitter.json,0.022000,852000,852000,2,0 |
| 2. Stringify,strdup (C),canada.json,0.079000,3825680,3825680,2,0 |
| 2. Stringify,strdup (C),citm_catalog.json,0.060000,2097168,2097168,2,0 |
| 2. Stringify,strdup (C),twitter.json,0.023000,1048592,1048592,2,0 |
| 7. Code size,strdup (C),jsonstat,0,0,0,0,16308 |
| 1. Parse,taocpp/json & Nlohmann (C++11),canada.json,70.596000,4556560,9529632,506550,0 |
| 1. Parse,taocpp/json & Nlohmann (C++11),citm_catalog.json,31.086000,2983152,5754192,199137,0 |
| 1. Parse,taocpp/json & Nlohmann (C++11),twitter.json,17.711000,1558560,3115152,94298,0 |
| 2. Stringify,taocpp/json & Nlohmann (C++11),canada.json,20.332000,2097184,5922848,19,0 |
| 2. Stringify,taocpp/json & Nlohmann (C++11),citm_catalog.json,4.512000,524320,1376288,18,0 |
| 2. Stringify,taocpp/json & Nlohmann (C++11),twitter.json,2.460000,524320,1376288,1920,0 |
| 3. Prettify,taocpp/json & Nlohmann (C++11),canada.json,36.223000,8273952,20856912,22,0 |
| 3. Prettify,taocpp/json & Nlohmann (C++11),citm_catalog.json,6.431000,1916960,5742672,21,0 |
| 3. Prettify,taocpp/json & Nlohmann (C++11),twitter.json,3.115000,1048608,1900624,1921,0 |
| 4. Statistics,taocpp/json & Nlohmann (C++11),canada.json,0.980000,0,0,0,0 |
| 4. Statistics,taocpp/json & Nlohmann (C++11),citm_catalog.json,0.476000,0,64,325,0 |
| 4. Statistics,taocpp/json & Nlohmann (C++11),twitter.json,0.818000,0,464,3804,0 |
| 7. Code size,taocpp/json & Nlohmann (C++11),jsonstat,0,0,0,0,110248 |
| 1. Parse,taocpp/json (C++11),canada.json,21.371000,6523920,6583664,114208,0 |
| 1. Parse,taocpp/json (C++11),citm_catalog.json,7.794000,3005952,3006304,32852,0 |
| 1. Parse,taocpp/json (C++11),twitter.json,4.816000,1602592,1603296,18080,0 |
| 2. Stringify,taocpp/json (C++11),canada.json,20.345000,2097184,5922848,19,0 |
| 2. Stringify,taocpp/json (C++11),citm_catalog.json,4.056000,524320,1376288,17,0 |
| 2. Stringify,taocpp/json (C++11),twitter.json,1.927000,524320,1376288,17,0 |
| 3. Prettify,taocpp/json (C++11),canada.json,35.666000,8273952,20856912,22,0 |
| 3. Prettify,taocpp/json (C++11),citm_catalog.json,6.765000,1916960,5742672,20,0 |
| 3. Prettify,taocpp/json (C++11),twitter.json,2.487000,1048608,1900576,18,0 |
| 4. Statistics,taocpp/json (C++11),canada.json,0.527000,0,0,0,0 |
| 4. Statistics,taocpp/json (C++11),citm_catalog.json,0.217000,0,0,0,0 |
| 4. Statistics,taocpp/json (C++11),twitter.json,0.113000,0,0,0,0 |
| 5. Sax Round-trip,taocpp/json (C++11),canada.json,28.402000,2097184,5922848,19,0 |
| 5. Sax Round-trip,taocpp/json (C++11),citm_catalog.json,7.872000,524320,1376288,342,0 |
| 5. Sax Round-trip,taocpp/json (C++11),twitter.json,4.724000,524320,1376288,4266,0 |
| 6. SaxStatistics,taocpp/json (C++11),canada.json,8.778000,0,0,0,0 |
| 6. SaxStatistics,taocpp/json (C++11),citm_catalog.json,3.701000,0,64,325,0 |
| 6. SaxStatistics,taocpp/json (C++11),twitter.json,3.040000,0,1056,4249,0 |
| 7. Code size,taocpp/json (C++11),jsonstat,0,0,0,0,99056 |
| 1. Parse,tunnuz/JSON++ (C++),canada.json,219.707000,19608544,45543120,833845,0 |
| 1. Parse,tunnuz/JSON++ (C++),citm_catalog.json,79.008000,6065024,16144192,356191,0 |
| 1. Parse,tunnuz/JSON++ (C++),twitter.json,39.544000,2674704,7188576,163534,0 |
| 2. Stringify,tunnuz/JSON++ (C++),canada.json,214.352000,2719776,104869264,391870,0 |
| 2. Stringify,tunnuz/JSON++ (C++),citm_catalog.json,46.574000,933920,14552528,165982,0 |
| 2. Stringify,tunnuz/JSON++ (C++),twitter.json,20.166000,921632,6701296,77541,0 |
| 4. Statistics,tunnuz/JSON++ (C++),canada.json,124.599000,0,101313872,391851,0 |
| 4. Statistics,tunnuz/JSON++ (C++),citm_catalog.json,31.872000,0,11749536,165964,0 |
| 4. Statistics,tunnuz/JSON++ (C++),twitter.json,16.345000,0,5440992,77524,0 |
| 7. Code size,tunnuz/JSON++ (C++),jsonstat,0,0,0,0,73412 |
| 1. Parse,udp/json-parser (C),canada.json,27.397000,12047840,12047840,223233,0 |
| 1. Parse,udp/json-parser (C),citm_catalog.json,11.425000,3420464,3420464,51205,0 |
| 1. Parse,udp/json-parser (C),twitter.json,4.538000,1726752,1726752,20237,0 |
| 2. Stringify,udp/json-parser (C),canada.json,44.669000,1916944,1916944,2,0 |
| 2. Stringify,udp/json-parser (C),citm_catalog.json,1.319000,593936,593936,2,0 |
| 2. Stringify,udp/json-parser (C),twitter.json,1.343000,593936,593936,2,0 |
| 3. Prettify,udp/json-parser (C),canada.json,46.441000,7958544,7958544,2,0 |
| 3. Prettify,udp/json-parser (C),citm_catalog.json,1.593000,2097168,2097168,2,0 |
| 3. Prettify,udp/json-parser (C),twitter.json,1.450000,917520,917520,2,0 |
| 4. Statistics,udp/json-parser (C),canada.json,0.808000,0,0,0,0 |
| 4. Statistics,udp/json-parser (C),citm_catalog.json,0.175000,0,0,0,0 |
| 4. Statistics,udp/json-parser (C),twitter.json,0.068000,0,0,0,0 |
| 7. Code size,udp/json-parser (C),jsonstat,0,0,0,0,35520 |
| 1. Parse,ujson4c (C),canada.json,5.480000,13074464,22081568,11,0 |
| 1. Parse,ujson4c (C),citm_catalog.json,2.910000,5115936,13074464,10,0 |
| 1. Parse,ujson4c (C),twitter.json,1.426000,5115936,7643168,10,0 |
| 4. Statistics,ujson4c (C),canada.json,1.250000,0,0,0,0 |
| 4. Statistics,ujson4c (C),citm_catalog.json,0.458000,0,0,0,0 |
| 4. Statistics,ujson4c (C),twitter.json,0.179000,0,0,0,0 |
| 7. Code size,ujson4c (C),jsonstat,0,0,0,0,31492 |
| 1. Parse,ujson (C++),canada.json,25.719000,9349184,9351776,170254,0 |
| 1. Parse,ujson (C++),citm_catalog.json,9.949000,3165056,3165632,63520,0 |
| 1. Parse,ujson (C++),twitter.json,4.397000,1609344,1609712,13992,0 |
| 2. Stringify,ujson (C++),canada.json,18.331000,2097184,4014112,17,0 |
| 2. Stringify,ujson (C++),citm_catalog.json,3.526000,593952,856096,15,0 |
| 2. Stringify,ujson (C++),twitter.json,1.852000,917536,1511456,15,0 |
| 3. Prettify,ujson (C++),canada.json,21.494000,9007136,16965664,19,0 |
| 3. Prettify,ujson (C++),citm_catalog.json,4.635000,2097184,4014112,17,0 |
| 3. Prettify,ujson (C++),twitter.json,2.032000,917536,1511456,15,0 |
| 4. Statistics,ujson (C++),canada.json,1.337000,0,0,0,0 |
| 4. Statistics,ujson (C++),citm_catalog.json,0.548000,0,0,0,0 |
| 4. Statistics,ujson (C++),twitter.json,0.267000,0,0,0,0 |
| 7. Code size,ujson (C++),jsonstat,0,0,0,0,127120 |
| 1. Parse,Vinenthz/libjson (C),canada.json,71.021000,4916160,4945104,334389,0 |
| 1. Parse,Vinenthz/libjson (C),citm_catalog.json,19.887000,2372400,2401344,153901,0 |
| 1. Parse,Vinenthz/libjson (C),twitter.json,8.937000,1305728,1334672,72620,0 |
| 2. Stringify,Vinenthz/libjson (C),canada.json,60.842000,4194336,4194336,13,0 |
| 2. Stringify,Vinenthz/libjson (C),citm_catalog.json,4.382000,524320,524320,10,0 |
| 2. Stringify,Vinenthz/libjson (C),twitter.json,3.370000,524320,524320,10,0 |
| 3. Prettify,Vinenthz/libjson (C),canada.json,60.551000,4194336,4194336,13,0 |
| 3. Prettify,Vinenthz/libjson (C),citm_catalog.json,4.226000,524320,524320,10,0 |
| 3. Prettify,Vinenthz/libjson (C),twitter.json,3.300000,524320,524320,10,0 |
| 4. Statistics,Vinenthz/libjson (C),canada.json,0.535000,0,0,0,0 |
| 4. Statistics,Vinenthz/libjson (C),citm_catalog.json,0.215000,0,0,0,0 |
| 4. Statistics,Vinenthz/libjson (C),twitter.json,0.107000,0,0,0,0 |
| 5. Sax Round-trip,Vinenthz/libjson (C),canada.json,13.428000,4194336,4198688,15,0 |
| 5. Sax Round-trip,Vinenthz/libjson (C),citm_catalog.json,9.806000,524320,528672,12,0 |
| 5. Sax Round-trip,Vinenthz/libjson (C),twitter.json,5.501000,524320,528672,12,0 |
| 6. SaxStatistics,Vinenthz/libjson (C),canada.json,10.981000,0,4352,2,0 |
| 6. SaxStatistics,Vinenthz/libjson (C),citm_catalog.json,7.622000,0,4352,2,0 |
| 6. SaxStatistics,Vinenthz/libjson (C),twitter.json,3.001000,0,4352,2,0 |
| 7. Code size,Vinenthz/libjson (C),jsonstat,0,0,0,0,26624 |
| 1. Parse,YAJL (C),canada.json,77.604000,12893040,12895472,501567,0 |
| 1. Parse,YAJL (C),citm_catalog.json,19.504000,3031456,3035936,189685,0 |
| 1. Parse,YAJL (C),twitter.json,8.486000,1459072,1463552,77047,0 |
| 2. Stringify,YAJL (C),canada.json,71.632000,4198976,4198976,15,0 |
| 2. Stringify,YAJL (C),citm_catalog.json,4.002000,528960,528960,12,0 |
| 2. Stringify,YAJL (C),twitter.json,1.873000,528960,528960,12,0 |
| 3. Prettify,YAJL (C),canada.json,90.029000,16781888,16781888,17,0 |
| 3. Prettify,YAJL (C),citm_catalog.json,8.250000,2101824,2101824,14,0 |
| 3. Prettify,YAJL (C),twitter.json,3.085000,1053248,1053248,13,0 |
| 4. Statistics,YAJL (C),canada.json,0.921000,0,0,0,0 |
| 4. Statistics,YAJL (C),citm_catalog.json,0.233000,0,0,0,0 |
| 4. Statistics,YAJL (C),twitter.json,0.121000,0,0,0,0 |
| 5. Sax Round-trip,YAJL (C),canada.json,113.780000,4198976,4203456,22,0 |
| 5. Sax Round-trip,YAJL (C),citm_catalog.json,8.603000,528960,533440,19,0 |
| 5. Sax Round-trip,YAJL (C),twitter.json,3.558000,528960,533440,19,0 |
| 6. SaxStatistics,YAJL (C),canada.json,40.462000,0,4480,7,0 |
| 6. SaxStatistics,YAJL (C),citm_catalog.json,4.725000,0,4480,7,0 |
| 6. SaxStatistics,YAJL (C),twitter.json,1.681000,0,4480,7,0 |
| 7. Code size,YAJL (C),jsonstat,0,0,0,0,45352 |
| </textarea> |
| </div> |
| <div class="row" id="downloadDD" style="display: none"> |
| <div class="btn-group pull-right" > |
| <button class="btn dropdown-toggle" data-toggle="dropdown"><span class="glyphicon glyphicon-picture"></span></button> |
| <ul class="dropdown-menu"> |
| <li><a tabindex="-1" href="#" dltype="image/jpeg">JPEG</a></li> |
| <li><a tabindex="-1" href="#" dltype="image/png">PNG</a></li> |
| <li><a tabindex="-1" href="#" dltype="application/pdf">PDF</a></li> |
| <li><a tabindex="-1" href="#" dltype="image/svg+xml">SVG</a></li> |
| </ul> |
| </div> |
| </div> |
| <form method="post" action="http://export.highcharts.com/" id="imageGetForm"> |
| <input type="hidden" name="filename" id="imageFilename" value="" /> |
| <input type="hidden" name="type" id="imageGetFormTYPE" value="" /> |
| <input type="hidden" name="width" value="1600" /> |
| <input type="hidden" name="svg" value="" id="imageGetFormSVG" /> |
| </form> |
| </div> |
| </body> |
| </html> |