diff --git a/app/components/ViewParsed.js b/app/components/ViewParsed.js index a14dc9b..a0215f7 100644 --- a/app/components/ViewParsed.js +++ b/app/components/ViewParsed.js @@ -19,6 +19,7 @@ export default class ViewParsed extends Component { this.state = { parsedContent: '', balanceZoom: false, + balanceSort: false, balanceZoomIndex: 0, balanceZoomPageSize: 30, balanceZoomData: {}, @@ -42,6 +43,26 @@ export default class ViewParsed extends Component { }); } + toggleBalanceSort() { + this.setState({ balanceSort: !this.state.balanceSort }, () => { + if (this.state.balanceSort) { + this.setState({ + balanceZoomData: this.state.parsedContent.balanceDataSorted + }); + } else { + this.setState({ + balanceZoomData: this.state.parsedContent.balanceData + }); + } + this.setState({ + balanceZoom: false, + balanceZoomIndex: 1, + balanceZoomStart: true, + balanceZoomEnd: false + }); + }); + } + unZoomBalanceData() { if (this.state.parsedContent.balanceData.labels) { this.recalculateBalanceData( @@ -94,17 +115,30 @@ export default class ViewParsed extends Component { recalculateBalanceData(start, end) { let newBalanceData = { - labels: this.state.parsedContent.balanceData.labels.slice(start, end), - datasets: this.state.parsedContent.balanceData.datasets.map(dataset => { - return { - label: dataset.label, - fill: dataset.fill, - backgroundColor: dataset.backgroundColor, - borderColor: dataset.borderColor, - pointHoverBackgroundColor: dataset.pointHoverBackgroundColor, - data: dataset.data.slice(start, end) - }; - }) + labels: this.state.balanceSort + ? this.state.parsedContent.balanceDataSorted.labels.slice(start, end) + : this.state.parsedContent.balanceData.labels.slice(start, end), + datasets: this.state.balanceSort + ? this.state.parsedContent.balanceDataSorted.datasets.map(dataset => { + return { + label: dataset.label, + fill: dataset.fill, + backgroundColor: dataset.backgroundColor, + borderColor: dataset.borderColor, + pointHoverBackgroundColor: dataset.pointHoverBackgroundColor, + data: dataset.data.slice(start, end) + }; + }) + : this.state.parsedContent.balanceData.datasets.map(dataset => { + return { + label: dataset.label, + fill: dataset.fill, + backgroundColor: dataset.backgroundColor, + borderColor: dataset.borderColor, + pointHoverBackgroundColor: dataset.pointHoverBackgroundColor, + data: dataset.data.slice(start, end) + }; + }) }; this.setState({ balanceZoomData: newBalanceData }); } @@ -143,6 +177,7 @@ export default class ViewParsed extends Component {

Metadata

user: {content.metadata.username}
+ cmdline: {content.metadata.cmdline}
start:{' '} {moment .unix(content.metadata.start) @@ -194,13 +229,20 @@ export default class ViewParsed extends Component { {this.state.balanceZoomData && (
-

Communication balance by task (sorted by MPI time)

+

Communication balance by task

{' '} + {this.state.balanceZoom && (
diff --git a/app/utils/parser.js b/app/utils/parser.js index 3b507ce..2a3cfff 100644 --- a/app/utils/parser.js +++ b/app/utils/parser.js @@ -45,6 +45,9 @@ export const parseData = (filename, callback) => { data.mpiPies = getMpiPieCharts(data.mpiData, data.metadata.totalWallTime); data.hpmData = getHpmData(taskdata); data.balanceData = generateBalanceChartData(data.mpiData.mpiCallsByTask); + data.balanceDataSorted = generateBalanceChartData( + data.mpiData.mpiCallsByTaskSorted + ); // save raw parsed JSON to file // // fs.writeFile('log.json', JSON.stringify(result, null, 2), err => { @@ -65,17 +68,23 @@ const generateBalanceChartData = mpiCallsByTask => { }; for (let mpiCallKey in mpiCallsByTask[0].mpiCalls) { - let mpiCall = mpiCallsByTask[0].mpiCalls[mpiCallKey]; - let dataset = mpiCallsByTask.map(task => task.mpiCalls[mpiCallKey].ttot); - //.sort((callA, callB) => callB - callA); - balanceData.datasets.push({ - label: mpiCall.call, - fill: false, - backgroundColor: mpiCall.color, - borderColor: mpiCall.color, - pointHoverBackgroundColor: mpiCall.hoverColor, - data: dataset - }); + try { + let mpiCall = mpiCallsByTask[0].mpiCalls[mpiCallKey]; + let dataset = mpiCallsByTask.map( + task => task.mpiCalls[mpiCallKey].ttot + ); + //.sort((callA, callB) => callB - callA); + balanceData.datasets.push({ + label: mpiCall.call, + fill: false, + backgroundColor: mpiCall.color, + borderColor: mpiCall.color, + pointHoverBackgroundColor: mpiCall.hoverColor, + data: dataset + }); + } catch (e) { + console.log(e); + } } return balanceData; @@ -241,6 +250,7 @@ const getMpiData = taskdata => { }; let mpiCallsSummarized = []; let mpiCallsByTask = []; + let mpiCallsByTaskSorted = []; try { for (let taskKey in taskdata) { @@ -327,7 +337,9 @@ const getMpiData = taskdata => { // sort descending after total time mpiCalls.sort((callA, callB) => callB.ttot - callA.ttot); mpiCallsSummarized.sort((callA, callB) => callB.ttot - callA.ttot); - mpiCallsByTask.sort((taskA, taskB) => taskB.ttot - taskA.ttot); + mpiCallsByTaskSorted = JSON.parse(JSON.stringify(mpiCallsByTask)).sort( + (taskA, taskB) => taskB.ttot - taskA.ttot + ); } catch (e) { console.log(e); } @@ -336,7 +348,8 @@ const getMpiData = taskdata => { mpiCalls, mpiCallsSummarized, mpiAnalysis, - mpiCallsByTask + mpiCallsByTask, + mpiCallsByTaskSorted }; }; @@ -371,6 +384,7 @@ const getMetadata = firstTask => { metadata.ntasks = parseInt(firstTask.job[0].$.ntasks); metadata.nhosts = parseInt(firstTask.job[0].$.nhosts); metadata.totalWallTime = metadata.walltime * metadata.ntasks; + metadata.cmdline = firstTask.cmdline[0]._; metadata.env = firstTask.env; return metadata; }; diff --git a/ipm_raw/MDFT_03.ipm_parsed.json b/ipm_raw/MDFT_03.ipm_parsed.json index f809e50..4989d59 100644 --- a/ipm_raw/MDFT_03.ipm_parsed.json +++ b/ipm_raw/MDFT_03.ipm_parsed.json @@ -6,7 +6,8 @@ "walltime": "12.674309", "ntasks": 9, "nhosts": 1, - "totalWallTime": 114.06878099999999 + "totalWallTime": 114.06878099999999, + "cmdline": "./mini_dft+ipm -in MDFT_03.in -ntg 1 -ndiag 9 " }, "hosts": [ { @@ -1768,22 +1769,22 @@ "call": "MPI_Alltoallv", "ttot": 3.0961947999999992, "count": 10782, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Barrier", "ttot": 2.081123, "count": 16281, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Bcast", "ttot": 0.33998244957000023, "count": 18000, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Recv", @@ -1796,106 +1797,106 @@ "call": "MPI_Reduce", "ttot": 0.07130195165, "count": 459, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Allreduce", "ttot": 0.05103498630000001, "count": 2925, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Sendrecv_replace", "ttot": 0.031116907999999985, "count": 486, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Send", "ttot": 0.013986337239999988, "count": 9998, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Alltoall", "ttot": 0.00881477, "count": 9, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Wait", "ttot": 0.0037684368000000003, "count": 72, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Waitall", "ttot": 0.0034441960000000005, "count": 12996, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Isend", "ttot": 0.003051752140000007, "count": 5640, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Testall", "ttot": 0.002825025, "count": 5951, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Comm_rank", "ttot": 0.0004549029999999999, "count": 1359, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Irecv", "ttot": 0.000359059, "count": 1008, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", "ttot": 0.000330212, "count": 873, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Rsend", "ttot": 0.000208855, "count": 1008, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 9, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 9, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" } ], "mpiAnalysis": { @@ -1904,509 +1905,1671 @@ }, "mpiCallsByTask": [ { - "nr": "8", - "ttot": 1.4801491718899997, + "nr": "0", + "ttot": 0.5280926654500004, "mpiCalls": [ - { - "call": "MPI_Bcast", - "ttot": 0.03999090022, - "count": 1086, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" - }, - { - "call": "MPI_Isend", - "ttot": 0.00008010797999999998, - "count": 162, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" - }, { "call": "MPI_Recv", - "ttot": 0.011333220169999995, - "count": 442, + "ttot": 0.024209814320000012, + "count": 3138, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, + { + "call": "MPI_Bcast", + "ttot": 0.034507582299999985, + "count": 2334, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, { "call": "MPI_Send", - "ttot": 0.0012958054500000003, - "count": 1316, + "ttot": 0.0026891246100000004, + "count": 307, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Rsend", + "ttot": 0.0001244545, + "count": 504, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Allreduce", - "ttot": 0.0040435834, + "ttot": 0.007774108700000001, "count": 325, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Testall", - "ttot": 0.000091314, - "count": 200, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "ttot": 0.000022412, + "count": 48, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Alltoallv", - "ttot": 0.3531367, + "ttot": 0.353766, "count": 1198, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.003475887, + "ttot": 0.00351119, "count": 54, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Reduce", - "ttot": 0.006447079670000001, - "count": 52, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.009367889, + "count": 49, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Waitall", - "ttot": 0.000107527, - "count": 1002, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.000097752, + "count": 1248, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { - "call": "MPI_Wait", - "ttot": 0.00050354, - "count": 8, + "call": "MPI_Isend", + "ttot": 0.00001549702, + "count": 40, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Comm_size", - "ttot": 0.000038147, + "ttot": 0.000035525, "count": 97, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.00005126, + "ttot": 0.000053405999999999997, "count": 151, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 1.05619, + "ttot": 0.091458, "count": 1809, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Alltoall", - "ttot": 0.0033641, + "ttot": 0.00045991, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" } ] }, { - "nr": "2", - "ttot": 0.5879442007800006, + "nr": "1", + "ttot": 0.5510188257200006, "mpiCalls": [ - { - "call": "MPI_Isend", - "ttot": 0.00036525558000000005, - "count": 881, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" - }, { "call": "MPI_Recv", - "ttot": 0.030985179329999998, - "count": 1947, + "ttot": 0.02201191965999999, + "count": 2958, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, + { + "call": "MPI_Isend", + "ttot": 0.0004546641600000001, + "count": 887, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, { "call": "MPI_Bcast", - "ttot": 0.03464632763999999, - "count": 834, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "ttot": 0.03915455210000001, + "count": 2328, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.00036310963000000005, - "count": 533, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "ttot": 0.0005426392299999995, + "count": 783, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Wait", - "ttot": 0.000783923, + "ttot": 0.0009000270000000001, "count": 12, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Rsend", + "ttot": 0.0000844005, + "count": 504, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Allreduce", - "ttot": 0.007649438600000001, + "ttot": 0.007611044399999999, "count": 325, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Testall", - "ttot": 0.0003357, - "count": 878, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "ttot": 0.00039553, + "count": 883, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Alltoallv", - "ttot": 0.3489224, + "ttot": 0.35049559999999996, "count": 1198, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.0034828090000000003, + "ttot": 0.00352455, "count": 54, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Reduce", - "ttot": 0.010156561999999997, + "ttot": 0.008793612670000001, "count": 52, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Waitall", - "ttot": 0.000075102, - "count": 750, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.00011611, + "count": 1494, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Comm_size", - "ttot": 0.000034571, + "ttot": 0.000035763, "count": 97, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.000047923, + "ttot": 0.000055313000000000004, "count": 151, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 0.148566, + "ttot": 0.11461199999999999, "count": 1809, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Alltoall", - "ttot": 0.0015299, + "ttot": 0.0022311, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" } ] }, { - "nr": "5", - "ttot": 0.5703453462400008, + "nr": "2", + "ttot": 0.5879442007800006, "mpiCalls": [ { "call": "MPI_Isend", - "ttot": 0.0003805155300000001, - "count": 665, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" - }, - { - "call": "MPI_Bcast", - "ttot": 0.05508701434999999, - "count": 1086, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "ttot": 0.00036525558000000005, + "count": 881, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Recv", - "ttot": 0.009505304749999999, - "count": 943, + "ttot": 0.030985179329999998, + "count": 1947, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, + { + "call": "MPI_Bcast", + "ttot": 0.03464632763999999, + "count": 834, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, { "call": "MPI_Send", - "ttot": 0.0009458061399999999, - "count": 1308, + "ttot": 0.00036310963000000005, + "count": 533, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Wait", + "ttot": 0.000783923, + "count": 12, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Allreduce", - "ttot": 0.0050294217, + "ttot": 0.007649438600000001, "count": 325, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Testall", - "ttot": 0.000304465, - "count": 699, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "ttot": 0.0003357, + "count": 878, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Alltoallv", - "ttot": 0.3227714, + "ttot": 0.3489224, "count": 1198, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.0034103290000000006, + "ttot": 0.0034828090000000003, "count": 54, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Reduce", - "ttot": 0.00780155697, + "ttot": 0.010156561999999997, "count": 52, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, - { - "call": "MPI_Wait", - "ttot": 0.0008392368000000001, - "count": 16, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Waitall", - "ttot": 0.00009489, - "count": 1002, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.000075102, + "count": 750, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Comm_size", - "ttot": 0.00004077, + "ttot": 0.000034571, "count": 97, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.000045776000000000004, + "ttot": 0.000047923, "count": 151, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 0.16341699999999998, + "ttot": 0.148566, "count": 1809, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Alltoall", - "ttot": 0.00067186, + "ttot": 0.0015299, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" } ] }, { - "nr": "7", - "ttot": 0.5530918924800006, + "nr": "3", + "ttot": 0.5499092740200007, "mpiCalls": [ + { + "call": "MPI_Isend", + "ttot": 0.00045013681999999994, + "count": 819, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, { "call": "MPI_Recv", - "ttot": 0.009754638129999995, - "count": 1734, + "ttot": 0.016316732089999994, + "count": 1143, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, - { - "call": "MPI_Isend", - "ttot": 0.00057363248, - "count": 940, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" - }, { "call": "MPI_Bcast", - "ttot": 0.02978230267999999, - "count": 2580, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "ttot": 0.03758931659999998, + "count": 2586, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.001634357520000001, - "count": 1551, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "ttot": 0.0025691964399999993, + "count": 1567, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Allreduce", - "ttot": 0.0044152907, + "ttot": 0.004982716399999999, "count": 325, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Testall", - "ttot": 0.00065375, - "count": 996, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "ttot": 0.0003674, + "count": 865, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Alltoallv", - "ttot": 0.3125483, + "ttot": 0.35349769999999997, "count": 1198, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.0034279750000000006, + "ttot": 0.0034451499999999993, "count": 54, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Reduce", - "ttot": 0.00619483397, - "count": 52, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.007319265669999999, + "count": 49, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Waitall", - "ttot": 0.000531911, - "count": 1998, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.000677591, + "count": 1752, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Wait", - "ttot": 0.00032806, - "count": 8, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "ttot": 0.00006485, + "count": 4, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.000043868999999999996, + "ttot": 0.000036240000000000005, "count": 97, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.000047684, + "ttot": 0.000051498, "count": 151, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 0.182806, + "ttot": 0.122397, "count": 1809, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Irecv", - "ttot": 0.000095368, + "ttot": 0.000078439, "count": 252, - "color": "rgb(171, 104, 87)", + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.000066042, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + } + ] + }, + { + "nr": "4", + "ttot": 0.5252299113400003, + "mpiCalls": [ + { + "call": "MPI_Isend", + "ttot": 0.00029015386999999986, + "count": 431, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 0.01306943476, + "count": 2175, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.031813920579999995, + "count": 2580, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.0016808567300000009, + "count": 1061, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.0050242134, + "count": 325, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Testall", + "ttot": 0.00020527399999999997, + "count": 551, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 0.34902859999999997, + "count": 1198, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.00340246, + "count": 54, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.008996507, + "count": 52, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.001103877, + "count": 1998, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Wait", + "ttot": 0.00016999, + "count": 8, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000036478, + "count": 97, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000050307, + "count": 151, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.110231, + "count": 1809, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.000094891, + "count": 252, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.000031948, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + } + ] + }, + { + "nr": "5", + "ttot": 0.5703453462400008, + "mpiCalls": [ + { + "call": "MPI_Isend", + "ttot": 0.0003805155300000001, + "count": 665, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.05508701434999999, + "count": 1086, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Recv", + "ttot": 0.009505304749999999, + "count": 943, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Send", + "ttot": 0.0009458061399999999, + "count": 1308, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.0050294217, + "count": 325, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Testall", + "ttot": 0.000304465, + "count": 699, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 0.3227714, + "count": 1198, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.0034103290000000006, + "count": 54, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.00780155697, + "count": 52, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0008392368000000001, + "count": 16, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.00009489, + "count": 1002, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.00004077, + "count": 97, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000045776000000000004, + "count": 151, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.16341699999999998, + "count": 1809, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.00067186, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + } + ] + }, + { + "nr": "6", + "ttot": 0.5147441061100004, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 0.015341509119999997, + "count": 1158, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Isend", + "ttot": 0.00044178869999999995, + "count": 815, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.03741053309999999, + "count": 2586, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.0022654414900000006, + "count": 1572, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.004505168999999999, + "count": 325, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Testall", + "ttot": 0.00044918, + "count": 831, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 0.3520281, + "count": 1198, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.003436558, + "count": 54, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.006224644700000001, + "count": 49, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.000639436, + "count": 1752, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Wait", + "ttot": 0.00017881, + "count": 4, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000028849, + "count": 97, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000051736, + "count": 151, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.091446, + "count": 1809, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.00009036100000000001, + "count": 252, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.00020599, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + } + ] + }, + { + "nr": "7", + "ttot": 0.5530918924800006, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 0.009754638129999995, + "count": 1734, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Isend", + "ttot": 0.00057363248, + "count": 940, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.02978230267999999, + "count": 2580, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.001634357520000001, + "count": 1551, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.0044152907, + "count": 325, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Testall", + "ttot": 0.00065375, + "count": 996, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 0.3125483, + "count": 1198, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.0034279750000000006, + "count": 54, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.00619483397, + "count": 52, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.000531911, + "count": 1998, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Wait", + "ttot": 0.00032806, + "count": 8, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000043868999999999996, + "count": 97, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000047684, + "count": 151, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.182806, + "count": 1809, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.000095368, + "count": 252, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.00025392, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + } + ] + }, + { + "nr": "8", + "ttot": 1.4801491718899997, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.03999090022, + "count": 1086, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Isend", + "ttot": 0.00008010797999999998, + "count": 162, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 0.011333220169999995, + "count": 442, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Send", + "ttot": 0.0012958054500000003, + "count": 1316, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.0040435834, + "count": 325, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Testall", + "ttot": 0.000091314, + "count": 200, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 0.3531367, + "count": 1198, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.003475887, + "count": 54, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.006447079670000001, + "count": 52, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.000107527, + "count": 1002, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Wait", + "ttot": 0.00050354, + "count": 8, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000038147, + "count": 97, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.00005126, + "count": 151, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 1.05619, + "count": 1809, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.0033641, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + } + ] + } + ], + "mpiCallsByTaskSorted": [ + { + "nr": "8", + "ttot": 1.4801491718899997, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.03999090022, + "count": 1086, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Isend", + "ttot": 0.00008010797999999998, + "count": 162, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 0.011333220169999995, + "count": 442, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Send", + "ttot": 0.0012958054500000003, + "count": 1316, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.0040435834, + "count": 325, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Testall", + "ttot": 0.000091314, + "count": 200, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 0.3531367, + "count": 1198, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.003475887, + "count": 54, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.006447079670000001, + "count": 52, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.000107527, + "count": 1002, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Wait", + "ttot": 0.00050354, + "count": 8, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000038147, + "count": 97, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.00005126, + "count": 151, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 1.05619, + "count": 1809, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.0033641, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + } + ] + }, + { + "nr": "2", + "ttot": 0.5879442007800006, + "mpiCalls": [ + { + "call": "MPI_Isend", + "ttot": 0.00036525558000000005, + "count": 881, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 0.030985179329999998, + "count": 1947, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.03464632763999999, + "count": 834, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.00036310963000000005, + "count": 533, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Wait", + "ttot": 0.000783923, + "count": 12, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.007649438600000001, + "count": 325, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Testall", + "ttot": 0.0003357, + "count": 878, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 0.3489224, + "count": 1198, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.0034828090000000003, + "count": 54, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.010156561999999997, + "count": 52, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.000075102, + "count": 750, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000034571, + "count": 97, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000047923, + "count": 151, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.148566, + "count": 1809, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.0015299, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + } + ] + }, + { + "nr": "5", + "ttot": 0.5703453462400008, + "mpiCalls": [ + { + "call": "MPI_Isend", + "ttot": 0.0003805155300000001, + "count": 665, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.05508701434999999, + "count": 1086, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Recv", + "ttot": 0.009505304749999999, + "count": 943, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Send", + "ttot": 0.0009458061399999999, + "count": 1308, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.0050294217, + "count": 325, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Testall", + "ttot": 0.000304465, + "count": 699, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 0.3227714, + "count": 1198, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.0034103290000000006, + "count": 54, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.00780155697, + "count": 52, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0008392368000000001, + "count": 16, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.00009489, + "count": 1002, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.00004077, + "count": 97, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000045776000000000004, + "count": 151, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.16341699999999998, + "count": 1809, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.00067186, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + } + ] + }, + { + "nr": "7", + "ttot": 0.5530918924800006, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 0.009754638129999995, + "count": 1734, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Isend", + "ttot": 0.00057363248, + "count": 940, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.02978230267999999, + "count": 2580, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.001634357520000001, + "count": 1551, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.0044152907, + "count": 325, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Testall", + "ttot": 0.00065375, + "count": 996, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 0.3125483, + "count": 1198, + "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.0034279750000000006, + "count": 54, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.00619483397, + "count": 52, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.000531911, + "count": 1998, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Wait", + "ttot": 0.00032806, + "count": 8, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000043868999999999996, + "count": 97, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000047684, + "count": 151, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.182806, + "count": 1809, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.000095368, + "count": 252, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, { "call": "MPI_Alltoall", "ttot": 0.00025392, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" } ] }, @@ -2425,120 +3588,120 @@ "call": "MPI_Isend", "ttot": 0.0004546641600000001, "count": 887, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", "ttot": 0.03915455210000001, "count": 2328, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", "ttot": 0.0005426392299999995, "count": 783, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Wait", "ttot": 0.0009000270000000001, "count": 12, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Rsend", "ttot": 0.0000844005, "count": 504, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Allreduce", "ttot": 0.007611044399999999, "count": 325, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Testall", "ttot": 0.00039553, "count": 883, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Alltoallv", "ttot": 0.35049559999999996, "count": 1198, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Sendrecv_replace", "ttot": 0.00352455, "count": 54, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Reduce", "ttot": 0.008793612670000001, "count": 52, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Waitall", "ttot": 0.00011611, "count": 1494, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Comm_size", "ttot": 0.000035763, "count": 97, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", "ttot": 0.000055313000000000004, "count": 151, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", "ttot": 0.11461199999999999, "count": 1809, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Alltoall", "ttot": 0.0022311, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" } ] }, @@ -2550,8 +3713,8 @@ "call": "MPI_Isend", "ttot": 0.00045013681999999994, "count": 819, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Recv", @@ -2564,113 +3727,113 @@ "call": "MPI_Bcast", "ttot": 0.03758931659999998, "count": 2586, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", "ttot": 0.0025691964399999993, "count": 1567, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Allreduce", "ttot": 0.004982716399999999, "count": 325, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Testall", "ttot": 0.0003674, "count": 865, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Alltoallv", "ttot": 0.35349769999999997, "count": 1198, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Sendrecv_replace", "ttot": 0.0034451499999999993, "count": 54, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Reduce", "ttot": 0.007319265669999999, "count": 49, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Waitall", "ttot": 0.000677591, "count": 1752, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Wait", "ttot": 0.00006485, "count": 4, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", "ttot": 0.000036240000000000005, "count": 97, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", "ttot": 0.000051498, "count": 151, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", "ttot": 0.122397, "count": 1809, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Irecv", "ttot": 0.000078439, "count": 252, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoall", "ttot": 0.000066042, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" } ] }, @@ -2689,113 +3852,113 @@ "call": "MPI_Bcast", "ttot": 0.034507582299999985, "count": 2334, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", "ttot": 0.0026891246100000004, "count": 307, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Rsend", "ttot": 0.0001244545, "count": 504, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Allreduce", "ttot": 0.007774108700000001, "count": 325, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Testall", "ttot": 0.000022412, "count": 48, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Alltoallv", "ttot": 0.353766, "count": 1198, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Sendrecv_replace", "ttot": 0.00351119, "count": 54, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Reduce", "ttot": 0.009367889, "count": 49, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Waitall", "ttot": 0.000097752, "count": 1248, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Isend", "ttot": 0.00001549702, "count": 40, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Comm_size", "ttot": 0.000035525, "count": 97, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", "ttot": 0.000053405999999999997, "count": 151, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", "ttot": 0.091458, "count": 1809, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Alltoall", "ttot": 0.00045991, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" } ] }, @@ -2807,8 +3970,8 @@ "call": "MPI_Isend", "ttot": 0.00029015386999999986, "count": 431, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Recv", @@ -2821,113 +3984,113 @@ "call": "MPI_Bcast", "ttot": 0.031813920579999995, "count": 2580, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", "ttot": 0.0016808567300000009, "count": 1061, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Allreduce", "ttot": 0.0050242134, "count": 325, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Testall", "ttot": 0.00020527399999999997, "count": 551, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Alltoallv", "ttot": 0.34902859999999997, "count": 1198, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Sendrecv_replace", "ttot": 0.00340246, - "count": 54, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "count": 54, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Reduce", "ttot": 0.008996507, "count": 52, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Waitall", "ttot": 0.001103877, "count": 1998, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Wait", "ttot": 0.00016999, "count": 8, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", "ttot": 0.000036478, "count": 97, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", "ttot": 0.000050307, "count": 151, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", "ttot": 0.110231, "count": 1809, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Irecv", "ttot": 0.000094891, "count": 252, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoall", "ttot": 0.000031948, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" } ] }, @@ -2946,188 +4109,479 @@ "call": "MPI_Isend", "ttot": 0.00044178869999999995, "count": 815, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", "ttot": 0.03741053309999999, "count": 2586, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", "ttot": 0.0022654414900000006, "count": 1572, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Allreduce", "ttot": 0.004505168999999999, "count": 325, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Testall", "ttot": 0.00044918, "count": 831, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Alltoallv", "ttot": 0.3520281, "count": 1198, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Sendrecv_replace", "ttot": 0.003436558, "count": 54, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Reduce", "ttot": 0.006224644700000001, "count": 49, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Waitall", "ttot": 0.000639436, "count": 1752, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Wait", "ttot": 0.00017881, "count": 4, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", "ttot": 0.000028849, "count": 97, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", "ttot": 0.000051736, "count": 151, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", "ttot": 0.091446, "count": 1809, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Irecv", "ttot": 0.00009036100000000001, "count": 252, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoall", "ttot": 0.00020599, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" } ] } ] }, - "mpiPies": { - "mpiPercent": { - "datasets": [ - { - "data": ["52.83", "35.51", "5.80", "2.60", "1.22", "2.04"], - "backgroundColor": [ - "rgb(204, 37, 41)", - "rgb(132, 186, 91)", - "rgb(171, 104, 87)", - "rgb(114, 147, 203)", - "rgb(114, 147, 203)", - "rgb(204, 194, 16)" - ], - "hoverBackgroundColor": [ - "rgb(224, 57, 61)", - "rgb(152, 206, 111)", - "rgb(191, 124, 107)", - "rgb(134, 167, 223)", - "rgb(134, 167, 223)", - "rgb(224, 214, 36)" - ] - } - ], - "labels": [ - "MPI_Alltoallv", - "MPI_Barrier", - "MPI_Bcast", - "MPI_Recv", - "MPI_Reduce", - "others" - ] - }, - "mpiWall": { - "datasets": [ - { - "data": ["2.71", "1.82", "0.60", "94.86"], - "backgroundColor": [ - "rgb(204, 37, 41)", - "rgb(132, 186, 91)", - "rgb(204, 194, 16)", - "rgb(57, 106, 177)" - ], - "hoverBackgroundColor": [ - "rgb(224, 57, 61)", - "rgb(152, 206, 111)", - "rgb(224, 214, 36)", - "rgb(77, 126, 197)" - ] - } - ], - "labels": ["MPI_Alltoallv", "MPI_Barrier", "others", "Apllication"] - } - }, - "hpmData": [], - "balanceData": { + "mpiPies": { + "mpiPercent": { + "datasets": [ + { + "data": ["52.83", "35.51", "5.80", "2.60", "1.22", "2.04"], + "backgroundColor": [ + "rgb(171, 104, 87)", + "rgb(148, 139, 61)", + "rgb(225, 151, 76)", + "rgb(114, 147, 203)", + "rgb(204, 37, 41)", + "rgb(144, 103, 167)" + ], + "hoverBackgroundColor": [ + "rgb(191, 124, 107)", + "rgb(168, 159, 81)", + "rgb(245, 171, 96)", + "rgb(134, 167, 223)", + "rgb(224, 57, 61)", + "rgb(164, 123, 187)" + ] + } + ], + "labels": [ + "MPI_Alltoallv", + "MPI_Barrier", + "MPI_Bcast", + "MPI_Recv", + "MPI_Reduce", + "others" + ] + }, + "mpiWall": { + "datasets": [ + { + "data": ["2.71", "1.82", "0.60", "94.86"], + "backgroundColor": [ + "rgb(171, 104, 87)", + "rgb(148, 139, 61)", + "rgb(144, 103, 167)", + "rgb(171, 104, 87)" + ], + "hoverBackgroundColor": [ + "rgb(191, 124, 107)", + "rgb(168, 159, 81)", + "rgb(164, 123, 187)", + "rgb(191, 124, 107)" + ] + } + ], + "labels": ["MPI_Alltoallv", "MPI_Barrier", "others", "Apllication"] + } + }, + "hpmData": [], + "balanceData": { + "labels": ["0", "1", "2", "3", "4", "5", "6", "7", "8"], + "datasets": [ + { + "label": "MPI_Recv", + "fill": false, + "backgroundColor": "rgb(114, 147, 203)", + "borderColor": "rgb(114, 147, 203)", + "pointHoverBackgroundColor": "rgb(134, 167, 223)", + "data": [ + 0.024209814320000012, + 0.02201191965999999, + 0.00036525558000000005, + 0.00045013681999999994, + 0.00029015386999999986, + 0.0003805155300000001, + 0.015341509119999997, + 0.009754638129999995, + 0.03999090022 + ] + }, + { + "label": "MPI_Bcast", + "fill": false, + "backgroundColor": "rgb(225, 151, 76)", + "borderColor": "rgb(225, 151, 76)", + "pointHoverBackgroundColor": "rgb(245, 171, 96)", + "data": [ + 0.034507582299999985, + 0.0004546641600000001, + 0.030985179329999998, + 0.016316732089999994, + 0.01306943476, + 0.05508701434999999, + 0.00044178869999999995, + 0.00057363248, + 0.00008010797999999998 + ] + }, + { + "label": "MPI_Send", + "fill": false, + "backgroundColor": "rgb(132, 186, 91)", + "borderColor": "rgb(132, 186, 91)", + "pointHoverBackgroundColor": "rgb(152, 206, 111)", + "data": [ + 0.0026891246100000004, + 0.03915455210000001, + 0.03464632763999999, + 0.03758931659999998, + 0.031813920579999995, + 0.009505304749999999, + 0.03741053309999999, + 0.02978230267999999, + 0.011333220169999995 + ] + }, + { + "label": "MPI_Rsend", + "fill": false, + "backgroundColor": "rgb(211, 94, 96)", + "borderColor": "rgb(211, 94, 96)", + "pointHoverBackgroundColor": "rgb(231, 114, 116)", + "data": [ + 0.0001244545, + 0.0005426392299999995, + 0.00036310963000000005, + 0.0025691964399999993, + 0.0016808567300000009, + 0.0009458061399999999, + 0.0022654414900000006, + 0.001634357520000001, + 0.0012958054500000003 + ] + }, + { + "label": "MPI_Allreduce", + "fill": false, + "backgroundColor": "rgb(128, 133, 133)", + "borderColor": "rgb(128, 133, 133)", + "pointHoverBackgroundColor": "rgb(148, 153, 153)", + "data": [ + 0.007774108700000001, + 0.0009000270000000001, + 0.000783923, + 0.004982716399999999, + 0.0050242134, + 0.0050294217, + 0.004505168999999999, + 0.0044152907, + 0.0040435834 + ] + }, + { + "label": "MPI_Testall", + "fill": false, + "backgroundColor": "rgb(204, 194, 16)", + "borderColor": "rgb(204, 194, 16)", + "pointHoverBackgroundColor": "rgb(224, 214, 36)", + "data": [ + 0.000022412, + 0.0000844005, + 0.007649438600000001, + 0.0003674, + 0.00020527399999999997, + 0.000304465, + 0.00044918, + 0.00065375, + 0.000091314 + ] + }, + { + "label": "MPI_Alltoallv", + "fill": false, + "backgroundColor": "rgb(171, 104, 87)", + "borderColor": "rgb(171, 104, 87)", + "pointHoverBackgroundColor": "rgb(191, 124, 107)", + "data": [ + 0.353766, + 0.007611044399999999, + 0.0003357, + 0.35349769999999997, + 0.34902859999999997, + 0.3227714, + 0.3520281, + 0.3125483, + 0.3531367 + ] + }, + { + "label": "MPI_Sendrecv_replace", + "fill": false, + "backgroundColor": "rgb(57, 106, 177)", + "borderColor": "rgb(57, 106, 177)", + "pointHoverBackgroundColor": "rgb(77, 126, 197)", + "data": [ + 0.00351119, + 0.00039553, + 0.3489224, + 0.0034451499999999993, + 0.00340246, + 0.0034103290000000006, + 0.003436558, + 0.0034279750000000006, + 0.003475887 + ] + }, + { + "label": "MPI_Reduce", + "fill": false, + "backgroundColor": "rgb(204, 37, 41)", + "borderColor": "rgb(204, 37, 41)", + "pointHoverBackgroundColor": "rgb(224, 57, 61)", + "data": [ + 0.009367889, + 0.35049559999999996, + 0.0034828090000000003, + 0.007319265669999999, + 0.008996507, + 0.00780155697, + 0.006224644700000001, + 0.00619483397, + 0.006447079670000001 + ] + }, + { + "label": "MPI_Waitall", + "fill": false, + "backgroundColor": "rgb(218, 124, 48)", + "borderColor": "rgb(218, 124, 48)", + "pointHoverBackgroundColor": "rgb(238, 144, 68)", + "data": [ + 0.000097752, + 0.00352455, + 0.010156561999999997, + 0.000677591, + 0.001103877, + 0.0008392368000000001, + 0.000639436, + 0.000531911, + 0.000107527 + ] + }, + { + "label": "MPI_Isend", + "fill": false, + "backgroundColor": "rgb(144, 103, 167)", + "borderColor": "rgb(144, 103, 167)", + "pointHoverBackgroundColor": "rgb(164, 123, 187)", + "data": [ + 0.00001549702, + 0.008793612670000001, + 0.000075102, + 0.00006485, + 0.00016999, + 0.00009489, + 0.00017881, + 0.00032806, + 0.00050354 + ] + }, + { + "label": "MPI_Comm_size", + "fill": false, + "backgroundColor": "rgb(83, 81, 84)", + "borderColor": "rgb(83, 81, 84)", + "pointHoverBackgroundColor": "rgb(103, 101, 104)", + "data": [ + 0.000035525, + 0.00011611, + 0.000034571, + 0.000036240000000000005, + 0.000036478, + 0.00004077, + 0.000028849, + 0.000043868999999999996, + 0.000038147 + ] + }, + { + "label": "MPI_Comm_rank", + "fill": false, + "backgroundColor": "rgb(107, 76, 154)", + "borderColor": "rgb(107, 76, 154)", + "pointHoverBackgroundColor": "rgb(127, 96, 174)", + "data": [ + 0.000053405999999999997, + 0.000035763, + 0.000047923, + 0.000051498, + 0.000050307, + 0.000045776000000000004, + 0.000051736, + 0.000047684, + 0.00005126 + ] + }, + { + "label": "MPI_Finalize", + "fill": false, + "backgroundColor": "rgb(146, 36, 40)", + "borderColor": "rgb(146, 36, 40)", + "pointHoverBackgroundColor": "rgb(166, 56, 60)", + "data": [0, 0.000055313000000000004, 0, 0, 0, 0, 0, 0, 0] + }, + { + "label": "MPI_Barrier", + "fill": false, + "backgroundColor": "rgb(148, 139, 61)", + "borderColor": "rgb(148, 139, 61)", + "pointHoverBackgroundColor": "rgb(168, 159, 81)", + "data": [ + 0.091458, + 0, + 0.148566, + 0.122397, + 0.110231, + 0.16341699999999998, + 0.091446, + 0.182806, + 1.05619 + ] + }, + { + "label": "MPI_Init", + "fill": false, + "backgroundColor": "rgb(114, 147, 203)", + "borderColor": "rgb(114, 147, 203)", + "pointHoverBackgroundColor": "rgb(134, 167, 223)", + "data": [0, 0.11461199999999999, 0, 0, 0, 0, 0, 0, 0] + }, + { + "label": "MPI_Alltoall", + "fill": false, + "backgroundColor": "rgb(225, 151, 76)", + "borderColor": "rgb(225, 151, 76)", + "pointHoverBackgroundColor": "rgb(245, 171, 96)", + "data": [ + 0.00045991, + 0, + 0.0015299, + 0.000078439, + 0.000094891, + 0.00067186, + 0.00009036100000000001, + 0.000095368, + 0.0033641 + ] + } + ] + }, + "balanceDataSorted": { "labels": ["8", "2", "5", "7", "1", "3", "0", "4", "6"], "datasets": [ { "label": "MPI_Bcast", "fill": false, - "backgroundColor": "rgb(171, 104, 87)", - "borderColor": "rgb(171, 104, 87)", - "pointHoverBackgroundColor": "rgb(191, 124, 107)", + "backgroundColor": "rgb(225, 151, 76)", + "borderColor": "rgb(225, 151, 76)", + "pointHoverBackgroundColor": "rgb(245, 171, 96)", "data": [ 0.03999090022, 0.00036525558000000005, @@ -3143,9 +4597,9 @@ { "label": "MPI_Isend", "fill": false, - "backgroundColor": "rgb(62, 150, 81)", - "borderColor": "rgb(62, 150, 81)", - "pointHoverBackgroundColor": "rgb(82, 170, 101)", + "backgroundColor": "rgb(144, 103, 167)", + "borderColor": "rgb(144, 103, 167)", + "pointHoverBackgroundColor": "rgb(164, 123, 187)", "data": [ 0.00008010797999999998, 0.030985179329999998, @@ -3179,9 +4633,9 @@ { "label": "MPI_Send", "fill": false, - "backgroundColor": "rgb(211, 94, 96)", - "borderColor": "rgb(211, 94, 96)", - "pointHoverBackgroundColor": "rgb(231, 114, 116)", + "backgroundColor": "rgb(132, 186, 91)", + "borderColor": "rgb(132, 186, 91)", + "pointHoverBackgroundColor": "rgb(152, 206, 111)", "data": [ 0.0012958054500000003, 0.00036310963000000005, @@ -3197,9 +4651,9 @@ { "label": "MPI_Allreduce", "fill": false, - "backgroundColor": "rgb(225, 151, 76)", - "borderColor": "rgb(225, 151, 76)", - "pointHoverBackgroundColor": "rgb(245, 171, 96)", + "backgroundColor": "rgb(128, 133, 133)", + "borderColor": "rgb(128, 133, 133)", + "pointHoverBackgroundColor": "rgb(148, 153, 153)", "data": [ 0.0040435834, 0.000783923, @@ -3215,9 +4669,9 @@ { "label": "MPI_Testall", "fill": false, - "backgroundColor": "rgb(83, 81, 84)", - "borderColor": "rgb(83, 81, 84)", - "pointHoverBackgroundColor": "rgb(103, 101, 104)", + "backgroundColor": "rgb(204, 194, 16)", + "borderColor": "rgb(204, 194, 16)", + "pointHoverBackgroundColor": "rgb(224, 214, 36)", "data": [ 0.000091314, 0.007649438600000001, @@ -3233,9 +4687,9 @@ { "label": "MPI_Alltoallv", "fill": false, - "backgroundColor": "rgb(204, 37, 41)", - "borderColor": "rgb(204, 37, 41)", - "pointHoverBackgroundColor": "rgb(224, 57, 61)", + "backgroundColor": "rgb(171, 104, 87)", + "borderColor": "rgb(171, 104, 87)", + "pointHoverBackgroundColor": "rgb(191, 124, 107)", "data": [ 0.3531367, 0.0003357, @@ -3251,9 +4705,9 @@ { "label": "MPI_Sendrecv_replace", "fill": false, - "backgroundColor": "rgb(107, 76, 154)", - "borderColor": "rgb(107, 76, 154)", - "pointHoverBackgroundColor": "rgb(127, 96, 174)", + "backgroundColor": "rgb(57, 106, 177)", + "borderColor": "rgb(57, 106, 177)", + "pointHoverBackgroundColor": "rgb(77, 126, 197)", "data": [ 0.003475887, 0.3489224, @@ -3269,9 +4723,9 @@ { "label": "MPI_Reduce", "fill": false, - "backgroundColor": "rgb(114, 147, 203)", - "borderColor": "rgb(114, 147, 203)", - "pointHoverBackgroundColor": "rgb(134, 167, 223)", + "backgroundColor": "rgb(204, 37, 41)", + "borderColor": "rgb(204, 37, 41)", + "pointHoverBackgroundColor": "rgb(224, 57, 61)", "data": [ 0.006447079670000001, 0.0034828090000000003, @@ -3287,9 +4741,9 @@ { "label": "MPI_Waitall", "fill": false, - "backgroundColor": "rgb(146, 36, 40)", - "borderColor": "rgb(146, 36, 40)", - "pointHoverBackgroundColor": "rgb(166, 56, 60)", + "backgroundColor": "rgb(218, 124, 48)", + "borderColor": "rgb(218, 124, 48)", + "pointHoverBackgroundColor": "rgb(238, 144, 68)", "data": [ 0.000107527, 0.010156561999999997, @@ -3305,9 +4759,9 @@ { "label": "MPI_Wait", "fill": false, - "backgroundColor": "rgb(144, 103, 167)", - "borderColor": "rgb(144, 103, 167)", - "pointHoverBackgroundColor": "rgb(164, 123, 187)", + "backgroundColor": "rgb(211, 94, 96)", + "borderColor": "rgb(211, 94, 96)", + "pointHoverBackgroundColor": "rgb(231, 114, 116)", "data": [ 0.00050354, 0.000075102, @@ -3323,9 +4777,9 @@ { "label": "MPI_Comm_size", "fill": false, - "backgroundColor": "rgb(144, 103, 167)", - "borderColor": "rgb(144, 103, 167)", - "pointHoverBackgroundColor": "rgb(164, 123, 187)", + "backgroundColor": "rgb(83, 81, 84)", + "borderColor": "rgb(83, 81, 84)", + "pointHoverBackgroundColor": "rgb(103, 101, 104)", "data": [ 0.000038147, 0.000034571, @@ -3341,9 +4795,9 @@ { "label": "MPI_Comm_rank", "fill": false, - "backgroundColor": "rgb(128, 133, 133)", - "borderColor": "rgb(128, 133, 133)", - "pointHoverBackgroundColor": "rgb(148, 153, 153)", + "backgroundColor": "rgb(107, 76, 154)", + "borderColor": "rgb(107, 76, 154)", + "pointHoverBackgroundColor": "rgb(127, 96, 174)", "data": [ 0.00005126, 0.000047923, @@ -3359,17 +4813,17 @@ { "label": "MPI_Finalize", "fill": false, - "backgroundColor": "rgb(225, 151, 76)", - "borderColor": "rgb(225, 151, 76)", - "pointHoverBackgroundColor": "rgb(245, 171, 96)", + "backgroundColor": "rgb(146, 36, 40)", + "borderColor": "rgb(146, 36, 40)", + "pointHoverBackgroundColor": "rgb(166, 56, 60)", "data": [0, 0, 0, 0, 0.000055313000000000004, 0, 0, 0, 0] }, { "label": "MPI_Barrier", "fill": false, - "backgroundColor": "rgb(132, 186, 91)", - "borderColor": "rgb(132, 186, 91)", - "pointHoverBackgroundColor": "rgb(152, 206, 111)", + "backgroundColor": "rgb(148, 139, 61)", + "borderColor": "rgb(148, 139, 61)", + "pointHoverBackgroundColor": "rgb(168, 159, 81)", "data": [ 1.05619, 0.148566, @@ -3385,17 +4839,17 @@ { "label": "MPI_Init", "fill": false, - "backgroundColor": "rgb(132, 186, 91)", - "borderColor": "rgb(132, 186, 91)", - "pointHoverBackgroundColor": "rgb(152, 206, 111)", + "backgroundColor": "rgb(114, 147, 203)", + "borderColor": "rgb(114, 147, 203)", + "pointHoverBackgroundColor": "rgb(134, 167, 223)", "data": [0, 0, 0, 0, 0.11461199999999999, 0, 0, 0, 0] }, { "label": "MPI_Alltoall", "fill": false, - "backgroundColor": "rgb(211, 94, 96)", - "borderColor": "rgb(211, 94, 96)", - "pointHoverBackgroundColor": "rgb(231, 114, 116)", + "backgroundColor": "rgb(225, 151, 76)", + "borderColor": "rgb(225, 151, 76)", + "pointHoverBackgroundColor": "rgb(245, 171, 96)", "data": [ 0.0033641, 0.0015299, diff --git a/ipm_raw/MDFT_04.ipm_parsed.json b/ipm_raw/MDFT_04.ipm_parsed.json index d95006b..2e6ed64 100644 --- a/ipm_raw/MDFT_04.ipm_parsed.json +++ b/ipm_raw/MDFT_04.ipm_parsed.json @@ -6,7 +6,8 @@ "walltime": "44.543065", "ntasks": 30, "nhosts": 2, - "totalWallTime": 1336.29195 + "totalWallTime": 1336.29195, + "cmdline": "./mini_dft+ipm -in MDFT_04.in -ntg 2 -ndiag 25 " }, "hosts": [ { @@ -2039,22 +2040,22 @@ "call": "MPI_Barrier", "ttot": 94.05218, "count": 71460, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Alltoallv", "ttot": 72.13986980000003, "count": 85200, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Bcast", "ttot": 8.702305571349982, "count": 124975, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Recv", @@ -2067,120 +2068,120 @@ "call": "MPI_Reduce", "ttot": 1.8574308669899993, "count": 4675, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Alltoall", "ttot": 1.35939674, "count": 30, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allreduce", "ttot": 0.9856888299999993, "count": 15585, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Sendrecv_replace", "ttot": 0.5788992759999997, "count": 3000, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Allgatherv", "ttot": 0.4045894, "count": 150, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Send", "ttot": 0.38791200883000215, "count": 100156, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Waitall", "ttot": 0.07302402299999998, "count": 110840, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Isend", "ttot": 0.04622869228999971, "count": 58803, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Testall", "ttot": 0.045018376, "count": 61194, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Wait", "ttot": 0.03936930469999999, "count": 380, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_rank", "ttot": 0.004486298999999999, "count": 9085, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Irecv", "ttot": 0.0031957780000000007, "count": 8240, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Rsend", "ttot": 0.0021026131999999998, "count": 8240, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", "ttot": 0.0016348370000000005, "count": 5220, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Allgather", "ttot": 0.0015647379999999995, "count": 90, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 30, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 30, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" } ], "mpiAnalysis": { @@ -2189,2920 +2190,3207 @@ }, "mpiCallsByTask": [ { - "nr": "25", - "ttot": 15.180775222999998, + "nr": "0", + "ttot": 3.6472267994400065, "mpiCalls": [ { - "call": "MPI_Bcast", - "ttot": 0.018339786999999996, - "count": 785, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "call": "MPI_Recv", + "ttot": 0.14031554004000005, + "count": 9995, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { - "call": "MPI_Allreduce", - "ttot": 0.018657256999999997, - "count": 47, + "call": "MPI_Bcast", + "ttot": 0.36597371700000014, + "count": 4502, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { - "call": "MPI_Alltoallv", - "ttot": 2.0961159, - "count": 2840, + "call": "MPI_Send", + "ttot": 0.04939615581999997, + "count": 768, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.076076462, + "count": 132, "color": "rgb(204, 37, 41)", "hoverColor": "rgb(224, 57, 61)" }, { - "call": "MPI_Reduce", - "ttot": 0.009502152999999998, - "count": 112, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "call": "MPI_Allreduce", + "ttot": 0.047707929, + "count": 614, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { - "call": "MPI_Comm_size", - "ttot": 0.000048876, - "count": 174, + "call": "MPI_Rsend", + "ttot": 0.00033283149999999997, + "count": 1545, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Isend", + "ttot": 0.00016427007999999998, + "count": 438, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, + { + "call": "MPI_Testall", + "ttot": 0.000253196, + "count": 484, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 2.5260930000000004, + "count": 2840, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.02236769, + "count": 120, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.00020813800000000002, + "count": 2559, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000047207, + "count": 174, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, { "call": "MPI_Comm_rank", - "ttot": 0.00017380599999999998, - "count": 287, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.00012016300000000001, + "count": 306, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 12.8334, - "count": 2372, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "ttot": 0.39912000000000003, + "count": 2384, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Allgatherv", - "ttot": 0.0106707, + "ttot": 0.011756599999999999, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Alltoall", - "ttot": 0.19381, + "ttot": 0.0070829, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.000056744, + "ttot": 0.000211, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "24", - "ttot": 15.16679234538998, + "nr": "1", + "ttot": 3.838402145290005, "mpiCalls": [ + { + "call": "MPI_Isend", + "ttot": 0.00114202188, + "count": 2031, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, { "call": "MPI_Recv", - "ttot": 0.09937703635000003, - "count": 1959, + "ttot": 0.13801575097, + "count": 8496, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Bcast", - "ttot": 0.3760174782999999, - "count": 3015, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" - }, - { - "call": "MPI_Isend", - "ttot": 0.0009581996399999999, - "count": 590, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "ttot": 0.40228116370000006, + "count": 4523, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.021939377599999997, - "count": 4975, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "ttot": 0.03440199816999997, + "count": 1792, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Reduce", - "ttot": 0.029679658500000008, - "count": 178, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.07202296387000001, + "count": 136, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Allreduce", - "ttot": 0.029086413, + "ttot": 0.046732507000000006, "count": 614, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" - }, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Rsend", + "ttot": 0.0002613067, + "count": 1545, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Testall", - "ttot": 0.0004735, - "count": 1201, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "ttot": 0.00138473, + "count": 2060, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Alltoallv", - "ttot": 2.0383728999999997, + "ttot": 2.5032631, "count": 2840, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.027322009999999997, + "ttot": 0.02238582, "count": 120, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" - }, - { - "call": "MPI_Waitall", - "ttot": 0.000514984, - "count": 4112, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Wait", - "ttot": 0.0042405030000000005, + "ttot": 0.0012807850000000002, "count": 16, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.000281573, + "count": 3074, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Comm_size", - "ttot": 0.000044108, + "ttot": 0.000063658, "count": 174, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.000113249, + "ttot": 0.000141858, "count": 306, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 12.338799999999999, + "ttot": 0.58849, "count": 2384, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Allgatherv", - "ttot": 0.0059969, + "ttot": 0.015952, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Alltoall", - "ttot": 0.1938, + "ttot": 0.010263, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.000056028, + "ttot": 0.000037909, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "26", - "ttot": 15.139874251399991, + "nr": "2", + "ttot": 3.9033235321499955, "mpiCalls": [ { - "call": "MPI_Bcast", - "ttot": 0.018434490399999996, - "count": 785, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "call": "MPI_Isend", + "ttot": 0.0016548585400000006, + "count": 2653, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { - "call": "MPI_Allreduce", - "ttot": 0.018762913, - "count": 47, + "call": "MPI_Recv", + "ttot": 0.25746989804000003, + "count": 11239, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.30501781000000006, + "count": 4544, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { - "call": "MPI_Alltoallv", - "ttot": 2.0752448, - "count": 2840, + "call": "MPI_Send", + "ttot": 0.012280082769999997, + "count": 2366, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.08417650879999998, + "count": 136, "color": "rgb(204, 37, 41)", "hoverColor": "rgb(224, 57, 61)" }, { - "call": "MPI_Reduce", - "ttot": 0.018362919999999998, - "count": 112, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "call": "MPI_Allreduce", + "ttot": 0.046882164, + "count": 614, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Rsend", + "ttot": 0.000326634, + "count": 1545, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Testall", + "ttot": 0.00161619, + "count": 2672, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Wait", + "ttot": 0.001304138, + "count": 16, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 2.532871, + "count": 2840, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.022275060000000003, + "count": 120, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.000290866, + "count": 3589, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Comm_size", - "ttot": 0.000043392, + "ttot": 0.00006127300000000001, "count": 174, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0001297, - "count": 287, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.000137802, + "count": 306, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 12.8074, - "count": 2372, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "ttot": 0.61683, + "count": 2384, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Allgatherv", - "ttot": 0.0089781, + "ttot": 0.0128682, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Alltoall", - "ttot": 0.19246, + "ttot": 0.0072229, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.000057936, + "ttot": 0.000038147, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "29", - "ttot": 15.118780812899999, + "nr": "3", + "ttot": 3.9581396891500074, "mpiCalls": [ { - "call": "MPI_Bcast", - "ttot": 0.016461075899999997, - "count": 785, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "call": "MPI_Isend", + "ttot": 0.002691499600000001, + "count": 3343, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { - "call": "MPI_Allreduce", - "ttot": 0.01817534, - "count": 47, + "call": "MPI_Recv", + "ttot": 0.33882802561999975, + "count": 13939, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.2270955614999999, + "count": 4536, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { - "call": "MPI_Alltoallv", - "ttot": 2.1128472000000005, - "count": 2840, + "call": "MPI_Send", + "ttot": 0.004431696559999998, + "count": 2333, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.053934357870000005, + "count": 136, "color": "rgb(204, 37, 41)", "hoverColor": "rgb(224, 57, 61)" }, { - "call": "MPI_Reduce", - "ttot": 0.016294459, - "count": 112, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "call": "MPI_Allreduce", + "ttot": 0.04670160200000001, + "count": 614, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Rsend", + "ttot": 0.00033021200000000003, + "count": 1545, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0017750200000000004, + "count": 18, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Testall", + "ttot": 0.00208829, + "count": 3352, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 2.483793, + "count": 2840, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.021847759999999994, + "count": 120, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.000364541, + "count": 4096, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Comm_size", - "ttot": 0.000036955, + "ttot": 0.000045538, "count": 174, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.00012350099999999998, - "count": 287, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.000139478, + "count": 306, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 12.7552, - "count": 2372, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "ttot": 0.74763, + "count": 2384, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Allgatherv", - "ttot": 0.007435300000000001, + "ttot": 0.018928900000000002, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Alltoall", - "ttot": 0.19215, + "ttot": 0.007467, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.000056982, + "ttot": 0.000047207, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "27", - "ttot": 15.102537338799996, + "nr": "4", + "ttot": 3.860952270120003, "mpiCalls": [ { - "call": "MPI_Bcast", - "ttot": 0.0184374198, - "count": 785, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "call": "MPI_Recv", + "ttot": 0.3860546355900001, + "count": 9597, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { - "call": "MPI_Allreduce", - "ttot": 0.018793909, - "count": 47, + "call": "MPI_Isend", + "ttot": 0.00268458789, + "count": 3098, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.20037346566999997, + "count": 1470, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { - "call": "MPI_Alltoallv", - "ttot": 2.0482289999999996, - "count": 2840, + "call": "MPI_Send", + "ttot": 0.0012924709700000005, + "count": 1288, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.076747092, + "count": 136, "color": "rgb(204, 37, 41)", "hoverColor": "rgb(224, 57, 61)" }, { - "call": "MPI_Reduce", - "ttot": 0.0063993930000000015, - "count": 112, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "call": "MPI_Allreduce", + "ttot": 0.04879427700000002, + "count": 614, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Testall", + "ttot": 0.0017270699999999998, + "count": 3110, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0023131349999999996, + "count": 18, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 2.5324113, + "count": 2840, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.022985994000000003, + "count": 120, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.000238662, + "count": 2567, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Comm_size", - "ttot": 0.000032902000000000004, + "ttot": 0.000055552, "count": 174, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.00011372500000000001, - "count": 287, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.000145674, + "count": 306, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 12.8093, - "count": 2372, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "ttot": 0.56452, + "count": 2384, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Allgatherv", - "ttot": 0.0057552, + "ttot": 0.013354, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Alltoall", - "ttot": 0.19542, + "ttot": 0.0072112, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.00005579, + "ttot": 0.000043154, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "28", - "ttot": 15.0909448466, + "nr": "5", + "ttot": 3.6736378575900024, "mpiCalls": [ { - "call": "MPI_Bcast", - "ttot": 0.0164520276, - "count": 785, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" - }, - { - "call": "MPI_Allreduce", - "ttot": 0.018157243, - "count": 47, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "call": "MPI_Isend", + "ttot": 0.0012843682100000002, + "count": 2028, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { - "call": "MPI_Alltoallv", - "ttot": 2.0570337999999997, - "count": 2840, + "call": "MPI_Recv", + "ttot": 0.08471575380000002, + "count": 3294, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.39343442809999996, + "count": 5017, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.011621927279999998, + "count": 3322, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.0823407592, + "count": 153, "color": "rgb(204, 37, 41)", "hoverColor": "rgb(224, 57, 61)" }, { - "call": "MPI_Reduce", - "ttot": 0.016741113000000002, - "count": 112, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "call": "MPI_Allreduce", + "ttot": 0.034559888, + "count": 614, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Testall", + "ttot": 0.0017020299999999998, + "count": 2089, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 2.4684574, + "count": 2840, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.022051499999999998, + "count": 120, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.0036200980000000004, + "count": 3589, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Wait", + "ttot": 0.00015211, + "count": 6, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.000035286, + "ttot": 0.000056506000000000004, "count": 174, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.000112295, - "count": 287, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.000132561, + "count": 306, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 12.7848, - "count": 2372, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "ttot": 0.54311, + "count": 2384, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.000212434, + "count": 515, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allgatherv", - "ttot": 0.0055160999999999995, + "ttot": 0.018011, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Alltoall", - "ttot": 0.19204, + "ttot": 0.008141, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.000056982, + "ttot": 0.000034094, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "11", - "ttot": 4.458415246620004, + "nr": "6", + "ttot": 4.0623511651500035, "mpiCalls": [ - { - "call": "MPI_Isend", - "ttot": 0.0017197050800000007, - "count": 2583, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" - }, { "call": "MPI_Recv", - "ttot": 0.09554109719999995, - "count": 6448, + "ttot": 0.09730355317000003, + "count": 6365, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, + { + "call": "MPI_Isend", + "ttot": 0.00064754768, + "count": 1015, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, { "call": "MPI_Bcast", - "ttot": 0.35703398589999985, - "count": 5553, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "ttot": 0.3614511452000003, + "count": 5038, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.01130082054, - "count": 3867, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "ttot": 0.041966303899999974, + "count": 2334, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Reduce", - "ttot": 0.05421649889999999, - "count": 178, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.08072921920000001, + "count": 157, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Allreduce", - "ttot": 0.033460516, + "ttot": 0.033949891999999995, "count": 614, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" - }, - { - "call": "MPI_Rsend", - "ttot": 0.000249622, - "count": 515, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Testall", - "ttot": 0.00216438, - "count": 2654, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "ttot": 0.00064969, + "count": 1044, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Alltoallv", - "ttot": 2.3690729, + "ttot": 2.429851, "count": 2840, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.02377956, + "ttot": 0.02362332, "count": 120, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.00192668, - "count": 4619, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.0068808, + "count": 4104, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Wait", - "ttot": 0.00060773, + "ttot": 0.00047636, "count": 12, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.000060797, + "ttot": 0.000052214, "count": 174, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.000184294, + "ttot": 0.000140904, "count": 306, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 1.47722, + "ttot": 0.9529799999999999, "count": 2384, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Irecv", - "ttot": 0.00020337300000000002, + "ttot": 0.000205283, "count": 515, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allgatherv", - "ttot": 0.0140002, + "ttot": 0.0222229, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Alltoall", - "ttot": 0.015644, + "ttot": 0.0091929, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.000029087, + "ttot": 0.000028133, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "10", - "ttot": 4.42413596099, + "nr": "7", + "ttot": 3.9400897633300054, "mpiCalls": [ { "call": "MPI_Isend", - "ttot": 0.001563553020000001, - "count": 2545, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "ttot": 0.00122570705, + "count": 2160, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Recv", - "ttot": 0.09994256927, - "count": 5889, + "ttot": 0.10235529093999997, + "count": 3545, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Bcast", - "ttot": 0.3832774769000002, - "count": 5532, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "ttot": 0.43504901280000013, + "count": 5059, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.012221041399999993, - "count": 3896, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "ttot": 0.014080982469999998, + "count": 4921, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Reduce", - "ttot": 0.09915379740000002, - "count": 174, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.06288879807, + "count": 157, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Allreduce", - "ttot": 0.034328202, + "ttot": 0.03397167200000001, "count": 614, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { - "call": "MPI_Rsend", - "ttot": 0.000240085, - "count": 515, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "call": "MPI_Wait", + "ttot": 0.001916398, + "count": 22, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Testall", - "ttot": 0.0018510599999999999, - "count": 2616, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "ttot": 0.0014286000000000001, + "count": 2195, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Alltoallv", - "ttot": 2.3602250000000002, + "ttot": 2.4383500999999996, "count": 2840, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.02310842, + "ttot": 0.02331587, "count": 120, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.001928056, - "count": 4104, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" - }, - { - "call": "MPI_Wait", - "ttot": 0.00034261, - "count": 6, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "ttot": 0.009032479, + "count": 4619, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Comm_size", - "ttot": 0.000056028, + "ttot": 0.000058411999999999996, "count": 174, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.000151156, + "ttot": 0.000142571, "count": 306, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 1.37141, + "ttot": 0.79488, "count": 2384, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Irecv", - "ttot": 0.00023079100000000002, + "ttot": 0.000154729, "count": 515, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allgatherv", - "ttot": 0.014430100000000001, + "ttot": 0.0126961, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Alltoall", - "ttot": 0.01963, + "ttot": 0.008513, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.000046015, + "ttot": 0.000030041, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "9", - "ttot": 4.266654279780003, + "nr": "8", + "ttot": 4.154536965130004, "mpiCalls": [ + { + "call": "MPI_Isend", + "ttot": 0.0015988278300000014, + "count": 2335, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, { "call": "MPI_Recv", - "ttot": 0.28681193293999985, - "count": 3444, + "ttot": 0.21082618844000023, + "count": 4193, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, - { - "call": "MPI_Isend", - "ttot": 0.0012752978400000007, - "count": 1575, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" - }, { "call": "MPI_Bcast", - "ttot": 0.29373735481000013, - "count": 1985, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "ttot": 0.3497808314, + "count": 5051, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.004048104819999997, - "count": 3865, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "ttot": 0.008325826159999994, + "count": 5411, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Reduce", - "ttot": 0.05109300736999999, + "ttot": 0.07450328030000004, "count": 157, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Allreduce", - "ttot": 0.036421007000000005, + "ttot": 0.034419137, "count": 614, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Testall", - "ttot": 0.00089812, - "count": 1601, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "ttot": 0.00158287, + "count": 2354, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Wait", - "ttot": 0.0035202460000000003, + "ttot": 0.002339834, "count": 24, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Alltoallv", - "ttot": 2.3513659, + "ttot": 2.388613, "count": 2840, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.024294360999999997, + "ttot": 0.02280424, "count": 120, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.00025225000000000003, - "count": 3082, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.008195835, + "count": 5126, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Comm_size", - "ttot": 0.000055551, + "ttot": 0.000047445000000000004, "count": 174, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.00015234500000000002, + "ttot": 0.000138283, "count": 306, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 1.18084, + "ttot": 1.0223900000000001, "count": 2384, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.00016832700000000002, + "count": 515, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allgatherv", - "ttot": 0.014351, + "ttot": 0.0125329, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Alltoall", - "ttot": 0.017508, + "ttot": 0.016237, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.000029802, + "ttot": 0.00003314, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "8", - "ttot": 4.154536965130004, + "nr": "9", + "ttot": 4.266654279780003, "mpiCalls": [ - { - "call": "MPI_Isend", - "ttot": 0.0015988278300000014, - "count": 2335, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" - }, { "call": "MPI_Recv", - "ttot": 0.21082618844000023, - "count": 4193, + "ttot": 0.28681193293999985, + "count": 3444, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, + { + "call": "MPI_Isend", + "ttot": 0.0012752978400000007, + "count": 1575, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, { "call": "MPI_Bcast", - "ttot": 0.3497808314, - "count": 5051, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "ttot": 0.29373735481000013, + "count": 1985, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.008325826159999994, - "count": 5411, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "ttot": 0.004048104819999997, + "count": 3865, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Reduce", - "ttot": 0.07450328030000004, + "ttot": 0.05109300736999999, "count": 157, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Allreduce", - "ttot": 0.034419137, + "ttot": 0.036421007000000005, "count": 614, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Testall", - "ttot": 0.00158287, - "count": 2354, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "ttot": 0.00089812, + "count": 1601, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Wait", - "ttot": 0.002339834, + "ttot": 0.0035202460000000003, "count": 24, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Alltoallv", - "ttot": 2.388613, + "ttot": 2.3513659, "count": 2840, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.02280424, + "ttot": 0.024294360999999997, "count": 120, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.008195835, - "count": 5126, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.00025225000000000003, + "count": 3082, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Comm_size", - "ttot": 0.000047445000000000004, + "ttot": 0.000055551, "count": 174, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.000138283, + "ttot": 0.00015234500000000002, "count": 306, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 1.0223900000000001, + "ttot": 1.18084, "count": 2384, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" - }, - { - "call": "MPI_Irecv", - "ttot": 0.00016832700000000002, - "count": 515, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Allgatherv", - "ttot": 0.0125329, + "ttot": 0.014351, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Alltoall", - "ttot": 0.016237, + "ttot": 0.017508, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.00003314, + "ttot": 0.000029802, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "20", - "ttot": 4.138521442089999, + "nr": "10", + "ttot": 4.42413596099, "mpiCalls": [ { "call": "MPI_Isend", - "ttot": 0.0030183815900000003, - "count": 3074, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "ttot": 0.001563553020000001, + "count": 2545, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Recv", - "ttot": 0.09860766696999994, - "count": 3891, + "ttot": 0.09994256927, + "count": 5889, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Bcast", - "ttot": 0.3628773542, - "count": 6047, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "ttot": 0.3832774769000002, + "count": 5532, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.016948453929999992, - "count": 4435, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "ttot": 0.012221041399999993, + "count": 3896, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Reduce", - "ttot": 0.09369275040000002, + "ttot": 0.09915379740000002, "count": 174, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Allreduce", - "ttot": 0.028680570000000002, + "ttot": 0.034328202, "count": 614, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { - "call": "MPI_Testall", - "ttot": 0.0024476299999999997, - "count": 3166, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "call": "MPI_Rsend", + "ttot": 0.000240085, + "count": 515, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { - "call": "MPI_Wait", - "ttot": 0.0010528520000000002, - "count": 8, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "call": "MPI_Testall", + "ttot": 0.0018510599999999999, + "count": 2616, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Alltoallv", - "ttot": 2.4458677000000004, + "ttot": 2.3602250000000002, "count": 2840, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.022033470000000003, + "ttot": 0.02310842, "count": 120, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.003832543, - "count": 4619, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.001928056, + "count": 4104, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Wait", + "ttot": 0.00034261, + "count": 6, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.000061512, + "ttot": 0.000056028, "count": 174, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.000172853, + "ttot": 0.000151156, "count": 306, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 1.03058, + "ttot": 1.37141, "count": 2384, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Irecv", - "ttot": 0.000204797, + "ttot": 0.00023079100000000002, "count": 515, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allgatherv", - "ttot": 0.0143719, + "ttot": 0.014430100000000001, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Alltoall", - "ttot": 0.01403, + "ttot": 0.01963, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.000041008, + "ttot": 0.000046015, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "23", - "ttot": 4.071147262480004, + "nr": "11", + "ttot": 4.458415246620004, "mpiCalls": [ { "call": "MPI_Isend", - "ttot": 0.0030264877000000016, - "count": 3458, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "ttot": 0.0017197050800000007, + "count": 2583, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Recv", - "ttot": 0.07483833734999999, - "count": 6343, + "ttot": 0.09554109719999995, + "count": 6448, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Bcast", - "ttot": 0.28945190719999997, - "count": 6081, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "ttot": 0.35703398589999985, + "count": 5553, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.014582879529999995, - "count": 5992, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "ttot": 0.01130082054, + "count": 3867, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Reduce", - "ttot": 0.06353811869999998, + "ttot": 0.05421649889999999, "count": 178, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Allreduce", - "ttot": 0.030149267, + "ttot": 0.033460516, "count": 614, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { - "call": "MPI_Testall", - "ttot": 0.0036125, - "count": 3686, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "call": "MPI_Rsend", + "ttot": 0.000249622, + "count": 515, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { - "call": "MPI_Wait", - "ttot": 0.0018603750000000003, - "count": 16, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "call": "MPI_Testall", + "ttot": 0.00216438, + "count": 2654, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Alltoallv", - "ttot": 2.5368624000000004, + "ttot": 2.3690729, "count": 2840, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.023386797, + "ttot": 0.02377956, "count": 120, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.00264458, - "count": 6156, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.00192668, + "count": 4619, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Wait", + "ttot": 0.00060773, + "count": 12, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.00006580400000000001, + "ttot": 0.000060797, "count": 174, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.000175475, + "ttot": 0.000184294, "count": 306, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 1.00302, + "ttot": 1.47722, "count": 2384, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Irecv", - "ttot": 0.00021124000000000002, + "ttot": 0.00020337300000000002, "count": 515, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allgatherv", - "ttot": 0.0130761, + "ttot": 0.0140002, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Alltoall", - "ttot": 0.010614, + "ttot": 0.015644, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.000030994, + "ttot": 0.000029087, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "6", - "ttot": 4.0623511651500035, + "nr": "12", + "ttot": 3.619460405840004, "mpiCalls": [ + { + "call": "MPI_Isend", + "ttot": 0.00084686134, + "count": 1116, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, { "call": "MPI_Recv", - "ttot": 0.09730355317000003, - "count": 6365, + "ttot": 0.15045735587999992, + "count": 9686, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, - { - "call": "MPI_Isend", - "ttot": 0.00064754768, - "count": 1015, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" - }, { "call": "MPI_Bcast", - "ttot": 0.3614511452000003, - "count": 5038, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "ttot": 0.30963705800000013, + "count": 5574, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.041966303899999974, - "count": 2334, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "ttot": 0.017166340419999992, + "count": 3916, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Reduce", - "ttot": 0.08072921920000001, - "count": 157, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.0730197522, + "count": 178, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Allreduce", - "ttot": 0.033949891999999995, + "ttot": 0.033831008, "count": 614, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Rsend", + "ttot": 0.00020575499999999998, + "count": 515, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Testall", - "ttot": 0.00064969, - "count": 1044, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "ttot": 0.00075125, + "count": 1143, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Alltoallv", - "ttot": 2.429851, + "ttot": 2.5258039, "count": 2840, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.02362332, + "ttot": 0.023230960000000002, "count": 120, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.0068808, - "count": 4104, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.002076403, + "count": 5134, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Wait", - "ttot": 0.00047636, + "ttot": 0.00092626, "count": 12, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.000052214, + "ttot": 0.000066995, "count": 174, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.000140904, + "ttot": 0.000174283, "count": 306, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 0.9529799999999999, + "ttot": 0.46386, "count": 2384, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Irecv", - "ttot": 0.000205283, + "ttot": 0.00019502999999999998, "count": 515, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allgatherv", - "ttot": 0.0222229, + "ttot": 0.016999, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Alltoall", - "ttot": 0.0091929, + "ttot": 0.00017214, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.000028133, + "ttot": 0.000040054, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "21", - "ttot": 4.06024849422, + "nr": "13", + "ttot": 3.7626877940600063, "mpiCalls": [ { "call": "MPI_Isend", - "ttot": 0.004452974189999998, - "count": 3112, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "ttot": 0.0019416832400000008, + "count": 2866, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Recv", - "ttot": 0.08907442022999999, - "count": 4446, + "ttot": 0.12496667618999993, + "count": 7318, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Bcast", - "ttot": 0.3396970141000001, - "count": 6068, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "ttot": 0.40744342710000014, + "count": 5566, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.015642883899999998, - "count": 4439, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "ttot": 0.008807901759999997, + "count": 5933, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Reduce", - "ttot": 0.08049437579999999, + "ttot": 0.06126538177000003, "count": 178, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Allreduce", - "ttot": 0.030260977000000005, + "ttot": 0.033992262, "count": 614, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { - "call": "MPI_Testall", - "ttot": 0.00237723, - "count": 3202, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "call": "MPI_Rsend", + "ttot": 0.000156167, + "count": 515, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { - "call": "MPI_Wait", - "ttot": 0.0013470630000000001, - "count": 14, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "call": "MPI_Testall", + "ttot": 0.00268436, + "count": 2901, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Alltoallv", - "ttot": 2.5291612, + "ttot": 2.5603131999999995, "count": 2840, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Wait", + "ttot": 0.003250387, + "count": 24, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.023686212, + "ttot": 0.022717599999999998, "count": 120, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.004140595, - "count": 5134, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.003756967, + "count": 5641, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Comm_size", - "ttot": 0.000058413, + "ttot": 0.000060796, "count": 174, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.00018549000000000001, + "ttot": 0.00016665799999999998, "count": 306, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 0.90554, + "ttot": 0.51394, "count": 2384, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Irecv", - "ttot": 0.000220539, + "ttot": 0.000154258, "count": 515, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allgatherv", - "ttot": 0.0180309, + "ttot": 0.0123902, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Alltoall", - "ttot": 0.015831, + "ttot": 0.004636, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.000047207, + "ttot": 0.000043869, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "3", - "ttot": 3.9581396891500074, + "nr": "14", + "ttot": 3.878083369769997, "mpiCalls": [ - { - "call": "MPI_Isend", - "ttot": 0.002691499600000001, - "count": 3343, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" - }, { "call": "MPI_Recv", - "ttot": 0.33882802561999975, - "count": 13939, + "ttot": 0.20581636081999996, + "count": 6060, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, + { + "call": "MPI_Isend", + "ttot": 0.0013763816400000001, + "count": 2106, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, { "call": "MPI_Bcast", - "ttot": 0.2270955614999999, - "count": 4536, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "ttot": 0.3674635718000004, + "count": 2500, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { - "call": "MPI_Send", - "ttot": 0.004431696559999998, - "count": 2333, + "call": "MPI_Wait", + "ttot": 0.0026798200000000003, + "count": 24, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, + { + "call": "MPI_Send", + "ttot": 0.006969034509999997, + "count": 4408, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, { "call": "MPI_Reduce", - "ttot": 0.053934357870000005, - "count": 136, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.06916353399999998, + "count": 178, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Allreduce", - "ttot": 0.04670160200000001, + "ttot": 0.035320574, "count": 614, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { - "call": "MPI_Rsend", - "ttot": 0.00033021200000000003, - "count": 1545, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" - }, - { - "call": "MPI_Wait", - "ttot": 0.0017750200000000004, - "count": 18, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" - }, - { - "call": "MPI_Testall", - "ttot": 0.00208829, - "count": 3352, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "call": "MPI_Testall", + "ttot": 0.00134607, + "count": 2153, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Alltoallv", - "ttot": 2.483793, + "ttot": 2.4740289, "count": 2840, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.021847759999999994, + "ttot": 0.023617959, "count": 120, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.000364541, - "count": 4096, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.000293498, + "count": 3597, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Comm_size", - "ttot": 0.000045538, + "ttot": 0.000056744, "count": 174, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.000139478, + "ttot": 0.00016378900000000001, "count": 306, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 0.74763, + "ttot": 0.67306, "count": 2384, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Allgatherv", - "ttot": 0.018928900000000002, + "ttot": 0.013703, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Alltoall", - "ttot": 0.007467, + "ttot": 0.002996, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.000047207, + "ttot": 0.000028133, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "7", - "ttot": 3.9400897633300054, + "nr": "15", + "ttot": 3.552499961870005, "mpiCalls": [ { "call": "MPI_Isend", - "ttot": 0.00122570705, - "count": 2160, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "ttot": 0.0027678438999999993, + "count": 3074, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Recv", - "ttot": 0.10235529093999997, - "count": 3545, + "ttot": 0.09390273037999995, + "count": 3867, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Bcast", - "ttot": 0.43504901280000013, - "count": 5059, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "ttot": 0.36574503499999994, + "count": 6047, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.014080982469999998, - "count": 4921, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "ttot": 0.015712499490000004, + "count": 4466, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Reduce", - "ttot": 0.06288879807, - "count": 157, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.0744807761, + "count": 174, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Allreduce", - "ttot": 0.03397167200000001, + "ttot": 0.032643979999999996, "count": 614, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" - }, - { - "call": "MPI_Wait", - "ttot": 0.001916398, - "count": 22, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Testall", - "ttot": 0.0014286000000000001, - "count": 2195, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "ttot": 0.00248865, + "count": 3153, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Alltoallv", - "ttot": 2.4383500999999996, + "ttot": 2.4555954, "count": 2840, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.02331587, + "ttot": 0.0230627, "count": 120, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.009032479, + "ttot": 0.004184209, "count": 4619, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Wait", + "ttot": 0.00053191, + "count": 8, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.000058411999999999996, + "ttot": 0.00006342, "count": 174, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.000142571, + "ttot": 0.00016594, "count": 306, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 0.79488, + "ttot": 0.4603, "count": 2384, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Irecv", - "ttot": 0.000154729, + "ttot": 0.00020861300000000002, "count": 515, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allgatherv", - "ttot": 0.0126961, + "ttot": 0.0147382, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Alltoall", - "ttot": 0.008513, + "ttot": 0.0058711, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.000030041, + "ttot": 0.000036955, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "2", - "ttot": 3.9033235321499955, + "nr": "16", + "ttot": 3.582015655030002, "mpiCalls": [ { "call": "MPI_Isend", - "ttot": 0.0016548585400000006, - "count": 2653, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "ttot": 0.0030350798399999975, + "count": 3112, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Recv", - "ttot": 0.25746989804000003, - "count": 11239, + "ttot": 0.09041141605999999, + "count": 5444, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Bcast", - "ttot": 0.30501781000000006, - "count": 4544, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "ttot": 0.32921168650000027, + "count": 6068, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.012280082769999997, - "count": 2366, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "ttot": 0.01483176343, + "count": 4462, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Reduce", - "ttot": 0.08417650879999998, - "count": 136, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.09116575120000003, + "count": 178, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Allreduce", - "ttot": 0.046882164, + "ttot": 0.032398224999999996, "count": 614, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" - }, - { - "call": "MPI_Rsend", - "ttot": 0.000326634, - "count": 1545, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Testall", - "ttot": 0.00161619, - "count": 2672, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" - }, - { - "call": "MPI_Wait", - "ttot": 0.001304138, - "count": 16, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "ttot": 0.00277611, + "count": 3195, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Alltoallv", - "ttot": 2.532871, + "ttot": 2.5792289, "count": 2840, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.022275060000000003, + "ttot": 0.02370385, "count": 120, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.000290866, - "count": 3589, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.0042838600000000004, + "count": 5134, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Wait", + "ttot": 0.00088549, + "count": 14, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.00006127300000000001, + "ttot": 0.000059604999999999996, "count": 174, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.000137802, + "ttot": 0.000149962, "count": 306, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 0.61683, + "ttot": 0.39481, "count": 2384, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.00021982599999999998, + "count": 515, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allgatherv", - "ttot": 0.0128682, + "ttot": 0.014044000000000001, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Alltoall", - "ttot": 0.0072229, + "ttot": 0.00058794, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.000038147, + "ttot": 0.00021219, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "14", - "ttot": 3.878083369769997, + "nr": "17", + "ttot": 3.5268570121799994, "mpiCalls": [ + { + "call": "MPI_Isend", + "ttot": 0.0022068000700000007, + "count": 3226, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, { "call": "MPI_Recv", - "ttot": 0.20581636081999996, - "count": 6060, + "ttot": 0.09404491123, + "count": 5608, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, - { - "call": "MPI_Isend", - "ttot": 0.0013763816400000001, - "count": 2106, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" - }, { "call": "MPI_Bcast", - "ttot": 0.3674635718000004, - "count": 2500, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" - }, - { - "call": "MPI_Wait", - "ttot": 0.0026798200000000003, - "count": 24, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "ttot": 0.3056323394000001, + "count": 6089, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.006969034509999997, - "count": 4408, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "ttot": 0.015391573180000003, + "count": 5498, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Reduce", - "ttot": 0.06916353399999998, + "ttot": 0.06847719229999999, "count": 178, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Allreduce", - "ttot": 0.035320574, + "ttot": 0.032142491999999995, "count": 614, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Testall", - "ttot": 0.00134607, - "count": 2153, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "ttot": 0.00320621, + "count": 3374, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Alltoallv", - "ttot": 2.4740289, + "ttot": 2.5534999000000003, "count": 2840, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.023617959, + "ttot": 0.02259635, "count": 120, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.000293498, - "count": 3597, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.00421521, + "count": 5649, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Wait", + "ttot": 0.00096893, + "count": 14, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.000056744, + "ttot": 0.00006628, "count": 174, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.00016378900000000001, + "ttot": 0.000153301, "count": 306, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 0.67306, + "ttot": 0.40956000000000004, "count": 2384, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.000203849, + "count": 515, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allgatherv", - "ttot": 0.013703, + "ttot": 0.014267799999999999, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Alltoall", - "ttot": 0.002996, + "ttot": 0.00019288, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.000028133, + "ttot": 0.000030994, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "4", - "ttot": 3.860952270120003, + "nr": "18", + "ttot": 3.671179717520001, "mpiCalls": [ { "call": "MPI_Recv", - "ttot": 0.3860546355900001, - "count": 9597, + "ttot": 0.08991161033999999, + "count": 7209, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Isend", - "ttot": 0.00268458789, - "count": 3098, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "ttot": 0.0007910695199999998, + "count": 1376, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.20037346566999997, - "count": 1470, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "ttot": 0.32651335020000005, + "count": 6081, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.0012924709700000005, - "count": 1288, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "ttot": 0.012358956759999996, + "count": 4997, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Reduce", - "ttot": 0.076747092, - "count": 136, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.08108237669999999, + "count": 178, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Allreduce", - "ttot": 0.04879427700000002, + "ttot": 0.032056477, "count": 614, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Testall", - "ttot": 0.0017270699999999998, - "count": 3110, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" - }, - { - "call": "MPI_Wait", - "ttot": 0.0023131349999999996, - "count": 18, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "ttot": 0.00094652, + "count": 1684, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Alltoallv", - "ttot": 2.5324113, + "ttot": 2.5800741000000005, "count": 2840, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.022985994000000003, + "ttot": 0.0218418, "count": 120, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.000238662, - "count": 2567, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.005577754, + "count": 6156, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0011909, + "count": 16, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.000055552, + "ttot": 0.000058889, "count": 174, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.000145674, + "ttot": 0.000162367, "count": 306, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 0.56452, + "ttot": 0.50495, "count": 2384, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.00019336, + "count": 515, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allgatherv", - "ttot": 0.013354, + "ttot": 0.0122061, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Alltoall", - "ttot": 0.0072112, + "ttot": 0.001235, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.000043154, + "ttot": 0.000029087, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "1", - "ttot": 3.838402145290005, + "nr": "19", + "ttot": 3.7635104877899965, "mpiCalls": [ - { - "call": "MPI_Isend", - "ttot": 0.00114202188, - "count": 2031, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" - }, { "call": "MPI_Recv", - "ttot": 0.13801575097, - "count": 8496, + "ttot": 0.10219522712000004, + "count": 3986, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, + { + "call": "MPI_Isend", + "ttot": 0.0018050653900000013, + "count": 2674, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, { "call": "MPI_Bcast", - "ttot": 0.40228116370000006, - "count": 4523, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "ttot": 0.44718499747, + "count": 3015, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.03440199816999997, - "count": 1792, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "ttot": 0.006602270639999999, + "count": 4988, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Reduce", - "ttot": 0.07202296387000001, - "count": 136, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.07728218146999999, + "count": 178, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Allreduce", - "ttot": 0.046732507000000006, + "ttot": 0.034100275, "count": 614, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { - "call": "MPI_Rsend", - "ttot": 0.0002613067, - "count": 1545, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "call": "MPI_Wait", + "ttot": 0.0027177386999999997, + "count": 26, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Testall", - "ttot": 0.00138473, - "count": 2060, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "ttot": 0.00161334, + "count": 2749, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Alltoallv", - "ttot": 2.5032631, + "ttot": 2.6015091000000004, "count": 2840, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.02238582, + "ttot": 0.023766670000000004, "count": 120, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" - }, - { - "call": "MPI_Wait", - "ttot": 0.0012807850000000002, - "count": 16, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.000281573, - "count": 3074, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.000328062, + "count": 4112, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Comm_size", - "ttot": 0.000063658, + "ttot": 0.000055313000000000004, "count": 174, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.000141858, + "ttot": 0.00016212599999999999, "count": 306, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 0.58849, + "ttot": 0.44811999999999996, "count": 2384, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Allgatherv", - "ttot": 0.015952, + "ttot": 0.015703099999999998, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Alltoall", - "ttot": 0.010263, + "ttot": 0.00033498, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.000037909, + "ttot": 0.000030041, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "19", - "ttot": 3.7635104877899965, + "nr": "20", + "ttot": 4.138521442089999, "mpiCalls": [ - { - "call": "MPI_Recv", - "ttot": 0.10219522712000004, - "count": 3986, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Isend", - "ttot": 0.0018050653900000013, - "count": 2674, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "ttot": 0.0030183815900000003, + "count": 3074, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 0.09860766696999994, + "count": 3891, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Bcast", - "ttot": 0.44718499747, - "count": 3015, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "ttot": 0.3628773542, + "count": 6047, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.006602270639999999, - "count": 4988, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "ttot": 0.016948453929999992, + "count": 4435, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Reduce", - "ttot": 0.07728218146999999, - "count": 178, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.09369275040000002, + "count": 174, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Allreduce", - "ttot": 0.034100275, + "ttot": 0.028680570000000002, "count": 614, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { - "call": "MPI_Wait", - "ttot": 0.0027177386999999997, - "count": 26, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "call": "MPI_Testall", + "ttot": 0.0024476299999999997, + "count": 3166, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { - "call": "MPI_Testall", - "ttot": 0.00161334, - "count": 2749, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "call": "MPI_Wait", + "ttot": 0.0010528520000000002, + "count": 8, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Alltoallv", - "ttot": 2.6015091000000004, + "ttot": 2.4458677000000004, "count": 2840, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.023766670000000004, + "ttot": 0.022033470000000003, "count": 120, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.000328062, - "count": 4112, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.003832543, + "count": 4619, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Comm_size", - "ttot": 0.000055313000000000004, + "ttot": 0.000061512, "count": 174, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.00016212599999999999, + "ttot": 0.000172853, "count": 306, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 0.44811999999999996, + "ttot": 1.03058, "count": 2384, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.000204797, + "count": 515, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allgatherv", - "ttot": 0.015703099999999998, + "ttot": 0.0143719, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Alltoall", - "ttot": 0.00033498, + "ttot": 0.01403, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.000030041, + "ttot": 0.000041008, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "13", - "ttot": 3.7626877940600063, + "nr": "21", + "ttot": 4.06024849422, "mpiCalls": [ { "call": "MPI_Isend", - "ttot": 0.0019416832400000008, - "count": 2866, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "ttot": 0.004452974189999998, + "count": 3112, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Recv", - "ttot": 0.12496667618999993, - "count": 7318, + "ttot": 0.08907442022999999, + "count": 4446, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Bcast", - "ttot": 0.40744342710000014, - "count": 5566, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "ttot": 0.3396970141000001, + "count": 6068, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.008807901759999997, - "count": 5933, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "ttot": 0.015642883899999998, + "count": 4439, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Reduce", - "ttot": 0.06126538177000003, + "ttot": 0.08049437579999999, "count": 178, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Allreduce", - "ttot": 0.033992262, + "ttot": 0.030260977000000005, "count": 614, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { - "call": "MPI_Rsend", - "ttot": 0.000156167, - "count": 515, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "call": "MPI_Testall", + "ttot": 0.00237723, + "count": 3202, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { - "call": "MPI_Testall", - "ttot": 0.00268436, - "count": 2901, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "call": "MPI_Wait", + "ttot": 0.0013470630000000001, + "count": 14, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Alltoallv", - "ttot": 2.5603131999999995, + "ttot": 2.5291612, "count": 2840, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" - }, - { - "call": "MPI_Wait", - "ttot": 0.003250387, - "count": 24, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.022717599999999998, + "ttot": 0.023686212, "count": 120, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.003756967, - "count": 5641, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.004140595, + "count": 5134, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Comm_size", - "ttot": 0.000060796, + "ttot": 0.000058413, "count": 174, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.00016665799999999998, + "ttot": 0.00018549000000000001, "count": 306, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 0.51394, + "ttot": 0.90554, "count": 2384, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Irecv", - "ttot": 0.000154258, + "ttot": 0.000220539, "count": 515, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allgatherv", - "ttot": 0.0123902, + "ttot": 0.0180309, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" - }, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, { "call": "MPI_Alltoall", - "ttot": 0.004636, + "ttot": 0.015831, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.000043869, + "ttot": 0.000047207, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, @@ -5114,8 +5402,8 @@ "call": "MPI_Isend", "ttot": 0.002349619530000001, "count": 3215, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Recv", @@ -5128,1209 +5416,5514 @@ "call": "MPI_Bcast", "ttot": 0.3127995983999998, "count": 6089, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", "ttot": 0.015590662820000002, "count": 5484, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Reduce", "ttot": 0.05890623486999999, "count": 178, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Allreduce", "ttot": 0.030550855000000002, "count": 614, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Testall", "ttot": 0.00294878, "count": 3356, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Wait", "ttot": 0.0016887099999999997, "count": 14, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Alltoallv", "ttot": 2.4857148, "count": 2840, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Sendrecv_replace", "ttot": 0.023093303000000003, "count": 120, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", "ttot": 0.00395538, "count": 5649, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Comm_size", "ttot": 0.000059366, "count": 174, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", "ttot": 0.00016069, "count": 306, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", "ttot": 0.65612, "count": 2384, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Irecv", "ttot": 0.00020932900000000001, "count": 515, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allgatherv", "ttot": 0.0196029, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Alltoall", "ttot": 0.0091028, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", "ttot": 0.000046015, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "5", - "ttot": 3.6736378575900024, + "nr": "23", + "ttot": 4.071147262480004, "mpiCalls": [ { "call": "MPI_Isend", - "ttot": 0.0012843682100000002, - "count": 2028, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "ttot": 0.0030264877000000016, + "count": 3458, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Recv", - "ttot": 0.08471575380000002, - "count": 3294, + "ttot": 0.07483833734999999, + "count": 6343, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Bcast", - "ttot": 0.39343442809999996, - "count": 5017, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "ttot": 0.28945190719999997, + "count": 6081, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.011621927279999998, - "count": 3322, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "ttot": 0.014582879529999995, + "count": 5992, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Reduce", - "ttot": 0.0823407592, - "count": 153, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.06353811869999998, + "count": 178, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Allreduce", - "ttot": 0.034559888, + "ttot": 0.030149267, "count": 614, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Testall", - "ttot": 0.0017020299999999998, - "count": 2089, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "ttot": 0.0036125, + "count": 3686, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0018603750000000003, + "count": 16, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Alltoallv", - "ttot": 2.4684574, + "ttot": 2.5368624000000004, "count": 2840, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.022051499999999998, + "ttot": 0.023386797, "count": 120, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.0036200980000000004, - "count": 3589, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" - }, - { - "call": "MPI_Wait", - "ttot": 0.00015211, - "count": 6, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "ttot": 0.00264458, + "count": 6156, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Comm_size", - "ttot": 0.000056506000000000004, + "ttot": 0.00006580400000000001, "count": 174, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.000132561, + "ttot": 0.000175475, "count": 306, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 0.54311, + "ttot": 1.00302, "count": 2384, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Irecv", - "ttot": 0.000212434, + "ttot": 0.00021124000000000002, "count": 515, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allgatherv", - "ttot": 0.018011, + "ttot": 0.0130761, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Alltoall", - "ttot": 0.008141, + "ttot": 0.010614, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.000034094, + "ttot": 0.000030994, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "18", - "ttot": 3.671179717520001, + "nr": "24", + "ttot": 15.16679234538998, "mpiCalls": [ { "call": "MPI_Recv", - "ttot": 0.08991161033999999, - "count": 7209, + "ttot": 0.09937703635000003, + "count": 1959, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, - { - "call": "MPI_Isend", - "ttot": 0.0007910695199999998, - "count": 1376, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" - }, { "call": "MPI_Bcast", - "ttot": 0.32651335020000005, - "count": 6081, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "ttot": 0.3760174782999999, + "count": 3015, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { - "call": "MPI_Send", - "ttot": 0.012358956759999996, - "count": 4997, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "call": "MPI_Isend", + "ttot": 0.0009581996399999999, + "count": 590, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { - "call": "MPI_Reduce", - "ttot": 0.08108237669999999, + "call": "MPI_Send", + "ttot": 0.021939377599999997, + "count": 4975, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.029679658500000008, "count": 178, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Allreduce", - "ttot": 0.032056477, + "ttot": 0.029086413, "count": 614, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Testall", - "ttot": 0.00094652, - "count": 1684, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "ttot": 0.0004735, + "count": 1201, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Alltoallv", - "ttot": 2.5800741000000005, + "ttot": 2.0383728999999997, "count": 2840, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.0218418, + "ttot": 0.027322009999999997, "count": 120, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.005577754, - "count": 6156, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.000514984, + "count": 4112, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Wait", - "ttot": 0.0011909, + "ttot": 0.0042405030000000005, "count": 16, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.000058889, + "ttot": 0.000044108, "count": 174, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.000162367, + "ttot": 0.000113249, "count": 306, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 0.50495, + "ttot": 12.338799999999999, "count": 2384, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" - }, - { - "call": "MPI_Irecv", - "ttot": 0.00019336, - "count": 515, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Allgatherv", - "ttot": 0.0122061, + "ttot": 0.0059969, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Alltoall", - "ttot": 0.001235, + "ttot": 0.1938, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.000029087, + "ttot": 0.000056028, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "0", - "ttot": 3.6472267994400065, + "nr": "25", + "ttot": 15.180775222999998, "mpiCalls": [ - { - "call": "MPI_Recv", - "ttot": 0.14031554004000005, - "count": 9995, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Bcast", - "ttot": 0.36597371700000014, - "count": 4502, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" - }, - { - "call": "MPI_Send", - "ttot": 0.04939615581999997, - "count": 768, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, - { - "call": "MPI_Reduce", - "ttot": 0.076076462, - "count": 132, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, - { - "call": "MPI_Allreduce", - "ttot": 0.047707929, - "count": 614, + "ttot": 0.018339786999999996, + "count": 785, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { - "call": "MPI_Rsend", - "ttot": 0.00033283149999999997, - "count": 1545, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" - }, - { - "call": "MPI_Isend", - "ttot": 0.00016427007999999998, - "count": 438, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" - }, - { - "call": "MPI_Testall", - "ttot": 0.000253196, - "count": 484, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "call": "MPI_Allreduce", + "ttot": 0.018657256999999997, + "count": 47, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoallv", - "ttot": 2.5260930000000004, + "ttot": 2.0961159, "count": 2840, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" - }, - { - "call": "MPI_Sendrecv_replace", - "ttot": 0.02236769, - "count": 120, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { - "call": "MPI_Waitall", - "ttot": 0.00020813800000000002, - "count": 2559, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "call": "MPI_Reduce", + "ttot": 0.009502152999999998, + "count": 112, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Comm_size", - "ttot": 0.000047207, + "ttot": 0.000048876, "count": 174, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.00012016300000000001, - "count": 306, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.00017380599999999998, + "count": 287, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 0.39912000000000003, - "count": 2384, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "ttot": 12.8334, + "count": 2372, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Allgatherv", - "ttot": 0.011756599999999999, + "ttot": 0.0106707, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Alltoall", - "ttot": 0.0070829, + "ttot": 0.19381, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.000211, + "ttot": 0.000056744, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "12", - "ttot": 3.619460405840004, + "nr": "26", + "ttot": 15.139874251399991, "mpiCalls": [ { - "call": "MPI_Isend", - "ttot": 0.00084686134, - "count": 1116, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "call": "MPI_Bcast", + "ttot": 0.018434490399999996, + "count": 785, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { - "call": "MPI_Recv", - "ttot": 0.15045735587999992, - "count": 9686, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "call": "MPI_Allreduce", + "ttot": 0.018762913, + "count": 47, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { - "call": "MPI_Bcast", - "ttot": 0.30963705800000013, - "count": 5574, + "call": "MPI_Alltoallv", + "ttot": 2.0752448, + "count": 2840, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, - { - "call": "MPI_Send", - "ttot": 0.017166340419999992, - "count": 3916, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Reduce", - "ttot": 0.0730197522, - "count": 178, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, - { - "call": "MPI_Allreduce", - "ttot": 0.033831008, - "count": 614, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" - }, - { - "call": "MPI_Rsend", - "ttot": 0.00020575499999999998, - "count": 515, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" - }, - { - "call": "MPI_Testall", - "ttot": 0.00075125, - "count": 1143, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" - }, - { - "call": "MPI_Alltoallv", - "ttot": 2.5258039, - "count": 2840, + "ttot": 0.018362919999999998, + "count": 112, "color": "rgb(204, 37, 41)", "hoverColor": "rgb(224, 57, 61)" }, - { - "call": "MPI_Sendrecv_replace", - "ttot": 0.023230960000000002, - "count": 120, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" - }, - { - "call": "MPI_Waitall", - "ttot": 0.002076403, - "count": 5134, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" - }, - { - "call": "MPI_Wait", - "ttot": 0.00092626, - "count": 12, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" - }, { "call": "MPI_Comm_size", - "ttot": 0.000066995, + "ttot": 0.000043392, "count": 174, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.000174283, - "count": 306, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.0001297, + "count": 287, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 0.46386, - "count": 2384, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "ttot": 12.8074, + "count": 2372, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" - }, - { - "call": "MPI_Irecv", - "ttot": 0.00019502999999999998, - "count": 515, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Allgatherv", - "ttot": 0.016999, + "ttot": 0.0089781, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Alltoall", - "ttot": 0.00017214, + "ttot": 0.19246, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.000040054, + "ttot": 0.000057936, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "16", - "ttot": 3.582015655030002, + "nr": "27", + "ttot": 15.102537338799996, "mpiCalls": [ - { - "call": "MPI_Isend", - "ttot": 0.0030350798399999975, - "count": 3112, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" - }, - { - "call": "MPI_Recv", - "ttot": 0.09041141605999999, - "count": 5444, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Bcast", - "ttot": 0.32921168650000027, - "count": 6068, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" - }, - { - "call": "MPI_Send", - "ttot": 0.01483176343, - "count": 4462, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, - { - "call": "MPI_Reduce", - "ttot": 0.09116575120000003, - "count": 178, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, - { - "call": "MPI_Allreduce", - "ttot": 0.032398224999999996, - "count": 614, + "ttot": 0.0184374198, + "count": 785, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { - "call": "MPI_Testall", - "ttot": 0.00277611, - "count": 3195, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "call": "MPI_Allreduce", + "ttot": 0.018793909, + "count": 47, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoallv", - "ttot": 2.5792289, + "ttot": 2.0482289999999996, "count": 2840, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" - }, - { - "call": "MPI_Sendrecv_replace", - "ttot": 0.02370385, - "count": 120, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" - }, - { - "call": "MPI_Waitall", - "ttot": 0.0042838600000000004, - "count": 5134, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { - "call": "MPI_Wait", - "ttot": 0.00088549, - "count": 14, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "call": "MPI_Reduce", + "ttot": 0.0063993930000000015, + "count": 112, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Comm_size", - "ttot": 0.000059604999999999996, + "ttot": 0.000032902000000000004, "count": 174, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.000149962, - "count": 306, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.00011372500000000001, + "count": 287, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 0.39481, - "count": 2384, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "ttot": 12.8093, + "count": 2372, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" - }, - { - "call": "MPI_Irecv", - "ttot": 0.00021982599999999998, - "count": 515, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Allgatherv", - "ttot": 0.014044000000000001, + "ttot": 0.0057552, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Alltoall", - "ttot": 0.00058794, + "ttot": 0.19542, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.00021219, + "ttot": 0.00005579, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "15", - "ttot": 3.552499961870005, + "nr": "28", + "ttot": 15.0909448466, "mpiCalls": [ - { - "call": "MPI_Isend", - "ttot": 0.0027678438999999993, - "count": 3074, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" - }, - { - "call": "MPI_Recv", - "ttot": 0.09390273037999995, - "count": 3867, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Bcast", - "ttot": 0.36574503499999994, - "count": 6047, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" - }, - { - "call": "MPI_Send", - "ttot": 0.015712499490000004, - "count": 4466, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, - { - "call": "MPI_Reduce", - "ttot": 0.0744807761, - "count": 174, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, - { - "call": "MPI_Allreduce", - "ttot": 0.032643979999999996, - "count": 614, + "ttot": 0.0164520276, + "count": 785, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { - "call": "MPI_Testall", - "ttot": 0.00248865, - "count": 3153, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "call": "MPI_Allreduce", + "ttot": 0.018157243, + "count": 47, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoallv", - "ttot": 2.4555954, + "ttot": 2.0570337999999997, "count": 2840, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" - }, - { - "call": "MPI_Sendrecv_replace", - "ttot": 0.0230627, - "count": 120, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" - }, - { - "call": "MPI_Waitall", - "ttot": 0.004184209, - "count": 4619, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { - "call": "MPI_Wait", - "ttot": 0.00053191, - "count": 8, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "call": "MPI_Reduce", + "ttot": 0.016741113000000002, + "count": 112, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Comm_size", - "ttot": 0.00006342, + "ttot": 0.000035286, "count": 174, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.00016594, - "count": 306, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.000112295, + "count": 287, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 0.4603, - "count": 2384, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "ttot": 12.7848, + "count": 2372, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" - }, - { - "call": "MPI_Irecv", - "ttot": 0.00020861300000000002, - "count": 515, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Allgatherv", - "ttot": 0.0147382, + "ttot": 0.0055160999999999995, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Alltoall", - "ttot": 0.0058711, + "ttot": 0.19204, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.000036955, + "ttot": 0.000056982, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "17", - "ttot": 3.5268570121799994, + "nr": "29", + "ttot": 15.118780812899999, "mpiCalls": [ { - "call": "MPI_Isend", - "ttot": 0.0022068000700000007, - "count": 3226, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "call": "MPI_Bcast", + "ttot": 0.016461075899999997, + "count": 785, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { - "call": "MPI_Recv", - "ttot": 0.09404491123, - "count": 5608, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "call": "MPI_Allreduce", + "ttot": 0.01817534, + "count": 47, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { - "call": "MPI_Bcast", - "ttot": 0.3056323394000001, - "count": 6089, + "call": "MPI_Alltoallv", + "ttot": 2.1128472000000005, + "count": 2840, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, - { - "call": "MPI_Send", - "ttot": 0.015391573180000003, - "count": 5498, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Reduce", - "ttot": 0.06847719229999999, - "count": 178, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, - { - "call": "MPI_Allreduce", - "ttot": 0.032142491999999995, - "count": 614, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "ttot": 0.016294459, + "count": 112, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { - "call": "MPI_Testall", - "ttot": 0.00320621, - "count": 3374, + "call": "MPI_Comm_size", + "ttot": 0.000036955, + "count": 174, "color": "rgb(83, 81, 84)", "hoverColor": "rgb(103, 101, 104)" }, { - "call": "MPI_Alltoallv", - "ttot": 2.5534999000000003, - "count": 2840, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" - }, - { - "call": "MPI_Sendrecv_replace", - "ttot": 0.02259635, - "count": 120, + "call": "MPI_Comm_rank", + "ttot": 0.00012350099999999998, + "count": 287, "color": "rgb(107, 76, 154)", "hoverColor": "rgb(127, 96, 174)" }, { - "call": "MPI_Waitall", - "ttot": 0.00421521, - "count": 5649, + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, "color": "rgb(146, 36, 40)", "hoverColor": "rgb(166, 56, 60)" }, { - "call": "MPI_Wait", - "ttot": 0.00096893, - "count": 14, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "call": "MPI_Barrier", + "ttot": 12.7552, + "count": 2372, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { - "call": "MPI_Comm_size", - "ttot": 0.00006628, - "count": 174, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { - "call": "MPI_Comm_rank", - "ttot": 0.000153301, - "count": 306, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "call": "MPI_Allgatherv", + "ttot": 0.007435300000000001, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { - "call": "MPI_Finalize", - "ttot": 0, + "call": "MPI_Alltoall", + "ttot": 0.19215, "count": 1, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { - "call": "MPI_Barrier", - "ttot": 0.40956000000000004, - "count": 2384, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "call": "MPI_Allgather", + "ttot": 0.000056982, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + } + ], + "mpiCallsByTaskSorted": [ + { + "nr": "25", + "ttot": 15.180775222999998, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.018339786999999996, + "count": 785, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.018657256999999997, + "count": 47, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 2.0961159, + "count": 2840, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.009502152999999998, + "count": 112, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000048876, + "count": 174, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.00017380599999999998, + "count": 287, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 12.8334, + "count": 2372, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.0106707, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.19381, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.000056744, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "24", + "ttot": 15.16679234538998, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 0.09937703635000003, + "count": 1959, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.3760174782999999, + "count": 3015, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Isend", + "ttot": 0.0009581996399999999, + "count": 590, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 0.021939377599999997, + "count": 4975, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Irecv", - "ttot": 0.000203849, - "count": 515, + "call": "MPI_Reduce", + "ttot": 0.029679658500000008, + "count": 178, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.029086413, + "count": 614, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Testall", + "ttot": 0.0004735, + "count": 1201, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 2.0383728999999997, + "count": 2840, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { - "call": "MPI_Allgatherv", - "ttot": 0.014267799999999999, - "count": 5, + "call": "MPI_Sendrecv_replace", + "ttot": 0.027322009999999997, + "count": 120, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.000514984, + "count": 4112, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0042405030000000005, + "count": 16, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000044108, + "count": 174, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000113249, + "count": 306, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 12.338799999999999, + "count": 2384, "color": "rgb(148, 139, 61)", "hoverColor": "rgb(168, 159, 81)" }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.0059969, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, { "call": "MPI_Alltoall", - "ttot": 0.00019288, + "ttot": 0.1938, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.000030994, + "ttot": 0.000056028, "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "26", + "ttot": 15.139874251399991, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.018434490399999996, + "count": 785, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.018762913, + "count": 47, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" - } + }, + { + "call": "MPI_Alltoallv", + "ttot": 2.0752448, + "count": 2840, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.018362919999999998, + "count": 112, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000043392, + "count": 174, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0001297, + "count": 287, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 12.8074, + "count": 2372, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.0089781, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.19246, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.000057936, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "29", + "ttot": 15.118780812899999, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.016461075899999997, + "count": 785, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.01817534, + "count": 47, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 2.1128472000000005, + "count": 2840, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.016294459, + "count": 112, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000036955, + "count": 174, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.00012350099999999998, + "count": 287, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 12.7552, + "count": 2372, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.007435300000000001, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.19215, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.000056982, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "27", + "ttot": 15.102537338799996, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.0184374198, + "count": 785, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.018793909, + "count": 47, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 2.0482289999999996, + "count": 2840, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.0063993930000000015, + "count": 112, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000032902000000000004, + "count": 174, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.00011372500000000001, + "count": 287, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 12.8093, + "count": 2372, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.0057552, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.19542, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00005579, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "28", + "ttot": 15.0909448466, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.0164520276, + "count": 785, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.018157243, + "count": 47, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 2.0570337999999997, + "count": 2840, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.016741113000000002, + "count": 112, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000035286, + "count": 174, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000112295, + "count": 287, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 12.7848, + "count": 2372, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.0055160999999999995, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.19204, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.000056982, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "11", + "ttot": 4.458415246620004, + "mpiCalls": [ + { + "call": "MPI_Isend", + "ttot": 0.0017197050800000007, + "count": 2583, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 0.09554109719999995, + "count": 6448, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.35703398589999985, + "count": 5553, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.01130082054, + "count": 3867, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.05421649889999999, + "count": 178, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.033460516, + "count": 614, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Rsend", + "ttot": 0.000249622, + "count": 515, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Testall", + "ttot": 0.00216438, + "count": 2654, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 2.3690729, + "count": 2840, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.02377956, + "count": 120, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.00192668, + "count": 4619, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Wait", + "ttot": 0.00060773, + "count": 12, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000060797, + "count": 174, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000184294, + "count": 306, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 1.47722, + "count": 2384, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.00020337300000000002, + "count": 515, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.0140002, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.015644, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.000029087, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "10", + "ttot": 4.42413596099, + "mpiCalls": [ + { + "call": "MPI_Isend", + "ttot": 0.001563553020000001, + "count": 2545, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 0.09994256927, + "count": 5889, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.3832774769000002, + "count": 5532, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.012221041399999993, + "count": 3896, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.09915379740000002, + "count": 174, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.034328202, + "count": 614, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Rsend", + "ttot": 0.000240085, + "count": 515, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Testall", + "ttot": 0.0018510599999999999, + "count": 2616, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 2.3602250000000002, + "count": 2840, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.02310842, + "count": 120, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.001928056, + "count": 4104, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Wait", + "ttot": 0.00034261, + "count": 6, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000056028, + "count": 174, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000151156, + "count": 306, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 1.37141, + "count": 2384, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.00023079100000000002, + "count": 515, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.014430100000000001, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.01963, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.000046015, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "9", + "ttot": 4.266654279780003, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 0.28681193293999985, + "count": 3444, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Isend", + "ttot": 0.0012752978400000007, + "count": 1575, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.29373735481000013, + "count": 1985, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.004048104819999997, + "count": 3865, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.05109300736999999, + "count": 157, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.036421007000000005, + "count": 614, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Testall", + "ttot": 0.00089812, + "count": 1601, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0035202460000000003, + "count": 24, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 2.3513659, + "count": 2840, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.024294360999999997, + "count": 120, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.00025225000000000003, + "count": 3082, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000055551, + "count": 174, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.00015234500000000002, + "count": 306, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 1.18084, + "count": 2384, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.014351, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.017508, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.000029802, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "8", + "ttot": 4.154536965130004, + "mpiCalls": [ + { + "call": "MPI_Isend", + "ttot": 0.0015988278300000014, + "count": 2335, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 0.21082618844000023, + "count": 4193, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.3497808314, + "count": 5051, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.008325826159999994, + "count": 5411, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.07450328030000004, + "count": 157, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.034419137, + "count": 614, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Testall", + "ttot": 0.00158287, + "count": 2354, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Wait", + "ttot": 0.002339834, + "count": 24, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 2.388613, + "count": 2840, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.02280424, + "count": 120, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.008195835, + "count": 5126, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000047445000000000004, + "count": 174, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000138283, + "count": 306, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 1.0223900000000001, + "count": 2384, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.00016832700000000002, + "count": 515, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.0125329, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.016237, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00003314, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "20", + "ttot": 4.138521442089999, + "mpiCalls": [ + { + "call": "MPI_Isend", + "ttot": 0.0030183815900000003, + "count": 3074, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 0.09860766696999994, + "count": 3891, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.3628773542, + "count": 6047, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.016948453929999992, + "count": 4435, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.09369275040000002, + "count": 174, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.028680570000000002, + "count": 614, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Testall", + "ttot": 0.0024476299999999997, + "count": 3166, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0010528520000000002, + "count": 8, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 2.4458677000000004, + "count": 2840, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.022033470000000003, + "count": 120, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.003832543, + "count": 4619, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000061512, + "count": 174, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000172853, + "count": 306, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 1.03058, + "count": 2384, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.000204797, + "count": 515, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.0143719, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.01403, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.000041008, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "23", + "ttot": 4.071147262480004, + "mpiCalls": [ + { + "call": "MPI_Isend", + "ttot": 0.0030264877000000016, + "count": 3458, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 0.07483833734999999, + "count": 6343, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.28945190719999997, + "count": 6081, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.014582879529999995, + "count": 5992, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.06353811869999998, + "count": 178, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.030149267, + "count": 614, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Testall", + "ttot": 0.0036125, + "count": 3686, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0018603750000000003, + "count": 16, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 2.5368624000000004, + "count": 2840, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.023386797, + "count": 120, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.00264458, + "count": 6156, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.00006580400000000001, + "count": 174, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000175475, + "count": 306, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 1.00302, + "count": 2384, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.00021124000000000002, + "count": 515, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.0130761, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.010614, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.000030994, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "6", + "ttot": 4.0623511651500035, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 0.09730355317000003, + "count": 6365, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Isend", + "ttot": 0.00064754768, + "count": 1015, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.3614511452000003, + "count": 5038, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.041966303899999974, + "count": 2334, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.08072921920000001, + "count": 157, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.033949891999999995, + "count": 614, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Testall", + "ttot": 0.00064969, + "count": 1044, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 2.429851, + "count": 2840, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.02362332, + "count": 120, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.0068808, + "count": 4104, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Wait", + "ttot": 0.00047636, + "count": 12, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000052214, + "count": 174, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000140904, + "count": 306, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.9529799999999999, + "count": 2384, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.000205283, + "count": 515, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.0222229, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.0091929, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.000028133, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "21", + "ttot": 4.06024849422, + "mpiCalls": [ + { + "call": "MPI_Isend", + "ttot": 0.004452974189999998, + "count": 3112, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 0.08907442022999999, + "count": 4446, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.3396970141000001, + "count": 6068, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.015642883899999998, + "count": 4439, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.08049437579999999, + "count": 178, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.030260977000000005, + "count": 614, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Testall", + "ttot": 0.00237723, + "count": 3202, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0013470630000000001, + "count": 14, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 2.5291612, + "count": 2840, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.023686212, + "count": 120, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.004140595, + "count": 5134, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000058413, + "count": 174, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.00018549000000000001, + "count": 306, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.90554, + "count": 2384, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.000220539, + "count": 515, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.0180309, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.015831, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.000047207, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "3", + "ttot": 3.9581396891500074, + "mpiCalls": [ + { + "call": "MPI_Isend", + "ttot": 0.002691499600000001, + "count": 3343, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 0.33882802561999975, + "count": 13939, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.2270955614999999, + "count": 4536, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.004431696559999998, + "count": 2333, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.053934357870000005, + "count": 136, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.04670160200000001, + "count": 614, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Rsend", + "ttot": 0.00033021200000000003, + "count": 1545, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0017750200000000004, + "count": 18, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Testall", + "ttot": 0.00208829, + "count": 3352, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 2.483793, + "count": 2840, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.021847759999999994, + "count": 120, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.000364541, + "count": 4096, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000045538, + "count": 174, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000139478, + "count": 306, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.74763, + "count": 2384, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.018928900000000002, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.007467, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.000047207, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "7", + "ttot": 3.9400897633300054, + "mpiCalls": [ + { + "call": "MPI_Isend", + "ttot": 0.00122570705, + "count": 2160, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 0.10235529093999997, + "count": 3545, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.43504901280000013, + "count": 5059, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.014080982469999998, + "count": 4921, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.06288879807, + "count": 157, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.03397167200000001, + "count": 614, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.001916398, + "count": 22, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Testall", + "ttot": 0.0014286000000000001, + "count": 2195, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 2.4383500999999996, + "count": 2840, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.02331587, + "count": 120, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.009032479, + "count": 4619, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000058411999999999996, + "count": 174, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000142571, + "count": 306, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.79488, + "count": 2384, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.000154729, + "count": 515, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.0126961, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.008513, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.000030041, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "2", + "ttot": 3.9033235321499955, + "mpiCalls": [ + { + "call": "MPI_Isend", + "ttot": 0.0016548585400000006, + "count": 2653, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 0.25746989804000003, + "count": 11239, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.30501781000000006, + "count": 4544, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.012280082769999997, + "count": 2366, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.08417650879999998, + "count": 136, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.046882164, + "count": 614, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Rsend", + "ttot": 0.000326634, + "count": 1545, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Testall", + "ttot": 0.00161619, + "count": 2672, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Wait", + "ttot": 0.001304138, + "count": 16, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 2.532871, + "count": 2840, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.022275060000000003, + "count": 120, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.000290866, + "count": 3589, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.00006127300000000001, + "count": 174, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000137802, + "count": 306, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.61683, + "count": 2384, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.0128682, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.0072229, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.000038147, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "14", + "ttot": 3.878083369769997, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 0.20581636081999996, + "count": 6060, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Isend", + "ttot": 0.0013763816400000001, + "count": 2106, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.3674635718000004, + "count": 2500, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0026798200000000003, + "count": 24, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Send", + "ttot": 0.006969034509999997, + "count": 4408, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.06916353399999998, + "count": 178, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.035320574, + "count": 614, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Testall", + "ttot": 0.00134607, + "count": 2153, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 2.4740289, + "count": 2840, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.023617959, + "count": 120, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.000293498, + "count": 3597, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000056744, + "count": 174, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.00016378900000000001, + "count": 306, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.67306, + "count": 2384, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.013703, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.002996, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.000028133, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "4", + "ttot": 3.860952270120003, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 0.3860546355900001, + "count": 9597, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Isend", + "ttot": 0.00268458789, + "count": 3098, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.20037346566999997, + "count": 1470, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.0012924709700000005, + "count": 1288, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.076747092, + "count": 136, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.04879427700000002, + "count": 614, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Testall", + "ttot": 0.0017270699999999998, + "count": 3110, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0023131349999999996, + "count": 18, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 2.5324113, + "count": 2840, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.022985994000000003, + "count": 120, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.000238662, + "count": 2567, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000055552, + "count": 174, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000145674, + "count": 306, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.56452, + "count": 2384, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.013354, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.0072112, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.000043154, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "1", + "ttot": 3.838402145290005, + "mpiCalls": [ + { + "call": "MPI_Isend", + "ttot": 0.00114202188, + "count": 2031, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 0.13801575097, + "count": 8496, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.40228116370000006, + "count": 4523, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.03440199816999997, + "count": 1792, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.07202296387000001, + "count": 136, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.046732507000000006, + "count": 614, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Rsend", + "ttot": 0.0002613067, + "count": 1545, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Testall", + "ttot": 0.00138473, + "count": 2060, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 2.5032631, + "count": 2840, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.02238582, + "count": 120, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0012807850000000002, + "count": 16, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.000281573, + "count": 3074, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000063658, + "count": 174, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000141858, + "count": 306, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.58849, + "count": 2384, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.015952, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.010263, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.000037909, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "19", + "ttot": 3.7635104877899965, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 0.10219522712000004, + "count": 3986, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Isend", + "ttot": 0.0018050653900000013, + "count": 2674, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.44718499747, + "count": 3015, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.006602270639999999, + "count": 4988, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.07728218146999999, + "count": 178, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.034100275, + "count": 614, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0027177386999999997, + "count": 26, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Testall", + "ttot": 0.00161334, + "count": 2749, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 2.6015091000000004, + "count": 2840, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.023766670000000004, + "count": 120, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.000328062, + "count": 4112, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000055313000000000004, + "count": 174, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.00016212599999999999, + "count": 306, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.44811999999999996, + "count": 2384, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.015703099999999998, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.00033498, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.000030041, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "13", + "ttot": 3.7626877940600063, + "mpiCalls": [ + { + "call": "MPI_Isend", + "ttot": 0.0019416832400000008, + "count": 2866, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 0.12496667618999993, + "count": 7318, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.40744342710000014, + "count": 5566, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.008807901759999997, + "count": 5933, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.06126538177000003, + "count": 178, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.033992262, + "count": 614, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Rsend", + "ttot": 0.000156167, + "count": 515, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Testall", + "ttot": 0.00268436, + "count": 2901, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 2.5603131999999995, + "count": 2840, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Wait", + "ttot": 0.003250387, + "count": 24, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.022717599999999998, + "count": 120, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.003756967, + "count": 5641, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000060796, + "count": 174, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.00016665799999999998, + "count": 306, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.51394, + "count": 2384, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.000154258, + "count": 515, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.0123902, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.004636, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.000043869, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "22", + "ttot": 3.7182035552000023, + "mpiCalls": [ + { + "call": "MPI_Isend", + "ttot": 0.002349619530000001, + "count": 3215, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 0.09530451158000004, + "count": 6698, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.3127995983999998, + "count": 6089, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.015590662820000002, + "count": 5484, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.05890623486999999, + "count": 178, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.030550855000000002, + "count": 614, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Testall", + "ttot": 0.00294878, + "count": 3356, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0016887099999999997, + "count": 14, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 2.4857148, + "count": 2840, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.023093303000000003, + "count": 120, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.00395538, + "count": 5649, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000059366, + "count": 174, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.00016069, + "count": 306, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.65612, + "count": 2384, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.00020932900000000001, + "count": 515, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.0196029, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.0091028, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.000046015, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "5", + "ttot": 3.6736378575900024, + "mpiCalls": [ + { + "call": "MPI_Isend", + "ttot": 0.0012843682100000002, + "count": 2028, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 0.08471575380000002, + "count": 3294, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.39343442809999996, + "count": 5017, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.011621927279999998, + "count": 3322, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.0823407592, + "count": 153, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.034559888, + "count": 614, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Testall", + "ttot": 0.0017020299999999998, + "count": 2089, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 2.4684574, + "count": 2840, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.022051499999999998, + "count": 120, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.0036200980000000004, + "count": 3589, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Wait", + "ttot": 0.00015211, + "count": 6, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000056506000000000004, + "count": 174, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000132561, + "count": 306, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.54311, + "count": 2384, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.000212434, + "count": 515, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.018011, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.008141, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.000034094, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "18", + "ttot": 3.671179717520001, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 0.08991161033999999, + "count": 7209, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Isend", + "ttot": 0.0007910695199999998, + "count": 1376, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.32651335020000005, + "count": 6081, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.012358956759999996, + "count": 4997, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.08108237669999999, + "count": 178, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.032056477, + "count": 614, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Testall", + "ttot": 0.00094652, + "count": 1684, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 2.5800741000000005, + "count": 2840, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.0218418, + "count": 120, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.005577754, + "count": 6156, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0011909, + "count": 16, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000058889, + "count": 174, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000162367, + "count": 306, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.50495, + "count": 2384, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.00019336, + "count": 515, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.0122061, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.001235, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.000029087, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "0", + "ttot": 3.6472267994400065, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 0.14031554004000005, + "count": 9995, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.36597371700000014, + "count": 4502, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.04939615581999997, + "count": 768, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.076076462, + "count": 132, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.047707929, + "count": 614, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Rsend", + "ttot": 0.00033283149999999997, + "count": 1545, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Isend", + "ttot": 0.00016427007999999998, + "count": 438, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Testall", + "ttot": 0.000253196, + "count": 484, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 2.5260930000000004, + "count": 2840, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.02236769, + "count": 120, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.00020813800000000002, + "count": 2559, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000047207, + "count": 174, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.00012016300000000001, + "count": 306, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.39912000000000003, + "count": 2384, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.011756599999999999, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.0070829, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.000211, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "12", + "ttot": 3.619460405840004, + "mpiCalls": [ + { + "call": "MPI_Isend", + "ttot": 0.00084686134, + "count": 1116, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 0.15045735587999992, + "count": 9686, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.30963705800000013, + "count": 5574, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.017166340419999992, + "count": 3916, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.0730197522, + "count": 178, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.033831008, + "count": 614, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Rsend", + "ttot": 0.00020575499999999998, + "count": 515, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Testall", + "ttot": 0.00075125, + "count": 1143, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 2.5258039, + "count": 2840, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.023230960000000002, + "count": 120, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.002076403, + "count": 5134, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Wait", + "ttot": 0.00092626, + "count": 12, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000066995, + "count": 174, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000174283, + "count": 306, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.46386, + "count": 2384, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.00019502999999999998, + "count": 515, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.016999, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.00017214, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.000040054, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "16", + "ttot": 3.582015655030002, + "mpiCalls": [ + { + "call": "MPI_Isend", + "ttot": 0.0030350798399999975, + "count": 3112, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 0.09041141605999999, + "count": 5444, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.32921168650000027, + "count": 6068, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.01483176343, + "count": 4462, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.09116575120000003, + "count": 178, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.032398224999999996, + "count": 614, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Testall", + "ttot": 0.00277611, + "count": 3195, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 2.5792289, + "count": 2840, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.02370385, + "count": 120, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.0042838600000000004, + "count": 5134, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Wait", + "ttot": 0.00088549, + "count": 14, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000059604999999999996, + "count": 174, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000149962, + "count": 306, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.39481, + "count": 2384, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.00021982599999999998, + "count": 515, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.014044000000000001, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.00058794, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00021219, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "15", + "ttot": 3.552499961870005, + "mpiCalls": [ + { + "call": "MPI_Isend", + "ttot": 0.0027678438999999993, + "count": 3074, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 0.09390273037999995, + "count": 3867, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.36574503499999994, + "count": 6047, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.015712499490000004, + "count": 4466, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.0744807761, + "count": 174, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.032643979999999996, + "count": 614, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Testall", + "ttot": 0.00248865, + "count": 3153, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 2.4555954, + "count": 2840, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.0230627, + "count": 120, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.004184209, + "count": 4619, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Wait", + "ttot": 0.00053191, + "count": 8, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.00006342, + "count": 174, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.00016594, + "count": 306, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.4603, + "count": 2384, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.00020861300000000002, + "count": 515, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.0147382, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.0058711, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.000036955, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "17", + "ttot": 3.5268570121799994, + "mpiCalls": [ + { + "call": "MPI_Isend", + "ttot": 0.0022068000700000007, + "count": 3226, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 0.09404491123, + "count": 5608, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.3056323394000001, + "count": 6089, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.015391573180000003, + "count": 5498, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.06847719229999999, + "count": 178, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.032142491999999995, + "count": 614, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Testall", + "ttot": 0.00320621, + "count": 3374, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 2.5534999000000003, + "count": 2840, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.02259635, + "count": 120, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.00421521, + "count": 5649, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Wait", + "ttot": 0.00096893, + "count": 14, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.00006628, + "count": 174, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000153301, + "count": 306, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.40956000000000004, + "count": 2384, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.000203849, + "count": 515, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.014267799999999999, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.00019288, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.000030994, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + } + ] + }, + "mpiPies": { + "mpiPercent": { + "datasets": [ + { + "data": ["51.02", "39.14", "4.72", "1.98", "1.01", "2.13"], + "backgroundColor": [ + "rgb(148, 139, 61)", + "rgb(171, 104, 87)", + "rgb(225, 151, 76)", + "rgb(114, 147, 203)", + "rgb(204, 37, 41)", + "rgb(144, 103, 167)" + ], + "hoverBackgroundColor": [ + "rgb(168, 159, 81)", + "rgb(191, 124, 107)", + "rgb(245, 171, 96)", + "rgb(134, 167, 223)", + "rgb(224, 57, 61)", + "rgb(164, 123, 187)" + ] + } + ], + "labels": [ + "MPI_Barrier", + "MPI_Alltoallv", + "MPI_Bcast", + "MPI_Recv", + "MPI_Reduce", + "others" + ] + }, + "mpiWall": { + "datasets": [ + { + "data": ["7.04", "5.40", "1.36", "86.21"], + "backgroundColor": [ + "rgb(148, 139, 61)", + "rgb(171, 104, 87)", + "rgb(144, 103, 167)", + "rgb(171, 104, 87)" + ], + "hoverBackgroundColor": [ + "rgb(168, 159, 81)", + "rgb(191, 124, 107)", + "rgb(164, 123, 187)", + "rgb(191, 124, 107)" + ] + } + ], + "labels": ["MPI_Barrier", "MPI_Alltoallv", "others", "Apllication"] + } + }, + "hpmData": [], + "balanceData": { + "labels": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15", + "16", + "17", + "18", + "19", + "20", + "21", + "22", + "23", + "24", + "25", + "26", + "27", + "28", + "29" + ], + "datasets": [ + { + "label": "MPI_Recv", + "fill": false, + "backgroundColor": "rgb(114, 147, 203)", + "borderColor": "rgb(114, 147, 203)", + "pointHoverBackgroundColor": "rgb(134, 167, 223)", + "data": [ + 0.14031554004000005, + 0.00114202188, + 0.0016548585400000006, + 0.002691499600000001, + 0.3860546355900001, + 0.0012843682100000002, + 0.09730355317000003, + 0.00122570705, + 0.0015988278300000014, + 0.28681193293999985, + 0.001563553020000001, + 0.0017197050800000007, + 0.00084686134, + 0.0019416832400000008, + 0.20581636081999996, + 0.0027678438999999993, + 0.0030350798399999975, + 0.0022068000700000007, + 0.08991161033999999, + 0.10219522712000004, + 0.0030183815900000003, + 0.004452974189999998, + 0.002349619530000001, + 0.0030264877000000016, + 0.09937703635000003, + 0.018339786999999996, + 0.018434490399999996, + 0.0184374198, + 0.0164520276, + 0.016461075899999997 + ] + }, + { + "label": "MPI_Bcast", + "fill": false, + "backgroundColor": "rgb(225, 151, 76)", + "borderColor": "rgb(225, 151, 76)", + "pointHoverBackgroundColor": "rgb(245, 171, 96)", + "data": [ + 0.36597371700000014, + 0.13801575097, + 0.25746989804000003, + 0.33882802561999975, + 0.00268458789, + 0.08471575380000002, + 0.00064754768, + 0.10235529093999997, + 0.21082618844000023, + 0.0012752978400000007, + 0.09994256927, + 0.09554109719999995, + 0.15045735587999992, + 0.12496667618999993, + 0.0013763816400000001, + 0.09390273037999995, + 0.09041141605999999, + 0.09404491123, + 0.0007910695199999998, + 0.0018050653900000013, + 0.09860766696999994, + 0.08907442022999999, + 0.09530451158000004, + 0.07483833734999999, + 0.3760174782999999, + 0.018657256999999997, + 0.018762913, + 0.018793909, + 0.018157243, + 0.01817534 + ] + }, + { + "label": "MPI_Send", + "fill": false, + "backgroundColor": "rgb(132, 186, 91)", + "borderColor": "rgb(132, 186, 91)", + "pointHoverBackgroundColor": "rgb(152, 206, 111)", + "data": [ + 0.04939615581999997, + 0.40228116370000006, + 0.30501781000000006, + 0.2270955614999999, + 0.20037346566999997, + 0.39343442809999996, + 0.3614511452000003, + 0.43504901280000013, + 0.3497808314, + 0.29373735481000013, + 0.3832774769000002, + 0.35703398589999985, + 0.30963705800000013, + 0.40744342710000014, + 0.3674635718000004, + 0.36574503499999994, + 0.32921168650000027, + 0.3056323394000001, + 0.32651335020000005, + 0.44718499747, + 0.3628773542, + 0.3396970141000001, + 0.3127995983999998, + 0.28945190719999997, + 0.0009581996399999999, + 2.0961159, + 2.0752448, + 2.0482289999999996, + 2.0570337999999997, + 2.1128472000000005 + ] + }, + { + "label": "MPI_Reduce", + "fill": false, + "backgroundColor": "rgb(204, 37, 41)", + "borderColor": "rgb(204, 37, 41)", + "pointHoverBackgroundColor": "rgb(224, 57, 61)", + "data": [ + 0.076076462, + 0.03440199816999997, + 0.012280082769999997, + 0.004431696559999998, + 0.0012924709700000005, + 0.011621927279999998, + 0.041966303899999974, + 0.014080982469999998, + 0.008325826159999994, + 0.004048104819999997, + 0.012221041399999993, + 0.01130082054, + 0.017166340419999992, + 0.008807901759999997, + 0.0026798200000000003, + 0.015712499490000004, + 0.01483176343, + 0.015391573180000003, + 0.012358956759999996, + 0.006602270639999999, + 0.016948453929999992, + 0.015642883899999998, + 0.015590662820000002, + 0.014582879529999995, + 0.021939377599999997, + 0.009502152999999998, + 0.018362919999999998, + 0.0063993930000000015, + 0.016741113000000002, + 0.016294459 + ] + }, + { + "label": "MPI_Allreduce", + "fill": false, + "backgroundColor": "rgb(128, 133, 133)", + "borderColor": "rgb(128, 133, 133)", + "pointHoverBackgroundColor": "rgb(148, 153, 153)", + "data": [ + 0.047707929, + 0.07202296387000001, + 0.08417650879999998, + 0.053934357870000005, + 0.076747092, + 0.0823407592, + 0.08072921920000001, + 0.06288879807, + 0.07450328030000004, + 0.05109300736999999, + 0.09915379740000002, + 0.05421649889999999, + 0.0730197522, + 0.06126538177000003, + 0.006969034509999997, + 0.0744807761, + 0.09116575120000003, + 0.06847719229999999, + 0.08108237669999999, + 0.07728218146999999, + 0.09369275040000002, + 0.08049437579999999, + 0.05890623486999999, + 0.06353811869999998, + 0.029679658500000008, + 0.000048876, + 0.000043392, + 0.000032902000000000004, + 0.000035286, + 0.000036955 + ] + }, + { + "label": "MPI_Rsend", + "fill": false, + "backgroundColor": "rgb(211, 94, 96)", + "borderColor": "rgb(211, 94, 96)", + "pointHoverBackgroundColor": "rgb(231, 114, 116)", + "data": [ + 0.00033283149999999997, + 0.046732507000000006, + 0.046882164, + 0.04670160200000001, + 0.04879427700000002, + 0.034559888, + 0.033949891999999995, + 0.03397167200000001, + 0.034419137, + 0.036421007000000005, + 0.034328202, + 0.033460516, + 0.033831008, + 0.033992262, + 0.06916353399999998, + 0.032643979999999996, + 0.032398224999999996, + 0.032142491999999995, + 0.032056477, + 0.034100275, + 0.028680570000000002, + 0.030260977000000005, + 0.030550855000000002, + 0.030149267, + 0.029086413, + 0.00017380599999999998, + 0.0001297, + 0.00011372500000000001, + 0.000112295, + 0.00012350099999999998 + ] + }, + { + "label": "MPI_Isend", + "fill": false, + "backgroundColor": "rgb(144, 103, 167)", + "borderColor": "rgb(144, 103, 167)", + "pointHoverBackgroundColor": "rgb(164, 123, 187)", + "data": [ + 0.00016427007999999998, + 0.0002613067, + 0.000326634, + 0.00033021200000000003, + 0.0017270699999999998, + 0.0017020299999999998, + 0.00064969, + 0.001916398, + 0.00158287, + 0.00089812, + 0.000240085, + 0.000249622, + 0.00020575499999999998, + 0.000156167, + 0.035320574, + 0.00248865, + 0.00277611, + 0.00320621, + 0.00094652, + 0.0027177386999999997, + 0.0024476299999999997, + 0.00237723, + 0.00294878, + 0.0036125, + 0.0004735, + 0, + 0, + 0, + 0, + 0 + ] + }, + { + "label": "MPI_Testall", + "fill": false, + "backgroundColor": "rgb(204, 194, 16)", + "borderColor": "rgb(204, 194, 16)", + "pointHoverBackgroundColor": "rgb(224, 214, 36)", + "data": [ + 0.000253196, + 0.00138473, + 0.00161619, + 0.0017750200000000004, + 0.0023131349999999996, + 2.4684574, + 2.429851, + 0.0014286000000000001, + 0.002339834, + 0.0035202460000000003, + 0.0018510599999999999, + 0.00216438, + 0.00075125, + 0.00268436, + 0.00134607, + 2.4555954, + 2.5792289, + 2.5534999000000003, + 2.5800741000000005, + 0.00161334, + 0.0010528520000000002, + 0.0013470630000000001, + 0.0016887099999999997, + 0.0018603750000000003, + 2.0383728999999997, + 12.8334, + 12.8074, + 12.8093, + 12.7848, + 12.7552 + ] + }, + { + "label": "MPI_Alltoallv", + "fill": false, + "backgroundColor": "rgb(171, 104, 87)", + "borderColor": "rgb(171, 104, 87)", + "pointHoverBackgroundColor": "rgb(191, 124, 107)", + "data": [ + 2.5260930000000004, + 2.5032631, + 0.001304138, + 0.00208829, + 2.5324113, + 0.022051499999999998, + 0.02362332, + 2.4383500999999996, + 2.388613, + 2.3513659, + 2.3602250000000002, + 2.3690729, + 2.5258039, + 2.5603131999999995, + 2.4740289, + 0.0230627, + 0.02370385, + 0.02259635, + 0.0218418, + 2.6015091000000004, + 2.4458677000000004, + 2.5291612, + 2.4857148, + 2.5368624000000004, + 0.027322009999999997, + 0, + 0, + 0, + 0, + 0 + ] + }, + { + "label": "MPI_Sendrecv_replace", + "fill": false, + "backgroundColor": "rgb(57, 106, 177)", + "borderColor": "rgb(57, 106, 177)", + "pointHoverBackgroundColor": "rgb(77, 126, 197)", + "data": [ + 0.02236769, + 0.02238582, + 2.532871, + 2.483793, + 0.022985994000000003, + 0.0036200980000000004, + 0.0068808, + 0.02331587, + 0.02280424, + 0.024294360999999997, + 0.02310842, + 0.02377956, + 0.023230960000000002, + 0.003250387, + 0.023617959, + 0.004184209, + 0.0042838600000000004, + 0.00421521, + 0.005577754, + 0.023766670000000004, + 0.022033470000000003, + 0.023686212, + 0.023093303000000003, + 0.023386797, + 0.000514984, + 0.0106707, + 0.0089781, + 0.0057552, + 0.0055160999999999995, + 0.007435300000000001 + ] + }, + { + "label": "MPI_Waitall", + "fill": false, + "backgroundColor": "rgb(218, 124, 48)", + "borderColor": "rgb(218, 124, 48)", + "pointHoverBackgroundColor": "rgb(238, 144, 68)", + "data": [ + 0.00020813800000000002, + 0.0012807850000000002, + 0.022275060000000003, + 0.021847759999999994, + 0.000238662, + 0.00015211, + 0.00047636, + 0.009032479, + 0.008195835, + 0.00025225000000000003, + 0.001928056, + 0.00192668, + 0.002076403, + 0.022717599999999998, + 0.000293498, + 0.00053191, + 0.00088549, + 0.00096893, + 0.0011909, + 0.000328062, + 0.003832543, + 0.004140595, + 0.00395538, + 0.00264458, + 0.0042405030000000005, + 0.19381, + 0.19246, + 0.19542, + 0.19204, + 0.19215 + ] + }, + { + "label": "MPI_Comm_size", + "fill": false, + "backgroundColor": "rgb(83, 81, 84)", + "borderColor": "rgb(83, 81, 84)", + "pointHoverBackgroundColor": "rgb(103, 101, 104)", + "data": [ + 0.000047207, + 0.000281573, + 0.000290866, + 0.000364541, + 0.000055552, + 0.000056506000000000004, + 0.000052214, + 0.000058411999999999996, + 0.000047445000000000004, + 0.000055551, + 0.00034261, + 0.00060773, + 0.00092626, + 0.003756967, + 0.000056744, + 0.00006342, + 0.000059604999999999996, + 0.00006628, + 0.000058889, + 0.000055313000000000004, + 0.000061512, + 0.000058413, + 0.000059366, + 0.00006580400000000001, + 0.000044108, + 0.000056744, + 0.000057936, + 0.00005579, + 0.000056982, + 0.000056982 ] } ] }, - "mpiPies": { - "mpiPercent": { - "datasets": [ - { - "data": ["51.02", "39.14", "4.72", "1.98", "1.01", "2.13"], - "backgroundColor": [ - "rgb(132, 186, 91)", - "rgb(204, 37, 41)", - "rgb(171, 104, 87)", - "rgb(114, 147, 203)", - "rgb(114, 147, 203)", - "rgb(204, 194, 16)" - ], - "hoverBackgroundColor": [ - "rgb(152, 206, 111)", - "rgb(224, 57, 61)", - "rgb(191, 124, 107)", - "rgb(134, 167, 223)", - "rgb(134, 167, 223)", - "rgb(224, 214, 36)" - ] - } - ], - "labels": [ - "MPI_Barrier", - "MPI_Alltoallv", - "MPI_Bcast", - "MPI_Recv", - "MPI_Reduce", - "others" - ] - }, - "mpiWall": { - "datasets": [ - { - "data": ["7.04", "5.40", "1.36", "86.21"], - "backgroundColor": [ - "rgb(132, 186, 91)", - "rgb(204, 37, 41)", - "rgb(204, 194, 16)", - "rgb(57, 106, 177)" - ], - "hoverBackgroundColor": [ - "rgb(152, 206, 111)", - "rgb(224, 57, 61)", - "rgb(224, 214, 36)", - "rgb(77, 126, 197)" - ] - } - ], - "labels": ["MPI_Barrier", "MPI_Alltoallv", "others", "Apllication"] - } - }, - "hpmData": [], - "balanceData": { + "balanceDataSorted": { "labels": [ "25", "24", @@ -6367,9 +10960,9 @@ { "label": "MPI_Bcast", "fill": false, - "backgroundColor": "rgb(171, 104, 87)", - "borderColor": "rgb(171, 104, 87)", - "pointHoverBackgroundColor": "rgb(191, 124, 107)", + "backgroundColor": "rgb(225, 151, 76)", + "borderColor": "rgb(225, 151, 76)", + "pointHoverBackgroundColor": "rgb(245, 171, 96)", "data": [ 0.018339786999999996, 0.09937703635000003, @@ -6406,9 +10999,9 @@ { "label": "MPI_Allreduce", "fill": false, - "backgroundColor": "rgb(225, 151, 76)", - "borderColor": "rgb(225, 151, 76)", - "pointHoverBackgroundColor": "rgb(245, 171, 96)", + "backgroundColor": "rgb(128, 133, 133)", + "borderColor": "rgb(128, 133, 133)", + "pointHoverBackgroundColor": "rgb(148, 153, 153)", "data": [ 0.018657256999999997, 0.3760174782999999, @@ -6445,9 +11038,9 @@ { "label": "MPI_Alltoallv", "fill": false, - "backgroundColor": "rgb(204, 37, 41)", - "borderColor": "rgb(204, 37, 41)", - "pointHoverBackgroundColor": "rgb(224, 57, 61)", + "backgroundColor": "rgb(171, 104, 87)", + "borderColor": "rgb(171, 104, 87)", + "pointHoverBackgroundColor": "rgb(191, 124, 107)", "data": [ 2.0961159, 0.0009581996399999999, @@ -6484,9 +11077,9 @@ { "label": "MPI_Reduce", "fill": false, - "backgroundColor": "rgb(114, 147, 203)", - "borderColor": "rgb(114, 147, 203)", - "pointHoverBackgroundColor": "rgb(134, 167, 223)", + "backgroundColor": "rgb(204, 37, 41)", + "borderColor": "rgb(204, 37, 41)", + "pointHoverBackgroundColor": "rgb(224, 57, 61)", "data": [ 0.009502152999999998, 0.021939377599999997, @@ -6523,9 +11116,9 @@ { "label": "MPI_Comm_size", "fill": false, - "backgroundColor": "rgb(144, 103, 167)", - "borderColor": "rgb(144, 103, 167)", - "pointHoverBackgroundColor": "rgb(164, 123, 187)", + "backgroundColor": "rgb(83, 81, 84)", + "borderColor": "rgb(83, 81, 84)", + "pointHoverBackgroundColor": "rgb(103, 101, 104)", "data": [ 0.000048876, 0.029679658500000008, @@ -6562,9 +11155,9 @@ { "label": "MPI_Comm_rank", "fill": false, - "backgroundColor": "rgb(128, 133, 133)", - "borderColor": "rgb(128, 133, 133)", - "pointHoverBackgroundColor": "rgb(148, 153, 153)", + "backgroundColor": "rgb(107, 76, 154)", + "borderColor": "rgb(107, 76, 154)", + "pointHoverBackgroundColor": "rgb(127, 96, 174)", "data": [ 0.00017380599999999998, 0.029086413, @@ -6601,9 +11194,9 @@ { "label": "MPI_Finalize", "fill": false, - "backgroundColor": "rgb(225, 151, 76)", - "borderColor": "rgb(225, 151, 76)", - "pointHoverBackgroundColor": "rgb(245, 171, 96)", + "backgroundColor": "rgb(146, 36, 40)", + "borderColor": "rgb(146, 36, 40)", + "pointHoverBackgroundColor": "rgb(166, 56, 60)", "data": [ 0, 0.0004735, @@ -6640,9 +11233,9 @@ { "label": "MPI_Barrier", "fill": false, - "backgroundColor": "rgb(132, 186, 91)", - "borderColor": "rgb(132, 186, 91)", - "pointHoverBackgroundColor": "rgb(152, 206, 111)", + "backgroundColor": "rgb(148, 139, 61)", + "borderColor": "rgb(148, 139, 61)", + "pointHoverBackgroundColor": "rgb(168, 159, 81)", "data": [ 12.8334, 2.0383728999999997, @@ -6679,9 +11272,9 @@ { "label": "MPI_Init", "fill": false, - "backgroundColor": "rgb(132, 186, 91)", - "borderColor": "rgb(132, 186, 91)", - "pointHoverBackgroundColor": "rgb(152, 206, 111)", + "backgroundColor": "rgb(114, 147, 203)", + "borderColor": "rgb(114, 147, 203)", + "pointHoverBackgroundColor": "rgb(134, 167, 223)", "data": [ 0, 0.027322009999999997, @@ -6718,9 +11311,9 @@ { "label": "MPI_Allgatherv", "fill": false, - "backgroundColor": "rgb(148, 139, 61)", - "borderColor": "rgb(148, 139, 61)", - "pointHoverBackgroundColor": "rgb(168, 159, 81)", + "backgroundColor": "rgb(62, 150, 81)", + "borderColor": "rgb(62, 150, 81)", + "pointHoverBackgroundColor": "rgb(82, 170, 101)", "data": [ 0.0106707, 0.000514984, @@ -6757,9 +11350,9 @@ { "label": "MPI_Alltoall", "fill": false, - "backgroundColor": "rgb(211, 94, 96)", - "borderColor": "rgb(211, 94, 96)", - "pointHoverBackgroundColor": "rgb(231, 114, 116)", + "backgroundColor": "rgb(225, 151, 76)", + "borderColor": "rgb(225, 151, 76)", + "pointHoverBackgroundColor": "rgb(245, 171, 96)", "data": [ 0.19381, 0.0042405030000000005, @@ -6796,9 +11389,9 @@ { "label": "MPI_Allgather", "fill": false, - "backgroundColor": "rgb(128, 133, 133)", - "borderColor": "rgb(128, 133, 133)", - "pointHoverBackgroundColor": "rgb(148, 153, 153)", + "backgroundColor": "rgb(132, 186, 91)", + "borderColor": "rgb(132, 186, 91)", + "pointHoverBackgroundColor": "rgb(152, 206, 111)", "data": [ 0.000056744, 0.000044108, diff --git a/ipm_raw/MDFT_05.ipm_parsed.json b/ipm_raw/MDFT_05.ipm_parsed.json index 3d09ea8..4b30982 100644 --- a/ipm_raw/MDFT_05.ipm_parsed.json +++ b/ipm_raw/MDFT_05.ipm_parsed.json @@ -6,7 +6,8 @@ "walltime": "80.614198", "ntasks": 76, "nhosts": 4, - "totalWallTime": 6126.679048 + "totalWallTime": 6126.679048, + "cmdline": "./mini_dft+ipm -in MDFT_05.in -ntg 4 -ndiag 64 " }, "hosts": [ { @@ -2181,22 +2182,22 @@ "call": "MPI_Alltoallv", "ttot": 775.9261390000003, "count": 211736, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Barrier", "ttot": 387.32999, "count": 225044, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Bcast", "ttot": 136.70503055402884, "count": 498420, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Recv", @@ -2209,120 +2210,120 @@ "call": "MPI_Reduce", "ttot": 15.639802695210083, "count": 26536, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Allreduce", "ttot": 6.809621589000006, "count": 48760, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Sendrecv_replace", "ttot": 6.426169183, "count": 12288, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Send", "ttot": 5.874825806589992, "count": 484344, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Alltoall", "ttot": 4.0779239700000005, "count": 76, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgatherv", "ttot": 1.6798539000000003, "count": 380, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Waitall", "ttot": 0.6633788710000004, "count": 487709, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Isend", "ttot": 0.59755704859001, "count": 234266, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Wait", "ttot": 0.4076682919999999, "count": 1144, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Testall", "ttot": 0.291957333, "count": 363748, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Rsend", "ttot": 0.04957547500000001, "count": 30821, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_rank", "ttot": 0.025049656999999996, "count": 44612, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Allgather", "ttot": 0.017946469999999992, "count": 228, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Irecv", "ttot": 0.012053248, "count": 30821, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", "ttot": 0.005017756000000003, "count": 24016, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 76, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 76, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" } ], "mpiAnalysis": { @@ -2331,3703 +2332,3965 @@ }, "mpiCallsByTask": [ { - "nr": "72", - "ttot": 44.24863437330001, + "nr": "0", + "ttot": 15.444621800729994, "mpiCalls": [ { - "call": "MPI_Bcast", - "ttot": 0.07591889330000001, - "count": 1249, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" - }, - { - "call": "MPI_Allreduce", - "ttot": 0.050903254999999994, - "count": 58, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" - }, - { - "call": "MPI_Alltoallv", - "ttot": 9.56879, - "count": 2786, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" - }, - { - "call": "MPI_Reduce", - "ttot": 0.13344718, - "count": 254, + "call": "MPI_Recv", + "ttot": 0.6651474028700003, + "count": 12409, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { - "call": "MPI_Allgatherv", - "ttot": 0.0116469, - "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" - }, - { - "call": "MPI_Comm_size", - "ttot": 0.000046969000000000004, - "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" - }, - { - "call": "MPI_Comm_rank", - "ttot": 0.000257256, - "count": 571, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" - }, - { - "call": "MPI_Finalize", - "ttot": 0, - "count": 1, + "call": "MPI_Bcast", + "ttot": 2.2427752115000015, + "count": 5824, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { - "call": "MPI_Barrier", - "ttot": 33.738, - "count": 2951, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" - }, - { - "call": "MPI_Init", - "ttot": 0, - "count": 1, + "call": "MPI_Send", + "ttot": 0.25344069117000007, + "count": 1310, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Alltoall", - "ttot": 0.66937, - "count": 1, + "call": "MPI_Rsend", + "ttot": 0.001842457, + "count": 1887, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { - "call": "MPI_Allgather", - "ttot": 0.00025392, - "count": 3, + "call": "MPI_Allreduce", + "ttot": 0.123997967, + "count": 751, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" - } - ] - }, - { - "nr": "73", - "ttot": 44.08770471379997, - "mpiCalls": [ + }, { - "call": "MPI_Bcast", - "ttot": 0.07578352580000004, - "count": 1249, + "call": "MPI_Isend", + "ttot": 0.00010490419000000001, + "count": 234, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 10.184466, + "count": 2786, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { - "call": "MPI_Allreduce", - "ttot": 0.050907191, - "count": 58, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "call": "MPI_Testall", + "ttot": 0.000153782, + "count": 302, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { - "call": "MPI_Alltoallv", - "ttot": 9.610812, - "count": 2786, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "call": "MPI_Sendrecv_replace", + "ttot": 0.10271857, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { - "call": "MPI_Reduce", - "ttot": 0.030506603, - "count": 254, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "call": "MPI_Waitall", + "ttot": 0.000457045, + "count": 3129, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allgatherv", - "ttot": 0.0089994, + "ttot": 0.022197, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.27379057, + "count": 286, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Comm_size", - "ttot": 0.000034332, + "ttot": 0.000062704, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.000265602, - "count": 571, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.000275616, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 33.638999999999996, - "count": 2951, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "ttot": 1.55221, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Alltoall", - "ttot": 0.67114, + "ttot": 0.020758, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.00025606, + "ttot": 0.00022388, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "75", - "ttot": 44.05081399769999, + "nr": "1", + "ttot": 15.975650506780006, "mpiCalls": [ { - "call": "MPI_Bcast", - "ttot": 0.0758122907, - "count": 1249, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "call": "MPI_Recv", + "ttot": 0.5678770353299999, + "count": 10480, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { - "call": "MPI_Allreduce", - "ttot": 0.050882301000000005, - "count": 58, + "call": "MPI_Isend", + "ttot": 0.0012328606400000012, + "count": 2147, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 2.389828671200002, + "count": 5848, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, + { + "call": "MPI_Send", + "ttot": 0.24182286354000007, + "count": 2559, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Rsend", + "ttot": 0.001460551, + "count": 1887, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.12325898, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, { "call": "MPI_Alltoallv", - "ttot": 9.609024999999999, + "ttot": 10.498218, "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.21498742507, + "count": 290, "color": "rgb(204, 37, 41)", "hoverColor": "rgb(224, 57, 61)" }, { - "call": "MPI_Reduce", - "ttot": 0.025202287999999996, - "count": 254, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "call": "MPI_Testall", + "ttot": 0.00171541, + "count": 2208, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.09847682000000002, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.000434395, + "count": 3758, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allgatherv", - "ttot": 0.0067176, + "ttot": 0.0302921, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0034611250000000007, + "count": 16, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.000049114000000000004, + "ttot": 0.000054121000000000006, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.000219344, - "count": 571, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.000301359, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 33.614999999999995, - "count": 2951, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "ttot": 1.77539, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Alltoall", - "ttot": 0.66765, + "ttot": 0.026608, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.00025606, + "ttot": 0.00023079, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "74", - "ttot": 43.9668143478, + "nr": "2", + "ttot": 15.809062327609976, "mpiCalls": [ { - "call": "MPI_Bcast", - "ttot": 0.07587552879999998, - "count": 1249, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "call": "MPI_Recv", + "ttot": 1.0568724843299997, + "count": 14860, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { - "call": "MPI_Allreduce", - "ttot": 0.050798567, - "count": 58, + "call": "MPI_Isend", + "ttot": 0.0026657611300000008, + "count": 2775, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 1.9255137931000008, + "count": 5872, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, + { + "call": "MPI_Send", + "ttot": 0.20793091165000002, + "count": 3207, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Rsend", + "ttot": 0.0014786550000000002, + "count": 1887, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.122243579, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0027918960000000003, + "count": 16, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Alltoallv", - "ttot": 9.61383, + "ttot": 10.366307, "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.2637825194, + "count": 290, "color": "rgb(204, 37, 41)", "hoverColor": "rgb(224, 57, 61)" }, { - "call": "MPI_Reduce", - "ttot": 0.025502434, - "count": 254, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "call": "MPI_Testall", + "ttot": 0.0022604500000000002, + "count": 2843, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.10154762000000002, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.0005664800000000001, + "count": 4387, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allgatherv", - "ttot": 0.008594000000000001, + "ttot": 0.0264198, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Comm_size", - "ttot": 0.000030756, + "ttot": 0.000054836, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.00024700199999999996, - "count": 571, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.00031566200000000003, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 33.524, - "count": 2951, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "ttot": 1.7048200000000002, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" - }, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Alltoall", - "ttot": 0.66768, + "ttot": 0.023267, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.00025606, + "ttot": 0.00022388, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "71", - "ttot": 26.100210049599998, + "nr": "3", + "ttot": 15.759173025219994, "mpiCalls": [ { - "call": "MPI_Bcast", - "ttot": 0.09361409259999999, - "count": 1249, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" - }, - { - "call": "MPI_Allreduce", - "ttot": 0.053112052, - "count": 58, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" - }, - { - "call": "MPI_Alltoallv", - "ttot": 9.947687999999998, - "count": 2786, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" - }, - { - "call": "MPI_Reduce", - "ttot": 0.07574534000000001, - "count": 254, + "call": "MPI_Recv", + "ttot": 1.4493436802200004, + "count": 15595, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { - "call": "MPI_Allgatherv", - "ttot": 0.014533, - "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" - }, - { - "call": "MPI_Comm_size", - "ttot": 0.00008058499999999999, - "count": 316, + "call": "MPI_Isend", + "ttot": 0.011145869169999996, + "count": 3469, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { - "call": "MPI_Comm_rank", - "ttot": 0.00042105, - "count": 571, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" - }, - { - "call": "MPI_Finalize", - "ttot": 0, - "count": 1, + "call": "MPI_Bcast", + "ttot": 1.5784419098, + "count": 5896, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { - "call": "MPI_Barrier", - "ttot": 15.8889, - "count": 2951, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" - }, - { - "call": "MPI_Init", - "ttot": 0, - "count": 1, + "call": "MPI_Send", + "ttot": 0.14661139333000003, + "count": 3212, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Alltoall", - "ttot": 0.025883, - "count": 1, + "call": "MPI_Rsend", + "ttot": 0.00162627, + "count": 1887, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { - "call": "MPI_Allgather", - "ttot": 0.00023293, - "count": 3, + "call": "MPI_Allreduce", + "ttot": 0.12208520700000002, + "count": 751, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" - } - ] - }, - { - "nr": "70", - "ttot": 26.014078335600026, - "mpiCalls": [ - { - "call": "MPI_Bcast", - "ttot": 0.09372365960000001, - "count": 1249, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" }, { - "call": "MPI_Allreduce", - "ttot": 0.053245104, - "count": 58, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "call": "MPI_Wait", + "ttot": 0.008463583000000002, + "count": 20, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Alltoallv", - "ttot": 9.999503, + "ttot": 10.395824, "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.15323943070000004, + "count": 290, "color": "rgb(204, 37, 41)", "hoverColor": "rgb(224, 57, 61)" }, { - "call": "MPI_Reduce", - "ttot": 0.07571014999999996, - "count": 254, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "call": "MPI_Testall", + "ttot": 0.00379825, + "count": 4880, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.10104484999999999, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.0007329000000000001, + "count": 5016, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allgatherv", - "ttot": 0.029296000000000003, + "ttot": 0.023153899999999998, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Comm_size", - "ttot": 0.000081062, + "ttot": 0.00006175, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.00035452, - "count": 571, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.000320192, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 15.7228, - "count": 2951, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "ttot": 1.74158, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Alltoall", - "ttot": 0.039135, + "ttot": 0.02147, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", "ttot": 0.00022984, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "69", - "ttot": 25.958875071900025, + "nr": "4", + "ttot": 15.53585033827001, "mpiCalls": [ { - "call": "MPI_Bcast", - "ttot": 0.09318168490000002, - "count": 1249, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" - }, - { - "call": "MPI_Allreduce", - "ttot": 0.053263151999999994, - "count": 58, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" - }, - { - "call": "MPI_Alltoallv", - "ttot": 10.062656000000002, - "count": 2786, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" - }, - { - "call": "MPI_Reduce", - "ttot": 0.07726380999999999, - "count": 254, + "call": "MPI_Recv", + "ttot": 1.8410110507499986, + "count": 22035, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { - "call": "MPI_Allgatherv", - "ttot": 0.0176021, - "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" - }, - { - "call": "MPI_Comm_size", - "ttot": 0.000054359, - "count": 316, + "call": "MPI_Isend", + "ttot": 0.011805329859999993, + "count": 4258, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { - "call": "MPI_Comm_rank", - "ttot": 0.000349996, - "count": 571, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" - }, - { - "call": "MPI_Finalize", - "ttot": 0, - "count": 1, + "call": "MPI_Bcast", + "ttot": 1.2446470209000007, + "count": 5920, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { - "call": "MPI_Barrier", - "ttot": 15.6336, - "count": 2951, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" - }, - { - "call": "MPI_Init", - "ttot": 0, - "count": 1, + "call": "MPI_Send", + "ttot": 0.09170505105999995, + "count": 3259, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Alltoall", - "ttot": 0.020677, - "count": 1, + "call": "MPI_Rsend", + "ttot": 0.001564939, + "count": 1887, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { - "call": "MPI_Allgather", - "ttot": 0.00022697, - "count": 3, + "call": "MPI_Allreduce", + "ttot": 0.119807129, + "count": 751, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" - } - ] - }, - { - "nr": "68", - "ttot": 25.80518858960002, - "mpiCalls": [ - { - "call": "MPI_Bcast", - "ttot": 0.09333297160000005, - "count": 1249, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" }, { - "call": "MPI_Allreduce", - "ttot": 0.053382062, - "count": 58, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "call": "MPI_Wait", + "ttot": 0.0063601330000000005, + "count": 18, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Alltoallv", - "ttot": 9.867192000000001, + "ttot": 10.166525, "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.2624184267000001, + "count": 290, "color": "rgb(204, 37, 41)", "hoverColor": "rgb(224, 57, 61)" }, { - "call": "MPI_Reduce", - "ttot": 0.07769618999999998, - "count": 254, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "call": "MPI_Testall", + "ttot": 0.0044327, + "count": 5583, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.10206357000000002, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.0008096700000000001, + "count": 5645, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allgatherv", - "ttot": 0.011446, + "ttot": 0.0248691, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Comm_size", - "ttot": 0.000062466, + "ttot": 0.00005889, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.00035000000000000005, - "count": 571, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.000291348, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 15.677200000000001, - "count": 2951, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "ttot": 1.6337700000000002, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Alltoall", - "ttot": 0.024288, + "ttot": 0.023479, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.0002389, + "ttot": 0.00023198, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "67", - "ttot": 25.3610920469, + "nr": "5", + "ttot": 15.560861262119976, "mpiCalls": [ { - "call": "MPI_Bcast", - "ttot": 0.09346506290000006, - "count": 1249, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "call": "MPI_Recv", + "ttot": 2.033075602210001, + "count": 20868, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { - "call": "MPI_Allreduce", - "ttot": 0.053361688, - "count": 58, + "call": "MPI_Isend", + "ttot": 0.014211187870000001, + "count": 4934, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 1.0858401414700007, + "count": 5944, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, + { + "call": "MPI_Send", + "ttot": 0.04863151650000001, + "count": 3271, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Rsend", + "ttot": 0.001616456, + "count": 1887, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.11829196599999998, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.007386683, + "count": 18, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Alltoallv", - "ttot": 9.998135000000001, + "ttot": 10.284829999999998, "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.16292691807000004, + "count": 290, "color": "rgb(204, 37, 41)", "hoverColor": "rgb(224, 57, 61)" }, { - "call": "MPI_Reduce", - "ttot": 0.07790015999999998, - "count": 254, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "call": "MPI_Testall", + "ttot": 0.0053584999999999995, + "count": 6661, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.10185024000000001, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.0009353199999999999, + "count": 6274, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allgatherv", - "ttot": 0.013122100000000001, + "ttot": 0.0201089, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Comm_size", - "ttot": 0.000056505, + "ttot": 0.000066996, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.000326631, - "count": 571, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.000300885, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 15.119700000000002, - "count": 2951, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "ttot": 1.65308, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Alltoall", - "ttot": 0.004781, + "ttot": 0.022107, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.0002439, + "ttot": 0.00024295, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "65", - "ttot": 25.355878281299994, - "mpiCalls": [ + "nr": "6", + "ttot": 15.619172054540023, + "mpiCalls": [ { - "call": "MPI_Bcast", - "ttot": 0.09328962930000002, - "count": 1249, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "call": "MPI_Recv", + "ttot": 2.223045383629999, + "count": 25308, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { - "call": "MPI_Allreduce", - "ttot": 0.053463041, - "count": 58, + "call": "MPI_Isend", + "ttot": 0.014860891369999997, + "count": 5650, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.9371035065700006, + "count": 5946, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, + { + "call": "MPI_Wait", + "ttot": 0.01195813, + "count": 18, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Send", + "ttot": 0.015307682900000001, + "count": 3247, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Rsend", + "ttot": 0.0017226210000000001, + "count": 1887, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.115040794, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, { "call": "MPI_Alltoallv", - "ttot": 10.096927999999998, + "ttot": 10.278776999999998, "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.24576443206999993, + "count": 290, "color": "rgb(204, 37, 41)", "hoverColor": "rgb(224, 57, 61)" }, { - "call": "MPI_Reduce", - "ttot": 0.07751931999999997, - "count": 254, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "call": "MPI_Testall", + "ttot": 0.0056784999999999995, + "count": 10279, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.10188564, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.0010020699999999999, + "count": 6895, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allgatherv", - "ttot": 0.0175599, + "ttot": 0.0201059, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Comm_size", - "ttot": 0.000060797, + "ttot": 0.00005579, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.000337844, - "count": 571, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.000288723, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 15.0155, - "count": 2951, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "ttot": 1.6209699999999998, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Alltoall", - "ttot": 0.00098491, + "ttot": 0.025368, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.00023484, + "ttot": 0.00023699, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "66", - "ttot": 25.3238025593, + "nr": "7", + "ttot": 15.878199844159997, "mpiCalls": [ { - "call": "MPI_Bcast", - "ttot": 0.09365067330000007, - "count": 1249, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "call": "MPI_Recv", + "ttot": 2.282859151389998, + "count": 19407, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { - "call": "MPI_Allreduce", - "ttot": 0.053406423, - "count": 58, + "call": "MPI_Isend", + "ttot": 0.014797200529999992, + "count": 5368, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.9071777045000007, + "count": 2196, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, + { + "call": "MPI_Send", + "ttot": 0.01193802724, + "count": 1952, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.11224292500000001, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, { "call": "MPI_Alltoallv", - "ttot": 10.030248, + "ttot": 10.368096, "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.14618814450000006, + "count": 290, "color": "rgb(204, 37, 41)", "hoverColor": "rgb(224, 57, 61)" }, { - "call": "MPI_Reduce", - "ttot": 0.07782849999999998, - "count": 254, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "call": "MPI_Testall", + "ttot": 0.0053554, + "count": 10014, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0172751, + "count": 18, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.10499514199999997, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.0008323199999999999, + "count": 5024, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allgatherv", - "ttot": 0.013731, + "ttot": 0.0206999, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Comm_size", - "ttot": 0.00007391, + "ttot": 0.000051498, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.000335213, - "count": 571, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.000296591, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 15.0529, - "count": 2951, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "ttot": 1.85495, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Alltoall", - "ttot": 0.001399, + "ttot": 0.030218, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.00022984, + "ttot": 0.00022674, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "64", - "ttot": 25.253347003199988, + "nr": "8", + "ttot": 15.751374137369972, "mpiCalls": [ { - "call": "MPI_Bcast", - "ttot": 0.09342777320000002, - "count": 1249, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "call": "MPI_Recv", + "ttot": 0.3782823347800003, + "count": 4099, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { - "call": "MPI_Allreduce", - "ttot": 0.053496269, - "count": 58, + "call": "MPI_Isend", + "ttot": 0.0013437281500000002, + "count": 2174, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 2.5217817502000024, + "count": 6453, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, + { + "call": "MPI_Send", + "ttot": 0.038497552639999995, + "count": 4429, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.09984486000000001, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, { "call": "MPI_Alltoallv", - "ttot": 9.882633, + "ttot": 10.165184, "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Testall", + "ttot": 0.0018356099999999999, + "count": 2261, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.42325227460000003, + "count": 310, "color": "rgb(204, 37, 41)", "hoverColor": "rgb(224, 57, 61)" }, { - "call": "MPI_Reduce", - "ttot": 0.07836395999999998, - "count": 254, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "call": "MPI_Sendrecv_replace", + "ttot": 0.10102455, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.015599323, + "count": 4387, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allgatherv", - "ttot": 0.012194400000000001, + "ttot": 0.0179179, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Wait", + "ttot": 0.00028133, + "count": 6, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.000072956, + "ttot": 0.000058889, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.000341895, - "count": 571, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.000274658, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 15.1324, - "count": 2951, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "ttot": 1.9482300000000001, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.000264407, + "count": 629, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoall", - "ttot": 0.00019097, + "ttot": 0.037474, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.00022578, + "ttot": 0.00022697, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "61", - "ttot": 19.29334635168997, + "nr": "9", + "ttot": 15.73480711672997, "mpiCalls": [ { "call": "MPI_Recv", - "ttot": 0.4362640967900001, - "count": 11491, + "ttot": 0.4812804787399999, + "count": 7819, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Isend", - "ttot": 0.016168150830000005, - "count": 5649, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "ttot": 0.00066494582, + "count": 904, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 2.184497727870001, - "count": 9718, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "ttot": 2.397562328599999, + "count": 6477, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.05565374939999999, - "count": 10861, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "ttot": 0.22855347310000004, + "count": 3219, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Allreduce", - "ttot": 0.08702788500000001, + "ttot": 0.09841238699999998, "count": 751, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoallv", - "ttot": 10.160381000000001, + "ttot": 10.276499, "count": 2786, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Reduce", - "ttot": 0.11132401279999996, - "count": 420, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.11574596746999999, + "count": 314, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Testall", - "ttot": 0.0080016, - "count": 10459, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "ttot": 0.00070882, + "count": 961, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.11464793999999999, + "ttot": 0.1029875, "count": 192, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.01177192, - "count": 10677, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.017031688, + "count": 5016, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allgatherv", - "ttot": 0.0224981, + "ttot": 0.0216052, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Wait", - "ttot": 0.0078304, - "count": 16, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "ttot": 0.00080752, + "count": 12, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.000061274, + "ttot": 0.000057221, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.00037861000000000004, + "ttot": 0.000319476, "count": 590, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 6.0644, + "ttot": 1.9540899999999999, "count": 2963, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Irecv", - "ttot": 0.000267025, + "ttot": 0.00023126100000000002, "count": 629, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoall", - "ttot": 0.011923, + "ttot": 0.03801, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.00024986, + "ttot": 0.00023985, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "62", - "ttot": 19.220029153059997, + "nr": "10", + "ttot": 16.23508221073999, "mpiCalls": [ { "call": "MPI_Recv", - "ttot": 0.23117496040000013, - "count": 11587, + "ttot": 0.25491782352000014, + "count": 4154, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Isend", - "ttot": 0.006822140839999999, - "count": 5796, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "ttot": 0.0017349618000000021, + "count": 2168, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 2.3469808120000017, - "count": 9720, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "ttot": 2.7450730582999974, + "count": 6501, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.04677545131999999, - "count": 11468, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "ttot": 0.18172575572000005, + "count": 6359, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Allreduce", - "ttot": 0.086880343, + "ttot": 0.09809465800000002, "count": 751, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoallv", - "ttot": 10.175590999999999, + "ttot": 10.329491, "count": 2786, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Reduce", - "ttot": 0.1429265545, - "count": 420, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.24802786440000008, + "count": 314, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Testall", - "ttot": 0.0087659, - "count": 6036, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "ttot": 0.00180671, + "count": 2252, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Wait", + "ttot": 0.003495008, + "count": 22, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.11526629599999999, + "ttot": 0.10408392000000001, "count": 192, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.0108056, - "count": 11298, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.01991296, + "count": 5645, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allgatherv", - "ttot": 0.027831, + "ttot": 0.0239941, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" - }, - { - "call": "MPI_Wait", - "ttot": 0.0078907, - "count": 16, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Comm_size", - "ttot": 0.000072718, + "ttot": 0.000063896, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.000373362, + "ttot": 0.000308032, "count": 590, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 6.007, + "ttot": 2.18403, "count": 2963, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Irecv", - "ttot": 0.000283475, + "ttot": 0.000183583, "count": 629, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoall", - "ttot": 0.0043571, + "ttot": 0.037915, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.00023174, + "ttot": 0.00022388, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "60", - "ttot": 19.103875352880006, + "nr": "11", + "ttot": 16.599467375899994, "mpiCalls": [ { "call": "MPI_Recv", - "ttot": 0.48654702728000015, - "count": 10156, + "ttot": 0.7679156280699994, + "count": 6123, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Isend", - "ttot": 0.017260943320000003, - "count": 5614, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "ttot": 0.008408305260000004, + "count": 2233, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 2.163108969699999, - "count": 9694, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "ttot": 2.2686491221000002, + "count": 6525, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { - "call": "MPI_Send", - "ttot": 0.05035948988000002, - "count": 10246, + "call": "MPI_Wait", + "ttot": 0.004939139, + "count": 26, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, + { + "call": "MPI_Send", + "ttot": 0.16071653269999991, + "count": 7001, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, { "call": "MPI_Allreduce", - "ttot": 0.08776415499999998, + "ttot": 0.09764781600000001, "count": 751, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoallv", - "ttot": 10.407040000000002, + "ttot": 10.166377, "count": 2786, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Reduce", - "ttot": 0.2117246547000001, - "count": 420, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.10913450377000002, + "count": 314, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Testall", - "ttot": 0.0065689, - "count": 11055, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "ttot": 0.0025613, + "count": 3095, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.11511125, + "ttot": 0.10274056, "count": 192, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.01336819, - "count": 10048, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.030803860000000002, + "count": 6274, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allgatherv", - "ttot": 0.0247319, + "ttot": 0.036773, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" - }, - { - "call": "MPI_Wait", - "ttot": 0.0070093, - "count": 16, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Comm_size", - "ttot": 0.00006938, + "ttot": 0.000062943, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.00035095000000000005, + "ttot": 0.00034499300000000004, "count": 590, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 5.5095, + "ttot": 2.79352, "count": 2963, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Irecv", - "ttot": 0.000251533, + "ttot": 0.000214813, "count": 629, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoall", - "ttot": 0.0028598, + "ttot": 0.048413, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.00024891, + "ttot": 0.00024486, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "63", - "ttot": 18.969433646420025, + "nr": "12", + "ttot": 15.092427042950003, "mpiCalls": [ + { + "call": "MPI_Wait", + "ttot": 0.008002519, + "count": 24, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Recv", - "ttot": 0.26822989819, - "count": 4322, + "ttot": 1.1562828715000004, + "count": 6356, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { - "call": "MPI_Bcast", - "ttot": 2.576343747039999, - "count": 5970, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "call": "MPI_Isend", + "ttot": 0.009871079230000001, + "count": 2393, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { - "call": "MPI_Isend", - "ttot": 0.00058745979, - "count": 396, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "call": "MPI_Bcast", + "ttot": 1.922925832799999, + "count": 6549, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.046339684600000014, - "count": 10245, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "ttot": 0.09594198115000008, + "count": 7670, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Allreduce", - "ttot": 0.08630665099999998, + "ttot": 0.094500625, "count": 751, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoallv", - "ttot": 10.101113999999999, + "ttot": 9.65881, "count": 2786, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Reduce", - "ttot": 0.0990658688, - "count": 420, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.23842671227, + "count": 314, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Testall", - "ttot": 0.000356431, - "count": 587, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "ttot": 0.00335147, + "count": 2779, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.11816296999999999, + "ttot": 0.08958107999999998, "count": 192, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.0010340199999999999, - "count": 8798, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.028001320000000003, + "count": 6903, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allgatherv", - "ttot": 0.0206871, + "ttot": 0.025332, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" - }, - { - "call": "MPI_Wait", - "ttot": 0.0088623, - "count": 16, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Comm_size", - "ttot": 0.000061036, + "ttot": 0.000067234, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.00037026, + "ttot": 0.00036788, "count": 590, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 5.6408000000000005, + "ttot": 1.75027, "count": 2963, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.000223638, + "count": 629, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoall", - "ttot": 0.00087309, + "ttot": 0.010235, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.00023913, + "ttot": 0.0002358, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "11", - "ttot": 16.599467375899994, + "nr": "13", + "ttot": 15.102341357549955, "mpiCalls": [ { "call": "MPI_Recv", - "ttot": 0.7679156280699994, - "count": 6123, + "ttot": 1.4813235307099992, + "count": 9544, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Isend", - "ttot": 0.008408305260000004, - "count": 2233, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "ttot": 0.01072694688, + "count": 2440, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 2.2686491221000002, - "count": 6525, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" - }, - { - "call": "MPI_Wait", - "ttot": 0.004939139, - "count": 26, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "ttot": 1.6724532270699992, + "count": 6573, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.16071653269999991, - "count": 7001, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "ttot": 0.053713302019999985, + "count": 8311, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Allreduce", - "ttot": 0.09764781600000001, + "ttot": 0.09412623199999999, "count": 751, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoallv", - "ttot": 10.166377, + "ttot": 9.952701000000001, "count": 2786, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Reduce", - "ttot": 0.10913450377000002, + "ttot": 0.11083247786999992, "count": 314, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Testall", - "ttot": 0.0025613, - "count": 3095, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "ttot": 0.003509, + "count": 2944, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Wait", + "ttot": 0.008180109999999999, + "count": 24, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.10274056, + "ttot": 0.09065938999999999, "count": 192, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.030803860000000002, - "count": 6274, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.0212981, + "count": 7532, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allgatherv", - "ttot": 0.036773, + "ttot": 0.0255831, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Comm_size", - "ttot": 0.000062943, + "ttot": 0.000065803, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.00034499300000000004, + "ttot": 0.00041056, "count": 590, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" - }, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, { "call": "MPI_Barrier", - "ttot": 2.79352, + "ttot": 1.5622, "count": 2963, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Irecv", - "ttot": 0.000214813, + "ttot": 0.000199798, "count": 629, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoall", - "ttot": 0.048413, + "ttot": 0.014133, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.00024486, + "ttot": 0.00022578, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "47", - "ttot": 16.52765804833999, + "nr": "14", + "ttot": 15.240989078380013, "mpiCalls": [ { "call": "MPI_Recv", - "ttot": 0.6376472186300006, - "count": 8718, + "ttot": 1.6827016316099994, + "count": 7109, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { - "call": "MPI_Bcast", - "ttot": 2.4568708354999997, - "count": 5341, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "call": "MPI_Isend", + "ttot": 0.01028099321, + "count": 2527, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { - "call": "MPI_Isend", - "ttot": 0.016149369619999996, - "count": 4182, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "call": "MPI_Bcast", + "ttot": 1.5044328749000007, + "count": 6575, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.04148374957999999, - "count": 9543, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "ttot": 0.02456118616, + "count": 8924, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Allreduce", - "ttot": 0.086938967, + "ttot": 0.09088584100000002, "count": 751, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoallv", - "ttot": 10.255526000000001, + "ttot": 9.933560000000002, "count": 2786, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Reduce", - "ttot": 0.18915924801000006, - "count": 410, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.20221728150000004, + "count": 314, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Testall", - "ttot": 0.008466, - "count": 7381, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" - }, - { - "call": "MPI_Wait", - "ttot": 0.011627963, - "count": 26, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "ttot": 0.00414636, + "count": 3214, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.102286353, + "ttot": 0.08873022000000001, "count": 192, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.0007586499999999999, - "count": 8169, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.01746137, + "count": 8153, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allgatherv", - "ttot": 0.0248759, + "ttot": 0.024000900000000002, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Wait", + "ttot": 0.012754754, + "count": 24, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.000097514, + "ttot": 0.00006485, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0003953, + "ttot": 0.00038576, "count": 590, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 2.66728, + "ttot": 1.6415899999999999, "count": 2963, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.00023841600000000003, + "count": 629, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoall", - "ttot": 0.027863, + "ttot": 0.0027499, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.00023198, + "ttot": 0.00022674, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "35", - "ttot": 16.381322831789987, + "nr": "15", + "ttot": 14.973381586339986, "mpiCalls": [ { "call": "MPI_Recv", - "ttot": 0.6873742318399998, - "count": 14995, + "ttot": 1.8110626778600007, + "count": 6845, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Isend", - "ttot": 0.004236422239999999, - "count": 4172, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "ttot": 0.009438568519999998, + "count": 1616, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 2.0721551674000014, - "count": 8412, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "ttot": 1.4184390602, + "count": 2825, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.04588769710999993, - "count": 8295, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, - { - "call": "MPI_Rsend", - "ttot": 0.00258086, - "count": 1258, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "ttot": 0.02436256829, + "count": 7009, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Allreduce", - "ttot": 0.09150082300000002, + "ttot": 0.09010908299999999, "count": 751, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.008834126999999999, + "count": 24, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Alltoallv", - "ttot": 10.124158999999999, + "ttot": 9.674377999999999, "count": 2786, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Reduce", - "ttot": 0.18671157019999987, - "count": 386, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.10958939246999996, + "count": 314, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Testall", - "ttot": 0.00484967, - "count": 4343, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "ttot": 0.0037415, + "count": 2353, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.10105324999999998, + "ttot": 0.09241506999999999, "count": 192, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.0022251500000000004, - "count": 8161, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.00065208, + "count": 5653, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allgatherv", - "ttot": 0.0237571, + "ttot": 0.0225679, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" - }, - { - "call": "MPI_Wait", - "ttot": 0.0037386, - "count": 18, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Comm_size", - "ttot": 0.000079632, + "ttot": 0.000067949, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.00039267, + "ttot": 0.00036859, "count": 590, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 2.99499, + "ttot": 1.7045, "count": 2963, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" - }, - { - "call": "MPI_Irecv", - "ttot": 0.000243188, - "count": 629, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Alltoall", - "ttot": 0.035152, + "ttot": 0.0026259, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.0002358, + "ttot": 0.00022912, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "46", - "ttot": 16.354134599110022, + "nr": "16", + "ttot": 14.609302354369982, "mpiCalls": [ { "call": "MPI_Recv", - "ttot": 0.49582354734000006, - "count": 8973, + "ttot": 0.4111648220800001, + "count": 7879, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Isend", - "ttot": 0.01686049568000001, - "count": 5093, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "ttot": 0.002846956150000001, + "count": 2808, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 2.509739931399997, - "count": 9091, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "ttot": 2.435796141300001, + "count": 7082, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { - "call": "MPI_Wait", - "ttot": 0.010137324, - "count": 26, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "call": "MPI_Send", + "ttot": 0.04891785014, + "count": 5123, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Send", - "ttot": 0.03970151124999997, - "count": 11413, + "call": "MPI_Rsend", + "ttot": 0.00248124, + "count": 629, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Allreduce", - "ttot": 0.08811297000000001, + "ttot": 0.10112897900000004, "count": 751, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoallv", - "ttot": 10.336083000000002, + "ttot": 10.215949, "count": 2786, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { - "call": "MPI_Reduce", - "ttot": 0.23569120943999997, - "count": 410, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "call": "MPI_Testall", + "ttot": 0.00239397, + "count": 2915, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { - "call": "MPI_Testall", - "ttot": 0.008995, - "count": 7827, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "call": "MPI_Reduce", + "ttot": 0.41662613769999984, + "count": 334, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.09695118000000001, + "ttot": 0.09217093999999998, "count": 192, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.021357440000000002, - "count": 10669, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.01286429, + "count": 5016, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allgatherv", - "ttot": 0.0288228, + "ttot": 0.022010000000000002, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Wait", + "ttot": 0.00066781, + "count": 6, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.00009632100000000002, + "ttot": 0.00006747200000000001, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.000352381, + "ttot": 0.00037241, "count": 590, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 2.43639, + "ttot": 0.83819, "count": 2963, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Irecv", - "ttot": 0.000192638, + "ttot": 0.000268696, "count": 629, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoall", - "ttot": 0.028587, + "ttot": 0.0051539, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.00023985, + "ttot": 0.00023174, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "10", - "ttot": 16.23508221073999, + "nr": "17", + "ttot": 14.53842167022001, "mpiCalls": [ { "call": "MPI_Recv", - "ttot": 0.25491782352000014, - "count": 4154, + "ttot": 0.3535194385100001, + "count": 7892, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Isend", - "ttot": 0.0017349618000000021, - "count": 2168, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "ttot": 0.0029404596600000007, + "count": 2820, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 2.7450730582999974, - "count": 6501, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "ttot": 2.4593783734000025, + "count": 7106, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.18172575572000005, - "count": 6359, + "ttot": 0.03899082357999999, + "count": 5096, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Rsend", + "ttot": 0.00241782, + "count": 629, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Allreduce", - "ttot": 0.09809465800000002, + "ttot": 0.10051204700000002, "count": 751, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoallv", - "ttot": 10.329491, + "ttot": 10.15247, "count": 2786, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Reduce", - "ttot": 0.24802786440000008, - "count": 314, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.37723219906999983, + "count": 338, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Testall", - "ttot": 0.00180671, - "count": 2252, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" - }, - { - "call": "MPI_Wait", - "ttot": 0.003495008, - "count": 22, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "ttot": 0.00308702, + "count": 2928, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.10408392000000001, + "ttot": 0.092885, "count": 192, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.01991296, + "ttot": 0.00783724, "count": 5645, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allgatherv", - "ttot": 0.0239941, + "ttot": 0.0192839, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0012367, + "count": 12, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.000063896, + "ttot": 0.000064373, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.000308032, + "ttot": 0.0003612, "count": 590, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 2.18403, + "ttot": 0.92319, "count": 2963, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Irecv", - "ttot": 0.000183583, + "ttot": 0.000269176, "count": 629, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoall", - "ttot": 0.037915, + "ttot": 0.002502, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.00022388, + "ttot": 0.0002439, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "34", - "ttot": 16.199004389339986, + "nr": "18", + "ttot": 14.645967246400001, "mpiCalls": [ { "call": "MPI_Recv", - "ttot": 0.6799044075099999, - "count": 14909, + "ttot": 0.5150429139900001, + "count": 11644, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Isend", - "ttot": 0.012305780519999997, - "count": 4107, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "ttot": 0.0009932504900000002, + "count": 900, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 2.105267984699999, - "count": 8388, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "ttot": 2.2899065972, + "count": 7130, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.04644163790999999, - "count": 7722, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "ttot": 0.19398750152000005, + "count": 5129, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Rsend", - "ttot": 0.004313727, - "count": 1258, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "ttot": 0.00241708, + "count": 629, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Allreduce", - "ttot": 0.09114196500000002, + "ttot": 0.100154015, "count": 751, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoallv", - "ttot": 10.214250999999999, + "ttot": 10.320586, "count": 2786, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Reduce", - "ttot": 0.3069537977000001, - "count": 386, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.23287154920000006, + "count": 338, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Testall", - "ttot": 0.0063324, - "count": 5704, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "ttot": 0.0006816299999999999, + "count": 981, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.10187830999999997, + "ttot": 0.09359680000000001, "count": 192, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.00220347, - "count": 7532, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.00680213, + "count": 6274, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allgatherv", - "ttot": 0.019794, + "ttot": 0.021698, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Wait", - "ttot": 0.0035303, - "count": 14, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "ttot": 0.0019255, + "count": 12, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.000082254, + "ttot": 0.000077962, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.000286343, + "ttot": 0.00037646, "count": 590, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 2.5632099999999998, + "ttot": 0.86195, "count": 2963, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Irecv", - "ttot": 0.00023627200000000002, + "ttot": 0.00023627700000000001, "count": 629, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoall", - "ttot": 0.040639, + "ttot": 0.0024378, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.00023174, + "ttot": 0.00022578, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "25", - "ttot": 16.12148463571998, + "nr": "19", + "ttot": 15.018596167829987, "mpiCalls": [ { "call": "MPI_Recv", - "ttot": 0.4350759287600002, - "count": 7295, + "ttot": 0.3359637512700002, + "count": 8667, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Isend", - "ttot": 0.00988428261999999, - "count": 3469, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "ttot": 0.012594232819999995, + "count": 2882, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 2.348750659469998, - "count": 7735, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "ttot": 2.6447421142700023, + "count": 7154, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.052992475899999954, - "count": 5798, + "ttot": 0.14167560883, + "count": 7650, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Rsend", + "ttot": 0.0018684600000000002, + "count": 629, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Allreduce", - "ttot": 0.10049133499999999, + "ttot": 0.10036888000000002, "count": 751, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoallv", - "ttot": 10.440216999999999, + "ttot": 10.507214999999999, "count": 2786, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" - }, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, { "call": "MPI_Reduce", - "ttot": 0.3353991699699998, - "count": 362, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.23946405664, + "count": 338, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Testall", - "ttot": 0.004421690000000001, - "count": 5473, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "ttot": 0.0054038, + "count": 3227, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Wait", + "ttot": 0.006628215, + "count": 26, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.10207924, + "ttot": 0.09128673000000001, "count": 192, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.01200959, - "count": 6274, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.0144137, + "count": 6903, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allgatherv", - "ttot": 0.029943900000000002, + "ttot": 0.0260031, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" - }, - { - "call": "MPI_Wait", - "ttot": 0.0016339, - "count": 16, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Comm_size", - "ttot": 0.00009250600000000001, + "ttot": 0.000068903, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.000305419, + "ttot": 0.00039483, "count": 590, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 2.22641, + "ttot": 0.88715, "count": 2963, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Irecv", - "ttot": 0.000272509, + "ttot": 0.00020384599999999999, "count": 629, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoall", - "ttot": 0.021269, + "ttot": 0.0029211, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.00023603, + "ttot": 0.00022984, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "32", - "ttot": 16.054026814950014, + "nr": "20", + "ttot": 14.918008977650002, "mpiCalls": [ { "call": "MPI_Recv", - "ttot": 0.6163302179499996, - "count": 12350, + "ttot": 0.78936747234, + "count": 12641, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Isend", - "ttot": 0.010426844459999998, - "count": 4092, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "ttot": 0.012066725890000001, + "count": 3034, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 2.2603589799999977, - "count": 8340, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "ttot": 2.2473486272999983, + "count": 7178, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.04664919283999998, - "count": 6457, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "ttot": 0.10457130232000003, + "count": 8307, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Rsend", - "ttot": 0.00578384, - "count": 1258, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "ttot": 0.0019145, + "count": 629, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Allreduce", - "ttot": 0.09210103700000001, + "ttot": 0.097817863, "count": 751, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoallv", - "ttot": 10.111744999999999, + "ttot": 10.18189, "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.2321866857999999, + "count": 338, "color": "rgb(204, 37, 41)", "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Testall", - "ttot": 0.0049483999999999995, - "count": 6825, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" - }, - { - "call": "MPI_Reduce", - "ttot": 0.37235934169999985, - "count": 382, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.00397472, + "count": 3971, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.10045229, + "ttot": 0.08986651999999999, "count": 192, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.0024533000000000003, - "count": 6274, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.01921418, + "count": 7532, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allgatherv", - "ttot": 0.0204951, + "ttot": 0.030067000000000003, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Wait", - "ttot": 0.0019119, - "count": 8, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "ttot": 0.0066671000000000005, + "count": 24, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.000059367, + "ttot": 0.000081062, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.00028276, + "ttot": 0.00036025, "count": 590, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 2.366, + "ttot": 1.07367, "count": 2963, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Irecv", - "ttot": 0.00023031400000000002, + "ttot": 0.000225069, "count": 629, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoall", - "ttot": 0.041206, + "ttot": 0.026476, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.00023293, + "ttot": 0.0002439, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "31", - "ttot": 16.051471883339975, + "nr": "21", + "ttot": 15.054385765739994, "mpiCalls": [ { "call": "MPI_Recv", - "ttot": 1.1315813101499996, - "count": 8130, + "ttot": 0.9970898014199993, + "count": 12091, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, - { - "call": "MPI_Bcast", - "ttot": 2.0026441327699978, - "count": 4083, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" - }, { "call": "MPI_Isend", - "ttot": 0.0109598393, - "count": 2902, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "ttot": 0.013174525149999996, + "count": 3081, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { - "call": "MPI_Send", - "ttot": 0.04990670524999998, - "count": 8268, + "call": "MPI_Bcast", + "ttot": 2.083835995309999, + "count": 7202, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.05636753648999999, + "count": 8940, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Rsend", + "ttot": 0.00197196, + "count": 629, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Wait", + "ttot": 0.008852740000000003, + "count": 24, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Allreduce", - "ttot": 0.095598931, + "ttot": 0.096154166, "count": 751, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoallv", - "ttot": 10.438906000000001, + "ttot": 10.393857, "count": 2786, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Reduce", - "ttot": 0.12592422687000002, - "count": 362, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.22865631536999984, + "count": 338, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Testall", - "ttot": 0.00484176, - "count": 4997, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" - }, - { - "call": "MPI_Wait", - "ttot": 0.008700626000000001, - "count": 28, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "ttot": 0.00456901, + "count": 3860, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.10102496700000002, + "ttot": 0.08988782000000001, "count": 192, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.0008263599999999999, - "count": 6911, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.01699824, + "count": 8161, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allgatherv", - "ttot": 0.0257579, + "ttot": 0.022682, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Comm_size", - "ttot": 0.000054597999999999995, + "ttot": 0.00006938, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.000284667, + "ttot": 0.00037575, "count": 590, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 2.03156, + "ttot": 1.0119799999999999, "count": 2963, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.00022458599999999998, + "count": 629, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoall", - "ttot": 0.022655, + "ttot": 0.027401, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.00024486, + "ttot": 0.00023794, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "1", - "ttot": 15.975650506780006, + "nr": "22", + "ttot": 15.140011650369997, "mpiCalls": [ { "call": "MPI_Recv", - "ttot": 0.5678770353299999, - "count": 10480, + "ttot": 1.3776739672399994, + "count": 16511, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Isend", - "ttot": 0.0012328606400000012, - "count": 2147, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "ttot": 0.012714297459999998, + "count": 3168, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 2.389828671200002, - "count": 5848, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "ttot": 1.7528619240700005, + "count": 7204, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.24182286354000007, - "count": 2559, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "ttot": 0.037287553399999986, + "count": 9553, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Rsend", - "ttot": 0.001460551, - "count": 1887, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "ttot": 0.00159168, + "count": 629, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Allreduce", - "ttot": 0.12325898, + "ttot": 0.09172481899999999, "count": 751, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoallv", - "ttot": 10.498218, + "ttot": 10.367647999999999, "count": 2786, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Reduce", - "ttot": 0.21498742507, - "count": 290, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.1965803971999999, + "count": 338, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Testall", - "ttot": 0.00171541, - "count": 2208, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "ttot": 0.005769509999999999, + "count": 4167, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.09847682000000002, + "ttot": 0.08811398, "count": 192, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.000434395, - "count": 3758, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.01679216, + "count": 8782, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allgatherv", - "ttot": 0.0302921, + "ttot": 0.0287419, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Wait", - "ttot": 0.0034611250000000007, - "count": 16, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "ttot": 0.016869319999999997, + "count": 24, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.000054121000000000006, + "ttot": 0.000063181, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.000301359, + "ttot": 0.00035763, "count": 590, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 1.77539, + "ttot": 1.12614, "count": 2963, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.000178571, + "count": 629, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoall", - "ttot": 0.026608, + "ttot": 0.018661, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.00023079, + "ttot": 0.00024176, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "26", - "ttot": 15.917873462819975, + "nr": "23", + "ttot": 15.138012191459984, "mpiCalls": [ { "call": "MPI_Recv", - "ttot": 0.38195599891, - "count": 6694, + "ttot": 1.4562265672199999, + "count": 11259, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Isend", - "ttot": 0.010405147629999995, - "count": 3474, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "ttot": 0.011807369429999994, + "count": 2257, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 2.353917166899999, - "count": 7759, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "ttot": 1.71316248327, + "count": 3454, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.05315497177999998, - "count": 7022, + "ttot": 0.03669089517000001, + "count": 7662, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Wait", + "ttot": 0.01582013, + "count": 24, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Allreduce", - "ttot": 0.09982600100000001, + "ttot": 0.090683641, "count": 751, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoallv", - "ttot": 10.626902999999999, + "ttot": 10.225473, "count": 2786, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Reduce", - "ttot": 0.3559476535999999, - "count": 362, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.19840730837000004, + "count": 338, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Testall", - "ttot": 0.00435497, - "count": 5210, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "ttot": 0.00514631, + "count": 3341, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.10180007, + "ttot": 0.091836785, "count": 192, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.010949440000000001, - "count": 6903, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.0007774800000000001, + "count": 6282, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allgatherv", - "ttot": 0.019428, + "ttot": 0.025039000000000002, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" - }, - { - "call": "MPI_Wait", - "ttot": 0.0021482, - "count": 16, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Comm_size", - "ttot": 0.000071048, + "ttot": 0.00007200199999999999, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.000316624, + "ttot": 0.00038338, "count": 590, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 1.87213, + "ttot": 1.2319200000000001, "count": 2963, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" - }, - { - "call": "MPI_Irecv", - "ttot": 0.00027919100000000003, - "count": 629, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Alltoall", - "ttot": 0.024054, + "ttot": 0.034331, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.00023198, + "ttot": 0.00023484, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "30", - "ttot": 15.893873240110024, + "nr": "24", + "ttot": 15.640761877700003, "mpiCalls": [ { "call": "MPI_Recv", - "ttot": 0.9987825077200007, - "count": 8398, + "ttot": 0.41958248449, + "count": 4790, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Isend", - "ttot": 0.011851085089999986, - "count": 3813, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "ttot": 0.007919270599999997, + "count": 3457, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 2.075208661499998, - "count": 7833, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "ttot": 2.3986358848999982, + "count": 7711, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.0488837658, - "count": 10159, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "ttot": 0.05565528630999998, + "count": 5799, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Allreduce", - "ttot": 0.096449586, + "ttot": 0.10184986800000002, "count": 751, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoallv", - "ttot": 10.525571, + "ttot": 10.279045, "count": 2786, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" - }, - { - "call": "MPI_Reduce", - "ttot": 0.22517795200000007, - "count": 362, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Testall", - "ttot": 0.00553177, - "count": 6228, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "ttot": 0.0040278499999999995, + "count": 5622, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { - "call": "MPI_Wait", - "ttot": 0.007954841, - "count": 28, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "call": "MPI_Reduce", + "ttot": 0.4596409164000004, + "count": 358, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.09600465, + "ttot": 0.10027632000000002, "count": 192, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.01973047, - "count": 9411, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.01663186, + "count": 5645, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allgatherv", - "ttot": 0.023548, + "ttot": 0.0185741, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0011988, + "count": 10, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.000056744, + "ttot": 0.00006175, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.00028753000000000003, + "ttot": 0.000270128, "count": 590, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 1.74162, + "ttot": 1.76007, "count": 2963, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Irecv", - "ttot": 0.000256777, + "ttot": 0.00027632899999999996, "count": 629, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" - }, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, { "call": "MPI_Alltoall", - "ttot": 0.016719, + "ttot": 0.01681, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.0002389, + "ttot": 0.00023603, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "29", - "ttot": 15.88326664217002, + "nr": "25", + "ttot": 16.12148463571998, "mpiCalls": [ { "call": "MPI_Recv", - "ttot": 0.74809104497, - "count": 8958, + "ttot": 0.4350759287600002, + "count": 7295, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Isend", - "ttot": 0.004007846069999998, - "count": 3726, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "ttot": 0.00988428261999999, + "count": 3469, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 2.2970128968699988, - "count": 7831, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "ttot": 2.348750659469998, + "count": 7735, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.07220827538999994, - "count": 9554, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "ttot": 0.052992475899999954, + "count": 5798, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Allreduce", - "ttot": 0.09782162600000001, + "ttot": 0.10049133499999999, "count": 751, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoallv", - "ttot": 10.453946999999998, + "ttot": 10.440216999999999, "count": 2786, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Reduce", - "ttot": 0.16133715787, + "ttot": 0.3353991699699998, "count": 362, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, - { - "call": "MPI_Wait", - "ttot": 0.006975859, - "count": 28, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Testall", - "ttot": 0.00308677, - "count": 4373, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "ttot": 0.004421690000000001, + "count": 5473, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.09890289000000001, + "ttot": 0.10207924, "count": 192, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.01942236, - "count": 8790, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.01200959, + "count": 6274, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allgatherv", - "ttot": 0.027784999999999997, + "ttot": 0.029943900000000002, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0016339, + "count": 16, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.000050545, + "ttot": 0.00009250600000000001, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.000286342, + "ttot": 0.000305419, "count": 590, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 1.87296, + "ttot": 2.22641, "count": 2963, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Irecv", - "ttot": 0.000212189, + "ttot": 0.000272509, "count": 629, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoall", - "ttot": 0.018929, + "ttot": 0.021269, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.00022984, + "ttot": 0.00023603, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "7", - "ttot": 15.878199844159997, + "nr": "26", + "ttot": 15.917873462819975, "mpiCalls": [ { "call": "MPI_Recv", - "ttot": 2.282859151389998, - "count": 19407, + "ttot": 0.38195599891, + "count": 6694, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Isend", - "ttot": 0.014797200529999992, - "count": 5368, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "ttot": 0.010405147629999995, + "count": 3474, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.9071777045000007, - "count": 2196, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "ttot": 2.353917166899999, + "count": 7759, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.01193802724, - "count": 1952, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "ttot": 0.05315497177999998, + "count": 7022, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Allreduce", - "ttot": 0.11224292500000001, + "ttot": 0.09982600100000001, "count": 751, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoallv", - "ttot": 10.368096, + "ttot": 10.626902999999999, "count": 2786, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Reduce", - "ttot": 0.14618814450000006, - "count": 290, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.3559476535999999, + "count": 362, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Testall", - "ttot": 0.0053554, - "count": 10014, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" - }, - { - "call": "MPI_Wait", - "ttot": 0.0172751, - "count": 18, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "ttot": 0.00435497, + "count": 5210, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.10499514199999997, + "ttot": 0.10180007, "count": 192, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.0008323199999999999, - "count": 5024, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.010949440000000001, + "count": 6903, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allgatherv", - "ttot": 0.0206999, + "ttot": 0.019428, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0021482, + "count": 16, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.000051498, + "ttot": 0.000071048, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.000296591, + "ttot": 0.000316624, "count": 590, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 1.85495, + "ttot": 1.87213, "count": 2963, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.00027919100000000003, + "count": 629, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoall", - "ttot": 0.030218, + "ttot": 0.024054, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.00022674, + "ttot": 0.00023198, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, @@ -6046,6863 +6309,18213 @@ "call": "MPI_Isend", "ttot": 0.0015831013399999995, "count": 975, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", "ttot": 2.380905732699999, "count": 7783, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", "ttot": 0.1598073744700001, "count": 6459, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Allreduce", "ttot": 0.10047440900000001, "count": 751, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoallv", "ttot": 10.328584, "count": 2786, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Reduce", "ttot": 0.1367115567, "count": 362, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Testall", "ttot": 0.00094223, "count": 1052, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Sendrecv_replace", "ttot": 0.1022494, "count": 192, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", "ttot": 0.01713609, "count": 7532, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allgatherv", "ttot": 0.023399, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Wait", "ttot": 0.0023651, "count": 20, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", "ttot": 0.000073671, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", "ttot": 0.000311849, "count": 590, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", "ttot": 2.19334, "count": 2963, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Irecv", "ttot": 0.000260829, "count": 629, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoall", "ttot": 0.020666, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", "ttot": 0.00022984, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "33", - "ttot": 15.861833768869975, + "nr": "28", + "ttot": 15.798452406299996, "mpiCalls": [ { "call": "MPI_Recv", - "ttot": 0.5942001665800002, - "count": 11130, + "ttot": 0.40402568657000004, + "count": 7016, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Isend", - "ttot": 0.01199398728999999, - "count": 4104, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "ttot": 0.003008604200000002, + "count": 3679, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 2.24830234417, - "count": 8364, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "ttot": 2.5723668486999998, + "count": 7807, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.04272000146000001, - "count": 6469, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, - { - "call": "MPI_Rsend", - "ttot": 0.0026189739999999996, - "count": 1258, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "ttot": 0.11467871763000001, + "count": 8913, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Allreduce", - "ttot": 0.09118234500000001, + "ttot": 0.09881549, "count": 751, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoallv", - "ttot": 10.179914, + "ttot": 10.408427, "count": 2786, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Reduce", - "ttot": 0.24987310236999982, - "count": 386, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.2741814112000001, + "count": 362, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Testall", - "ttot": 0.0053203, - "count": 6406, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "ttot": 0.00263141, + "count": 4327, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.10168260999999999, + "ttot": 0.09896202999999999, "count": 192, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.00197649, - "count": 6903, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.02165184, + "count": 8161, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allgatherv", - "ttot": 0.027174999999999998, + "ttot": 0.022279999999999998, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Wait", - "ttot": 0.0025439, - "count": 14, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "ttot": 0.005088283999999999, + "count": 28, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.000076056, + "ttot": 0.000068188, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.00030875499999999997, + "ttot": 0.000292297, "count": 590, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 2.26677, + "ttot": 1.75464, "count": 2963, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Irecv", - "ttot": 0.000242947, + "ttot": 0.000234609, "count": 629, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoall", - "ttot": 0.034702, + "ttot": 0.016858, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.00023079, + "ttot": 0.00024199, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "2", - "ttot": 15.809062327609976, + "nr": "29", + "ttot": 15.88326664217002, "mpiCalls": [ { "call": "MPI_Recv", - "ttot": 1.0568724843299997, - "count": 14860, + "ttot": 0.74809104497, + "count": 8958, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Isend", - "ttot": 0.0026657611300000008, - "count": 2775, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "ttot": 0.004007846069999998, + "count": 3726, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 1.9255137931000008, - "count": 5872, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" - }, - { - "call": "MPI_Send", - "ttot": 0.20793091165000002, - "count": 3207, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "ttot": 2.2970128968699988, + "count": 7831, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { - "call": "MPI_Rsend", - "ttot": 0.0014786550000000002, - "count": 1887, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "call": "MPI_Send", + "ttot": 0.07220827538999994, + "count": 9554, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Allreduce", - "ttot": 0.122243579, + "ttot": 0.09782162600000001, "count": 751, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" - }, - { - "call": "MPI_Wait", - "ttot": 0.0027918960000000003, - "count": 16, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoallv", - "ttot": 10.366307, + "ttot": 10.453946999999998, "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.16133715787, + "count": 362, "color": "rgb(204, 37, 41)", "hoverColor": "rgb(224, 57, 61)" }, { - "call": "MPI_Reduce", - "ttot": 0.2637825194, - "count": 290, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "call": "MPI_Wait", + "ttot": 0.006975859, + "count": 28, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Testall", - "ttot": 0.0022604500000000002, - "count": 2843, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "ttot": 0.00308677, + "count": 4373, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.10154762000000002, + "ttot": 0.09890289000000001, "count": 192, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.0005664800000000001, - "count": 4387, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.01942236, + "count": 8790, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allgatherv", - "ttot": 0.0264198, + "ttot": 0.027784999999999997, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Comm_size", - "ttot": 0.000054836, + "ttot": 0.000050545, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.00031566200000000003, + "ttot": 0.000286342, "count": 590, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 1.7048200000000002, + "ttot": 1.87296, "count": 2963, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.000212189, + "count": 629, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoall", - "ttot": 0.023267, + "ttot": 0.018929, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.00022388, + "ttot": 0.00022984, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "28", - "ttot": 15.798452406299996, + "nr": "30", + "ttot": 15.893873240110024, "mpiCalls": [ { "call": "MPI_Recv", - "ttot": 0.40402568657000004, - "count": 7016, + "ttot": 0.9987825077200007, + "count": 8398, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Isend", - "ttot": 0.003008604200000002, - "count": 3679, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "ttot": 0.011851085089999986, + "count": 3813, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 2.5723668486999998, - "count": 7807, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "ttot": 2.075208661499998, + "count": 7833, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.11467871763000001, - "count": 8913, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "ttot": 0.0488837658, + "count": 10159, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Allreduce", - "ttot": 0.09881549, + "ttot": 0.096449586, "count": 751, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoallv", - "ttot": 10.408427, + "ttot": 10.525571, "count": 2786, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Reduce", - "ttot": 0.2741814112000001, + "ttot": 0.22517795200000007, "count": 362, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Testall", - "ttot": 0.00263141, - "count": 4327, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "ttot": 0.00553177, + "count": 6228, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Wait", + "ttot": 0.007954841, + "count": 28, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.09896202999999999, + "ttot": 0.09600465, "count": 192, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.02165184, - "count": 8161, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.01973047, + "count": 9411, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allgatherv", - "ttot": 0.022279999999999998, + "ttot": 0.023548, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" - }, - { - "call": "MPI_Wait", - "ttot": 0.005088283999999999, - "count": 28, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Comm_size", - "ttot": 0.000068188, + "ttot": 0.000056744, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.000292297, + "ttot": 0.00028753000000000003, "count": 590, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 1.75464, + "ttot": 1.74162, "count": 2963, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Irecv", - "ttot": 0.000234609, + "ttot": 0.000256777, "count": 629, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoall", - "ttot": 0.016858, + "ttot": 0.016719, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.00024199, + "ttot": 0.0002389, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "58", - "ttot": 15.769429633489986, + "nr": "31", + "ttot": 16.051471883339975, "mpiCalls": [ { "call": "MPI_Recv", - "ttot": 0.5304065043500003, - "count": 8686, + "ttot": 1.1315813101499996, + "count": 8130, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { - "call": "MPI_Isend", - "ttot": 0.014487589479999995, - "count": 5389, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "call": "MPI_Bcast", + "ttot": 2.0026441327699978, + "count": 4083, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { - "call": "MPI_Bcast", - "ttot": 2.2010783393000017, - "count": 9646, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "call": "MPI_Isend", + "ttot": 0.0109598393, + "count": 2902, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Send", - "ttot": 0.05582562341999998, - "count": 8984, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "ttot": 0.04990670524999998, + "count": 8268, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Allreduce", - "ttot": 0.09038667599999999, + "ttot": 0.095598931, "count": 751, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoallv", - "ttot": 10.403471, + "ttot": 10.438906000000001, "count": 2786, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Reduce", - "ttot": 0.26053750893999994, - "count": 420, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.12592422687000002, + "count": 362, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Testall", - "ttot": 0.0060706, - "count": 10963, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "ttot": 0.00484176, + "count": 4997, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Wait", + "ttot": 0.008700626000000001, + "count": 28, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.10504641999999999, + "ttot": 0.10102496700000002, "count": 192, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.016768909999999998, - "count": 8790, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.0008263599999999999, + "count": 6911, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allgatherv", - "ttot": 0.039728, + "ttot": 0.0257579, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" - }, - { - "call": "MPI_Wait", - "ttot": 0.0048139, - "count": 14, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Comm_size", - "ttot": 0.00009155200000000001, + "ttot": 0.000054597999999999995, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.00038146999999999996, + "ttot": 0.000284667, "count": 590, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 2.00716, + "ttot": 2.03156, "count": 2963, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" - }, - { - "call": "MPI_Irecv", - "ttot": 0.00026369, - "count": 629, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Alltoall", - "ttot": 0.032672, + "ttot": 0.022655, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.00023985, + "ttot": 0.00024486, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "3", - "ttot": 15.759173025219994, + "nr": "32", + "ttot": 16.054026814950014, "mpiCalls": [ { "call": "MPI_Recv", - "ttot": 1.4493436802200004, - "count": 15595, + "ttot": 0.6163302179499996, + "count": 12350, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Isend", - "ttot": 0.011145869169999996, - "count": 3469, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "ttot": 0.010426844459999998, + "count": 4092, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 1.5784419098, - "count": 5896, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "ttot": 2.2603589799999977, + "count": 8340, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.14661139333000003, - "count": 3212, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "ttot": 0.04664919283999998, + "count": 6457, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Rsend", - "ttot": 0.00162627, - "count": 1887, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "ttot": 0.00578384, + "count": 1258, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Allreduce", - "ttot": 0.12208520700000002, + "ttot": 0.09210103700000001, "count": 751, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" - }, - { - "call": "MPI_Wait", - "ttot": 0.008463583000000002, - "count": 20, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoallv", - "ttot": 10.395824, + "ttot": 10.111744999999999, "count": 2786, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { - "call": "MPI_Reduce", - "ttot": 0.15323943070000004, - "count": 290, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "call": "MPI_Testall", + "ttot": 0.0049483999999999995, + "count": 6825, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { - "call": "MPI_Testall", - "ttot": 0.00379825, - "count": 4880, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "call": "MPI_Reduce", + "ttot": 0.37235934169999985, + "count": 382, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.10104484999999999, + "ttot": 0.10045229, "count": 192, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.0007329000000000001, - "count": 5016, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.0024533000000000003, + "count": 6274, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allgatherv", - "ttot": 0.023153899999999998, + "ttot": 0.0204951, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0019119, + "count": 8, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.00006175, + "ttot": 0.000059367, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.000320192, + "ttot": 0.00028276, "count": 590, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 1.74158, + "ttot": 2.366, "count": 2963, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.00023031400000000002, + "count": 629, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoall", - "ttot": 0.02147, + "ttot": 0.041206, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.00022984, + "ttot": 0.00023293, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "8", - "ttot": 15.751374137369972, + "nr": "33", + "ttot": 15.861833768869975, "mpiCalls": [ { "call": "MPI_Recv", - "ttot": 0.3782823347800003, - "count": 4099, + "ttot": 0.5942001665800002, + "count": 11130, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Isend", - "ttot": 0.0013437281500000002, - "count": 2174, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "ttot": 0.01199398728999999, + "count": 4104, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 2.5217817502000024, - "count": 6453, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "ttot": 2.24830234417, + "count": 8364, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.038497552639999995, - "count": 4429, + "ttot": 0.04272000146000001, + "count": 6469, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Rsend", + "ttot": 0.0026189739999999996, + "count": 1258, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Allreduce", - "ttot": 0.09984486000000001, + "ttot": 0.09118234500000001, "count": 751, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoallv", - "ttot": 10.165184, + "ttot": 10.179914, "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.24987310236999982, + "count": 386, "color": "rgb(204, 37, 41)", "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Testall", - "ttot": 0.0018356099999999999, - "count": 2261, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" - }, - { - "call": "MPI_Reduce", - "ttot": 0.42325227460000003, - "count": 310, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.0053203, + "count": 6406, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.10102455, + "ttot": 0.10168260999999999, "count": 192, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.015599323, - "count": 4387, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.00197649, + "count": 6903, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allgatherv", - "ttot": 0.0179179, + "ttot": 0.027174999999999998, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Wait", - "ttot": 0.00028133, - "count": 6, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "ttot": 0.0025439, + "count": 14, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.000058889, + "ttot": 0.000076056, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.000274658, + "ttot": 0.00030875499999999997, "count": 590, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 1.9482300000000001, + "ttot": 2.26677, "count": 2963, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Irecv", - "ttot": 0.000264407, + "ttot": 0.000242947, "count": 629, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoall", - "ttot": 0.037474, + "ttot": 0.034702, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.00022697, + "ttot": 0.00023079, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "9", - "ttot": 15.73480711672997, + "nr": "34", + "ttot": 16.199004389339986, "mpiCalls": [ { "call": "MPI_Recv", - "ttot": 0.4812804787399999, - "count": 7819, + "ttot": 0.6799044075099999, + "count": 14909, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Isend", - "ttot": 0.00066494582, - "count": 904, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "ttot": 0.012305780519999997, + "count": 4107, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 2.397562328599999, - "count": 6477, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "ttot": 2.105267984699999, + "count": 8388, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.22855347310000004, - "count": 3219, + "ttot": 0.04644163790999999, + "count": 7722, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Rsend", + "ttot": 0.004313727, + "count": 1258, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Allreduce", - "ttot": 0.09841238699999998, + "ttot": 0.09114196500000002, "count": 751, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoallv", - "ttot": 10.276499, + "ttot": 10.214250999999999, "count": 2786, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Reduce", - "ttot": 0.11574596746999999, - "count": 314, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.3069537977000001, + "count": 386, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Testall", - "ttot": 0.00070882, - "count": 961, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "ttot": 0.0063324, + "count": 5704, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.1029875, + "ttot": 0.10187830999999997, "count": 192, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.017031688, - "count": 5016, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.00220347, + "count": 7532, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allgatherv", - "ttot": 0.0216052, + "ttot": 0.019794, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Wait", - "ttot": 0.00080752, - "count": 12, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "ttot": 0.0035303, + "count": 14, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.000057221, + "ttot": 0.000082254, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.000319476, + "ttot": 0.000286343, "count": 590, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" - }, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 1.9540899999999999, + "ttot": 2.5632099999999998, "count": 2963, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Irecv", - "ttot": 0.00023126100000000002, + "ttot": 0.00023627200000000002, "count": 629, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoall", - "ttot": 0.03801, + "ttot": 0.040639, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.00023985, + "ttot": 0.00023174, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "37", - "ttot": 15.725180828619987, + "nr": "35", + "ttot": 16.381322831789987, "mpiCalls": [ { "call": "MPI_Recv", - "ttot": 0.9107529517400005, - "count": 17771, + "ttot": 0.6873742318399998, + "count": 14995, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Isend", - "ttot": 0.004189936480000001, - "count": 4375, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "ttot": 0.004236422239999999, + "count": 4172, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 2.1379946777000005, - "count": 8460, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "ttot": 2.0721551674000014, + "count": 8412, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.048213632929999986, - "count": 10151, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "ttot": 0.04588769710999993, + "count": 8295, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Rsend", - "ttot": 0.0019655, + "ttot": 0.00258086, "count": 1258, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Allreduce", - "ttot": 0.09406985400000001, + "ttot": 0.09150082300000002, "count": 751, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoallv", - "ttot": 10.613992999999999, + "ttot": 10.124158999999999, "count": 2786, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Reduce", - "ttot": 0.1730791997700001, + "ttot": 0.18671157019999987, "count": 386, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Testall", - "ttot": 0.0051129, - "count": 5073, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" - }, - { - "call": "MPI_Wait", - "ttot": 0.008465263, - "count": 26, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "ttot": 0.00484967, + "count": 4343, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.09522706, + "ttot": 0.10105324999999998, "count": 192, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.0021925399999999998, - "count": 9419, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.0022251500000000004, + "count": 8161, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allgatherv", - "ttot": 0.0204349, + "ttot": 0.0237571, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0037386, + "count": 18, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.000066518, + "ttot": 0.000079632, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.00039959, + "ttot": 0.00039267, "count": 590, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 1.59866, + "ttot": 2.99499, "count": 2963, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Irecv", - "ttot": 0.000195505, + "ttot": 0.000243188, "count": 629, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoall", - "ttot": 0.0099239, + "ttot": 0.035152, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.0002439, + "ttot": 0.0002358, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "24", - "ttot": 15.640761877700003, + "nr": "36", + "ttot": 15.267776496380002, "mpiCalls": [ { "call": "MPI_Recv", - "ttot": 0.41958248449, - "count": 4790, + "ttot": 0.8524417880299998, + "count": 18876, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Isend", - "ttot": 0.007919270599999997, - "count": 3457, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "ttot": 0.0019722053800000014, + "count": 1125, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 2.3986358848999982, - "count": 7711, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "ttot": 1.981022680399999, + "count": 8436, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.05565528630999998, - "count": 5799, + "ttot": 0.08494123646999997, + "count": 7644, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Rsend", + "ttot": 0.0023276950000000003, + "count": 1258, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Allreduce", - "ttot": 0.10184986800000002, + "ttot": 0.093704426, "count": 751, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoallv", - "ttot": 10.279045, + "ttot": 10.374816, "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.2059149621, + "count": 386, "color": "rgb(204, 37, 41)", "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Testall", - "ttot": 0.0040278499999999995, - "count": 5622, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" - }, - { - "call": "MPI_Reduce", - "ttot": 0.4596409164000004, - "count": 358, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.0012102100000000002, + "count": 1199, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.10027632000000002, + "ttot": 0.09680659999999999, "count": 192, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.01663186, - "count": 5645, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.00221586, + "count": 8790, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allgatherv", - "ttot": 0.0185741, + "ttot": 0.020319, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Wait", - "ttot": 0.0011988, - "count": 10, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "ttot": 0.0046079, + "count": 16, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.00006175, + "ttot": 0.000084162, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.000270128, + "ttot": 0.00036764, "count": 590, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 1.76007, + "ttot": 1.54092, "count": 2963, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Irecv", - "ttot": 0.00027632899999999996, + "ttot": 0.000246291, "count": 629, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoall", - "ttot": 0.01681, + "ttot": 0.0036199, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.00023603, + "ttot": 0.00023794, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "45", - "ttot": 15.63187068075999, + "nr": "37", + "ttot": 15.725180828619987, "mpiCalls": [ { "call": "MPI_Recv", - "ttot": 0.3797056256000002, - "count": 10033, + "ttot": 0.9107529517400005, + "count": 17771, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Isend", - "ttot": 0.0009083760699999997, - "count": 1184, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "ttot": 0.004189936480000001, + "count": 4375, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 2.4057381501000012, - "count": 9089, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "ttot": 2.1379946777000005, + "count": 8460, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.05313569459, - "count": 8928, + "ttot": 0.048213632929999986, + "count": 10151, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Rsend", + "ttot": 0.0019655, + "count": 1258, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Allreduce", - "ttot": 0.090278682, + "ttot": 0.09406985400000001, "count": 751, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoallv", - "ttot": 10.325938, + "ttot": 10.613992999999999, "count": 2786, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Reduce", - "ttot": 0.19921094339999998, - "count": 410, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.1730791997700001, + "count": 386, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Testall", - "ttot": 0.00085115, - "count": 1229, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "ttot": 0.0051129, + "count": 5073, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Wait", + "ttot": 0.008465263, + "count": 26, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.09940605000000001, + "ttot": 0.09522706, "count": 192, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.01622585, - "count": 10048, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.0021925399999999998, + "count": 9419, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allgatherv", - "ttot": 0.0234089, + "ttot": 0.0204349, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" - }, - { - "call": "MPI_Wait", - "ttot": 0.0057471, - "count": 16, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Comm_size", - "ttot": 0.000060320000000000005, + "ttot": 0.000066518, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.000338797, + "ttot": 0.00039959, "count": 590, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 2.00596, + "ttot": 1.59866, "count": 2963, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Irecv", - "ttot": 0.000187392, + "ttot": 0.000195505, "count": 629, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoall", - "ttot": 0.024536, + "ttot": 0.0099239, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.00023365, + "ttot": 0.0002439, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "6", - "ttot": 15.619172054540023, + "nr": "38", + "ttot": 15.572657333040006, "mpiCalls": [ { "call": "MPI_Recv", - "ttot": 2.223045383629999, - "count": 25308, + "ttot": 1.0199140768000012, + "count": 21555, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Isend", - "ttot": 0.014860891369999997, - "count": 5650, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "ttot": 0.015039683030000004, + "count": 4456, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.9371035065700006, - "count": 5946, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" - }, - { - "call": "MPI_Wait", - "ttot": 0.01195813, - "count": 18, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "ttot": 2.0644180340699996, + "count": 8462, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.015307682900000001, - "count": 3247, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "ttot": 0.04727145196999998, + "count": 10773, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Rsend", - "ttot": 0.0017226210000000001, - "count": 1887, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "ttot": 0.0018820679999999998, + "count": 1258, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Allreduce", - "ttot": 0.115040794, + "ttot": 0.08899804299999999, "count": 751, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoallv", - "ttot": 10.278776999999998, + "ttot": 10.427395, "count": 2786, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Reduce", - "ttot": 0.24576443206999993, - "count": 290, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.19433188517000005, + "count": 386, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Testall", - "ttot": 0.0056784999999999995, - "count": 10279, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "ttot": 0.008502, + "count": 6525, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.10188564, + "ttot": 0.09408322000000001, "count": 192, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.0010020699999999999, - "count": 6895, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.00236156, + "count": 10040, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allgatherv", - "ttot": 0.0201059, + "ttot": 0.024354, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Wait", + "ttot": 0.017855169999999997, + "count": 26, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.00005579, + "ttot": 0.00006175, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.000288723, + "ttot": 0.00035787000000000004, "count": 590, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 1.6209699999999998, + "ttot": 1.5618699999999999, "count": 2963, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.000177861, + "count": 629, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoall", - "ttot": 0.025368, + "ttot": 0.0035338, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.00023699, + "ttot": 0.00024986, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "57", - "ttot": 15.596193704639976, + "nr": "39", + "ttot": 15.543358215979996, "mpiCalls": [ { "call": "MPI_Recv", - "ttot": 0.5098841587699996, - "count": 8669, + "ttot": 0.9725998140899998, + "count": 16921, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { - "call": "MPI_Isend", - "ttot": 0.013762241469999993, - "count": 5386, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "call": "MPI_Bcast", + "ttot": 2.1574612269, + "count": 4712, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { - "call": "MPI_Bcast", - "ttot": 2.2341181446000014, - "count": 9622, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "call": "MPI_Isend", + "ttot": 0.01305074457999999, + "count": 3545, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Send", - "ttot": 0.09531890828999999, - "count": 7723, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "ttot": 0.04011309866999995, + "count": 8899, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Allreduce", - "ttot": 0.090776122, + "ttot": 0.087834619, "count": 751, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoallv", - "ttot": 10.403229, + "ttot": 10.358679, "count": 2786, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Reduce", - "ttot": 0.23243324351000003, - "count": 420, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.11104439274, + "count": 386, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Testall", - "ttot": 0.0057931, - "count": 10870, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "ttot": 0.0083015, + "count": 5298, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Wait", + "ttot": 0.019151159999999997, + "count": 26, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.10349886999999999, + "ttot": 0.09817885000000001, "count": 192, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.016484739999999998, - "count": 8161, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.00073934, + "count": 7540, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allgatherv", - "ttot": 0.0194539, + "ttot": 0.0217589, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" - }, - { - "call": "MPI_Wait", - "ttot": 0.0044022, - "count": 14, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Comm_size", - "ttot": 0.000059366, + "ttot": 0.00008439999999999999, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.000290629, + "ttot": 0.00038624, "count": 590, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 1.8315299999999999, + "ttot": 1.64911, "count": 2963, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" - }, - { - "call": "MPI_Irecv", - "ttot": 0.000280141, - "count": 629, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Alltoall", - "ttot": 0.034641, + "ttot": 0.004632, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.00023794, + "ttot": 0.00023293, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "38", - "ttot": 15.572657333040006, + "nr": "40", + "ttot": 15.449382923449972, "mpiCalls": [ { "call": "MPI_Recv", - "ttot": 1.0199140768000012, - "count": 21555, + "ttot": 0.4494172208400003, + "count": 6104, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Isend", - "ttot": 0.015039683030000004, - "count": 4456, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "ttot": 0.013521864679999994, + "count": 4733, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 2.0644180340699996, - "count": 8462, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "ttot": 2.3784612455, + "count": 8969, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.04727145196999998, - "count": 10773, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, - { - "call": "MPI_Rsend", - "ttot": 0.0018820679999999998, - "count": 1258, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "ttot": 0.05383120255999997, + "count": 7093, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Allreduce", - "ttot": 0.08899804299999999, + "ttot": 0.08965574900000002, "count": 751, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoallv", - "ttot": 10.427395, + "ttot": 10.365461, "count": 2786, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { - "call": "MPI_Reduce", - "ttot": 0.19433188517000005, - "count": 386, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "call": "MPI_Testall", + "ttot": 0.0056576000000000005, + "count": 8290, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { - "call": "MPI_Testall", - "ttot": 0.008502, - "count": 6525, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "call": "MPI_Reduce", + "ttot": 0.36426211087000004, + "count": 406, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.09408322000000001, + "ttot": 0.1006482, "count": 192, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.00236156, - "count": 10040, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.02109588, + "count": 6903, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allgatherv", - "ttot": 0.024354, + "ttot": 0.0211229, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Wait", - "ttot": 0.017855169999999997, - "count": 26, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "ttot": 0.0021672, + "count": 8, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.00006175, + "ttot": 0.00006246600000000001, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.00035787000000000004, + "ttot": 0.000356434, "count": 590, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 1.5618699999999999, + "ttot": 1.5798299999999998, "count": 2963, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Irecv", - "ttot": 0.000177861, + "ttot": 0.00025797, "count": 629, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoall", - "ttot": 0.0035338, + "ttot": 0.003345, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.00024986, + "ttot": 0.00022888, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "44", - "ttot": 15.571970937310018, + "nr": "41", + "ttot": 15.337472149039986, "mpiCalls": [ { "call": "MPI_Recv", - "ttot": 0.36617168486, - "count": 9455, + "ttot": 0.5311118158900003, + "count": 9868, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Isend", - "ttot": 0.003822777969999999, - "count": 4983, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "ttot": 0.015675779679999998, + "count": 4745, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 2.2937896397000004, - "count": 9065, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "ttot": 2.256015489699997, + "count": 8993, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.04888329037999996, - "count": 9506, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "ttot": 0.05181495262999996, + "count": 7105, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Allreduce", - "ttot": 0.09003829400000002, + "ttot": 0.089130096, "count": 751, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoallv", - "ttot": 10.367657, + "ttot": 10.460661, "count": 2786, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Reduce", - "ttot": 0.25002488340000006, + "ttot": 0.3233812431400001, "count": 410, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Testall", - "ttot": 0.00404211, - "count": 5146, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "ttot": 0.0058238, + "count": 7742, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.09946051000000002, + "ttot": 0.10189341999999998, "count": 192, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.01310277, - "count": 9419, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.0137136, + "count": 7532, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allgatherv", - "ttot": 0.024762899999999997, + "ttot": 0.0194591, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Wait", - "ttot": 0.004786, - "count": 16, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "ttot": 0.0031333, + "count": 14, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.000070095, + "ttot": 0.000062704, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.000351427, + "ttot": 0.00033664700000000003, "count": 590, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 1.97431, + "ttot": 1.45493, "count": 2963, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Irecv", - "ttot": 0.000250575, + "ttot": 0.000259401, "count": 629, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoall", - "ttot": 0.030215, + "ttot": 0.0098259, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.00023198, + "ttot": 0.0002439, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "56", - "ttot": 15.567504212649986, + "nr": "42", + "ttot": 15.41309345673998, "mpiCalls": [ { "call": "MPI_Recv", - "ttot": 0.4931265096399999, - "count": 6772, + "ttot": 0.40640612747000004, + "count": 7393, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Isend", - "ttot": 0.012564932309999995, - "count": 5374, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "ttot": 0.016606515510000006, + "count": 4748, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 2.3264739340000005, - "count": 9598, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "ttot": 2.3390490216, + "count": 9017, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.051431613830000014, - "count": 7711, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "ttot": 0.04583874428999997, + "count": 8366, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Allreduce", - "ttot": 0.091397666, + "ttot": 0.088634005, "count": 751, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoallv", - "ttot": 10.309734, + "ttot": 10.554562, "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.3010407388699999, + "count": 410, "color": "rgb(204, 37, 41)", "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Testall", - "ttot": 0.0058458, - "count": 10774, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" - }, - { - "call": "MPI_Reduce", - "ttot": 0.3237475388699999, - "count": 416, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.007757399999999999, + "count": 7391, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.10600668000000002, + "ttot": 0.10196515000000002, "count": 192, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.02152466, - "count": 7532, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.0143165, + "count": 8161, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allgatherv", - "ttot": 0.0184529, + "ttot": 0.02132, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Wait", - "ttot": 0.0034614, - "count": 8, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "ttot": 0.0038345, + "count": 14, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.000076771, + "ttot": 0.000089646, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0003047, + "ttot": 0.000327828, "count": 590, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 1.77, + "ttot": 1.50479, "count": 2963, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Irecv", - "ttot": 0.000275137, + "ttot": 0.00025225, "count": 629, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoall", - "ttot": 0.032853, + "ttot": 0.006067, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.00022697, + "ttot": 0.00023603, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "5", - "ttot": 15.560861262119976, + "nr": "43", + "ttot": 15.406499527040001, "mpiCalls": [ { "call": "MPI_Recv", - "ttot": 2.033075602210001, - "count": 20868, + "ttot": 0.3866172884800001, + "count": 9342, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Isend", - "ttot": 0.014211187870000001, - "count": 4934, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "ttot": 0.005259045659999995, + "count": 4813, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 1.0858401414700007, - "count": 5944, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "ttot": 2.328888138770001, + "count": 9041, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.04863151650000001, - "count": 3271, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, - { - "call": "MPI_Rsend", - "ttot": 0.001616456, - "count": 1887, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "ttot": 0.05057757022999996, + "count": 8969, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Allreduce", - "ttot": 0.11829196599999998, + "ttot": 0.08895900199999998, "count": 751, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" - }, - { - "call": "MPI_Wait", - "ttot": 0.007386683, - "count": 18, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoallv", - "ttot": 10.284829999999998, + "ttot": 10.426343000000001, "count": 2786, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Reduce", - "ttot": 0.16292691807000004, - "count": 290, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.2618842539000001, + "count": 410, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Testall", - "ttot": 0.0053584999999999995, - "count": 6661, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "ttot": 0.005448100000000001, + "count": 4985, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.10185024000000001, + "ttot": 0.09899492, "count": 192, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.0009353199999999999, - "count": 6274, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.013187960000000002, + "count": 8790, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allgatherv", - "ttot": 0.0201089, + "ttot": 0.022130900000000002, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0043242, + "count": 18, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.000066996, + "ttot": 0.000070572, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.000300885, + "ttot": 0.000349045, "count": 590, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 1.65308, + "ttot": 1.70018, "count": 2963, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.000249861, + "count": 629, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoall", - "ttot": 0.022107, + "ttot": 0.012787, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.00024295, + "ttot": 0.00024867, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "39", - "ttot": 15.543358215979996, + "nr": "44", + "ttot": 15.571970937310018, "mpiCalls": [ { "call": "MPI_Recv", - "ttot": 0.9725998140899998, - "count": 16921, + "ttot": 0.36617168486, + "count": 9455, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { - "call": "MPI_Bcast", - "ttot": 2.1574612269, - "count": 4712, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "call": "MPI_Isend", + "ttot": 0.003822777969999999, + "count": 4983, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { - "call": "MPI_Isend", - "ttot": 0.01305074457999999, - "count": 3545, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "call": "MPI_Bcast", + "ttot": 2.2937896397000004, + "count": 9065, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.04011309866999995, - "count": 8899, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "ttot": 0.04888329037999996, + "count": 9506, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Allreduce", - "ttot": 0.087834619, + "ttot": 0.09003829400000002, "count": 751, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoallv", - "ttot": 10.358679, + "ttot": 10.367657, "count": 2786, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Reduce", - "ttot": 0.11104439274, - "count": 386, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.25002488340000006, + "count": 410, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Testall", - "ttot": 0.0083015, - "count": 5298, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" - }, - { - "call": "MPI_Wait", - "ttot": 0.019151159999999997, - "count": 26, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "ttot": 0.00404211, + "count": 5146, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.09817885000000001, + "ttot": 0.09946051000000002, "count": 192, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.00073934, - "count": 7540, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.01310277, + "count": 9419, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allgatherv", - "ttot": 0.0217589, + "ttot": 0.024762899999999997, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Wait", + "ttot": 0.004786, + "count": 16, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.00008439999999999999, + "ttot": 0.000070095, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.00038624, + "ttot": 0.000351427, "count": 590, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 1.64911, + "ttot": 1.97431, "count": 2963, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.000250575, + "count": 629, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoall", - "ttot": 0.004632, + "ttot": 0.030215, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.00023293, + "ttot": 0.00023198, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "4", - "ttot": 15.53585033827001, + "nr": "45", + "ttot": 15.63187068075999, "mpiCalls": [ { "call": "MPI_Recv", - "ttot": 1.8410110507499986, - "count": 22035, + "ttot": 0.3797056256000002, + "count": 10033, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Isend", - "ttot": 0.011805329859999993, - "count": 4258, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "ttot": 0.0009083760699999997, + "count": 1184, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 1.2446470209000007, - "count": 5920, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "ttot": 2.4057381501000012, + "count": 9089, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.09170505105999995, - "count": 3259, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, - { - "call": "MPI_Rsend", - "ttot": 0.001564939, - "count": 1887, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "ttot": 0.05313569459, + "count": 8928, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Allreduce", - "ttot": 0.119807129, + "ttot": 0.090278682, "count": 751, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" - }, - { - "call": "MPI_Wait", - "ttot": 0.0063601330000000005, - "count": 18, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoallv", - "ttot": 10.166525, + "ttot": 10.325938, "count": 2786, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Reduce", - "ttot": 0.2624184267000001, - "count": 290, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.19921094339999998, + "count": 410, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Testall", - "ttot": 0.0044327, - "count": 5583, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "ttot": 0.00085115, + "count": 1229, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.10206357000000002, + "ttot": 0.09940605000000001, "count": 192, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.0008096700000000001, - "count": 5645, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.01622585, + "count": 10048, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allgatherv", - "ttot": 0.0248691, + "ttot": 0.0234089, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0057471, + "count": 16, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.00005889, + "ttot": 0.000060320000000000005, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.000291348, + "ttot": 0.000338797, "count": 590, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 1.6337700000000002, + "ttot": 2.00596, "count": 2963, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { - "call": "MPI_Alltoall", - "ttot": 0.023479, - "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "call": "MPI_Irecv", + "ttot": 0.000187392, + "count": 629, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { - "call": "MPI_Allgather", - "ttot": 0.00023198, + "call": "MPI_Alltoall", + "ttot": 0.024536, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00023365, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "59", - "ttot": 15.473175592169987, + "nr": "46", + "ttot": 16.354134599110022, "mpiCalls": [ { "call": "MPI_Recv", - "ttot": 0.5114393427100004, - "count": 10639, + "ttot": 0.49582354734000006, + "count": 8973, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Isend", - "ttot": 0.013511963509999995, - "count": 5454, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "ttot": 0.01686049568000001, + "count": 5093, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 2.1699236132000004, - "count": 9670, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "ttot": 2.509739931399997, + "count": 9091, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { - "call": "MPI_Send", - "ttot": 0.07757525577999999, - "count": 9607, + "call": "MPI_Wait", + "ttot": 0.010137324, + "count": 26, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, + { + "call": "MPI_Send", + "ttot": 0.03970151124999997, + "count": 11413, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, { "call": "MPI_Allreduce", - "ttot": 0.090816248, + "ttot": 0.08811297000000001, "count": 751, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoallv", - "ttot": 10.4338, + "ttot": 10.336083000000002, "count": 2786, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Reduce", - "ttot": 0.17069746997000002, - "count": 420, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.23569120943999997, + "count": 410, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Testall", - "ttot": 0.0061207, - "count": 11029, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "ttot": 0.008995, + "count": 7827, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.10419863000000001, + "ttot": 0.09695118000000001, "count": 192, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.012897929999999998, - "count": 9419, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.021357440000000002, + "count": 10669, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allgatherv", - "ttot": 0.0208212, + "ttot": 0.0288228, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" - }, - { - "call": "MPI_Wait", - "ttot": 0.0053351, - "count": 18, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Comm_size", - "ttot": 0.000057935999999999996, + "ttot": 0.00009632100000000002, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.00029302, + "ttot": 0.000352381, "count": 590, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 1.8248600000000001, + "ttot": 2.43639, "count": 2963, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Irecv", - "ttot": 0.000250343, + "ttot": 0.000192638, "count": 629, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoall", - "ttot": 0.030347, + "ttot": 0.028587, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.00022984, + "ttot": 0.00023985, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "50", - "ttot": 15.46174783535996, + "nr": "47", + "ttot": 16.52765804833999, "mpiCalls": [ { "call": "MPI_Recv", - "ttot": 0.6193505361000001, - "count": 14298, + "ttot": 0.6376472186300006, + "count": 8718, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, - { - "call": "MPI_Isend", - "ttot": 0.013916511669999996, - "count": 5389, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" - }, { "call": "MPI_Bcast", - "ttot": 1.9563080290999988, - "count": 9646, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "ttot": 2.4568708354999997, + "count": 5341, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { - "call": "MPI_Send", - "ttot": 0.1926108157199999, - "count": 9033, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "call": "MPI_Isend", + "ttot": 0.016149369619999996, + "count": 4182, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { - "call": "MPI_Rsend", - "ttot": 0.000275378, - "count": 629, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "call": "MPI_Send", + "ttot": 0.04148374957999999, + "count": 9543, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Allreduce", - "ttot": 0.093083451, + "ttot": 0.086938967, "count": 751, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoallv", - "ttot": 10.106252, + "ttot": 10.255526000000001, "count": 2786, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Reduce", - "ttot": 0.29298802977000016, - "count": 420, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.18915924801000006, + "count": 410, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Testall", - "ttot": 0.0055967, - "count": 11382, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "ttot": 0.008466, + "count": 7381, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Wait", + "ttot": 0.011627963, + "count": 26, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.10655499999999998, + "ttot": 0.102286353, "count": 192, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.00970271, - "count": 8790, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.0007586499999999999, + "count": 8169, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allgatherv", - "ttot": 0.0227102, + "ttot": 0.0248759, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" - }, - { - "call": "MPI_Wait", - "ttot": 0.0040841, - "count": 14, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Comm_size", - "ttot": 0.00006651899999999999, + "ttot": 0.000097514, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.000296354, + "ttot": 0.0003953, "count": 590, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 2.01495, + "ttot": 2.66728, "count": 2963, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" - }, - { - "call": "MPI_Irecv", - "ttot": 0.000259641, - "count": 629, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Alltoall", - "ttot": 0.022497, + "ttot": 0.027863, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.00024486, + "ttot": 0.00023198, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "40", - "ttot": 15.449382923449972, + "nr": "48", + "ttot": 15.185969279179973, "mpiCalls": [ { "call": "MPI_Recv", - "ttot": 0.4494172208400003, - "count": 6104, + "ttot": 0.5251524718499999, + "count": 9876, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Isend", - "ttot": 0.013521864679999994, - "count": 4733, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "ttot": 0.011322748259999996, + "count": 5374, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 2.3784612455, - "count": 8969, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "ttot": 2.185223356600001, + "count": 9598, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.05383120255999997, - "count": 7093, + "ttot": 0.1477517513300001, + "count": 7768, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Rsend", + "ttot": 0.00029229799999999997, + "count": 629, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Allreduce", - "ttot": 0.08965574900000002, + "ttot": 0.095971848, "count": 751, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoallv", - "ttot": 10.365461, + "ttot": 9.927426, "count": 2786, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Testall", - "ttot": 0.0056576000000000005, - "count": 8290, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "ttot": 0.0056167, + "count": 11337, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Reduce", - "ttot": 0.36426211087000004, - "count": 406, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.4052540181399999, + "count": 416, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.1006482, + "ttot": 0.10332741, "count": 192, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.02109588, - "count": 6903, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.011443789999999999, + "count": 7532, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allgatherv", - "ttot": 0.0211229, + "ttot": 0.0201902, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Wait", - "ttot": 0.0021672, + "ttot": 0.0028071, "count": 8, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.00006246600000000001, + "ttot": 0.000058889, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.000356434, + "ttot": 0.000271555, "count": 590, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 1.5798299999999998, + "ttot": 1.72725, "count": 2963, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Irecv", - "ttot": 0.00025797, + "ttot": 0.000298263, "count": 629, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoall", - "ttot": 0.003345, + "ttot": 0.016082, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", "ttot": 0.00022888, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "0", - "ttot": 15.444621800729994, + "nr": "49", + "ttot": 15.440448682969981, "mpiCalls": [ { "call": "MPI_Recv", - "ttot": 0.6651474028700003, - "count": 12409, + "ttot": 0.5389524192600001, + "count": 9902, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, + { + "call": "MPI_Isend", + "ttot": 0.013123137389999989, + "count": 5386, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, { "call": "MPI_Bcast", - "ttot": 2.2427752115000015, - "count": 5824, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "ttot": 2.118711334800002, + "count": 9622, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.25344069117000007, - "count": 1310, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "ttot": 0.16115040726999996, + "count": 7772, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Rsend", - "ttot": 0.001842457, - "count": 1887, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "ttot": 0.000294204, + "count": 629, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Allreduce", - "ttot": 0.123997967, + "ttot": 0.094409549, "count": 751, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" - }, - { - "call": "MPI_Isend", - "ttot": 0.00010490419000000001, - "count": 234, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoallv", - "ttot": 10.184466, + "ttot": 10.039269999999998, "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.2704460022499999, + "count": 420, "color": "rgb(204, 37, 41)", "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Testall", - "ttot": 0.000153782, - "count": 302, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "ttot": 0.005459800000000001, + "count": 11365, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.10271857, + "ttot": 0.10549827000000002, "count": 192, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.000457045, - "count": 3129, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.008050709999999999, + "count": 8161, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allgatherv", - "ttot": 0.022197, + "ttot": 0.0203341, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" - }, - { - "call": "MPI_Reduce", - "ttot": 0.27379057, - "count": 286, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { - "call": "MPI_Comm_size", - "ttot": 0.000062704, + "call": "MPI_Wait", + "ttot": 0.0036454, + "count": 14, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000055790000000000006, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.000275616, + "ttot": 0.000315663, "count": 590, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 1.55221, + "ttot": 2.04049, "count": 2963, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.00029206599999999995, + "count": 629, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoall", - "ttot": 0.020758, + "ttot": 0.019725, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.00022388, + "ttot": 0.00022483, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "49", - "ttot": 15.440448682969981, + "nr": "50", + "ttot": 15.46174783535996, "mpiCalls": [ { "call": "MPI_Recv", - "ttot": 0.5389524192600001, - "count": 9902, + "ttot": 0.6193505361000001, + "count": 14298, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Isend", - "ttot": 0.013123137389999989, - "count": 5386, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "ttot": 0.013916511669999996, + "count": 5389, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 2.118711334800002, - "count": 9622, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "ttot": 1.9563080290999988, + "count": 9646, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.16115040726999996, - "count": 7772, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "ttot": 0.1926108157199999, + "count": 9033, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Rsend", - "ttot": 0.000294204, + "ttot": 0.000275378, "count": 629, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Allreduce", - "ttot": 0.094409549, + "ttot": 0.093083451, "count": 751, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoallv", - "ttot": 10.039269999999998, + "ttot": 10.106252, "count": 2786, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Reduce", - "ttot": 0.2704460022499999, + "ttot": 0.29298802977000016, "count": 420, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Testall", - "ttot": 0.005459800000000001, - "count": 11365, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "ttot": 0.0055967, + "count": 11382, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.10549827000000002, + "ttot": 0.10655499999999998, "count": 192, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.008050709999999999, - "count": 8161, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.00970271, + "count": 8790, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allgatherv", - "ttot": 0.0203341, + "ttot": 0.0227102, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Wait", - "ttot": 0.0036454, + "ttot": 0.0040841, "count": 14, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.000055790000000000006, + "ttot": 0.00006651899999999999, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.000315663, + "ttot": 0.000296354, "count": 590, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 2.04049, + "ttot": 2.01495, "count": 2963, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Irecv", - "ttot": 0.00029206599999999995, + "ttot": 0.000259641, "count": 629, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoall", - "ttot": 0.019725, + "ttot": 0.022497, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.00022483, + "ttot": 0.00024486, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "42", - "ttot": 15.41309345673998, + "nr": "51", + "ttot": 15.392196008929991, "mpiCalls": [ { "call": "MPI_Recv", - "ttot": 0.40640612747000004, - "count": 7393, + "ttot": 0.5764877369300002, + "count": 11880, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Isend", - "ttot": 0.016606515510000006, - "count": 4748, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "ttot": 0.014299889459999998, + "count": 5454, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 2.3390490216, - "count": 9017, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "ttot": 1.964232213000001, + "count": 9670, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.04583874428999997, - "count": 8366, + "ttot": 0.2005122485300001, + "count": 9656, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Rsend", + "ttot": 0.000281811, + "count": 629, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Allreduce", - "ttot": 0.088634005, + "ttot": 0.093708456, "count": 751, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoallv", - "ttot": 10.554562, + "ttot": 10.067145, "count": 2786, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Reduce", - "ttot": 0.3010407388699999, - "count": 410, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.1882009020100001, + "count": 420, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Testall", - "ttot": 0.007757399999999999, - "count": 7391, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "ttot": 0.0061335, + "count": 11318, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.10196515000000002, + "ttot": 0.10431882000000002, "count": 192, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.0143165, - "count": 8161, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.00741243, + "count": 9419, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allgatherv", - "ttot": 0.02132, + "ttot": 0.030339, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Wait", - "ttot": 0.0038345, - "count": 14, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "ttot": 0.0044725, + "count": 18, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.000089646, + "ttot": 0.000059366, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.000327828, + "ttot": 0.000318286, "count": 590, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 1.50479, + "ttot": 2.10534, "count": 2963, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Irecv", - "ttot": 0.00025225, + "ttot": 0.00028086, "count": 629, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoall", - "ttot": 0.006067, + "ttot": 0.028411, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.00023603, + "ttot": 0.00024199, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "43", - "ttot": 15.406499527040001, + "nr": "52", + "ttot": 15.152341518409985, "mpiCalls": [ { "call": "MPI_Recv", - "ttot": 0.3866172884800001, - "count": 9342, + "ttot": 0.5811146419600002, + "count": 15749, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Isend", - "ttot": 0.005259045659999995, - "count": 4813, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "ttot": 0.013997214540000004, + "count": 5614, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 2.328888138770001, - "count": 9041, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "ttot": 1.8815885980999996, + "count": 9694, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.05057757022999996, - "count": 8969, + "ttot": 0.20231701840999994, + "count": 10246, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Rsend", + "ttot": 0.00035023599999999997, + "count": 629, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Allreduce", - "ttot": 0.08895900199999998, + "ttot": 0.09035067900000002, "count": 751, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoallv", - "ttot": 10.426343000000001, + "ttot": 10.340406, "count": 2786, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Reduce", - "ttot": 0.2618842539000001, - "count": 410, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.2351632314, + "count": 420, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Testall", - "ttot": 0.005448100000000001, - "count": 4985, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "ttot": 0.0059862000000000005, + "count": 11448, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.09899492, + "ttot": 0.10330678, "count": 192, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.013187960000000002, - "count": 8790, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.00751538, + "count": 10048, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allgatherv", - "ttot": 0.022130900000000002, + "ttot": 0.019098, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Wait", - "ttot": 0.0043242, - "count": 18, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "ttot": 0.0051644, + "count": 16, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.000070572, + "ttot": 0.000063419, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.000349045, + "ttot": 0.000303979, "count": 590, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 1.70018, + "ttot": 1.6491500000000001, "count": 2963, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Irecv", - "ttot": 0.000249861, + "ttot": 0.000277041, "count": 629, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoall", - "ttot": 0.012787, + "ttot": 0.015956, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.00024867, + "ttot": 0.0002327, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "51", - "ttot": 15.392196008929991, + "nr": "53", + "ttot": 14.951617856159993, "mpiCalls": [ { "call": "MPI_Recv", - "ttot": 0.5764877369300002, - "count": 11880, + "ttot": 0.5319424172, + "count": 15191, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Isend", - "ttot": 0.014299889459999998, - "count": 5454, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "ttot": 0.01479338111, + "count": 5647, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 1.964232213000001, - "count": 9670, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "ttot": 1.915870691569999, + "count": 9718, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.2005122485300001, - "count": 9656, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "ttot": 0.20408344943999993, + "count": 10844, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Rsend", - "ttot": 0.000281811, + "ttot": 0.00031375800000000003, "count": 629, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Allreduce", - "ttot": 0.093708456, + "ttot": 0.08938027100000001, "count": 751, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoallv", - "ttot": 10.067145, + "ttot": 10.228052000000002, "count": 2786, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Reduce", - "ttot": 0.1882009020100001, + "ttot": 0.12524282183999993, "count": 420, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Testall", - "ttot": 0.0061335, - "count": 11318, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "ttot": 0.006201, + "count": 11260, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.10431882000000002, + "ttot": 0.10253836999999999, "count": 192, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.00741243, - "count": 9419, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.006554620000000001, + "count": 10677, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allgatherv", - "ttot": 0.030339, + "ttot": 0.023536, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Wait", - "ttot": 0.0044725, - "count": 18, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "ttot": 0.0059793, + "count": 16, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.000059366, + "ttot": 0.000057935999999999996, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.000318286, + "ttot": 0.00031829000000000004, "count": 590, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 2.10534, + "ttot": 1.6795900000000001, "count": 2963, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Irecv", - "ttot": 0.00028086, + "ttot": 0.00027752, "count": 629, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoall", - "ttot": 0.028411, + "ttot": 0.01665, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.00024199, + "ttot": 0.00023603, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "55", - "ttot": 15.340305267929972, + "nr": "54", + "ttot": 15.206209819900002, "mpiCalls": [ { "call": "MPI_Recv", - "ttot": 0.38997140290000015, - "count": 13140, + "ttot": 0.4547320878400001, + "count": 16415, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { - "call": "MPI_Bcast", - "ttot": 2.4824531412999984, - "count": 5970, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "call": "MPI_Isend", + "ttot": 0.001500600860000001, + "count": 1312, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { - "call": "MPI_Isend", - "ttot": 0.005367787369999995, - "count": 4840, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "call": "MPI_Bcast", + "ttot": 2.132389115099999, + "count": 9720, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.20759449274999997, - "count": 10241, + "ttot": 0.2007840486, + "count": 10235, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Rsend", + "ttot": 0.000320437, + "count": 629, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Allreduce", - "ttot": 0.088952218, + "ttot": 0.08944568400000001, "count": 751, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" - }, - { - "call": "MPI_Wait", - "ttot": 0.01817803, - "count": 26, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoallv", - "ttot": 10.255975, + "ttot": 10.215899000000002, "count": 2786, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Reduce", - "ttot": 0.16030980861000013, + "ttot": 0.1754631765, "count": 420, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Testall", - "ttot": 0.0053895, - "count": 4992, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "ttot": 0.0011541799999999999, + "count": 2208, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.10674721999999999, + "ttot": 0.10322139999999999, "count": 192, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.00101709, - "count": 8798, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.00631148, + "count": 11298, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allgatherv", - "ttot": 0.018827, + "ttot": 0.02932, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0064461, + "count": 16, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.000067234, + "ttot": 0.000062227, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.00028753299999999997, + "ttot": 0.000291825, "count": 590, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 1.58144, + "ttot": 1.77021, "count": 2963, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.000319478, + "count": 629, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoall", - "ttot": 0.017482, + "ttot": 0.018107, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.00024581, + "ttot": 0.00023198, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "41", - "ttot": 15.337472149039986, + "nr": "55", + "ttot": 15.340305267929972, "mpiCalls": [ { "call": "MPI_Recv", - "ttot": 0.5311118158900003, - "count": 9868, + "ttot": 0.38997140290000015, + "count": 13140, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { - "call": "MPI_Isend", - "ttot": 0.015675779679999998, - "count": 4745, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "call": "MPI_Bcast", + "ttot": 2.4824531412999984, + "count": 5970, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { - "call": "MPI_Bcast", - "ttot": 2.256015489699997, - "count": 8993, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "call": "MPI_Isend", + "ttot": 0.005367787369999995, + "count": 4840, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Send", - "ttot": 0.05181495262999996, - "count": 7105, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "ttot": 0.20759449274999997, + "count": 10241, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Allreduce", - "ttot": 0.089130096, + "ttot": 0.088952218, "count": 751, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { - "call": "MPI_Alltoallv", - "ttot": 10.460661, - "count": 2786, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "call": "MPI_Wait", + "ttot": 0.01817803, + "count": 26, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 10.255975, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Reduce", - "ttot": 0.3233812431400001, - "count": 410, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.16030980861000013, + "count": 420, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Testall", - "ttot": 0.0058238, - "count": 7742, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "ttot": 0.0053895, + "count": 4992, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.10189341999999998, + "ttot": 0.10674721999999999, "count": 192, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.0137136, - "count": 7532, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.00101709, + "count": 8798, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allgatherv", - "ttot": 0.0194591, + "ttot": 0.018827, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" - }, - { - "call": "MPI_Wait", - "ttot": 0.0031333, - "count": 14, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Comm_size", - "ttot": 0.000062704, + "ttot": 0.000067234, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.00033664700000000003, + "ttot": 0.00028753299999999997, "count": 590, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 1.45493, + "ttot": 1.58144, "count": 2963, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" - }, - { - "call": "MPI_Irecv", - "ttot": 0.000259401, - "count": 629, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Alltoall", - "ttot": 0.0098259, + "ttot": 0.017482, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.0002439, + "ttot": 0.00024581, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "36", - "ttot": 15.267776496380002, + "nr": "56", + "ttot": 15.567504212649986, "mpiCalls": [ { "call": "MPI_Recv", - "ttot": 0.8524417880299998, - "count": 18876, + "ttot": 0.4931265096399999, + "count": 6772, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Isend", - "ttot": 0.0019722053800000014, - "count": 1125, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "ttot": 0.012564932309999995, + "count": 5374, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 1.981022680399999, - "count": 8436, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "ttot": 2.3264739340000005, + "count": 9598, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.08494123646999997, - "count": 7644, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, - { - "call": "MPI_Rsend", - "ttot": 0.0023276950000000003, - "count": 1258, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "ttot": 0.051431613830000014, + "count": 7711, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Allreduce", - "ttot": 0.093704426, + "ttot": 0.091397666, "count": 751, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoallv", - "ttot": 10.374816, + "ttot": 10.309734, "count": 2786, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { - "call": "MPI_Reduce", - "ttot": 0.2059149621, - "count": 386, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "call": "MPI_Testall", + "ttot": 0.0058458, + "count": 10774, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { - "call": "MPI_Testall", - "ttot": 0.0012102100000000002, - "count": 1199, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "call": "MPI_Reduce", + "ttot": 0.3237475388699999, + "count": 416, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.09680659999999999, + "ttot": 0.10600668000000002, "count": 192, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.00221586, - "count": 8790, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.02152466, + "count": 7532, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allgatherv", - "ttot": 0.020319, + "ttot": 0.0184529, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Wait", - "ttot": 0.0046079, - "count": 16, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "ttot": 0.0034614, + "count": 8, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.000084162, + "ttot": 0.000076771, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.00036764, + "ttot": 0.0003047, "count": 590, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 1.54092, + "ttot": 1.77, "count": 2963, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Irecv", - "ttot": 0.000246291, + "ttot": 0.000275137, "count": 629, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoall", - "ttot": 0.0036199, + "ttot": 0.032853, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.00023794, + "ttot": 0.00022697, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "14", - "ttot": 15.240989078380013, + "nr": "57", + "ttot": 15.596193704639976, "mpiCalls": [ { "call": "MPI_Recv", - "ttot": 1.6827016316099994, - "count": 7109, + "ttot": 0.5098841587699996, + "count": 8669, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Isend", - "ttot": 0.01028099321, - "count": 2527, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "ttot": 0.013762241469999993, + "count": 5386, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 1.5044328749000007, - "count": 6575, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "ttot": 2.2341181446000014, + "count": 9622, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.02456118616, - "count": 8924, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "ttot": 0.09531890828999999, + "count": 7723, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Allreduce", - "ttot": 0.09088584100000002, + "ttot": 0.090776122, "count": 751, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoallv", - "ttot": 9.933560000000002, + "ttot": 10.403229, "count": 2786, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Reduce", - "ttot": 0.20221728150000004, - "count": 314, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.23243324351000003, + "count": 420, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Testall", - "ttot": 0.00414636, - "count": 3214, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "ttot": 0.0057931, + "count": 10870, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.08873022000000001, + "ttot": 0.10349886999999999, "count": 192, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.01746137, - "count": 8153, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.016484739999999998, + "count": 8161, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allgatherv", - "ttot": 0.024000900000000002, + "ttot": 0.0194539, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Wait", - "ttot": 0.012754754, - "count": 24, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "ttot": 0.0044022, + "count": 14, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.00006485, + "ttot": 0.000059366, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.00038576, + "ttot": 0.000290629, "count": 590, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 1.6415899999999999, + "ttot": 1.8315299999999999, "count": 2963, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Irecv", - "ttot": 0.00023841600000000003, + "ttot": 0.000280141, "count": 629, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoall", - "ttot": 0.0027499, + "ttot": 0.034641, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.00022674, + "ttot": 0.00023794, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "54", - "ttot": 15.206209819900002, + "nr": "58", + "ttot": 15.769429633489986, "mpiCalls": [ { "call": "MPI_Recv", - "ttot": 0.4547320878400001, - "count": 16415, + "ttot": 0.5304065043500003, + "count": 8686, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Isend", - "ttot": 0.001500600860000001, - "count": 1312, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "ttot": 0.014487589479999995, + "count": 5389, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 2.132389115099999, - "count": 9720, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "ttot": 2.2010783393000017, + "count": 9646, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.2007840486, - "count": 10235, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, - { - "call": "MPI_Rsend", - "ttot": 0.000320437, - "count": 629, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "ttot": 0.05582562341999998, + "count": 8984, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Allreduce", - "ttot": 0.08944568400000001, + "ttot": 0.09038667599999999, "count": 751, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoallv", - "ttot": 10.215899000000002, + "ttot": 10.403471, "count": 2786, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Reduce", - "ttot": 0.1754631765, + "ttot": 0.26053750893999994, "count": 420, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Testall", - "ttot": 0.0011541799999999999, - "count": 2208, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "ttot": 0.0060706, + "count": 10963, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.10322139999999999, + "ttot": 0.10504641999999999, "count": 192, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.00631148, - "count": 11298, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.016768909999999998, + "count": 8790, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allgatherv", - "ttot": 0.02932, + "ttot": 0.039728, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Wait", - "ttot": 0.0064461, - "count": 16, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "ttot": 0.0048139, + "count": 14, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.000062227, + "ttot": 0.00009155200000000001, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.000291825, + "ttot": 0.00038146999999999996, "count": 590, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 1.77021, + "ttot": 2.00716, "count": 2963, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Irecv", - "ttot": 0.000319478, + "ttot": 0.00026369, "count": 629, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoall", - "ttot": 0.018107, + "ttot": 0.032672, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.00023198, + "ttot": 0.00023985, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "48", - "ttot": 15.185969279179973, + "nr": "59", + "ttot": 15.473175592169987, "mpiCalls": [ { "call": "MPI_Recv", - "ttot": 0.5251524718499999, - "count": 9876, + "ttot": 0.5114393427100004, + "count": 10639, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Isend", - "ttot": 0.011322748259999996, - "count": 5374, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "ttot": 0.013511963509999995, + "count": 5454, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 2.185223356600001, - "count": 9598, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" - }, - { - "call": "MPI_Send", - "ttot": 0.1477517513300001, - "count": 7768, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "ttot": 2.1699236132000004, + "count": 9670, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { - "call": "MPI_Rsend", - "ttot": 0.00029229799999999997, - "count": 629, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "call": "MPI_Send", + "ttot": 0.07757525577999999, + "count": 9607, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Allreduce", - "ttot": 0.095971848, + "ttot": 0.090816248, "count": 751, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoallv", - "ttot": 9.927426, + "ttot": 10.4338, "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.17069746997000002, + "count": 420, "color": "rgb(204, 37, 41)", "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Testall", - "ttot": 0.0056167, - "count": 11337, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" - }, - { - "call": "MPI_Reduce", - "ttot": 0.4052540181399999, - "count": 416, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.0061207, + "count": 11029, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.10332741, + "ttot": 0.10419863000000001, "count": 192, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.011443789999999999, - "count": 7532, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.012897929999999998, + "count": 9419, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allgatherv", - "ttot": 0.0201902, + "ttot": 0.0208212, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Wait", - "ttot": 0.0028071, - "count": 8, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "ttot": 0.0053351, + "count": 18, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.000058889, + "ttot": 0.000057935999999999996, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.000271555, + "ttot": 0.00029302, "count": 590, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 1.72725, + "ttot": 1.8248600000000001, "count": 2963, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Irecv", - "ttot": 0.000298263, + "ttot": 0.000250343, "count": 629, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoall", - "ttot": 0.016082, + "ttot": 0.030347, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.00022888, + "ttot": 0.00022984, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "52", - "ttot": 15.152341518409985, + "nr": "60", + "ttot": 19.103875352880006, "mpiCalls": [ { "call": "MPI_Recv", - "ttot": 0.5811146419600002, - "count": 15749, + "ttot": 0.48654702728000015, + "count": 10156, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Isend", - "ttot": 0.013997214540000004, + "ttot": 0.017260943320000003, "count": 5614, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 1.8815885980999996, + "ttot": 2.163108969699999, "count": 9694, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.20231701840999994, + "ttot": 0.05035948988000002, "count": 10246, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, - { - "call": "MPI_Rsend", - "ttot": 0.00035023599999999997, - "count": 629, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Allreduce", - "ttot": 0.09035067900000002, + "ttot": 0.08776415499999998, "count": 751, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoallv", - "ttot": 10.340406, + "ttot": 10.407040000000002, "count": 2786, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Reduce", - "ttot": 0.2351632314, + "ttot": 0.2117246547000001, "count": 420, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Testall", - "ttot": 0.0059862000000000005, - "count": 11448, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "ttot": 0.0065689, + "count": 11055, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.10330678, + "ttot": 0.11511125, "count": 192, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.00751538, + "ttot": 0.01336819, "count": 10048, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allgatherv", - "ttot": 0.019098, + "ttot": 0.0247319, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Wait", - "ttot": 0.0051644, + "ttot": 0.0070093, "count": 16, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.000063419, + "ttot": 0.00006938, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.000303979, + "ttot": 0.00035095000000000005, "count": 590, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 1.6491500000000001, + "ttot": 5.5095, "count": 2963, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Irecv", - "ttot": 0.000277041, + "ttot": 0.000251533, "count": 629, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoall", - "ttot": 0.015956, + "ttot": 0.0028598, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.0002327, + "ttot": 0.00024891, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "22", - "ttot": 15.140011650369997, + "nr": "61", + "ttot": 19.29334635168997, "mpiCalls": [ { "call": "MPI_Recv", - "ttot": 1.3776739672399994, - "count": 16511, + "ttot": 0.4362640967900001, + "count": 11491, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Isend", - "ttot": 0.012714297459999998, - "count": 3168, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" - }, - { - "call": "MPI_Bcast", - "ttot": 1.7528619240700005, - "count": 7204, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "ttot": 0.016168150830000005, + "count": 5649, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { - "call": "MPI_Send", - "ttot": 0.037287553399999986, - "count": 9553, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "call": "MPI_Bcast", + "ttot": 2.184497727870001, + "count": 9718, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { - "call": "MPI_Rsend", - "ttot": 0.00159168, - "count": 629, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "call": "MPI_Send", + "ttot": 0.05565374939999999, + "count": 10861, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Allreduce", - "ttot": 0.09172481899999999, + "ttot": 0.08702788500000001, "count": 751, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoallv", - "ttot": 10.367647999999999, + "ttot": 10.160381000000001, "count": 2786, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Reduce", - "ttot": 0.1965803971999999, - "count": 338, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.11132401279999996, + "count": 420, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Testall", - "ttot": 0.005769509999999999, - "count": 4167, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "ttot": 0.0080016, + "count": 10459, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.08811398, + "ttot": 0.11464793999999999, "count": 192, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.01679216, - "count": 8782, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.01177192, + "count": 10677, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allgatherv", - "ttot": 0.0287419, + "ttot": 0.0224981, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Wait", - "ttot": 0.016869319999999997, - "count": 24, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "ttot": 0.0078304, + "count": 16, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.000063181, + "ttot": 0.000061274, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.00035763, + "ttot": 0.00037861000000000004, "count": 590, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 1.12614, + "ttot": 6.0644, "count": 2963, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Irecv", - "ttot": 0.000178571, + "ttot": 0.000267025, "count": 629, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoall", - "ttot": 0.018661, + "ttot": 0.011923, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.00024176, + "ttot": 0.00024986, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "23", - "ttot": 15.138012191459984, + "nr": "62", + "ttot": 19.220029153059997, "mpiCalls": [ { "call": "MPI_Recv", - "ttot": 1.4562265672199999, - "count": 11259, + "ttot": 0.23117496040000013, + "count": 11587, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Isend", - "ttot": 0.011807369429999994, - "count": 2257, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "ttot": 0.006822140839999999, + "count": 5796, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 1.71316248327, - "count": 3454, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "ttot": 2.3469808120000017, + "count": 9720, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.03669089517000001, - "count": 7662, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, - { - "call": "MPI_Wait", - "ttot": 0.01582013, - "count": 24, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "ttot": 0.04677545131999999, + "count": 11468, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Allreduce", - "ttot": 0.090683641, + "ttot": 0.086880343, "count": 751, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoallv", - "ttot": 10.225473, + "ttot": 10.175590999999999, "count": 2786, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Reduce", - "ttot": 0.19840730837000004, - "count": 338, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.1429265545, + "count": 420, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Testall", - "ttot": 0.00514631, - "count": 3341, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "ttot": 0.0087659, + "count": 6036, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.091836785, + "ttot": 0.11526629599999999, "count": 192, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.0007774800000000001, - "count": 6282, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.0108056, + "count": 11298, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allgatherv", - "ttot": 0.025039000000000002, + "ttot": 0.027831, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0078907, + "count": 16, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.00007200199999999999, + "ttot": 0.000072718, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.00038338, + "ttot": 0.000373362, "count": 590, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 1.2319200000000001, + "ttot": 6.007, "count": 2963, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.000283475, + "count": 629, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoall", - "ttot": 0.034331, + "ttot": 0.0043571, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.00023484, + "ttot": 0.00023174, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "13", - "ttot": 15.102341357549955, + "nr": "63", + "ttot": 18.969433646420025, "mpiCalls": [ { "call": "MPI_Recv", - "ttot": 1.4813235307099992, - "count": 9544, + "ttot": 0.26822989819, + "count": 4322, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { - "call": "MPI_Isend", - "ttot": 0.01072694688, - "count": 2440, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "call": "MPI_Bcast", + "ttot": 2.576343747039999, + "count": 5970, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { - "call": "MPI_Bcast", - "ttot": 1.6724532270699992, - "count": 6573, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "call": "MPI_Isend", + "ttot": 0.00058745979, + "count": 396, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Send", - "ttot": 0.053713302019999985, - "count": 8311, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "ttot": 0.046339684600000014, + "count": 10245, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Allreduce", - "ttot": 0.09412623199999999, + "ttot": 0.08630665099999998, "count": 751, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoallv", - "ttot": 9.952701000000001, + "ttot": 10.101113999999999, "count": 2786, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Reduce", - "ttot": 0.11083247786999992, - "count": 314, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.0990658688, + "count": 420, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Testall", - "ttot": 0.003509, - "count": 2944, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" - }, - { - "call": "MPI_Wait", - "ttot": 0.008180109999999999, - "count": 24, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "ttot": 0.000356431, + "count": 587, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Sendrecv_replace", - "ttot": 0.09065938999999999, + "ttot": 0.11816296999999999, "count": 192, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Waitall", - "ttot": 0.0212981, - "count": 7532, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.0010340199999999999, + "count": 8798, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allgatherv", - "ttot": 0.0255831, + "ttot": 0.0206871, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0088623, + "count": 16, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.000065803, + "ttot": 0.000061036, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.00041056, + "ttot": 0.00037026, "count": 590, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 1.5622, + "ttot": 5.6408000000000005, "count": 2963, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" - }, - { - "call": "MPI_Irecv", - "ttot": 0.000199798, - "count": 629, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Alltoall", - "ttot": 0.014133, + "ttot": 0.00087309, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.00022578, + "ttot": 0.00023913, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "12", - "ttot": 15.092427042950003, + "nr": "64", + "ttot": 25.253347003199988, "mpiCalls": [ - { - "call": "MPI_Wait", - "ttot": 0.008002519, - "count": 24, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" - }, - { - "call": "MPI_Recv", - "ttot": 1.1562828715000004, - "count": 6356, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, - { - "call": "MPI_Isend", - "ttot": 0.009871079230000001, - "count": 2393, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" - }, { "call": "MPI_Bcast", - "ttot": 1.922925832799999, - "count": 6549, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" - }, - { - "call": "MPI_Send", - "ttot": 0.09594198115000008, - "count": 7670, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "ttot": 0.09342777320000002, + "count": 1249, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allreduce", - "ttot": 0.094500625, - "count": 751, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "ttot": 0.053496269, + "count": 58, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoallv", - "ttot": 9.65881, + "ttot": 9.882633, "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.07836395999999998, + "count": 254, "color": "rgb(204, 37, 41)", "hoverColor": "rgb(224, 57, 61)" }, { - "call": "MPI_Reduce", - "ttot": 0.23842671227, - "count": 314, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "call": "MPI_Allgatherv", + "ttot": 0.012194400000000001, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { - "call": "MPI_Testall", - "ttot": 0.00335147, - "count": 2779, + "call": "MPI_Comm_size", + "ttot": 0.000072956, + "count": 316, "color": "rgb(83, 81, 84)", "hoverColor": "rgb(103, 101, 104)" }, { - "call": "MPI_Sendrecv_replace", - "ttot": 0.08958107999999998, - "count": 192, + "call": "MPI_Comm_rank", + "ttot": 0.000341895, + "count": 571, "color": "rgb(107, 76, 154)", "hoverColor": "rgb(127, 96, 174)" }, { - "call": "MPI_Waitall", - "ttot": 0.028001320000000003, - "count": 6903, + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, "color": "rgb(146, 36, 40)", "hoverColor": "rgb(166, 56, 60)" }, { - "call": "MPI_Allgatherv", - "ttot": 0.025332, - "count": 5, + "call": "MPI_Barrier", + "ttot": 15.1324, + "count": 2951, "color": "rgb(148, 139, 61)", "hoverColor": "rgb(168, 159, 81)" }, { - "call": "MPI_Comm_size", - "ttot": 0.000067234, - "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" - }, - { - "call": "MPI_Comm_rank", - "ttot": 0.00036788, - "count": 590, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { - "call": "MPI_Finalize", - "ttot": 0, + "call": "MPI_Alltoall", + "ttot": 0.00019097, "count": 1, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, - { - "call": "MPI_Barrier", - "ttot": 1.75027, - "count": 2963, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" - }, - { - "call": "MPI_Init", - "ttot": 0, - "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" - }, - { - "call": "MPI_Irecv", - "ttot": 0.000223638, - "count": 629, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" - }, - { - "call": "MPI_Alltoall", - "ttot": 0.010235, - "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Allgather", - "ttot": 0.0002358, + "ttot": 0.00022578, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "21", - "ttot": 15.054385765739994, + "nr": "65", + "ttot": 25.355878281299994, "mpiCalls": [ - { - "call": "MPI_Recv", - "ttot": 0.9970898014199993, - "count": 12091, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, - { - "call": "MPI_Isend", - "ttot": 0.013174525149999996, - "count": 3081, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" - }, { "call": "MPI_Bcast", - "ttot": 2.083835995309999, - "count": 7202, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" - }, - { - "call": "MPI_Send", - "ttot": 0.05636753648999999, - "count": 8940, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, - { - "call": "MPI_Rsend", - "ttot": 0.00197196, - "count": 629, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" - }, - { - "call": "MPI_Wait", - "ttot": 0.008852740000000003, - "count": 24, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "ttot": 0.09328962930000002, + "count": 1249, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allreduce", - "ttot": 0.096154166, - "count": 751, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "ttot": 0.053463041, + "count": 58, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoallv", - "ttot": 10.393857, + "ttot": 10.096927999999998, "count": 2786, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Reduce", - "ttot": 0.22865631536999984, - "count": 338, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, - { - "call": "MPI_Testall", - "ttot": 0.00456901, - "count": 3860, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" - }, - { - "call": "MPI_Sendrecv_replace", - "ttot": 0.08988782000000001, - "count": 192, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" - }, - { - "call": "MPI_Waitall", - "ttot": 0.01699824, - "count": 8161, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.07751931999999997, + "count": 254, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Allgatherv", - "ttot": 0.022682, + "ttot": 0.0175599, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Comm_size", - "ttot": 0.00006938, + "ttot": 0.000060797, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.00037575, - "count": 590, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.000337844, + "count": 571, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 1.0119799999999999, - "count": 2963, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "ttot": 15.0155, + "count": 2951, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" - }, - { - "call": "MPI_Irecv", - "ttot": 0.00022458599999999998, - "count": 629, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Alltoall", - "ttot": 0.027401, + "ttot": 0.00098491, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.00023794, + "ttot": 0.00023484, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "19", - "ttot": 15.018596167829987, + "nr": "66", + "ttot": 25.3238025593, "mpiCalls": [ - { - "call": "MPI_Recv", - "ttot": 0.3359637512700002, - "count": 8667, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, - { - "call": "MPI_Isend", - "ttot": 0.012594232819999995, - "count": 2882, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" - }, { "call": "MPI_Bcast", - "ttot": 2.6447421142700023, - "count": 7154, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" - }, - { - "call": "MPI_Send", - "ttot": 0.14167560883, - "count": 7650, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, - { - "call": "MPI_Rsend", - "ttot": 0.0018684600000000002, - "count": 629, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "ttot": 0.09365067330000007, + "count": 1249, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allreduce", - "ttot": 0.10036888000000002, - "count": 751, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "ttot": 0.053406423, + "count": 58, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoallv", - "ttot": 10.507214999999999, + "ttot": 10.030248, "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.07782849999999998, + "count": 254, "color": "rgb(204, 37, 41)", "hoverColor": "rgb(224, 57, 61)" }, { - "call": "MPI_Reduce", - "ttot": 0.23946405664, - "count": 338, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "call": "MPI_Allgatherv", + "ttot": 0.013731, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { - "call": "MPI_Testall", - "ttot": 0.0054038, - "count": 3227, + "call": "MPI_Comm_size", + "ttot": 0.00007391, + "count": 316, "color": "rgb(83, 81, 84)", "hoverColor": "rgb(103, 101, 104)" }, { - "call": "MPI_Wait", - "ttot": 0.006628215, - "count": 26, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" - }, - { - "call": "MPI_Sendrecv_replace", - "ttot": 0.09128673000000001, - "count": 192, + "call": "MPI_Comm_rank", + "ttot": 0.000335213, + "count": 571, "color": "rgb(107, 76, 154)", "hoverColor": "rgb(127, 96, 174)" }, - { - "call": "MPI_Waitall", - "ttot": 0.0144137, - "count": 6903, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" - }, - { - "call": "MPI_Allgatherv", - "ttot": 0.0260031, - "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" - }, - { - "call": "MPI_Comm_size", - "ttot": 0.000068903, - "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" - }, - { - "call": "MPI_Comm_rank", - "ttot": 0.00039483, - "count": 590, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" - }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 0.88715, - "count": 2963, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "ttot": 15.0529, + "count": 2951, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" - }, - { - "call": "MPI_Irecv", - "ttot": 0.00020384599999999999, - "count": 629, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Alltoall", - "ttot": 0.0029211, + "ttot": 0.001399, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", "ttot": 0.00022984, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "15", - "ttot": 14.973381586339986, + "nr": "67", + "ttot": 25.3610920469, "mpiCalls": [ - { - "call": "MPI_Recv", - "ttot": 1.8110626778600007, - "count": 6845, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, - { - "call": "MPI_Isend", - "ttot": 0.009438568519999998, - "count": 1616, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" - }, { "call": "MPI_Bcast", - "ttot": 1.4184390602, - "count": 2825, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" - }, - { - "call": "MPI_Send", - "ttot": 0.02436256829, - "count": 7009, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, - { - "call": "MPI_Allreduce", - "ttot": 0.09010908299999999, - "count": 751, + "ttot": 0.09346506290000006, + "count": 1249, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { - "call": "MPI_Wait", - "ttot": 0.008834126999999999, - "count": 24, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "call": "MPI_Allreduce", + "ttot": 0.053361688, + "count": 58, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoallv", - "ttot": 9.674377999999999, + "ttot": 9.998135000000001, "count": 2786, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Reduce", - "ttot": 0.10958939246999996, - "count": 314, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, - { - "call": "MPI_Testall", - "ttot": 0.0037415, - "count": 2353, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" - }, - { - "call": "MPI_Sendrecv_replace", - "ttot": 0.09241506999999999, - "count": 192, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" - }, - { - "call": "MPI_Waitall", - "ttot": 0.00065208, - "count": 5653, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.07790015999999998, + "count": 254, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Allgatherv", - "ttot": 0.0225679, + "ttot": 0.013122100000000001, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Comm_size", - "ttot": 0.000067949, + "ttot": 0.000056505, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.00036859, - "count": 590, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.000326631, + "count": 571, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 1.7045, - "count": 2963, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "ttot": 15.119700000000002, + "count": 2951, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Alltoall", - "ttot": 0.0026259, + "ttot": 0.004781, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.00022912, + "ttot": 0.0002439, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "53", - "ttot": 14.951617856159993, + "nr": "68", + "ttot": 25.80518858960002, "mpiCalls": [ - { - "call": "MPI_Recv", - "ttot": 0.5319424172, - "count": 15191, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, - { - "call": "MPI_Isend", - "ttot": 0.01479338111, - "count": 5647, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" - }, { "call": "MPI_Bcast", - "ttot": 1.915870691569999, - "count": 9718, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" - }, - { - "call": "MPI_Send", - "ttot": 0.20408344943999993, - "count": 10844, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, - { - "call": "MPI_Rsend", - "ttot": 0.00031375800000000003, - "count": 629, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "ttot": 0.09333297160000005, + "count": 1249, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allreduce", - "ttot": 0.08938027100000001, - "count": 751, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "ttot": 0.053382062, + "count": 58, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoallv", - "ttot": 10.228052000000002, + "ttot": 9.867192000000001, "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.07769618999999998, + "count": 254, "color": "rgb(204, 37, 41)", "hoverColor": "rgb(224, 57, 61)" }, - { - "call": "MPI_Reduce", - "ttot": 0.12524282183999993, - "count": 420, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, - { - "call": "MPI_Testall", - "ttot": 0.006201, - "count": 11260, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" - }, - { - "call": "MPI_Sendrecv_replace", - "ttot": 0.10253836999999999, - "count": 192, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" - }, - { - "call": "MPI_Waitall", - "ttot": 0.006554620000000001, - "count": 10677, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" - }, { "call": "MPI_Allgatherv", - "ttot": 0.023536, + "ttot": 0.011446, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" - }, - { - "call": "MPI_Wait", - "ttot": 0.0059793, - "count": 16, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Comm_size", - "ttot": 0.000057935999999999996, + "ttot": 0.000062466, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.00031829000000000004, - "count": 590, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.00035000000000000005, + "count": 571, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 1.6795900000000001, - "count": 2963, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "ttot": 15.677200000000001, + "count": 2951, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" - }, - { - "call": "MPI_Irecv", - "ttot": 0.00027752, - "count": 629, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Alltoall", - "ttot": 0.01665, + "ttot": 0.024288, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.00023603, + "ttot": 0.0002389, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "20", - "ttot": 14.918008977650002, + "nr": "69", + "ttot": 25.958875071900025, "mpiCalls": [ - { - "call": "MPI_Recv", - "ttot": 0.78936747234, - "count": 12641, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, - { - "call": "MPI_Isend", - "ttot": 0.012066725890000001, - "count": 3034, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" - }, { "call": "MPI_Bcast", - "ttot": 2.2473486272999983, - "count": 7178, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" - }, - { - "call": "MPI_Send", - "ttot": 0.10457130232000003, - "count": 8307, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, - { - "call": "MPI_Rsend", - "ttot": 0.0019145, - "count": 629, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "ttot": 0.09318168490000002, + "count": 1249, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allreduce", - "ttot": 0.097817863, - "count": 751, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "ttot": 0.053263151999999994, + "count": 58, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoallv", - "ttot": 10.18189, + "ttot": 10.062656000000002, "count": 2786, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Reduce", - "ttot": 0.2321866857999999, - "count": 338, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, - { - "call": "MPI_Testall", - "ttot": 0.00397472, - "count": 3971, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" - }, - { - "call": "MPI_Sendrecv_replace", - "ttot": 0.08986651999999999, - "count": 192, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" - }, - { - "call": "MPI_Waitall", - "ttot": 0.01921418, - "count": 7532, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.07726380999999999, + "count": 254, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Allgatherv", - "ttot": 0.030067000000000003, + "ttot": 0.0176021, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" - }, - { - "call": "MPI_Wait", - "ttot": 0.0066671000000000005, - "count": 24, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Comm_size", - "ttot": 0.000081062, + "ttot": 0.000054359, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.00036025, - "count": 590, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.000349996, + "count": 571, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 1.07367, - "count": 2963, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "ttot": 15.6336, + "count": 2951, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" - }, - { - "call": "MPI_Irecv", - "ttot": 0.000225069, - "count": 629, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Alltoall", - "ttot": 0.026476, + "ttot": 0.020677, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.0002439, + "ttot": 0.00022697, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "18", - "ttot": 14.645967246400001, + "nr": "70", + "ttot": 26.014078335600026, "mpiCalls": [ { - "call": "MPI_Recv", - "ttot": 0.5150429139900001, - "count": 11644, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, - { - "call": "MPI_Isend", - "ttot": 0.0009932504900000002, - "count": 900, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" - }, - { - "call": "MPI_Bcast", - "ttot": 2.2899065972, - "count": 7130, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" - }, - { - "call": "MPI_Send", - "ttot": 0.19398750152000005, - "count": 5129, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, - { - "call": "MPI_Rsend", - "ttot": 0.00241708, - "count": 629, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "call": "MPI_Bcast", + "ttot": 0.09372365960000001, + "count": 1249, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allreduce", - "ttot": 0.100154015, - "count": 751, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "ttot": 0.053245104, + "count": 58, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoallv", - "ttot": 10.320586, + "ttot": 9.999503, "count": 2786, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Reduce", - "ttot": 0.23287154920000006, - "count": 338, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, - { - "call": "MPI_Testall", - "ttot": 0.0006816299999999999, - "count": 981, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" - }, - { - "call": "MPI_Sendrecv_replace", - "ttot": 0.09359680000000001, - "count": 192, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" - }, - { - "call": "MPI_Waitall", - "ttot": 0.00680213, - "count": 6274, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.07571014999999996, + "count": 254, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Allgatherv", - "ttot": 0.021698, + "ttot": 0.029296000000000003, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" - }, - { - "call": "MPI_Wait", - "ttot": 0.0019255, - "count": 12, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Comm_size", - "ttot": 0.000077962, + "ttot": 0.000081062, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.00037646, - "count": 590, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.00035452, + "count": 571, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 0.86195, - "count": 2963, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "ttot": 15.7228, + "count": 2951, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" - }, - { - "call": "MPI_Irecv", - "ttot": 0.00023627700000000001, - "count": 629, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Alltoall", - "ttot": 0.0024378, + "ttot": 0.039135, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.00022578, + "ttot": 0.00022984, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "16", - "ttot": 14.609302354369982, + "nr": "71", + "ttot": 26.100210049599998, "mpiCalls": [ - { - "call": "MPI_Recv", - "ttot": 0.4111648220800001, - "count": 7879, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, - { - "call": "MPI_Isend", - "ttot": 0.002846956150000001, - "count": 2808, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" - }, { "call": "MPI_Bcast", - "ttot": 2.435796141300001, - "count": 7082, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" - }, - { - "call": "MPI_Send", - "ttot": 0.04891785014, - "count": 5123, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, - { - "call": "MPI_Rsend", - "ttot": 0.00248124, - "count": 629, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "ttot": 0.09361409259999999, + "count": 1249, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allreduce", - "ttot": 0.10112897900000004, - "count": 751, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "ttot": 0.053112052, + "count": 58, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoallv", - "ttot": 10.215949, + "ttot": 9.947687999999998, "count": 2786, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" - }, - { - "call": "MPI_Testall", - "ttot": 0.00239397, - "count": 2915, - "color": "rgb(83, 81, 84)", - "hoverColor": "rgb(103, 101, 104)" + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Reduce", - "ttot": 0.41662613769999984, - "count": 334, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, - { - "call": "MPI_Sendrecv_replace", - "ttot": 0.09217093999999998, - "count": 192, - "color": "rgb(107, 76, 154)", - "hoverColor": "rgb(127, 96, 174)" - }, - { - "call": "MPI_Waitall", - "ttot": 0.01286429, - "count": 5016, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.07574534000000001, + "count": 254, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Allgatherv", - "ttot": 0.022010000000000002, + "ttot": 0.014533, "count": 5, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" - }, - { - "call": "MPI_Wait", - "ttot": 0.00066781, - "count": 6, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Comm_size", - "ttot": 0.00006747200000000001, + "ttot": 0.00008058499999999999, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.00037241, - "count": 590, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.00042105, + "count": 571, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 0.83819, - "count": 2963, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "ttot": 15.8889, + "count": 2951, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" - }, - { - "call": "MPI_Irecv", - "ttot": 0.000268696, - "count": 629, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Alltoall", - "ttot": 0.0051539, + "ttot": 0.025883, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.00023174, + "ttot": 0.00023293, "count": 3, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" } ] }, { - "nr": "17", - "ttot": 14.53842167022001, + "nr": "72", + "ttot": 44.24863437330001, "mpiCalls": [ - { - "call": "MPI_Recv", - "ttot": 0.3535194385100001, - "count": 7892, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, - { - "call": "MPI_Isend", - "ttot": 0.0029404596600000007, - "count": 2820, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" - }, { "call": "MPI_Bcast", - "ttot": 2.4593783734000025, - "count": 7106, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" - }, - { - "call": "MPI_Send", - "ttot": 0.03899082357999999, - "count": 5096, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, - { - "call": "MPI_Rsend", - "ttot": 0.00241782, - "count": 629, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "ttot": 0.07591889330000001, + "count": 1249, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allreduce", - "ttot": 0.10051204700000002, - "count": 751, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "ttot": 0.050903254999999994, + "count": 58, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Alltoallv", - "ttot": 10.15247, + "ttot": 9.56879, "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.13344718, + "count": 254, "color": "rgb(204, 37, 41)", "hoverColor": "rgb(224, 57, 61)" }, { - "call": "MPI_Reduce", - "ttot": 0.37723219906999983, - "count": 338, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "call": "MPI_Allgatherv", + "ttot": 0.0116469, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { - "call": "MPI_Testall", - "ttot": 0.00308702, - "count": 2928, + "call": "MPI_Comm_size", + "ttot": 0.000046969000000000004, + "count": 316, "color": "rgb(83, 81, 84)", "hoverColor": "rgb(103, 101, 104)" }, { - "call": "MPI_Sendrecv_replace", - "ttot": 0.092885, - "count": 192, + "call": "MPI_Comm_rank", + "ttot": 0.000257256, + "count": 571, "color": "rgb(107, 76, 154)", "hoverColor": "rgb(127, 96, 174)" }, { - "call": "MPI_Waitall", - "ttot": 0.00783724, - "count": 5645, + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, "color": "rgb(146, 36, 40)", "hoverColor": "rgb(166, 56, 60)" }, { - "call": "MPI_Allgatherv", - "ttot": 0.0192839, - "count": 5, + "call": "MPI_Barrier", + "ttot": 33.738, + "count": 2951, "color": "rgb(148, 139, 61)", "hoverColor": "rgb(168, 159, 81)" }, { - "call": "MPI_Wait", - "ttot": 0.0012367, - "count": 12, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.66937, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00025392, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "73", + "ttot": 44.08770471379997, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.07578352580000004, + "count": 1249, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.050907191, + "count": 58, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 9.610812, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.030506603, + "count": 254, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.0089994, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" }, { "call": "MPI_Comm_size", - "ttot": 0.000064373, + "ttot": 0.000034332, "count": 316, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0003612, - "count": 590, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.000265602, + "count": 571, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Barrier", - "ttot": 0.92319, - "count": 2963, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "ttot": 33.638999999999996, + "count": 2951, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" - }, - { - "call": "MPI_Irecv", - "ttot": 0.000269176, - "count": 629, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Alltoall", - "ttot": 0.002502, + "ttot": 0.67114, "count": 1, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allgather", - "ttot": 0.0002439, + "ttot": 0.00025606, "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "74", + "ttot": 43.9668143478, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.07587552879999998, + "count": 1249, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.050798567, + "count": 58, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" - } + }, + { + "call": "MPI_Alltoallv", + "ttot": 9.61383, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.025502434, + "count": 254, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.008594000000000001, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000030756, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.00024700199999999996, + "count": 571, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 33.524, + "count": 2951, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.66768, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00025606, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "75", + "ttot": 44.05081399769999, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.0758122907, + "count": 1249, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.050882301000000005, + "count": 58, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 9.609024999999999, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.025202287999999996, + "count": 254, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.0067176, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000049114000000000004, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000219344, + "count": 571, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 33.614999999999995, + "count": 2951, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.66765, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00025606, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + } + ], + "mpiCallsByTaskSorted": [ + { + "nr": "72", + "ttot": 44.24863437330001, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.07591889330000001, + "count": 1249, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.050903254999999994, + "count": 58, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 9.56879, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.13344718, + "count": 254, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.0116469, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000046969000000000004, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000257256, + "count": 571, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 33.738, + "count": 2951, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.66937, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00025392, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "73", + "ttot": 44.08770471379997, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.07578352580000004, + "count": 1249, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.050907191, + "count": 58, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 9.610812, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.030506603, + "count": 254, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.0089994, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000034332, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000265602, + "count": 571, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 33.638999999999996, + "count": 2951, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.67114, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00025606, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "75", + "ttot": 44.05081399769999, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.0758122907, + "count": 1249, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.050882301000000005, + "count": 58, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 9.609024999999999, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.025202287999999996, + "count": 254, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.0067176, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000049114000000000004, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000219344, + "count": 571, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 33.614999999999995, + "count": 2951, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.66765, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00025606, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "74", + "ttot": 43.9668143478, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.07587552879999998, + "count": 1249, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.050798567, + "count": 58, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 9.61383, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.025502434, + "count": 254, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.008594000000000001, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000030756, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.00024700199999999996, + "count": 571, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 33.524, + "count": 2951, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.66768, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00025606, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "71", + "ttot": 26.100210049599998, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.09361409259999999, + "count": 1249, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.053112052, + "count": 58, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 9.947687999999998, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.07574534000000001, + "count": 254, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.014533, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.00008058499999999999, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.00042105, + "count": 571, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 15.8889, + "count": 2951, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.025883, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00023293, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "70", + "ttot": 26.014078335600026, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.09372365960000001, + "count": 1249, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.053245104, + "count": 58, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 9.999503, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.07571014999999996, + "count": 254, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.029296000000000003, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000081062, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.00035452, + "count": 571, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 15.7228, + "count": 2951, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.039135, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00022984, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "69", + "ttot": 25.958875071900025, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.09318168490000002, + "count": 1249, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.053263151999999994, + "count": 58, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 10.062656000000002, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.07726380999999999, + "count": 254, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.0176021, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000054359, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000349996, + "count": 571, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 15.6336, + "count": 2951, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.020677, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00022697, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "68", + "ttot": 25.80518858960002, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.09333297160000005, + "count": 1249, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.053382062, + "count": 58, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 9.867192000000001, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.07769618999999998, + "count": 254, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.011446, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000062466, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.00035000000000000005, + "count": 571, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 15.677200000000001, + "count": 2951, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.024288, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.0002389, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "67", + "ttot": 25.3610920469, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.09346506290000006, + "count": 1249, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.053361688, + "count": 58, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 9.998135000000001, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.07790015999999998, + "count": 254, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.013122100000000001, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000056505, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000326631, + "count": 571, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 15.119700000000002, + "count": 2951, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.004781, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.0002439, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "65", + "ttot": 25.355878281299994, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.09328962930000002, + "count": 1249, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.053463041, + "count": 58, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 10.096927999999998, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.07751931999999997, + "count": 254, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.0175599, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000060797, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000337844, + "count": 571, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 15.0155, + "count": 2951, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.00098491, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00023484, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "66", + "ttot": 25.3238025593, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.09365067330000007, + "count": 1249, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.053406423, + "count": 58, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 10.030248, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.07782849999999998, + "count": 254, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.013731, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.00007391, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000335213, + "count": 571, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 15.0529, + "count": 2951, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.001399, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00022984, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "64", + "ttot": 25.253347003199988, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.09342777320000002, + "count": 1249, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.053496269, + "count": 58, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 9.882633, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.07836395999999998, + "count": 254, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.012194400000000001, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000072956, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000341895, + "count": 571, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 15.1324, + "count": 2951, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.00019097, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00022578, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "61", + "ttot": 19.29334635168997, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 0.4362640967900001, + "count": 11491, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Isend", + "ttot": 0.016168150830000005, + "count": 5649, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 2.184497727870001, + "count": 9718, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.05565374939999999, + "count": 10861, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.08702788500000001, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 10.160381000000001, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.11132401279999996, + "count": 420, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Testall", + "ttot": 0.0080016, + "count": 10459, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.11464793999999999, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.01177192, + "count": 10677, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.0224981, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0078304, + "count": 16, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000061274, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.00037861000000000004, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 6.0644, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.000267025, + "count": 629, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.011923, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00024986, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "62", + "ttot": 19.220029153059997, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 0.23117496040000013, + "count": 11587, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Isend", + "ttot": 0.006822140839999999, + "count": 5796, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 2.3469808120000017, + "count": 9720, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.04677545131999999, + "count": 11468, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.086880343, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 10.175590999999999, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.1429265545, + "count": 420, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Testall", + "ttot": 0.0087659, + "count": 6036, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.11526629599999999, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.0108056, + "count": 11298, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.027831, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0078907, + "count": 16, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000072718, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000373362, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 6.007, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.000283475, + "count": 629, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.0043571, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00023174, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "60", + "ttot": 19.103875352880006, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 0.48654702728000015, + "count": 10156, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Isend", + "ttot": 0.017260943320000003, + "count": 5614, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 2.163108969699999, + "count": 9694, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.05035948988000002, + "count": 10246, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.08776415499999998, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 10.407040000000002, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.2117246547000001, + "count": 420, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Testall", + "ttot": 0.0065689, + "count": 11055, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.11511125, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.01336819, + "count": 10048, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.0247319, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0070093, + "count": 16, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.00006938, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.00035095000000000005, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 5.5095, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.000251533, + "count": 629, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.0028598, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00024891, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "63", + "ttot": 18.969433646420025, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 0.26822989819, + "count": 4322, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 2.576343747039999, + "count": 5970, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Isend", + "ttot": 0.00058745979, + "count": 396, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 0.046339684600000014, + "count": 10245, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.08630665099999998, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 10.101113999999999, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.0990658688, + "count": 420, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Testall", + "ttot": 0.000356431, + "count": 587, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.11816296999999999, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.0010340199999999999, + "count": 8798, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.0206871, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0088623, + "count": 16, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000061036, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.00037026, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 5.6408000000000005, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.00087309, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00023913, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "11", + "ttot": 16.599467375899994, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 0.7679156280699994, + "count": 6123, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Isend", + "ttot": 0.008408305260000004, + "count": 2233, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 2.2686491221000002, + "count": 6525, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Wait", + "ttot": 0.004939139, + "count": 26, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Send", + "ttot": 0.16071653269999991, + "count": 7001, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.09764781600000001, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 10.166377, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.10913450377000002, + "count": 314, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Testall", + "ttot": 0.0025613, + "count": 3095, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.10274056, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.030803860000000002, + "count": 6274, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.036773, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000062943, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.00034499300000000004, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 2.79352, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.000214813, + "count": 629, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.048413, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00024486, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "47", + "ttot": 16.52765804833999, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 0.6376472186300006, + "count": 8718, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 2.4568708354999997, + "count": 5341, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Isend", + "ttot": 0.016149369619999996, + "count": 4182, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 0.04148374957999999, + "count": 9543, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.086938967, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 10.255526000000001, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.18915924801000006, + "count": 410, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Testall", + "ttot": 0.008466, + "count": 7381, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Wait", + "ttot": 0.011627963, + "count": 26, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.102286353, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.0007586499999999999, + "count": 8169, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.0248759, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000097514, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0003953, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 2.66728, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.027863, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00023198, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "35", + "ttot": 16.381322831789987, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 0.6873742318399998, + "count": 14995, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Isend", + "ttot": 0.004236422239999999, + "count": 4172, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 2.0721551674000014, + "count": 8412, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.04588769710999993, + "count": 8295, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Rsend", + "ttot": 0.00258086, + "count": 1258, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.09150082300000002, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 10.124158999999999, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.18671157019999987, + "count": 386, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Testall", + "ttot": 0.00484967, + "count": 4343, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.10105324999999998, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.0022251500000000004, + "count": 8161, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.0237571, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0037386, + "count": 18, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000079632, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.00039267, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 2.99499, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.000243188, + "count": 629, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.035152, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.0002358, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "46", + "ttot": 16.354134599110022, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 0.49582354734000006, + "count": 8973, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Isend", + "ttot": 0.01686049568000001, + "count": 5093, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 2.509739931399997, + "count": 9091, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Wait", + "ttot": 0.010137324, + "count": 26, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Send", + "ttot": 0.03970151124999997, + "count": 11413, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.08811297000000001, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 10.336083000000002, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.23569120943999997, + "count": 410, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Testall", + "ttot": 0.008995, + "count": 7827, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.09695118000000001, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.021357440000000002, + "count": 10669, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.0288228, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.00009632100000000002, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000352381, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 2.43639, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.000192638, + "count": 629, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.028587, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00023985, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "10", + "ttot": 16.23508221073999, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 0.25491782352000014, + "count": 4154, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Isend", + "ttot": 0.0017349618000000021, + "count": 2168, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 2.7450730582999974, + "count": 6501, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.18172575572000005, + "count": 6359, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.09809465800000002, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 10.329491, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.24802786440000008, + "count": 314, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Testall", + "ttot": 0.00180671, + "count": 2252, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Wait", + "ttot": 0.003495008, + "count": 22, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.10408392000000001, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.01991296, + "count": 5645, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.0239941, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000063896, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000308032, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 2.18403, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.000183583, + "count": 629, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.037915, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00022388, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "34", + "ttot": 16.199004389339986, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 0.6799044075099999, + "count": 14909, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Isend", + "ttot": 0.012305780519999997, + "count": 4107, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 2.105267984699999, + "count": 8388, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.04644163790999999, + "count": 7722, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Rsend", + "ttot": 0.004313727, + "count": 1258, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.09114196500000002, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 10.214250999999999, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.3069537977000001, + "count": 386, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Testall", + "ttot": 0.0063324, + "count": 5704, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.10187830999999997, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.00220347, + "count": 7532, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.019794, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0035303, + "count": 14, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000082254, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000286343, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 2.5632099999999998, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.00023627200000000002, + "count": 629, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.040639, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00023174, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "25", + "ttot": 16.12148463571998, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 0.4350759287600002, + "count": 7295, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Isend", + "ttot": 0.00988428261999999, + "count": 3469, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 2.348750659469998, + "count": 7735, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.052992475899999954, + "count": 5798, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.10049133499999999, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 10.440216999999999, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.3353991699699998, + "count": 362, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Testall", + "ttot": 0.004421690000000001, + "count": 5473, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.10207924, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.01200959, + "count": 6274, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.029943900000000002, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0016339, + "count": 16, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.00009250600000000001, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000305419, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 2.22641, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.000272509, + "count": 629, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.021269, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00023603, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "32", + "ttot": 16.054026814950014, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 0.6163302179499996, + "count": 12350, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Isend", + "ttot": 0.010426844459999998, + "count": 4092, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 2.2603589799999977, + "count": 8340, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.04664919283999998, + "count": 6457, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Rsend", + "ttot": 0.00578384, + "count": 1258, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.09210103700000001, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 10.111744999999999, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Testall", + "ttot": 0.0049483999999999995, + "count": 6825, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.37235934169999985, + "count": 382, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.10045229, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.0024533000000000003, + "count": 6274, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.0204951, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0019119, + "count": 8, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000059367, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.00028276, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 2.366, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.00023031400000000002, + "count": 629, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.041206, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00023293, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "31", + "ttot": 16.051471883339975, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 1.1315813101499996, + "count": 8130, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 2.0026441327699978, + "count": 4083, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Isend", + "ttot": 0.0109598393, + "count": 2902, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 0.04990670524999998, + "count": 8268, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.095598931, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 10.438906000000001, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.12592422687000002, + "count": 362, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Testall", + "ttot": 0.00484176, + "count": 4997, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Wait", + "ttot": 0.008700626000000001, + "count": 28, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.10102496700000002, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.0008263599999999999, + "count": 6911, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.0257579, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000054597999999999995, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000284667, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 2.03156, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.022655, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00024486, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "1", + "ttot": 15.975650506780006, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 0.5678770353299999, + "count": 10480, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Isend", + "ttot": 0.0012328606400000012, + "count": 2147, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 2.389828671200002, + "count": 5848, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.24182286354000007, + "count": 2559, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Rsend", + "ttot": 0.001460551, + "count": 1887, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.12325898, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 10.498218, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.21498742507, + "count": 290, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Testall", + "ttot": 0.00171541, + "count": 2208, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.09847682000000002, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.000434395, + "count": 3758, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.0302921, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0034611250000000007, + "count": 16, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000054121000000000006, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000301359, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 1.77539, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.026608, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00023079, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "26", + "ttot": 15.917873462819975, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 0.38195599891, + "count": 6694, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Isend", + "ttot": 0.010405147629999995, + "count": 3474, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 2.353917166899999, + "count": 7759, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.05315497177999998, + "count": 7022, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.09982600100000001, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 10.626902999999999, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.3559476535999999, + "count": 362, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Testall", + "ttot": 0.00435497, + "count": 5210, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.10180007, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.010949440000000001, + "count": 6903, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.019428, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0021482, + "count": 16, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000071048, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000316624, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 1.87213, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.00027919100000000003, + "count": 629, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.024054, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00023198, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "30", + "ttot": 15.893873240110024, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 0.9987825077200007, + "count": 8398, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Isend", + "ttot": 0.011851085089999986, + "count": 3813, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 2.075208661499998, + "count": 7833, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.0488837658, + "count": 10159, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.096449586, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 10.525571, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.22517795200000007, + "count": 362, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Testall", + "ttot": 0.00553177, + "count": 6228, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Wait", + "ttot": 0.007954841, + "count": 28, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.09600465, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.01973047, + "count": 9411, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.023548, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000056744, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.00028753000000000003, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 1.74162, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.000256777, + "count": 629, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.016719, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.0002389, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "29", + "ttot": 15.88326664217002, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 0.74809104497, + "count": 8958, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Isend", + "ttot": 0.004007846069999998, + "count": 3726, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 2.2970128968699988, + "count": 7831, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.07220827538999994, + "count": 9554, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.09782162600000001, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 10.453946999999998, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.16133715787, + "count": 362, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Wait", + "ttot": 0.006975859, + "count": 28, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Testall", + "ttot": 0.00308677, + "count": 4373, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.09890289000000001, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.01942236, + "count": 8790, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.027784999999999997, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000050545, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000286342, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 1.87296, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.000212189, + "count": 629, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.018929, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00022984, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "7", + "ttot": 15.878199844159997, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 2.282859151389998, + "count": 19407, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Isend", + "ttot": 0.014797200529999992, + "count": 5368, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.9071777045000007, + "count": 2196, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.01193802724, + "count": 1952, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.11224292500000001, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 10.368096, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.14618814450000006, + "count": 290, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Testall", + "ttot": 0.0053554, + "count": 10014, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0172751, + "count": 18, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.10499514199999997, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.0008323199999999999, + "count": 5024, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.0206999, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000051498, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000296591, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 1.85495, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.030218, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00022674, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "27", + "ttot": 15.874725222250014, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 0.40568503903999964, + "count": 8568, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Isend", + "ttot": 0.0015831013399999995, + "count": 975, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 2.380905732699999, + "count": 7783, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.1598073744700001, + "count": 6459, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.10047440900000001, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 10.328584, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.1367115567, + "count": 362, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Testall", + "ttot": 0.00094223, + "count": 1052, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.1022494, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.01713609, + "count": 7532, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.023399, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0023651, + "count": 20, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000073671, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000311849, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 2.19334, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.000260829, + "count": 629, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.020666, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00022984, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "33", + "ttot": 15.861833768869975, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 0.5942001665800002, + "count": 11130, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Isend", + "ttot": 0.01199398728999999, + "count": 4104, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 2.24830234417, + "count": 8364, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.04272000146000001, + "count": 6469, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Rsend", + "ttot": 0.0026189739999999996, + "count": 1258, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.09118234500000001, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 10.179914, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.24987310236999982, + "count": 386, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Testall", + "ttot": 0.0053203, + "count": 6406, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.10168260999999999, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.00197649, + "count": 6903, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.027174999999999998, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0025439, + "count": 14, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000076056, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.00030875499999999997, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 2.26677, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.000242947, + "count": 629, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.034702, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00023079, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "2", + "ttot": 15.809062327609976, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 1.0568724843299997, + "count": 14860, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Isend", + "ttot": 0.0026657611300000008, + "count": 2775, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 1.9255137931000008, + "count": 5872, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.20793091165000002, + "count": 3207, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Rsend", + "ttot": 0.0014786550000000002, + "count": 1887, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.122243579, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0027918960000000003, + "count": 16, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 10.366307, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.2637825194, + "count": 290, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Testall", + "ttot": 0.0022604500000000002, + "count": 2843, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.10154762000000002, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.0005664800000000001, + "count": 4387, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.0264198, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000054836, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.00031566200000000003, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 1.7048200000000002, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.023267, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00022388, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "28", + "ttot": 15.798452406299996, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 0.40402568657000004, + "count": 7016, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Isend", + "ttot": 0.003008604200000002, + "count": 3679, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 2.5723668486999998, + "count": 7807, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.11467871763000001, + "count": 8913, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.09881549, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 10.408427, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.2741814112000001, + "count": 362, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Testall", + "ttot": 0.00263141, + "count": 4327, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.09896202999999999, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.02165184, + "count": 8161, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.022279999999999998, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Wait", + "ttot": 0.005088283999999999, + "count": 28, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000068188, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000292297, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 1.75464, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.000234609, + "count": 629, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.016858, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00024199, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "58", + "ttot": 15.769429633489986, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 0.5304065043500003, + "count": 8686, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Isend", + "ttot": 0.014487589479999995, + "count": 5389, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 2.2010783393000017, + "count": 9646, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.05582562341999998, + "count": 8984, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.09038667599999999, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 10.403471, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.26053750893999994, + "count": 420, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Testall", + "ttot": 0.0060706, + "count": 10963, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.10504641999999999, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.016768909999999998, + "count": 8790, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.039728, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0048139, + "count": 14, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.00009155200000000001, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.00038146999999999996, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 2.00716, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.00026369, + "count": 629, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.032672, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00023985, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "3", + "ttot": 15.759173025219994, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 1.4493436802200004, + "count": 15595, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Isend", + "ttot": 0.011145869169999996, + "count": 3469, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 1.5784419098, + "count": 5896, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.14661139333000003, + "count": 3212, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Rsend", + "ttot": 0.00162627, + "count": 1887, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.12208520700000002, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.008463583000000002, + "count": 20, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 10.395824, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.15323943070000004, + "count": 290, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Testall", + "ttot": 0.00379825, + "count": 4880, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.10104484999999999, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.0007329000000000001, + "count": 5016, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.023153899999999998, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.00006175, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000320192, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 1.74158, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.02147, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00022984, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "8", + "ttot": 15.751374137369972, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 0.3782823347800003, + "count": 4099, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Isend", + "ttot": 0.0013437281500000002, + "count": 2174, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 2.5217817502000024, + "count": 6453, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.038497552639999995, + "count": 4429, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.09984486000000001, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 10.165184, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Testall", + "ttot": 0.0018356099999999999, + "count": 2261, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.42325227460000003, + "count": 310, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.10102455, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.015599323, + "count": 4387, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.0179179, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Wait", + "ttot": 0.00028133, + "count": 6, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000058889, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000274658, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 1.9482300000000001, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.000264407, + "count": 629, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.037474, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00022697, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "9", + "ttot": 15.73480711672997, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 0.4812804787399999, + "count": 7819, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Isend", + "ttot": 0.00066494582, + "count": 904, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 2.397562328599999, + "count": 6477, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.22855347310000004, + "count": 3219, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.09841238699999998, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 10.276499, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.11574596746999999, + "count": 314, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Testall", + "ttot": 0.00070882, + "count": 961, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.1029875, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.017031688, + "count": 5016, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.0216052, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Wait", + "ttot": 0.00080752, + "count": 12, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000057221, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000319476, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 1.9540899999999999, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.00023126100000000002, + "count": 629, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.03801, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00023985, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "37", + "ttot": 15.725180828619987, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 0.9107529517400005, + "count": 17771, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Isend", + "ttot": 0.004189936480000001, + "count": 4375, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 2.1379946777000005, + "count": 8460, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.048213632929999986, + "count": 10151, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Rsend", + "ttot": 0.0019655, + "count": 1258, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.09406985400000001, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 10.613992999999999, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.1730791997700001, + "count": 386, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Testall", + "ttot": 0.0051129, + "count": 5073, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Wait", + "ttot": 0.008465263, + "count": 26, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.09522706, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.0021925399999999998, + "count": 9419, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.0204349, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000066518, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.00039959, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 1.59866, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.000195505, + "count": 629, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.0099239, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.0002439, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "24", + "ttot": 15.640761877700003, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 0.41958248449, + "count": 4790, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Isend", + "ttot": 0.007919270599999997, + "count": 3457, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 2.3986358848999982, + "count": 7711, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.05565528630999998, + "count": 5799, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.10184986800000002, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 10.279045, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Testall", + "ttot": 0.0040278499999999995, + "count": 5622, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.4596409164000004, + "count": 358, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.10027632000000002, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.01663186, + "count": 5645, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.0185741, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0011988, + "count": 10, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.00006175, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000270128, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 1.76007, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.00027632899999999996, + "count": 629, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.01681, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00023603, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "45", + "ttot": 15.63187068075999, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 0.3797056256000002, + "count": 10033, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Isend", + "ttot": 0.0009083760699999997, + "count": 1184, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 2.4057381501000012, + "count": 9089, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.05313569459, + "count": 8928, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.090278682, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 10.325938, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.19921094339999998, + "count": 410, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Testall", + "ttot": 0.00085115, + "count": 1229, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.09940605000000001, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.01622585, + "count": 10048, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.0234089, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0057471, + "count": 16, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000060320000000000005, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000338797, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 2.00596, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.000187392, + "count": 629, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.024536, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00023365, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "6", + "ttot": 15.619172054540023, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 2.223045383629999, + "count": 25308, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Isend", + "ttot": 0.014860891369999997, + "count": 5650, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.9371035065700006, + "count": 5946, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Wait", + "ttot": 0.01195813, + "count": 18, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Send", + "ttot": 0.015307682900000001, + "count": 3247, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Rsend", + "ttot": 0.0017226210000000001, + "count": 1887, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.115040794, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 10.278776999999998, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.24576443206999993, + "count": 290, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Testall", + "ttot": 0.0056784999999999995, + "count": 10279, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.10188564, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.0010020699999999999, + "count": 6895, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.0201059, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.00005579, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000288723, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 1.6209699999999998, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.025368, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00023699, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "57", + "ttot": 15.596193704639976, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 0.5098841587699996, + "count": 8669, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Isend", + "ttot": 0.013762241469999993, + "count": 5386, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 2.2341181446000014, + "count": 9622, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.09531890828999999, + "count": 7723, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.090776122, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 10.403229, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.23243324351000003, + "count": 420, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Testall", + "ttot": 0.0057931, + "count": 10870, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.10349886999999999, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.016484739999999998, + "count": 8161, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.0194539, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0044022, + "count": 14, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000059366, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000290629, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 1.8315299999999999, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.000280141, + "count": 629, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.034641, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00023794, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "38", + "ttot": 15.572657333040006, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 1.0199140768000012, + "count": 21555, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Isend", + "ttot": 0.015039683030000004, + "count": 4456, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 2.0644180340699996, + "count": 8462, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.04727145196999998, + "count": 10773, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Rsend", + "ttot": 0.0018820679999999998, + "count": 1258, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.08899804299999999, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 10.427395, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.19433188517000005, + "count": 386, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Testall", + "ttot": 0.008502, + "count": 6525, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.09408322000000001, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.00236156, + "count": 10040, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.024354, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Wait", + "ttot": 0.017855169999999997, + "count": 26, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.00006175, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.00035787000000000004, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 1.5618699999999999, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.000177861, + "count": 629, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.0035338, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00024986, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "44", + "ttot": 15.571970937310018, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 0.36617168486, + "count": 9455, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Isend", + "ttot": 0.003822777969999999, + "count": 4983, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 2.2937896397000004, + "count": 9065, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.04888329037999996, + "count": 9506, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.09003829400000002, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 10.367657, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.25002488340000006, + "count": 410, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Testall", + "ttot": 0.00404211, + "count": 5146, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.09946051000000002, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.01310277, + "count": 9419, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.024762899999999997, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Wait", + "ttot": 0.004786, + "count": 16, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000070095, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000351427, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 1.97431, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.000250575, + "count": 629, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.030215, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00023198, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "56", + "ttot": 15.567504212649986, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 0.4931265096399999, + "count": 6772, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Isend", + "ttot": 0.012564932309999995, + "count": 5374, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 2.3264739340000005, + "count": 9598, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.051431613830000014, + "count": 7711, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.091397666, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 10.309734, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Testall", + "ttot": 0.0058458, + "count": 10774, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.3237475388699999, + "count": 416, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.10600668000000002, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.02152466, + "count": 7532, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.0184529, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0034614, + "count": 8, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000076771, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0003047, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 1.77, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.000275137, + "count": 629, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.032853, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00022697, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "5", + "ttot": 15.560861262119976, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 2.033075602210001, + "count": 20868, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Isend", + "ttot": 0.014211187870000001, + "count": 4934, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 1.0858401414700007, + "count": 5944, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.04863151650000001, + "count": 3271, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Rsend", + "ttot": 0.001616456, + "count": 1887, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.11829196599999998, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.007386683, + "count": 18, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 10.284829999999998, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.16292691807000004, + "count": 290, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Testall", + "ttot": 0.0053584999999999995, + "count": 6661, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.10185024000000001, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.0009353199999999999, + "count": 6274, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.0201089, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000066996, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000300885, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 1.65308, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.022107, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00024295, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "39", + "ttot": 15.543358215979996, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 0.9725998140899998, + "count": 16921, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 2.1574612269, + "count": 4712, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Isend", + "ttot": 0.01305074457999999, + "count": 3545, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 0.04011309866999995, + "count": 8899, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.087834619, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 10.358679, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.11104439274, + "count": 386, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Testall", + "ttot": 0.0083015, + "count": 5298, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Wait", + "ttot": 0.019151159999999997, + "count": 26, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.09817885000000001, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.00073934, + "count": 7540, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.0217589, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.00008439999999999999, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.00038624, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 1.64911, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.004632, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00023293, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "4", + "ttot": 15.53585033827001, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 1.8410110507499986, + "count": 22035, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Isend", + "ttot": 0.011805329859999993, + "count": 4258, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 1.2446470209000007, + "count": 5920, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.09170505105999995, + "count": 3259, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Rsend", + "ttot": 0.001564939, + "count": 1887, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.119807129, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0063601330000000005, + "count": 18, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 10.166525, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.2624184267000001, + "count": 290, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Testall", + "ttot": 0.0044327, + "count": 5583, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.10206357000000002, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.0008096700000000001, + "count": 5645, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.0248691, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.00005889, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000291348, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 1.6337700000000002, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.023479, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00023198, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "59", + "ttot": 15.473175592169987, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 0.5114393427100004, + "count": 10639, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Isend", + "ttot": 0.013511963509999995, + "count": 5454, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 2.1699236132000004, + "count": 9670, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.07757525577999999, + "count": 9607, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.090816248, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 10.4338, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.17069746997000002, + "count": 420, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Testall", + "ttot": 0.0061207, + "count": 11029, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.10419863000000001, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.012897929999999998, + "count": 9419, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.0208212, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0053351, + "count": 18, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000057935999999999996, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.00029302, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 1.8248600000000001, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.000250343, + "count": 629, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.030347, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00022984, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "50", + "ttot": 15.46174783535996, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 0.6193505361000001, + "count": 14298, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Isend", + "ttot": 0.013916511669999996, + "count": 5389, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 1.9563080290999988, + "count": 9646, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.1926108157199999, + "count": 9033, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Rsend", + "ttot": 0.000275378, + "count": 629, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.093083451, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 10.106252, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.29298802977000016, + "count": 420, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Testall", + "ttot": 0.0055967, + "count": 11382, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.10655499999999998, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.00970271, + "count": 8790, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.0227102, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0040841, + "count": 14, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.00006651899999999999, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000296354, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 2.01495, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.000259641, + "count": 629, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.022497, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00024486, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "40", + "ttot": 15.449382923449972, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 0.4494172208400003, + "count": 6104, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Isend", + "ttot": 0.013521864679999994, + "count": 4733, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 2.3784612455, + "count": 8969, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.05383120255999997, + "count": 7093, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.08965574900000002, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 10.365461, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Testall", + "ttot": 0.0056576000000000005, + "count": 8290, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.36426211087000004, + "count": 406, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.1006482, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.02109588, + "count": 6903, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.0211229, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0021672, + "count": 8, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.00006246600000000001, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000356434, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 1.5798299999999998, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.00025797, + "count": 629, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.003345, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00022888, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "0", + "ttot": 15.444621800729994, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 0.6651474028700003, + "count": 12409, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 2.2427752115000015, + "count": 5824, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.25344069117000007, + "count": 1310, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Rsend", + "ttot": 0.001842457, + "count": 1887, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.123997967, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Isend", + "ttot": 0.00010490419000000001, + "count": 234, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 10.184466, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Testall", + "ttot": 0.000153782, + "count": 302, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.10271857, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.000457045, + "count": 3129, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.022197, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.27379057, + "count": 286, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000062704, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000275616, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 1.55221, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.020758, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00022388, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "49", + "ttot": 15.440448682969981, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 0.5389524192600001, + "count": 9902, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Isend", + "ttot": 0.013123137389999989, + "count": 5386, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 2.118711334800002, + "count": 9622, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.16115040726999996, + "count": 7772, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Rsend", + "ttot": 0.000294204, + "count": 629, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.094409549, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 10.039269999999998, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.2704460022499999, + "count": 420, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Testall", + "ttot": 0.005459800000000001, + "count": 11365, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.10549827000000002, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.008050709999999999, + "count": 8161, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.0203341, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0036454, + "count": 14, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000055790000000000006, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000315663, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 2.04049, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.00029206599999999995, + "count": 629, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.019725, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00022483, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "42", + "ttot": 15.41309345673998, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 0.40640612747000004, + "count": 7393, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Isend", + "ttot": 0.016606515510000006, + "count": 4748, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 2.3390490216, + "count": 9017, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.04583874428999997, + "count": 8366, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.088634005, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 10.554562, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.3010407388699999, + "count": 410, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Testall", + "ttot": 0.007757399999999999, + "count": 7391, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.10196515000000002, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.0143165, + "count": 8161, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.02132, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0038345, + "count": 14, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000089646, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000327828, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 1.50479, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.00025225, + "count": 629, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.006067, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00023603, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "43", + "ttot": 15.406499527040001, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 0.3866172884800001, + "count": 9342, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Isend", + "ttot": 0.005259045659999995, + "count": 4813, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 2.328888138770001, + "count": 9041, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.05057757022999996, + "count": 8969, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.08895900199999998, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 10.426343000000001, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.2618842539000001, + "count": 410, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Testall", + "ttot": 0.005448100000000001, + "count": 4985, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.09899492, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.013187960000000002, + "count": 8790, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.022130900000000002, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0043242, + "count": 18, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000070572, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000349045, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 1.70018, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.000249861, + "count": 629, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.012787, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00024867, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "51", + "ttot": 15.392196008929991, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 0.5764877369300002, + "count": 11880, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Isend", + "ttot": 0.014299889459999998, + "count": 5454, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 1.964232213000001, + "count": 9670, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.2005122485300001, + "count": 9656, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Rsend", + "ttot": 0.000281811, + "count": 629, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.093708456, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 10.067145, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.1882009020100001, + "count": 420, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Testall", + "ttot": 0.0061335, + "count": 11318, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.10431882000000002, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.00741243, + "count": 9419, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.030339, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0044725, + "count": 18, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000059366, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000318286, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 2.10534, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.00028086, + "count": 629, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.028411, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00024199, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "55", + "ttot": 15.340305267929972, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 0.38997140290000015, + "count": 13140, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 2.4824531412999984, + "count": 5970, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Isend", + "ttot": 0.005367787369999995, + "count": 4840, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 0.20759449274999997, + "count": 10241, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.088952218, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.01817803, + "count": 26, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 10.255975, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.16030980861000013, + "count": 420, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Testall", + "ttot": 0.0053895, + "count": 4992, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.10674721999999999, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.00101709, + "count": 8798, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.018827, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000067234, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.00028753299999999997, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 1.58144, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.017482, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00024581, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "41", + "ttot": 15.337472149039986, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 0.5311118158900003, + "count": 9868, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Isend", + "ttot": 0.015675779679999998, + "count": 4745, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 2.256015489699997, + "count": 8993, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.05181495262999996, + "count": 7105, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.089130096, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 10.460661, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.3233812431400001, + "count": 410, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Testall", + "ttot": 0.0058238, + "count": 7742, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.10189341999999998, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.0137136, + "count": 7532, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.0194591, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0031333, + "count": 14, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000062704, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.00033664700000000003, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 1.45493, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.000259401, + "count": 629, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.0098259, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.0002439, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "36", + "ttot": 15.267776496380002, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 0.8524417880299998, + "count": 18876, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Isend", + "ttot": 0.0019722053800000014, + "count": 1125, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 1.981022680399999, + "count": 8436, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.08494123646999997, + "count": 7644, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Rsend", + "ttot": 0.0023276950000000003, + "count": 1258, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.093704426, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 10.374816, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.2059149621, + "count": 386, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Testall", + "ttot": 0.0012102100000000002, + "count": 1199, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.09680659999999999, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.00221586, + "count": 8790, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.020319, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0046079, + "count": 16, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000084162, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.00036764, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 1.54092, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.000246291, + "count": 629, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.0036199, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00023794, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "14", + "ttot": 15.240989078380013, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 1.6827016316099994, + "count": 7109, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Isend", + "ttot": 0.01028099321, + "count": 2527, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 1.5044328749000007, + "count": 6575, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.02456118616, + "count": 8924, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.09088584100000002, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 9.933560000000002, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.20221728150000004, + "count": 314, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Testall", + "ttot": 0.00414636, + "count": 3214, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.08873022000000001, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.01746137, + "count": 8153, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.024000900000000002, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Wait", + "ttot": 0.012754754, + "count": 24, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.00006485, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.00038576, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 1.6415899999999999, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.00023841600000000003, + "count": 629, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.0027499, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00022674, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "54", + "ttot": 15.206209819900002, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 0.4547320878400001, + "count": 16415, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Isend", + "ttot": 0.001500600860000001, + "count": 1312, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 2.132389115099999, + "count": 9720, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.2007840486, + "count": 10235, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Rsend", + "ttot": 0.000320437, + "count": 629, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.08944568400000001, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 10.215899000000002, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.1754631765, + "count": 420, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Testall", + "ttot": 0.0011541799999999999, + "count": 2208, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.10322139999999999, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.00631148, + "count": 11298, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.02932, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0064461, + "count": 16, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000062227, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000291825, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 1.77021, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.000319478, + "count": 629, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.018107, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00023198, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "48", + "ttot": 15.185969279179973, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 0.5251524718499999, + "count": 9876, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Isend", + "ttot": 0.011322748259999996, + "count": 5374, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 2.185223356600001, + "count": 9598, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.1477517513300001, + "count": 7768, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Rsend", + "ttot": 0.00029229799999999997, + "count": 629, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.095971848, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 9.927426, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Testall", + "ttot": 0.0056167, + "count": 11337, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.4052540181399999, + "count": 416, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.10332741, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.011443789999999999, + "count": 7532, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.0201902, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0028071, + "count": 8, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000058889, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000271555, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 1.72725, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.000298263, + "count": 629, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.016082, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00022888, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "52", + "ttot": 15.152341518409985, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 0.5811146419600002, + "count": 15749, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Isend", + "ttot": 0.013997214540000004, + "count": 5614, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 1.8815885980999996, + "count": 9694, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.20231701840999994, + "count": 10246, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Rsend", + "ttot": 0.00035023599999999997, + "count": 629, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.09035067900000002, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 10.340406, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.2351632314, + "count": 420, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Testall", + "ttot": 0.0059862000000000005, + "count": 11448, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.10330678, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.00751538, + "count": 10048, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.019098, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0051644, + "count": 16, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000063419, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000303979, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 1.6491500000000001, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.000277041, + "count": 629, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.015956, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.0002327, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "22", + "ttot": 15.140011650369997, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 1.3776739672399994, + "count": 16511, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Isend", + "ttot": 0.012714297459999998, + "count": 3168, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 1.7528619240700005, + "count": 7204, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.037287553399999986, + "count": 9553, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Rsend", + "ttot": 0.00159168, + "count": 629, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.09172481899999999, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 10.367647999999999, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.1965803971999999, + "count": 338, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Testall", + "ttot": 0.005769509999999999, + "count": 4167, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.08811398, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.01679216, + "count": 8782, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.0287419, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Wait", + "ttot": 0.016869319999999997, + "count": 24, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000063181, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.00035763, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 1.12614, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.000178571, + "count": 629, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.018661, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00024176, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "23", + "ttot": 15.138012191459984, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 1.4562265672199999, + "count": 11259, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Isend", + "ttot": 0.011807369429999994, + "count": 2257, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 1.71316248327, + "count": 3454, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.03669089517000001, + "count": 7662, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Wait", + "ttot": 0.01582013, + "count": 24, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.090683641, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 10.225473, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.19840730837000004, + "count": 338, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Testall", + "ttot": 0.00514631, + "count": 3341, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.091836785, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.0007774800000000001, + "count": 6282, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.025039000000000002, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.00007200199999999999, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.00038338, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 1.2319200000000001, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.034331, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00023484, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "13", + "ttot": 15.102341357549955, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 1.4813235307099992, + "count": 9544, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Isend", + "ttot": 0.01072694688, + "count": 2440, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 1.6724532270699992, + "count": 6573, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.053713302019999985, + "count": 8311, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.09412623199999999, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 9.952701000000001, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.11083247786999992, + "count": 314, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Testall", + "ttot": 0.003509, + "count": 2944, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Wait", + "ttot": 0.008180109999999999, + "count": 24, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.09065938999999999, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.0212981, + "count": 7532, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.0255831, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000065803, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.00041056, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 1.5622, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.000199798, + "count": 629, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.014133, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00022578, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "12", + "ttot": 15.092427042950003, + "mpiCalls": [ + { + "call": "MPI_Wait", + "ttot": 0.008002519, + "count": 24, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Recv", + "ttot": 1.1562828715000004, + "count": 6356, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Isend", + "ttot": 0.009871079230000001, + "count": 2393, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 1.922925832799999, + "count": 6549, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.09594198115000008, + "count": 7670, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.094500625, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 9.65881, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.23842671227, + "count": 314, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Testall", + "ttot": 0.00335147, + "count": 2779, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.08958107999999998, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.028001320000000003, + "count": 6903, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.025332, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000067234, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.00036788, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 1.75027, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.000223638, + "count": 629, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.010235, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.0002358, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "21", + "ttot": 15.054385765739994, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 0.9970898014199993, + "count": 12091, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Isend", + "ttot": 0.013174525149999996, + "count": 3081, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 2.083835995309999, + "count": 7202, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.05636753648999999, + "count": 8940, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Rsend", + "ttot": 0.00197196, + "count": 629, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Wait", + "ttot": 0.008852740000000003, + "count": 24, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.096154166, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 10.393857, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.22865631536999984, + "count": 338, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Testall", + "ttot": 0.00456901, + "count": 3860, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.08988782000000001, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.01699824, + "count": 8161, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.022682, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.00006938, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.00037575, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 1.0119799999999999, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.00022458599999999998, + "count": 629, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.027401, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00023794, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "19", + "ttot": 15.018596167829987, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 0.3359637512700002, + "count": 8667, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Isend", + "ttot": 0.012594232819999995, + "count": 2882, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 2.6447421142700023, + "count": 7154, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.14167560883, + "count": 7650, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Rsend", + "ttot": 0.0018684600000000002, + "count": 629, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.10036888000000002, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 10.507214999999999, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.23946405664, + "count": 338, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Testall", + "ttot": 0.0054038, + "count": 3227, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Wait", + "ttot": 0.006628215, + "count": 26, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.09128673000000001, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.0144137, + "count": 6903, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.0260031, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000068903, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.00039483, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.88715, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.00020384599999999999, + "count": 629, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.0029211, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00022984, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "15", + "ttot": 14.973381586339986, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 1.8110626778600007, + "count": 6845, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Isend", + "ttot": 0.009438568519999998, + "count": 1616, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 1.4184390602, + "count": 2825, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.02436256829, + "count": 7009, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.09010908299999999, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.008834126999999999, + "count": 24, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 9.674377999999999, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.10958939246999996, + "count": 314, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Testall", + "ttot": 0.0037415, + "count": 2353, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.09241506999999999, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.00065208, + "count": 5653, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.0225679, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000067949, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.00036859, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 1.7045, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.0026259, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00022912, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "53", + "ttot": 14.951617856159993, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 0.5319424172, + "count": 15191, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Isend", + "ttot": 0.01479338111, + "count": 5647, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 1.915870691569999, + "count": 9718, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.20408344943999993, + "count": 10844, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Rsend", + "ttot": 0.00031375800000000003, + "count": 629, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.08938027100000001, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 10.228052000000002, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.12524282183999993, + "count": 420, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Testall", + "ttot": 0.006201, + "count": 11260, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.10253836999999999, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.006554620000000001, + "count": 10677, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.023536, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0059793, + "count": 16, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000057935999999999996, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.00031829000000000004, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 1.6795900000000001, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.00027752, + "count": 629, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.01665, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00023603, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "20", + "ttot": 14.918008977650002, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 0.78936747234, + "count": 12641, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Isend", + "ttot": 0.012066725890000001, + "count": 3034, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 2.2473486272999983, + "count": 7178, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.10457130232000003, + "count": 8307, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Rsend", + "ttot": 0.0019145, + "count": 629, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.097817863, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 10.18189, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.2321866857999999, + "count": 338, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Testall", + "ttot": 0.00397472, + "count": 3971, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.08986651999999999, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.01921418, + "count": 7532, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.030067000000000003, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0066671000000000005, + "count": 24, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000081062, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.00036025, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 1.07367, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.000225069, + "count": 629, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.026476, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.0002439, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "18", + "ttot": 14.645967246400001, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 0.5150429139900001, + "count": 11644, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Isend", + "ttot": 0.0009932504900000002, + "count": 900, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 2.2899065972, + "count": 7130, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.19398750152000005, + "count": 5129, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Rsend", + "ttot": 0.00241708, + "count": 629, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.100154015, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 10.320586, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.23287154920000006, + "count": 338, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Testall", + "ttot": 0.0006816299999999999, + "count": 981, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.09359680000000001, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.00680213, + "count": 6274, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.021698, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0019255, + "count": 12, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000077962, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.00037646, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.86195, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.00023627700000000001, + "count": 629, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.0024378, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00022578, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "16", + "ttot": 14.609302354369982, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 0.4111648220800001, + "count": 7879, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Isend", + "ttot": 0.002846956150000001, + "count": 2808, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 2.435796141300001, + "count": 7082, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.04891785014, + "count": 5123, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Rsend", + "ttot": 0.00248124, + "count": 629, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.10112897900000004, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 10.215949, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Testall", + "ttot": 0.00239397, + "count": 2915, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.41662613769999984, + "count": 334, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.09217093999999998, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.01286429, + "count": 5016, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.022010000000000002, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Wait", + "ttot": 0.00066781, + "count": 6, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.00006747200000000001, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.00037241, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.83819, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.000268696, + "count": 629, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.0051539, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.00023174, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + }, + { + "nr": "17", + "ttot": 14.53842167022001, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 0.3535194385100001, + "count": 7892, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Isend", + "ttot": 0.0029404596600000007, + "count": 2820, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 2.4593783734000025, + "count": 7106, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.03899082357999999, + "count": 5096, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Rsend", + "ttot": 0.00241782, + "count": 629, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.10051204700000002, + "count": 751, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoallv", + "ttot": 10.15247, + "count": 2786, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.37723219906999983, + "count": 338, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Testall", + "ttot": 0.00308702, + "count": 2928, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Sendrecv_replace", + "ttot": 0.092885, + "count": 192, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.00783724, + "count": 5645, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allgatherv", + "ttot": 0.0192839, + "count": 5, + "color": "rgb(62, 150, 81)", + "hoverColor": "rgb(82, 170, 101)" + }, + { + "call": "MPI_Wait", + "ttot": 0.0012367, + "count": 12, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000064373, + "count": 316, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0003612, + "count": 590, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.92319, + "count": 2963, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.000269176, + "count": 629, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Alltoall", + "ttot": 0.002502, + "count": 1, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allgather", + "ttot": 0.0002439, + "count": 3, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + } + ] + } + ] + }, + "mpiPies": { + "mpiPercent": { + "datasets": [ + { + "data": ["55.76", "27.84", "9.82", "3.52", "1.12", "1.94"], + "backgroundColor": [ + "rgb(171, 104, 87)", + "rgb(148, 139, 61)", + "rgb(225, 151, 76)", + "rgb(114, 147, 203)", + "rgb(204, 37, 41)", + "rgb(144, 103, 167)" + ], + "hoverBackgroundColor": [ + "rgb(191, 124, 107)", + "rgb(168, 159, 81)", + "rgb(245, 171, 96)", + "rgb(134, 167, 223)", + "rgb(224, 57, 61)", + "rgb(164, 123, 187)" + ] + } + ], + "labels": [ + "MPI_Alltoallv", + "MPI_Barrier", + "MPI_Bcast", + "MPI_Recv", + "MPI_Reduce", + "others" + ] + }, + "mpiWall": { + "datasets": [ + { + "data": ["12.66", "6.32", "2.23", "1.49", "77.29"], + "backgroundColor": [ + "rgb(171, 104, 87)", + "rgb(148, 139, 61)", + "rgb(225, 151, 76)", + "rgb(144, 103, 167)", + "rgb(171, 104, 87)" + ], + "hoverBackgroundColor": [ + "rgb(191, 124, 107)", + "rgb(168, 159, 81)", + "rgb(245, 171, 96)", + "rgb(164, 123, 187)", + "rgb(191, 124, 107)" + ] + } + ], + "labels": [ + "MPI_Alltoallv", + "MPI_Barrier", + "MPI_Bcast", + "others", + "Apllication" + ] + } + }, + "hpmData": [], + "balanceData": { + "labels": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15", + "16", + "17", + "18", + "19", + "20", + "21", + "22", + "23", + "24", + "25", + "26", + "27", + "28", + "29", + "30", + "31", + "32", + "33", + "34", + "35", + "36", + "37", + "38", + "39", + "40", + "41", + "42", + "43", + "44", + "45", + "46", + "47", + "48", + "49", + "50", + "51", + "52", + "53", + "54", + "55", + "56", + "57", + "58", + "59", + "60", + "61", + "62", + "63", + "64", + "65", + "66", + "67", + "68", + "69", + "70", + "71", + "72", + "73", + "74", + "75" + ], + "datasets": [ + { + "label": "MPI_Recv", + "fill": false, + "backgroundColor": "rgb(114, 147, 203)", + "borderColor": "rgb(114, 147, 203)", + "pointHoverBackgroundColor": "rgb(134, 167, 223)", + "data": [ + 0.6651474028700003, + 0.5678770353299999, + 1.0568724843299997, + 1.4493436802200004, + 1.8410110507499986, + 2.033075602210001, + 2.223045383629999, + 2.282859151389998, + 0.3782823347800003, + 0.4812804787399999, + 0.25491782352000014, + 0.7679156280699994, + 0.008002519, + 1.4813235307099992, + 1.6827016316099994, + 1.8110626778600007, + 0.4111648220800001, + 0.3535194385100001, + 0.5150429139900001, + 0.3359637512700002, + 0.78936747234, + 0.9970898014199993, + 1.3776739672399994, + 1.4562265672199999, + 0.41958248449, + 0.4350759287600002, + 0.38195599891, + 0.40568503903999964, + 0.40402568657000004, + 0.74809104497, + 0.9987825077200007, + 1.1315813101499996, + 0.6163302179499996, + 0.5942001665800002, + 0.6799044075099999, + 0.6873742318399998, + 0.8524417880299998, + 0.9107529517400005, + 1.0199140768000012, + 0.9725998140899998, + 0.4494172208400003, + 0.5311118158900003, + 0.40640612747000004, + 0.3866172884800001, + 0.36617168486, + 0.3797056256000002, + 0.49582354734000006, + 0.6376472186300006, + 0.5251524718499999, + 0.5389524192600001, + 0.6193505361000001, + 0.5764877369300002, + 0.5811146419600002, + 0.5319424172, + 0.4547320878400001, + 0.38997140290000015, + 0.4931265096399999, + 0.5098841587699996, + 0.5304065043500003, + 0.5114393427100004, + 0.48654702728000015, + 0.4362640967900001, + 0.23117496040000013, + 0.26822989819, + 0.09342777320000002, + 0.09328962930000002, + 0.09365067330000007, + 0.09346506290000006, + 0.09333297160000005, + 0.09318168490000002, + 0.09372365960000001, + 0.09361409259999999, + 0.07591889330000001, + 0.07578352580000004, + 0.07587552879999998, + 0.0758122907 + ] + }, + { + "label": "MPI_Bcast", + "fill": false, + "backgroundColor": "rgb(225, 151, 76)", + "borderColor": "rgb(225, 151, 76)", + "pointHoverBackgroundColor": "rgb(245, 171, 96)", + "data": [ + 2.2427752115000015, + 0.0012328606400000012, + 0.0026657611300000008, + 0.011145869169999996, + 0.011805329859999993, + 0.014211187870000001, + 0.014860891369999997, + 0.014797200529999992, + 0.0013437281500000002, + 0.00066494582, + 0.0017349618000000021, + 0.008408305260000004, + 1.1562828715000004, + 0.01072694688, + 0.01028099321, + 0.009438568519999998, + 0.002846956150000001, + 0.0029404596600000007, + 0.0009932504900000002, + 0.012594232819999995, + 0.012066725890000001, + 0.013174525149999996, + 0.012714297459999998, + 0.011807369429999994, + 0.007919270599999997, + 0.00988428261999999, + 0.010405147629999995, + 0.0015831013399999995, + 0.003008604200000002, + 0.004007846069999998, + 0.011851085089999986, + 2.0026441327699978, + 0.010426844459999998, + 0.01199398728999999, + 0.012305780519999997, + 0.004236422239999999, + 0.0019722053800000014, + 0.004189936480000001, + 0.015039683030000004, + 2.1574612269, + 0.013521864679999994, + 0.015675779679999998, + 0.016606515510000006, + 0.005259045659999995, + 0.003822777969999999, + 0.0009083760699999997, + 0.01686049568000001, + 2.4568708354999997, + 0.011322748259999996, + 0.013123137389999989, + 0.013916511669999996, + 0.014299889459999998, + 0.013997214540000004, + 0.01479338111, + 0.001500600860000001, + 2.4824531412999984, + 0.012564932309999995, + 0.013762241469999993, + 0.014487589479999995, + 0.013511963509999995, + 0.017260943320000003, + 0.016168150830000005, + 0.006822140839999999, + 2.576343747039999, + 0.053496269, + 0.053463041, + 0.053406423, + 0.053361688, + 0.053382062, + 0.053263151999999994, + 0.053245104, + 0.053112052, + 0.050903254999999994, + 0.050907191, + 0.050798567, + 0.050882301000000005 + ] + }, + { + "label": "MPI_Send", + "fill": false, + "backgroundColor": "rgb(132, 186, 91)", + "borderColor": "rgb(132, 186, 91)", + "pointHoverBackgroundColor": "rgb(152, 206, 111)", + "data": [ + 0.25344069117000007, + 2.389828671200002, + 1.9255137931000008, + 1.5784419098, + 1.2446470209000007, + 1.0858401414700007, + 0.9371035065700006, + 0.9071777045000007, + 2.5217817502000024, + 2.397562328599999, + 2.7450730582999974, + 2.2686491221000002, + 0.009871079230000001, + 1.6724532270699992, + 1.5044328749000007, + 1.4184390602, + 2.435796141300001, + 2.4593783734000025, + 2.2899065972, + 2.6447421142700023, + 2.2473486272999983, + 2.083835995309999, + 1.7528619240700005, + 1.71316248327, + 2.3986358848999982, + 2.348750659469998, + 2.353917166899999, + 2.380905732699999, + 2.5723668486999998, + 2.2970128968699988, + 2.075208661499998, + 0.0109598393, + 2.2603589799999977, + 2.24830234417, + 2.105267984699999, + 2.0721551674000014, + 1.981022680399999, + 2.1379946777000005, + 2.0644180340699996, + 0.01305074457999999, + 2.3784612455, + 2.256015489699997, + 2.3390490216, + 2.328888138770001, + 2.2937896397000004, + 2.4057381501000012, + 2.509739931399997, + 0.016149369619999996, + 2.185223356600001, + 2.118711334800002, + 1.9563080290999988, + 1.964232213000001, + 1.8815885980999996, + 1.915870691569999, + 2.132389115099999, + 0.005367787369999995, + 2.3264739340000005, + 2.2341181446000014, + 2.2010783393000017, + 2.1699236132000004, + 2.163108969699999, + 2.184497727870001, + 2.3469808120000017, + 0.00058745979, + 9.882633, + 10.096927999999998, + 10.030248, + 9.998135000000001, + 9.867192000000001, + 10.062656000000002, + 9.999503, + 9.947687999999998, + 9.56879, + 9.610812, + 9.61383, + 9.609024999999999 + ] + }, + { + "label": "MPI_Rsend", + "fill": false, + "backgroundColor": "rgb(211, 94, 96)", + "borderColor": "rgb(211, 94, 96)", + "pointHoverBackgroundColor": "rgb(231, 114, 116)", + "data": [ + 0.001842457, + 0.24182286354000007, + 0.20793091165000002, + 0.14661139333000003, + 0.09170505105999995, + 0.04863151650000001, + 0.01195813, + 0.01193802724, + 0.038497552639999995, + 0.22855347310000004, + 0.18172575572000005, + 0.004939139, + 1.922925832799999, + 0.053713302019999985, + 0.02456118616, + 0.02436256829, + 0.04891785014, + 0.03899082357999999, + 0.19398750152000005, + 0.14167560883, + 0.10457130232000003, + 0.05636753648999999, + 0.037287553399999986, + 0.03669089517000001, + 0.05565528630999998, + 0.052992475899999954, + 0.05315497177999998, + 0.1598073744700001, + 0.11467871763000001, + 0.07220827538999994, + 0.0488837658, + 0.04990670524999998, + 0.04664919283999998, + 0.04272000146000001, + 0.04644163790999999, + 0.04588769710999993, + 0.08494123646999997, + 0.048213632929999986, + 0.04727145196999998, + 0.04011309866999995, + 0.05383120255999997, + 0.05181495262999996, + 0.04583874428999997, + 0.05057757022999996, + 0.04888329037999996, + 0.05313569459, + 0.010137324, + 0.04148374957999999, + 0.1477517513300001, + 0.16115040726999996, + 0.1926108157199999, + 0.2005122485300001, + 0.20231701840999994, + 0.20408344943999993, + 0.2007840486, + 0.20759449274999997, + 0.051431613830000014, + 0.09531890828999999, + 0.05582562341999998, + 0.07757525577999999, + 0.05035948988000002, + 0.05565374939999999, + 0.04677545131999999, + 0.046339684600000014, + 0.07836395999999998, + 0.07751931999999997, + 0.07782849999999998, + 0.07790015999999998, + 0.07769618999999998, + 0.07726380999999999, + 0.07571014999999996, + 0.07574534000000001, + 0.13344718, + 0.030506603, + 0.025502434, + 0.025202287999999996 + ] + }, + { + "label": "MPI_Allreduce", + "fill": false, + "backgroundColor": "rgb(128, 133, 133)", + "borderColor": "rgb(128, 133, 133)", + "pointHoverBackgroundColor": "rgb(148, 153, 153)", + "data": [ + 0.123997967, + 0.001460551, + 0.0014786550000000002, + 0.00162627, + 0.001564939, + 0.001616456, + 0.015307682900000001, + 0.11224292500000001, + 0.09984486000000001, + 0.09841238699999998, + 0.09809465800000002, + 0.16071653269999991, + 0.09594198115000008, + 0.09412623199999999, + 0.09088584100000002, + 0.09010908299999999, + 0.00248124, + 0.00241782, + 0.00241708, + 0.0018684600000000002, + 0.0019145, + 0.00197196, + 0.00159168, + 0.01582013, + 0.10184986800000002, + 0.10049133499999999, + 0.09982600100000001, + 0.10047440900000001, + 0.09881549, + 0.09782162600000001, + 0.096449586, + 0.095598931, + 0.00578384, + 0.0026189739999999996, + 0.004313727, + 0.00258086, + 0.0023276950000000003, + 0.0019655, + 0.0018820679999999998, + 0.087834619, + 0.08965574900000002, + 0.089130096, + 0.088634005, + 0.08895900199999998, + 0.09003829400000002, + 0.090278682, + 0.03970151124999997, + 0.086938967, + 0.00029229799999999997, + 0.000294204, + 0.000275378, + 0.000281811, + 0.00035023599999999997, + 0.00031375800000000003, + 0.000320437, + 0.088952218, + 0.091397666, + 0.090776122, + 0.09038667599999999, + 0.090816248, + 0.08776415499999998, + 0.08702788500000001, + 0.086880343, + 0.08630665099999998, + 0.012194400000000001, + 0.0175599, + 0.013731, + 0.013122100000000001, + 0.011446, + 0.0176021, + 0.029296000000000003, + 0.014533, + 0.0116469, + 0.0089994, + 0.008594000000000001, + 0.0067176 + ] + }, + { + "label": "MPI_Isend", + "fill": false, + "backgroundColor": "rgb(144, 103, 167)", + "borderColor": "rgb(144, 103, 167)", + "pointHoverBackgroundColor": "rgb(164, 123, 187)", + "data": [ + 0.00010490419000000001, + 0.12325898, + 0.122243579, + 0.12208520700000002, + 0.119807129, + 0.11829196599999998, + 0.0017226210000000001, + 10.368096, + 10.165184, + 10.276499, + 10.329491, + 0.09764781600000001, + 0.094500625, + 9.952701000000001, + 9.933560000000002, + 0.008834126999999999, + 0.10112897900000004, + 0.10051204700000002, + 0.100154015, + 0.10036888000000002, + 0.097817863, + 0.008852740000000003, + 0.09172481899999999, + 0.090683641, + 10.279045, + 10.440216999999999, + 10.626902999999999, + 10.328584, + 10.408427, + 10.453946999999998, + 10.525571, + 10.438906000000001, + 0.09210103700000001, + 0.09118234500000001, + 0.09114196500000002, + 0.09150082300000002, + 0.093704426, + 0.09406985400000001, + 0.08899804299999999, + 10.358679, + 10.365461, + 10.460661, + 10.554562, + 10.426343000000001, + 10.367657, + 10.325938, + 0.08811297000000001, + 10.255526000000001, + 0.095971848, + 0.094409549, + 0.093083451, + 0.093708456, + 0.09035067900000002, + 0.08938027100000001, + 0.08944568400000001, + 0.01817803, + 10.309734, + 10.403229, + 10.403471, + 10.4338, + 10.407040000000002, + 10.160381000000001, + 10.175590999999999, + 10.101113999999999, + 0.000072956, + 0.000060797, + 0.00007391, + 0.000056505, + 0.000062466, + 0.000054359, + 0.000081062, + 0.00008058499999999999, + 0.000046969000000000004, + 0.000034332, + 0.000030756, + 0.000049114000000000004 + ] + }, + { + "label": "MPI_Alltoallv", + "fill": false, + "backgroundColor": "rgb(171, 104, 87)", + "borderColor": "rgb(171, 104, 87)", + "pointHoverBackgroundColor": "rgb(191, 124, 107)", + "data": [ + 10.184466, + 10.498218, + 0.0027918960000000003, + 0.008463583000000002, + 0.0063601330000000005, + 0.007386683, + 0.115040794, + 0.14618814450000006, + 0.0018356099999999999, + 0.11574596746999999, + 0.24802786440000008, + 10.166377, + 9.65881, + 0.11083247786999992, + 0.20221728150000004, + 9.674377999999999, + 10.215949, + 10.15247, + 10.320586, + 10.507214999999999, + 10.18189, + 0.096154166, + 10.367647999999999, + 10.225473, + 0.0040278499999999995, + 0.3353991699699998, + 0.3559476535999999, + 0.1367115567, + 0.2741814112000001, + 0.16133715787, + 0.22517795200000007, + 0.12592422687000002, + 10.111744999999999, + 10.179914, + 10.214250999999999, + 10.124158999999999, + 10.374816, + 10.613992999999999, + 10.427395, + 0.11104439274, + 0.0056576000000000005, + 0.3233812431400001, + 0.3010407388699999, + 0.2618842539000001, + 0.25002488340000006, + 0.19921094339999998, + 10.336083000000002, + 0.18915924801000006, + 9.927426, + 10.039269999999998, + 10.106252, + 10.067145, + 10.340406, + 10.228052000000002, + 10.215899000000002, + 10.255975, + 0.0058458, + 0.23243324351000003, + 0.26053750893999994, + 0.17069746997000002, + 0.2117246547000001, + 0.11132401279999996, + 0.1429265545, + 0.0990658688, + 0.000341895, + 0.000337844, + 0.000335213, + 0.000326631, + 0.00035000000000000005, + 0.000349996, + 0.00035452, + 0.00042105, + 0.000257256, + 0.000265602, + 0.00024700199999999996, + 0.000219344 + ] + }, + { + "label": "MPI_Testall", + "fill": false, + "backgroundColor": "rgb(204, 194, 16)", + "borderColor": "rgb(204, 194, 16)", + "pointHoverBackgroundColor": "rgb(224, 214, 36)", + "data": [ + 0.000153782, + 0.21498742507, + 10.366307, + 10.395824, + 10.166525, + 10.284829999999998, + 10.278776999999998, + 0.0053554, + 0.42325227460000003, + 0.00070882, + 0.00180671, + 0.10913450377000002, + 0.23842671227, + 0.003509, + 0.00414636, + 0.10958939246999996, + 0.00239397, + 0.37723219906999983, + 0.23287154920000006, + 0.23946405664, + 0.2321866857999999, + 10.393857, + 0.1965803971999999, + 0.19840730837000004, + 0.4596409164000004, + 0.004421690000000001, + 0.00435497, + 0.00094223, + 0.00263141, + 0.006975859, + 0.00553177, + 0.00484176, + 0.0049483999999999995, + 0.24987310236999982, + 0.3069537977000001, + 0.18671157019999987, + 0.2059149621, + 0.1730791997700001, + 0.19433188517000005, + 0.0083015, + 0.36426211087000004, + 0.0058238, + 0.007757399999999999, + 0.005448100000000001, + 0.00404211, + 0.00085115, + 0.23569120943999997, + 0.008466, + 0.0056167, + 0.2704460022499999, + 0.29298802977000016, + 0.1882009020100001, + 0.2351632314, + 0.12524282183999993, + 0.1754631765, + 0.16030980861000013, + 0.3237475388699999, + 0.0057931, + 0.0060706, + 0.0061207, + 0.0065689, + 0.0080016, + 0.0087659, + 0.000356431, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + { + "label": "MPI_Sendrecv_replace", + "fill": false, + "backgroundColor": "rgb(57, 106, 177)", + "borderColor": "rgb(57, 106, 177)", + "pointHoverBackgroundColor": "rgb(77, 126, 197)", + "data": [ + 0.10271857, + 0.00171541, + 0.2637825194, + 0.15323943070000004, + 0.2624184267000001, + 0.16292691807000004, + 0.24576443206999993, + 0.0172751, + 0.10102455, + 0.1029875, + 0.003495008, + 0.0025613, + 0.00335147, + 0.008180109999999999, + 0.08873022000000001, + 0.0037415, + 0.41662613769999984, + 0.00308702, + 0.0006816299999999999, + 0.0054038, + 0.00397472, + 0.22865631536999984, + 0.005769509999999999, + 0.00514631, + 0.10027632000000002, + 0.10207924, + 0.10180007, + 0.1022494, + 0.09896202999999999, + 0.00308677, + 0.007954841, + 0.008700626000000001, + 0.37235934169999985, + 0.0053203, + 0.0063324, + 0.00484967, + 0.0012102100000000002, + 0.0051129, + 0.008502, + 0.019151159999999997, + 0.1006482, + 0.10189341999999998, + 0.10196515000000002, + 0.09899492, + 0.09946051000000002, + 0.09940605000000001, + 0.008995, + 0.011627963, + 0.4052540181399999, + 0.005459800000000001, + 0.0055967, + 0.0061335, + 0.0059862000000000005, + 0.006201, + 0.0011541799999999999, + 0.0053895, + 0.10600668000000002, + 0.10349886999999999, + 0.10504641999999999, + 0.10419863000000001, + 0.11511125, + 0.11464793999999999, + 0.11526629599999999, + 0.11816296999999999, + 15.1324, + 15.0155, + 15.0529, + 15.119700000000002, + 15.677200000000001, + 15.6336, + 15.7228, + 15.8889, + 33.738, + 33.638999999999996, + 33.524, + 33.614999999999995 + ] + }, + { + "label": "MPI_Waitall", + "fill": false, + "backgroundColor": "rgb(218, 124, 48)", + "borderColor": "rgb(218, 124, 48)", + "pointHoverBackgroundColor": "rgb(238, 144, 68)", + "data": [ + 0.000457045, + 0.09847682000000002, + 0.0022604500000000002, + 0.00379825, + 0.0044327, + 0.0053584999999999995, + 0.0056784999999999995, + 0.10499514199999997, + 0.015599323, + 0.017031688, + 0.10408392000000001, + 0.10274056, + 0.08958107999999998, + 0.09065938999999999, + 0.01746137, + 0.09241506999999999, + 0.09217093999999998, + 0.092885, + 0.09359680000000001, + 0.006628215, + 0.08986651999999999, + 0.00456901, + 0.08811398, + 0.091836785, + 0.01663186, + 0.01200959, + 0.010949440000000001, + 0.01713609, + 0.02165184, + 0.09890289000000001, + 0.09600465, + 0.10102496700000002, + 0.10045229, + 0.10168260999999999, + 0.10187830999999997, + 0.10105324999999998, + 0.09680659999999999, + 0.008465263, + 0.09408322000000001, + 0.09817885000000001, + 0.02109588, + 0.0137136, + 0.0143165, + 0.013187960000000002, + 0.01310277, + 0.01622585, + 0.09695118000000001, + 0.102286353, + 0.10332741, + 0.10549827000000002, + 0.10655499999999998, + 0.10431882000000002, + 0.10330678, + 0.10253836999999999, + 0.10322139999999999, + 0.10674721999999999, + 0.02152466, + 0.016484739999999998, + 0.016768909999999998, + 0.012897929999999998, + 0.01336819, + 0.01177192, + 0.0108056, + 0.0010340199999999999, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + { + "label": "MPI_Allgatherv", + "fill": false, + "backgroundColor": "rgb(62, 150, 81)", + "borderColor": "rgb(62, 150, 81)", + "pointHoverBackgroundColor": "rgb(82, 170, 101)", + "data": [ + 0.022197, + 0.000434395, + 0.10154762000000002, + 0.10104484999999999, + 0.10206357000000002, + 0.10185024000000001, + 0.10188564, + 0.0008323199999999999, + 0.0179179, + 0.0216052, + 0.01991296, + 0.030803860000000002, + 0.028001320000000003, + 0.0212981, + 0.024000900000000002, + 0.00065208, + 0.01286429, + 0.00783724, + 0.00680213, + 0.09128673000000001, + 0.01921418, + 0.08988782000000001, + 0.01679216, + 0.0007774800000000001, + 0.0185741, + 0.029943900000000002, + 0.019428, + 0.023399, + 0.022279999999999998, + 0.01942236, + 0.01973047, + 0.0008263599999999999, + 0.0024533000000000003, + 0.00197649, + 0.00220347, + 0.0022251500000000004, + 0.00221586, + 0.09522706, + 0.00236156, + 0.00073934, + 0.0211229, + 0.0194591, + 0.02132, + 0.022130900000000002, + 0.024762899999999997, + 0.0234089, + 0.021357440000000002, + 0.0007586499999999999, + 0.011443789999999999, + 0.008050709999999999, + 0.00970271, + 0.00741243, + 0.00751538, + 0.006554620000000001, + 0.00631148, + 0.00101709, + 0.0184529, + 0.0194539, + 0.039728, + 0.0208212, + 0.0247319, + 0.0224981, + 0.027831, + 0.0206871, + 0.00019097, + 0.00098491, + 0.001399, + 0.004781, + 0.024288, + 0.020677, + 0.039135, + 0.025883, + 0.66937, + 0.67114, + 0.66768, + 0.66765 + ] + }, + { + "label": "MPI_Reduce", + "fill": false, + "backgroundColor": "rgb(204, 37, 41)", + "borderColor": "rgb(204, 37, 41)", + "pointHoverBackgroundColor": "rgb(224, 57, 61)", + "data": [ + 0.27379057, + 0.0302921, + 0.0005664800000000001, + 0.0007329000000000001, + 0.0008096700000000001, + 0.0009353199999999999, + 0.0010020699999999999, + 0.0206999, + 0.00028133, + 0.00080752, + 0.0239941, + 0.036773, + 0.025332, + 0.0255831, + 0.012754754, + 0.0225679, + 0.022010000000000002, + 0.0192839, + 0.021698, + 0.0144137, + 0.030067000000000003, + 0.01699824, + 0.0287419, + 0.025039000000000002, + 0.0011988, + 0.0016339, + 0.0021482, + 0.0023651, + 0.005088283999999999, + 0.027784999999999997, + 0.023548, + 0.0257579, + 0.0204951, + 0.027174999999999998, + 0.019794, + 0.0237571, + 0.020319, + 0.0021925399999999998, + 0.024354, + 0.0217589, + 0.0021672, + 0.0031333, + 0.0038345, + 0.0043242, + 0.004786, + 0.0057471, + 0.0288228, + 0.0248759, + 0.0201902, + 0.0203341, + 0.0227102, + 0.030339, + 0.019098, + 0.023536, + 0.02932, + 0.018827, + 0.0034614, + 0.0044022, + 0.0048139, + 0.0053351, + 0.0070093, + 0.0078304, + 0.0078907, + 0.0088623, + 0.00022578, + 0.00023484, + 0.00022984, + 0.0002439, + 0.0002389, + 0.00022697, + 0.00022984, + 0.00023293, + 0.00025392, + 0.00025606, + 0.00025606, + 0.00025606 ] } ] }, - "mpiPies": { - "mpiPercent": { - "datasets": [ - { - "data": ["55.76", "27.84", "9.82", "3.52", "1.12", "1.94"], - "backgroundColor": [ - "rgb(204, 37, 41)", - "rgb(132, 186, 91)", - "rgb(171, 104, 87)", - "rgb(114, 147, 203)", - "rgb(114, 147, 203)", - "rgb(204, 194, 16)" - ], - "hoverBackgroundColor": [ - "rgb(224, 57, 61)", - "rgb(152, 206, 111)", - "rgb(191, 124, 107)", - "rgb(134, 167, 223)", - "rgb(134, 167, 223)", - "rgb(224, 214, 36)" - ] - } - ], - "labels": [ - "MPI_Alltoallv", - "MPI_Barrier", - "MPI_Bcast", - "MPI_Recv", - "MPI_Reduce", - "others" - ] - }, - "mpiWall": { - "datasets": [ - { - "data": ["12.66", "6.32", "2.23", "1.49", "77.29"], - "backgroundColor": [ - "rgb(204, 37, 41)", - "rgb(132, 186, 91)", - "rgb(171, 104, 87)", - "rgb(204, 194, 16)", - "rgb(57, 106, 177)" - ], - "hoverBackgroundColor": [ - "rgb(224, 57, 61)", - "rgb(152, 206, 111)", - "rgb(191, 124, 107)", - "rgb(224, 214, 36)", - "rgb(77, 126, 197)" - ] - } - ], - "labels": [ - "MPI_Alltoallv", - "MPI_Barrier", - "MPI_Bcast", - "others", - "Apllication" - ] - } - }, - "hpmData": [], - "balanceData": { + "balanceDataSorted": { "labels": [ "72", "73", @@ -12985,9 +24598,9 @@ { "label": "MPI_Bcast", "fill": false, - "backgroundColor": "rgb(171, 104, 87)", - "borderColor": "rgb(171, 104, 87)", - "pointHoverBackgroundColor": "rgb(191, 124, 107)", + "backgroundColor": "rgb(225, 151, 76)", + "borderColor": "rgb(225, 151, 76)", + "pointHoverBackgroundColor": "rgb(245, 171, 96)", "data": [ 0.07591889330000001, 0.07578352580000004, @@ -13070,9 +24683,9 @@ { "label": "MPI_Allreduce", "fill": false, - "backgroundColor": "rgb(225, 151, 76)", - "borderColor": "rgb(225, 151, 76)", - "pointHoverBackgroundColor": "rgb(245, 171, 96)", + "backgroundColor": "rgb(128, 133, 133)", + "borderColor": "rgb(128, 133, 133)", + "pointHoverBackgroundColor": "rgb(148, 153, 153)", "data": [ 0.050903254999999994, 0.050907191, @@ -13155,9 +24768,9 @@ { "label": "MPI_Alltoallv", "fill": false, - "backgroundColor": "rgb(204, 37, 41)", - "borderColor": "rgb(204, 37, 41)", - "pointHoverBackgroundColor": "rgb(224, 57, 61)", + "backgroundColor": "rgb(171, 104, 87)", + "borderColor": "rgb(171, 104, 87)", + "pointHoverBackgroundColor": "rgb(191, 124, 107)", "data": [ 9.56879, 9.610812, @@ -13240,9 +24853,9 @@ { "label": "MPI_Reduce", "fill": false, - "backgroundColor": "rgb(114, 147, 203)", - "borderColor": "rgb(114, 147, 203)", - "pointHoverBackgroundColor": "rgb(134, 167, 223)", + "backgroundColor": "rgb(204, 37, 41)", + "borderColor": "rgb(204, 37, 41)", + "pointHoverBackgroundColor": "rgb(224, 57, 61)", "data": [ 0.13344718, 0.030506603, @@ -13325,9 +24938,9 @@ { "label": "MPI_Allgatherv", "fill": false, - "backgroundColor": "rgb(148, 139, 61)", - "borderColor": "rgb(148, 139, 61)", - "pointHoverBackgroundColor": "rgb(168, 159, 81)", + "backgroundColor": "rgb(62, 150, 81)", + "borderColor": "rgb(62, 150, 81)", + "pointHoverBackgroundColor": "rgb(82, 170, 101)", "data": [ 0.0116469, 0.0089994, @@ -13410,9 +25023,9 @@ { "label": "MPI_Comm_size", "fill": false, - "backgroundColor": "rgb(144, 103, 167)", - "borderColor": "rgb(144, 103, 167)", - "pointHoverBackgroundColor": "rgb(164, 123, 187)", + "backgroundColor": "rgb(83, 81, 84)", + "borderColor": "rgb(83, 81, 84)", + "pointHoverBackgroundColor": "rgb(103, 101, 104)", "data": [ 0.000046969000000000004, 0.000034332, @@ -13495,9 +25108,9 @@ { "label": "MPI_Comm_rank", "fill": false, - "backgroundColor": "rgb(128, 133, 133)", - "borderColor": "rgb(128, 133, 133)", - "pointHoverBackgroundColor": "rgb(148, 153, 153)", + "backgroundColor": "rgb(107, 76, 154)", + "borderColor": "rgb(107, 76, 154)", + "pointHoverBackgroundColor": "rgb(127, 96, 174)", "data": [ 0.000257256, 0.000265602, @@ -13580,9 +25193,9 @@ { "label": "MPI_Finalize", "fill": false, - "backgroundColor": "rgb(225, 151, 76)", - "borderColor": "rgb(225, 151, 76)", - "pointHoverBackgroundColor": "rgb(245, 171, 96)", + "backgroundColor": "rgb(146, 36, 40)", + "borderColor": "rgb(146, 36, 40)", + "pointHoverBackgroundColor": "rgb(166, 56, 60)", "data": [ 0, 0, @@ -13665,9 +25278,9 @@ { "label": "MPI_Barrier", "fill": false, - "backgroundColor": "rgb(132, 186, 91)", - "borderColor": "rgb(132, 186, 91)", - "pointHoverBackgroundColor": "rgb(152, 206, 111)", + "backgroundColor": "rgb(148, 139, 61)", + "borderColor": "rgb(148, 139, 61)", + "pointHoverBackgroundColor": "rgb(168, 159, 81)", "data": [ 33.738, 33.638999999999996, @@ -13750,9 +25363,9 @@ { "label": "MPI_Init", "fill": false, - "backgroundColor": "rgb(132, 186, 91)", - "borderColor": "rgb(132, 186, 91)", - "pointHoverBackgroundColor": "rgb(152, 206, 111)", + "backgroundColor": "rgb(114, 147, 203)", + "borderColor": "rgb(114, 147, 203)", + "pointHoverBackgroundColor": "rgb(134, 167, 223)", "data": [ 0, 0, @@ -13835,9 +25448,9 @@ { "label": "MPI_Alltoall", "fill": false, - "backgroundColor": "rgb(211, 94, 96)", - "borderColor": "rgb(211, 94, 96)", - "pointHoverBackgroundColor": "rgb(231, 114, 116)", + "backgroundColor": "rgb(225, 151, 76)", + "borderColor": "rgb(225, 151, 76)", + "pointHoverBackgroundColor": "rgb(245, 171, 96)", "data": [ 0.66937, 0.67114, @@ -13920,9 +25533,9 @@ { "label": "MPI_Allgather", "fill": false, - "backgroundColor": "rgb(128, 133, 133)", - "borderColor": "rgb(128, 133, 133)", - "pointHoverBackgroundColor": "rgb(148, 153, 153)", + "backgroundColor": "rgb(132, 186, 91)", + "borderColor": "rgb(132, 186, 91)", + "pointHoverBackgroundColor": "rgb(152, 206, 111)", "data": [ 0.00025392, 0.00025606, diff --git a/ipm_raw/hunold.1491563677.47546.ipm.json b/ipm_raw/hunold.1491563677.47546.ipm.json index 1e1f9bc..5e294e5 100644 --- a/ipm_raw/hunold.1491563677.47546.ipm.json +++ b/ipm_raw/hunold.1491563677.47546.ipm.json @@ -6,7 +6,8 @@ "walltime": "3.693263", "ntasks": 27, "nhosts": 27, - "totalWallTime": 99.718101 + "totalWallTime": 99.718101, + "cmdline": "/home/hunold/tmp/lulesh2.0.3/./lulesh2.0 -s 10 " }, "hosts": [ { @@ -580,78 +581,78 @@ "call": "MPI_Allreduce", "ttot": 23.318652999999998, "count": 25137, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", "ttot": 3.9542964878300024, "count": 542740, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Barrier", "ttot": 1.5911509999999995, "count": 27, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Isend", "ttot": 1.2328644732699994, "count": 542740, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Waitall", "ttot": 0.6233382509999998, "count": 75519, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Irecv", "ttot": 0.15177058857999978, "count": 542740, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_rank", "ttot": 0.0379538, "count": 226611, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Reduce", "ttot": 0.0044240899999999994, "count": 27, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Comm_size", "ttot": 0.00001788135, "count": 27, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 27, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 27, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" } ], "mpiAnalysis": { @@ -660,2314 +661,4986 @@ }, "mpiCallsByTask": [ { - "nr": "3", - "ttot": 1.3115122770400003, + "nr": "0", + "ttot": 1.13189800271, "mpiCalls": [ { "call": "MPI_Isend", - "ttot": 0.04043537469999999, - "count": 15855, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.02238191837, + "count": 9327, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Wait", - "ttot": 0.137099881, - "count": 22379, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.21324269999999998, + "count": 15851, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Irecv", - "ttot": 0.00589393767, - "count": 22379, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.004535440669999999, + "count": 15851, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 1.0443, + "ttot": 0.80103, "count": 931, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Waitall", - "ttot": 0.02300111, + "ttot": 0.02262557, "count": 2797, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Reduce", - "ttot": 0.00001502, + "ttot": 0.00089192, "count": 1, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Comm_size", "ttot": 9.5367e-7, "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.001389, + "ttot": 0.0014315, "count": 8393, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Barrier", - "ttot": 0.059377, + "ttot": 0.065758, "count": 1, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "18", - "ttot": 1.3111463585699998, + "nr": "1", + "ttot": 1.0463115951999995, "mpiCalls": [ { "call": "MPI_Isend", - "ttot": 0.02763419999999999, - "count": 13055, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.040223777200000005, + "count": 14923, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.03248116, + "count": 2797, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Wait", - "ttot": 0.14880744580000002, - "count": 12123, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.170140051, + "count": 23311, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Irecv", - "ttot": 0.00353265067, - "count": 12123, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.005931640000000002, + "count": 23311, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 1.0369, + "ttot": 0.74301, "count": 931, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, - { - "call": "MPI_Waitall", - "ttot": 0.04235016999999999, - "count": 2797, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Reduce", - "ttot": 0.0001111, + "ttot": 0.000014067, "count": 1, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Comm_size", - "ttot": 0.0000011921, + "ttot": 0, "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0013766, + "ttot": 0.0015409, "count": 8393, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Barrier", - "ttot": 0.050433, + "ttot": 0.05297, "count": 1, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "25", - "ttot": 1.2997243673699996, + "nr": "2", + "ttot": 1.16969683027, "mpiCalls": [ { "call": "MPI_Isend", - "ttot": 0.052711404100000005, - "count": 23311, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.0319313278, + "count": 10259, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.03228582, + "count": 2797, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Wait", - "ttot": 0.12818987999999998, - "count": 14923, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.18046414580000003, + "count": 14919, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Irecv", - "ttot": 0.004482971600000001, - "count": 14923, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.004431010000000002, + "count": 14919, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 1.0251, + "ttot": 0.87752, "count": 931, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, - { - "call": "MPI_Waitall", - "ttot": 0.02259233, - "count": 2797, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Reduce", - "ttot": 0.000016928, + "ttot": 0.000019073, "count": 1, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Comm_size", "ttot": 9.5367e-7, "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0013869, + "ttot": 0.0015695, "count": 8393, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Barrier", - "ttot": 0.065243, + "ttot": 0.041475, "count": 1, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "9", - "ttot": 1.2949928129400001, + "nr": "3", + "ttot": 1.3115122770400003, "mpiCalls": [ { "call": "MPI_Isend", - "ttot": 0.0448368, - "count": 17719, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.04043537469999999, + "count": 15855, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Wait", - "ttot": 0.15133084097000002, - "count": 20515, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.137099881, + "count": 22379, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Irecv", - "ttot": 0.00553488497, - "count": 20515, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.00589393767, + "count": 22379, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 1.0032, + "ttot": 1.0443, "count": 931, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Waitall", - "ttot": 0.02241342, + "ttot": 0.02300111, "count": 2797, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Reduce", - "ttot": 0.000014067, + "ttot": 0.00001502, "count": 1, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Comm_size", - "ttot": 0, + "ttot": 9.5367e-7, "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0013528, + "ttot": 0.001389, "count": 8393, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Barrier", - "ttot": 0.06631, + "ttot": 0.059377, "count": 1, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "26", - "ttot": 1.2937438623100002, + "nr": "4", + "ttot": 1.2090420635699992, "mpiCalls": [ { "call": "MPI_Isend", - "ttot": 0.034681130000000004, - "count": 15851, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, - { - "call": "MPI_Allreduce", - "ttot": 1.029, - "count": 931, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "ttot": 0.06657172349999999, + "count": 24249, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Waitall", - "ttot": 0.03302907, + "ttot": 0.013003770000000001, "count": 2797, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Wait", - "ttot": 0.11713820729999999, - "count": 9327, + "ttot": 0.1538210331, + "count": 32637, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.008672974869999999, + "count": 32637, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { - "call": "MPI_Irecv", - "ttot": 0.0029926203400000005, - "count": 9327, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "call": "MPI_Allreduce", + "ttot": 0.90345, + "count": 931, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Reduce", - "ttot": 0.000017881, + "ttot": 0.00011897, "count": 1, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Comm_size", - "ttot": 9.5367e-7, + "ttot": 0.0000011921, "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.001313, + "ttot": 0.0013564, "count": 8393, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Barrier", - "ttot": 0.075571, + "ttot": 0.062046, "count": 1, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "6", - "ttot": 1.2885680185399995, + "nr": "5", + "ttot": 1.2873420378399998, "mpiCalls": [ { "call": "MPI_Isend", - "ttot": 0.029348146800000002, - "count": 11191, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.04233234050000001, + "count": 16787, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Wait", - "ttot": 0.15913260140000002, - "count": 13987, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.18337054000000003, + "count": 21447, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Irecv", - "ttot": 0.004353546670000001, - "count": 13987, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.005857943340000001, + "count": 21447, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 1.0081, + "ttot": 0.99402, "count": 931, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Waitall", - "ttot": 0.02294461, + "ttot": 0.01336064, "count": 2797, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Reduce", - "ttot": 0.00018406, + "ttot": 0.000015974, "count": 1, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Comm_size", - "ttot": 9.5367e-7, + "ttot": 0, "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0013201, + "ttot": 0.0014706, "count": 8393, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Barrier", - "ttot": 0.063184, + "ttot": 0.046914, "count": 1, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "5", - "ttot": 1.2873420378399998, + "nr": "6", + "ttot": 1.2885680185399995, "mpiCalls": [ { "call": "MPI_Isend", - "ttot": 0.04233234050000001, - "count": 16787, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.029348146800000002, + "count": 11191, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Wait", - "ttot": 0.18337054000000003, - "count": 21447, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.15913260140000002, + "count": 13987, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Irecv", - "ttot": 0.005857943340000001, - "count": 21447, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.004353546670000001, + "count": 13987, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 0.99402, + "ttot": 1.0081, "count": 931, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Waitall", - "ttot": 0.01336064, + "ttot": 0.02294461, "count": 2797, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Reduce", - "ttot": 0.000015974, + "ttot": 0.00018406, "count": 1, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Comm_size", - "ttot": 0, + "ttot": 9.5367e-7, "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0014706, + "ttot": 0.0013201, "count": 8393, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Barrier", - "ttot": 0.046914, + "ttot": 0.063184, "count": 1, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "17", - "ttot": 1.2819313429999988, + "nr": "7", + "ttot": 1.1537384864200004, "mpiCalls": [ { "call": "MPI_Isend", - "ttot": 0.040204169, - "count": 20515, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.0363158299, + "count": 17719, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Wait", - "ttot": 0.1478228, - "count": 17719, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.11942738577, + "count": 20515, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Irecv", - "ttot": 0.005162708, - "count": 17719, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.00561070208, + "count": 20515, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 0.98329, + "ttot": 0.89087, "count": 931, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Waitall", - "ttot": 0.0329669, + "ttot": 0.03300764, "count": 2797, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Reduce", - "ttot": 0.000017166, + "ttot": 0.000012875, "count": 1, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Comm_size", - "ttot": 0, + "ttot": 9.5367e-7, "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0014236, + "ttot": 0.0013461, "count": 8393, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Barrier", - "ttot": 0.071044, + "ttot": 0.067147, "count": 1, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "20", - "ttot": 1.2734118946699997, + "nr": "8", + "ttot": 1.2272617982999996, "mpiCalls": [ { "call": "MPI_Isend", - "ttot": 0.033494350000000006, - "count": 13987, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.03547063, + "count": 12123, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Wait", - "ttot": 0.2051483, - "count": 11191, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.1681429073, + "count": 13055, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Irecv", - "ttot": 0.003636601, - "count": 11191, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.0041124609999999995, + "count": 13055, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 0.95713, + "ttot": 0.93448, "count": 931, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Waitall", - "ttot": 0.014745910000000001, + "ttot": 0.032396350000000004, "count": 2797, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Reduce", - "ttot": 0.00097108, + "ttot": 0.00037885, "count": 1, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Comm_size", - "ttot": 9.5367e-7, + "ttot": 0, "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0013077, + "ttot": 0.0013676, "count": 8393, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Barrier", - "ttot": 0.056977, + "ttot": 0.050913, "count": 1, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "16", - "ttot": 1.26644492801, + "nr": "9", + "ttot": 1.2949928129400001, "mpiCalls": [ { "call": "MPI_Isend", - "ttot": 0.07718898999999997, - "count": 29841, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, - { - "call": "MPI_Waitall", - "ttot": 0.02432826, - "count": 2797, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.0448368, + "count": 17719, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Wait", - "ttot": 0.16893060367, - "count": 27045, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.15133084097000002, + "count": 20515, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Irecv", - "ttot": 0.007569790669999999, - "count": 27045, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.00553488497, + "count": 20515, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 0.93611, + "ttot": 1.0032, "count": 931, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.02241342, + "count": 2797, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Reduce", - "ttot": 0.00093293, + "ttot": 0.000014067, "count": 1, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Comm_size", - "ttot": 9.5367e-7, + "ttot": 0, "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0015144, + "ttot": 0.0013528, "count": 8393, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Barrier", - "ttot": 0.049869, + "ttot": 0.06631, "count": 1, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "19", - "ttot": 1.2467533758, + "nr": "10", + "ttot": 1.165495353019999, "mpiCalls": [ { "call": "MPI_Isend", - "ttot": 0.050835938900000016, - "count": 20515, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.05494626, + "count": 27045, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.012998200000000001, + "count": 2797, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Wait", - "ttot": 0.129802201, - "count": 17719, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.1057370631, + "count": 29841, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Irecv", - "ttot": 0.0050540179, - "count": 17719, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.00787616625, + "count": 29841, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 0.97984, + "ttot": 0.92982, "count": 931, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, - { - "call": "MPI_Waitall", - "ttot": 0.02309949, - "count": 2797, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Reduce", - "ttot": 0.000016928, + "ttot": 0.00036311, "count": 1, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Comm_size", - "ttot": 0, + "ttot": 9.5367e-7, "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0013478, + "ttot": 0.0014396, "count": 8393, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Barrier", - "ttot": 0.056757, + "ttot": 0.052314, "count": 1, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "8", - "ttot": 1.2272617982999996, + "nr": "11", + "ttot": 0.9580859282399999, "mpiCalls": [ { "call": "MPI_Isend", - "ttot": 0.03547063, - "count": 12123, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.047034859000000005, + "count": 18651, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Wait", - "ttot": 0.1681429073, - "count": 13055, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.14092516367000002, + "count": 19583, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Irecv", - "ttot": 0.0041124609999999995, - "count": 13055, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.005357495469999999, + "count": 19583, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 0.93448, + "ttot": 0.68172, "count": 931, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Waitall", - "ttot": 0.032396350000000004, + "ttot": 0.013979390000000001, "count": 2797, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Reduce", - "ttot": 0.00037885, + "ttot": 0.000016928, "count": 1, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Comm_size", - "ttot": 0, + "ttot": 0.0000011921, "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0013676, + "ttot": 0.0014329, "count": 8393, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Barrier", - "ttot": 0.050913, + "ttot": 0.067618, "count": 1, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "21", - "ttot": 1.2145569822699998, + "nr": "12", + "ttot": 1.0386485083499997, "mpiCalls": [ { "call": "MPI_Isend", - "ttot": 0.05130626999999999, - "count": 21447, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.07798403000000002, + "count": 27977, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.012912600000000002, + "count": 2797, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Wait", - "ttot": 0.1624425968, - "count": 16787, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.13523839734, + "count": 28909, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Irecv", - "ttot": 0.00515244747, - "count": 16787, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.007796747339999999, + "count": 28909, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 0.92203, + "ttot": 0.73068, "count": 931, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, - { - "call": "MPI_Waitall", - "ttot": 0.02343404, - "count": 2797, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Reduce", - "ttot": 0.000013828, + "ttot": 0.00015998, "count": 1, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Comm_size", - "ttot": 0, + "ttot": 9.5367e-7, "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0013978, + "ttot": 0.0014808, "count": 8393, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Barrier", - "ttot": 0.04878, + "ttot": 0.072395, "count": 1, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "4", - "ttot": 1.2090420635699992, + "nr": "13", + "ttot": 0.9274095654800009, "mpiCalls": [ { "call": "MPI_Isend", - "ttot": 0.06657172349999999, - "count": 24249, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.063421741, + "count": 41966, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Waitall", - "ttot": 0.013003770000000001, + "ttot": 0.0034818509999999998, "count": 2797, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Wait", - "ttot": 0.1538210331, - "count": 32637, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.108279721, + "count": 41966, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Irecv", - "ttot": 0.008672974869999999, - "count": 32637, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.01068567881, + "count": 41966, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 0.90345, + "ttot": 0.69684, "count": 931, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Reduce", - "ttot": 0.00011897, + "ttot": 0.00001502, "count": 1, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Comm_size", - "ttot": 0.0000011921, + "ttot": 9.5367e-7, "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0013564, + "ttot": 0.0013556, "count": 8393, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Barrier", - "ttot": 0.062046, + "ttot": 0.043329, "count": 1, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "2", - "ttot": 1.16969683027, + "nr": "14", + "ttot": 0.98415993259, "mpiCalls": [ { "call": "MPI_Isend", - "ttot": 0.0319313278, - "count": 10259, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.060344989999999994, + "count": 28909, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Waitall", - "ttot": 0.03228582, + "ttot": 0.01366346, "count": 2797, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Wait", - "ttot": 0.18046414580000003, - "count": 14919, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.13146887367, + "count": 27977, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Irecv", - "ttot": 0.004431010000000002, - "count": 14919, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.007779375249999999, + "count": 27977, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 0.87752, + "ttot": 0.71219, "count": 931, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Reduce", - "ttot": 0.000019073, + "ttot": 0.00002408, "count": 1, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Comm_size", "ttot": 9.5367e-7, "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0015695, + "ttot": 0.0013652, "count": 8393, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Barrier", - "ttot": 0.041475, + "ttot": 0.057323, "count": 1, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "10", - "ttot": 1.165495353019999, + "nr": "15", + "ttot": 1.0727462259100005, "mpiCalls": [ { "call": "MPI_Isend", - "ttot": 0.05494626, - "count": 27045, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, - { - "call": "MPI_Waitall", - "ttot": 0.012998200000000001, - "count": 2797, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.03836082, + "count": 19583, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Wait", - "ttot": 0.1057370631, - "count": 29841, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.127712661, + "count": 18651, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Irecv", - "ttot": 0.00787616625, - "count": 29841, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.0052976442400000014, + "count": 18651, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 0.92982, + "ttot": 0.79473, "count": 931, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.023040579999999998, + "count": 2797, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Reduce", - "ttot": 0.00036311, + "ttot": 0.000014067, "count": 1, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Comm_size", "ttot": 9.5367e-7, "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0014396, + "ttot": 0.0013835, "count": 8393, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Barrier", - "ttot": 0.052314, + "ttot": 0.082206, "count": 1, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "24", - "ttot": 1.1544906238700001, + "nr": "16", + "ttot": 1.26644492801, "mpiCalls": [ { "call": "MPI_Isend", - "ttot": 0.0323189394, - "count": 14919, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.07718898999999997, + "count": 29841, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.02432826, + "count": 2797, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Wait", - "ttot": 0.14517674579999998, - "count": 10259, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.16893060367, + "count": 27045, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Irecv", - "ttot": 0.0031881346699999995, - "count": 10259, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.007569790669999999, + "count": 27045, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 0.88617, + "ttot": 0.93611, "count": 931, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, - { - "call": "MPI_Waitall", - "ttot": 0.04241927000000001, - "count": 2797, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Reduce", - "ttot": 0.000025034, + "ttot": 0.00093293, "count": 1, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Comm_size", - "ttot": 0, + "ttot": 9.5367e-7, "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0013745, + "ttot": 0.0015144, "count": 8393, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Barrier", - "ttot": 0.043818, + "ttot": 0.049869, "count": 1, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "7", - "ttot": 1.1537384864200004, + "nr": "17", + "ttot": 1.2819313429999988, "mpiCalls": [ { "call": "MPI_Isend", - "ttot": 0.0363158299, - "count": 17719, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.040204169, + "count": 20515, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Wait", - "ttot": 0.11942738577, - "count": 20515, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.1478228, + "count": 17719, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Irecv", - "ttot": 0.00561070208, - "count": 20515, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.005162708, + "count": 17719, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 0.89087, + "ttot": 0.98329, "count": 931, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Waitall", - "ttot": 0.03300764, + "ttot": 0.0329669, "count": 2797, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Reduce", - "ttot": 0.000012875, + "ttot": 0.000017166, "count": 1, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Comm_size", - "ttot": 9.5367e-7, + "ttot": 0, "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0013461, + "ttot": 0.0014236, "count": 8393, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Barrier", - "ttot": 0.067147, + "ttot": 0.071044, "count": 1, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "0", - "ttot": 1.13189800271, + "nr": "18", + "ttot": 1.3111463585699998, "mpiCalls": [ { "call": "MPI_Isend", - "ttot": 0.02238191837, - "count": 9327, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.02763419999999999, + "count": 13055, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Wait", - "ttot": 0.21324269999999998, - "count": 15851, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.14880744580000002, + "count": 12123, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Irecv", - "ttot": 0.004535440669999999, - "count": 15851, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.00353265067, + "count": 12123, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 0.80103, + "ttot": 1.0369, "count": 931, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Waitall", - "ttot": 0.02262557, + "ttot": 0.04235016999999999, "count": 2797, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Reduce", - "ttot": 0.00089192, + "ttot": 0.0001111, "count": 1, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Comm_size", - "ttot": 9.5367e-7, + "ttot": 0.0000011921, "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0014315, + "ttot": 0.0013766, "count": 8393, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Barrier", - "ttot": 0.065758, + "ttot": 0.050433, "count": 1, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "15", - "ttot": 1.0727462259100005, + "nr": "19", + "ttot": 1.2467533758, "mpiCalls": [ { "call": "MPI_Isend", - "ttot": 0.03836082, - "count": 19583, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.050835938900000016, + "count": 20515, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Wait", - "ttot": 0.127712661, - "count": 18651, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.129802201, + "count": 17719, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Irecv", - "ttot": 0.0052976442400000014, - "count": 18651, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.0050540179, + "count": 17719, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 0.79473, + "ttot": 0.97984, "count": 931, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Waitall", - "ttot": 0.023040579999999998, + "ttot": 0.02309949, "count": 2797, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Reduce", - "ttot": 0.000014067, + "ttot": 0.000016928, "count": 1, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Comm_size", - "ttot": 9.5367e-7, + "ttot": 0, "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0013835, + "ttot": 0.0013478, "count": 8393, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Barrier", - "ttot": 0.082206, + "ttot": 0.056757, "count": 1, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "1", - "ttot": 1.0463115951999995, + "nr": "20", + "ttot": 1.2734118946699997, "mpiCalls": [ { "call": "MPI_Isend", - "ttot": 0.040223777200000005, - "count": 14923, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, - { - "call": "MPI_Waitall", - "ttot": 0.03248116, - "count": 2797, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.033494350000000006, + "count": 13987, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Wait", - "ttot": 0.170140051, - "count": 23311, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.2051483, + "count": 11191, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Irecv", - "ttot": 0.005931640000000002, - "count": 23311, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.003636601, + "count": 11191, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 0.74301, + "ttot": 0.95713, "count": 931, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.014745910000000001, + "count": 2797, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Reduce", - "ttot": 0.000014067, + "ttot": 0.00097108, "count": 1, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Comm_size", - "ttot": 0, + "ttot": 9.5367e-7, "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0015409, + "ttot": 0.0013077, "count": 8393, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Barrier", - "ttot": 0.05297, + "ttot": 0.056977, "count": 1, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "23", - "ttot": 1.0389870728800004, + "nr": "21", + "ttot": 1.2145569822699998, "mpiCalls": [ { "call": "MPI_Isend", - "ttot": 0.043381689999999994, - "count": 22379, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.05130626999999999, + "count": 21447, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Wait", - "ttot": 0.10883832767, - "count": 15855, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.1624425968, + "count": 16787, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Irecv", - "ttot": 0.00457143921, - "count": 15855, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.00515244747, + "count": 16787, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 0.79465, + "ttot": 0.92203, "count": 931, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Waitall", - "ttot": 0.02302875, + "ttot": 0.02343404, "count": 2797, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Reduce", - "ttot": 0.000017166, + "ttot": 0.000013828, "count": 1, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Comm_size", "ttot": 0, "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0015237, + "ttot": 0.0013978, "count": 8393, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Barrier", - "ttot": 0.062976, + "ttot": 0.04878, "count": 1, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "12", - "ttot": 1.0386485083499997, + "nr": "22", + "ttot": 0.2663693268599999, "mpiCalls": [ { "call": "MPI_Isend", - "ttot": 0.07798403000000002, - "count": 27977, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, - { - "call": "MPI_Waitall", - "ttot": 0.012912600000000002, - "count": 2797, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.0571668231, + "count": 32637, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Wait", - "ttot": 0.13523839734, - "count": 28909, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.10646541367, + "count": 24249, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Irecv", - "ttot": 0.007796747339999999, - "count": 28909, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.0066995584200000005, + "count": 24249, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 0.73068, + "ttot": 0.022473, "count": 931, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.013747889999999999, + "count": 2797, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Reduce", - "ttot": 0.00015998, + "ttot": 0.000025988, "count": 1, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Comm_size", "ttot": 9.5367e-7, "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0014808, + "ttot": 0.0013857, "count": 8393, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Barrier", - "ttot": 0.072395, + "ttot": 0.058404, "count": 1, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "14", - "ttot": 0.98415993259, + "nr": "23", + "ttot": 1.0389870728800004, "mpiCalls": [ { "call": "MPI_Isend", - "ttot": 0.060344989999999994, - "count": 28909, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, - { - "call": "MPI_Waitall", - "ttot": 0.01366346, - "count": 2797, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "ttot": 0.043381689999999994, + "count": 22379, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Wait", - "ttot": 0.13146887367, - "count": 27977, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.10883832767, + "count": 15855, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Irecv", - "ttot": 0.007779375249999999, - "count": 27977, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.00457143921, + "count": 15855, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 0.71219, + "ttot": 0.79465, "count": 931, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.02302875, + "count": 2797, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Reduce", - "ttot": 0.00002408, + "ttot": 0.000017166, "count": 1, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Comm_size", - "ttot": 9.5367e-7, + "ttot": 0, "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0013652, + "ttot": 0.0015237, "count": 8393, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Barrier", - "ttot": 0.057323, + "ttot": 0.062976, "count": 1, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "11", - "ttot": 0.9580859282399999, + "nr": "24", + "ttot": 1.1544906238700001, "mpiCalls": [ { "call": "MPI_Isend", - "ttot": 0.047034859000000005, - "count": 18651, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.0323189394, + "count": 14919, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Wait", - "ttot": 0.14092516367000002, - "count": 19583, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.14517674579999998, + "count": 10259, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Irecv", - "ttot": 0.005357495469999999, - "count": 19583, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.0031881346699999995, + "count": 10259, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 0.68172, + "ttot": 0.88617, "count": 931, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Waitall", - "ttot": 0.013979390000000001, + "ttot": 0.04241927000000001, "count": 2797, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Reduce", - "ttot": 0.000016928, + "ttot": 0.000025034, "count": 1, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Comm_size", - "ttot": 0.0000011921, + "ttot": 0, "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0014329, + "ttot": 0.0013745, "count": 8393, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Barrier", - "ttot": 0.067618, + "ttot": 0.043818, "count": 1, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "13", - "ttot": 0.9274095654800009, + "nr": "25", + "ttot": 1.2997243673699996, "mpiCalls": [ { "call": "MPI_Isend", - "ttot": 0.063421741, - "count": 41966, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.052711404100000005, + "count": 23311, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { - "call": "MPI_Waitall", - "ttot": 0.0034818509999999998, - "count": 2797, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "call": "MPI_Wait", + "ttot": 0.12818987999999998, + "count": 14923, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { - "call": "MPI_Wait", - "ttot": 0.108279721, - "count": 41966, + "call": "MPI_Irecv", + "ttot": 0.004482971600000001, + "count": 14923, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { - "call": "MPI_Irecv", - "ttot": 0.01068567881, - "count": 41966, + "call": "MPI_Allreduce", + "ttot": 1.0251, + "count": 931, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.02259233, + "count": 2797, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.000016928, + "count": 1, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Comm_size", + "ttot": 9.5367e-7, + "count": 1, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0013869, + "count": 8393, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, + { + "call": "MPI_Barrier", + "ttot": 0.065243, + "count": 1, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "26", + "ttot": 1.2937438623100002, + "mpiCalls": [ + { + "call": "MPI_Isend", + "ttot": 0.034681130000000004, + "count": 15851, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, { "call": "MPI_Allreduce", - "ttot": 0.69684, + "ttot": 1.029, "count": 931, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.03302907, + "count": 2797, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Wait", + "ttot": 0.11713820729999999, + "count": 9327, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, + { + "call": "MPI_Irecv", + "ttot": 0.0029926203400000005, + "count": 9327, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, { "call": "MPI_Reduce", - "ttot": 0.00001502, + "ttot": 0.000017881, "count": 1, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Comm_size", "ttot": 9.5367e-7, "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0013556, + "ttot": 0.001313, "count": 8393, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Barrier", - "ttot": 0.043329, + "ttot": 0.075571, + "count": 1, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + } + ], + "mpiCallsByTaskSorted": [ + { + "nr": "3", + "ttot": 1.3115122770400003, + "mpiCalls": [ + { + "call": "MPI_Isend", + "ttot": 0.04043537469999999, + "count": 15855, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Wait", + "ttot": 0.137099881, + "count": 22379, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.00589393767, + "count": 22379, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 1.0443, + "count": 931, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.02300111, + "count": 2797, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.00001502, "count": 1, "color": "rgb(204, 37, 41)", "hoverColor": "rgb(224, 57, 61)" - } + }, + { + "call": "MPI_Comm_size", + "ttot": 9.5367e-7, + "count": 1, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.001389, + "count": 8393, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.059377, + "count": 1, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "18", + "ttot": 1.3111463585699998, + "mpiCalls": [ + { + "call": "MPI_Isend", + "ttot": 0.02763419999999999, + "count": 13055, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Wait", + "ttot": 0.14880744580000002, + "count": 12123, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.00353265067, + "count": 12123, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 1.0369, + "count": 931, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.04235016999999999, + "count": 2797, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.0001111, + "count": 1, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.0000011921, + "count": 1, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0013766, + "count": 8393, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.050433, + "count": 1, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "25", + "ttot": 1.2997243673699996, + "mpiCalls": [ + { + "call": "MPI_Isend", + "ttot": 0.052711404100000005, + "count": 23311, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Wait", + "ttot": 0.12818987999999998, + "count": 14923, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.004482971600000001, + "count": 14923, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 1.0251, + "count": 931, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.02259233, + "count": 2797, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.000016928, + "count": 1, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Comm_size", + "ttot": 9.5367e-7, + "count": 1, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0013869, + "count": 8393, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.065243, + "count": 1, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "9", + "ttot": 1.2949928129400001, + "mpiCalls": [ + { + "call": "MPI_Isend", + "ttot": 0.0448368, + "count": 17719, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Wait", + "ttot": 0.15133084097000002, + "count": 20515, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.00553488497, + "count": 20515, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 1.0032, + "count": 931, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.02241342, + "count": 2797, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.000014067, + "count": 1, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0, + "count": 1, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0013528, + "count": 8393, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.06631, + "count": 1, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "26", + "ttot": 1.2937438623100002, + "mpiCalls": [ + { + "call": "MPI_Isend", + "ttot": 0.034681130000000004, + "count": 15851, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Allreduce", + "ttot": 1.029, + "count": 931, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.03302907, + "count": 2797, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Wait", + "ttot": 0.11713820729999999, + "count": 9327, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.0029926203400000005, + "count": 9327, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.000017881, + "count": 1, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Comm_size", + "ttot": 9.5367e-7, + "count": 1, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.001313, + "count": 8393, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.075571, + "count": 1, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "6", + "ttot": 1.2885680185399995, + "mpiCalls": [ + { + "call": "MPI_Isend", + "ttot": 0.029348146800000002, + "count": 11191, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Wait", + "ttot": 0.15913260140000002, + "count": 13987, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.004353546670000001, + "count": 13987, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 1.0081, + "count": 931, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.02294461, + "count": 2797, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.00018406, + "count": 1, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Comm_size", + "ttot": 9.5367e-7, + "count": 1, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0013201, + "count": 8393, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.063184, + "count": 1, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "5", + "ttot": 1.2873420378399998, + "mpiCalls": [ + { + "call": "MPI_Isend", + "ttot": 0.04233234050000001, + "count": 16787, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Wait", + "ttot": 0.18337054000000003, + "count": 21447, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.005857943340000001, + "count": 21447, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.99402, + "count": 931, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.01336064, + "count": 2797, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.000015974, + "count": 1, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0, + "count": 1, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0014706, + "count": 8393, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.046914, + "count": 1, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "17", + "ttot": 1.2819313429999988, + "mpiCalls": [ + { + "call": "MPI_Isend", + "ttot": 0.040204169, + "count": 20515, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Wait", + "ttot": 0.1478228, + "count": 17719, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.005162708, + "count": 17719, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.98329, + "count": 931, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.0329669, + "count": 2797, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.000017166, + "count": 1, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0, + "count": 1, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0014236, + "count": 8393, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.071044, + "count": 1, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "20", + "ttot": 1.2734118946699997, + "mpiCalls": [ + { + "call": "MPI_Isend", + "ttot": 0.033494350000000006, + "count": 13987, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Wait", + "ttot": 0.2051483, + "count": 11191, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.003636601, + "count": 11191, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.95713, + "count": 931, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.014745910000000001, + "count": 2797, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.00097108, + "count": 1, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Comm_size", + "ttot": 9.5367e-7, + "count": 1, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0013077, + "count": 8393, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.056977, + "count": 1, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "16", + "ttot": 1.26644492801, + "mpiCalls": [ + { + "call": "MPI_Isend", + "ttot": 0.07718898999999997, + "count": 29841, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.02432826, + "count": 2797, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Wait", + "ttot": 0.16893060367, + "count": 27045, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.007569790669999999, + "count": 27045, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.93611, + "count": 931, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.00093293, + "count": 1, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Comm_size", + "ttot": 9.5367e-7, + "count": 1, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0015144, + "count": 8393, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.049869, + "count": 1, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "19", + "ttot": 1.2467533758, + "mpiCalls": [ + { + "call": "MPI_Isend", + "ttot": 0.050835938900000016, + "count": 20515, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Wait", + "ttot": 0.129802201, + "count": 17719, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.0050540179, + "count": 17719, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.97984, + "count": 931, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.02309949, + "count": 2797, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.000016928, + "count": 1, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0, + "count": 1, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0013478, + "count": 8393, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.056757, + "count": 1, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "8", + "ttot": 1.2272617982999996, + "mpiCalls": [ + { + "call": "MPI_Isend", + "ttot": 0.03547063, + "count": 12123, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Wait", + "ttot": 0.1681429073, + "count": 13055, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.0041124609999999995, + "count": 13055, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.93448, + "count": 931, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.032396350000000004, + "count": 2797, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.00037885, + "count": 1, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0, + "count": 1, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0013676, + "count": 8393, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.050913, + "count": 1, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "21", + "ttot": 1.2145569822699998, + "mpiCalls": [ + { + "call": "MPI_Isend", + "ttot": 0.05130626999999999, + "count": 21447, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Wait", + "ttot": 0.1624425968, + "count": 16787, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.00515244747, + "count": 16787, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.92203, + "count": 931, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.02343404, + "count": 2797, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.000013828, + "count": 1, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0, + "count": 1, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0013978, + "count": 8393, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.04878, + "count": 1, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "4", + "ttot": 1.2090420635699992, + "mpiCalls": [ + { + "call": "MPI_Isend", + "ttot": 0.06657172349999999, + "count": 24249, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.013003770000000001, + "count": 2797, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Wait", + "ttot": 0.1538210331, + "count": 32637, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.008672974869999999, + "count": 32637, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.90345, + "count": 931, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.00011897, + "count": 1, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.0000011921, + "count": 1, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0013564, + "count": 8393, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.062046, + "count": 1, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "2", + "ttot": 1.16969683027, + "mpiCalls": [ + { + "call": "MPI_Isend", + "ttot": 0.0319313278, + "count": 10259, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.03228582, + "count": 2797, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Wait", + "ttot": 0.18046414580000003, + "count": 14919, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.004431010000000002, + "count": 14919, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.87752, + "count": 931, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.000019073, + "count": 1, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Comm_size", + "ttot": 9.5367e-7, + "count": 1, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0015695, + "count": 8393, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.041475, + "count": 1, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "10", + "ttot": 1.165495353019999, + "mpiCalls": [ + { + "call": "MPI_Isend", + "ttot": 0.05494626, + "count": 27045, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.012998200000000001, + "count": 2797, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Wait", + "ttot": 0.1057370631, + "count": 29841, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.00787616625, + "count": 29841, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.92982, + "count": 931, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.00036311, + "count": 1, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Comm_size", + "ttot": 9.5367e-7, + "count": 1, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0014396, + "count": 8393, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.052314, + "count": 1, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "24", + "ttot": 1.1544906238700001, + "mpiCalls": [ + { + "call": "MPI_Isend", + "ttot": 0.0323189394, + "count": 14919, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Wait", + "ttot": 0.14517674579999998, + "count": 10259, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.0031881346699999995, + "count": 10259, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.88617, + "count": 931, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.04241927000000001, + "count": 2797, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.000025034, + "count": 1, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0, + "count": 1, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0013745, + "count": 8393, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.043818, + "count": 1, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "7", + "ttot": 1.1537384864200004, + "mpiCalls": [ + { + "call": "MPI_Isend", + "ttot": 0.0363158299, + "count": 17719, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Wait", + "ttot": 0.11942738577, + "count": 20515, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.00561070208, + "count": 20515, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.89087, + "count": 931, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.03300764, + "count": 2797, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.000012875, + "count": 1, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Comm_size", + "ttot": 9.5367e-7, + "count": 1, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0013461, + "count": 8393, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.067147, + "count": 1, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "0", + "ttot": 1.13189800271, + "mpiCalls": [ + { + "call": "MPI_Isend", + "ttot": 0.02238191837, + "count": 9327, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Wait", + "ttot": 0.21324269999999998, + "count": 15851, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.004535440669999999, + "count": 15851, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.80103, + "count": 931, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.02262557, + "count": 2797, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.00089192, + "count": 1, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Comm_size", + "ttot": 9.5367e-7, + "count": 1, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0014315, + "count": 8393, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.065758, + "count": 1, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "15", + "ttot": 1.0727462259100005, + "mpiCalls": [ + { + "call": "MPI_Isend", + "ttot": 0.03836082, + "count": 19583, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Wait", + "ttot": 0.127712661, + "count": 18651, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.0052976442400000014, + "count": 18651, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.79473, + "count": 931, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.023040579999999998, + "count": 2797, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.000014067, + "count": 1, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Comm_size", + "ttot": 9.5367e-7, + "count": 1, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0013835, + "count": 8393, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.082206, + "count": 1, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "1", + "ttot": 1.0463115951999995, + "mpiCalls": [ + { + "call": "MPI_Isend", + "ttot": 0.040223777200000005, + "count": 14923, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.03248116, + "count": 2797, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Wait", + "ttot": 0.170140051, + "count": 23311, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.005931640000000002, + "count": 23311, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.74301, + "count": 931, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.000014067, + "count": 1, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0, + "count": 1, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0015409, + "count": 8393, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.05297, + "count": 1, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "23", + "ttot": 1.0389870728800004, + "mpiCalls": [ + { + "call": "MPI_Isend", + "ttot": 0.043381689999999994, + "count": 22379, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Wait", + "ttot": 0.10883832767, + "count": 15855, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.00457143921, + "count": 15855, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.79465, + "count": 931, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.02302875, + "count": 2797, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.000017166, + "count": 1, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0, + "count": 1, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0015237, + "count": 8393, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.062976, + "count": 1, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "12", + "ttot": 1.0386485083499997, + "mpiCalls": [ + { + "call": "MPI_Isend", + "ttot": 0.07798403000000002, + "count": 27977, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.012912600000000002, + "count": 2797, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Wait", + "ttot": 0.13523839734, + "count": 28909, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.007796747339999999, + "count": 28909, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.73068, + "count": 931, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.00015998, + "count": 1, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Comm_size", + "ttot": 9.5367e-7, + "count": 1, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0014808, + "count": 8393, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.072395, + "count": 1, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "14", + "ttot": 0.98415993259, + "mpiCalls": [ + { + "call": "MPI_Isend", + "ttot": 0.060344989999999994, + "count": 28909, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.01366346, + "count": 2797, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Wait", + "ttot": 0.13146887367, + "count": 27977, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.007779375249999999, + "count": 27977, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.71219, + "count": 931, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.00002408, + "count": 1, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Comm_size", + "ttot": 9.5367e-7, + "count": 1, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0013652, + "count": 8393, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.057323, + "count": 1, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "11", + "ttot": 0.9580859282399999, + "mpiCalls": [ + { + "call": "MPI_Isend", + "ttot": 0.047034859000000005, + "count": 18651, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Wait", + "ttot": 0.14092516367000002, + "count": 19583, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.005357495469999999, + "count": 19583, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.68172, + "count": 931, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.013979390000000001, + "count": 2797, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.000016928, + "count": 1, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.0000011921, + "count": 1, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0014329, + "count": 8393, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.067618, + "count": 1, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "13", + "ttot": 0.9274095654800009, + "mpiCalls": [ + { + "call": "MPI_Isend", + "ttot": 0.063421741, + "count": 41966, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.0034818509999999998, + "count": 2797, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Wait", + "ttot": 0.108279721, + "count": 41966, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.01068567881, + "count": 41966, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.69684, + "count": 931, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.00001502, + "count": 1, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Comm_size", + "ttot": 9.5367e-7, + "count": 1, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0013556, + "count": 8393, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.043329, + "count": 1, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "22", + "ttot": 0.2663693268599999, + "mpiCalls": [ + { + "call": "MPI_Isend", + "ttot": 0.0571668231, + "count": 32637, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Wait", + "ttot": 0.10646541367, + "count": 24249, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.0066995584200000005, + "count": 24249, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.022473, + "count": 931, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Waitall", + "ttot": 0.013747889999999999, + "count": 2797, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.000025988, + "count": 1, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Comm_size", + "ttot": 9.5367e-7, + "count": 1, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0013857, + "count": 8393, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.058404, + "count": 1, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + } + ] + }, + "mpiPies": { + "mpiPercent": { + "datasets": [ + { + "data": ["75.43", "12.79", "5.15", "3.99", "2.02", "0.63"], + "backgroundColor": [ + "rgb(128, 133, 133)", + "rgb(211, 94, 96)", + "rgb(148, 139, 61)", + "rgb(144, 103, 167)", + "rgb(218, 124, 48)", + "rgb(144, 103, 167)" + ], + "hoverBackgroundColor": [ + "rgb(148, 153, 153)", + "rgb(231, 114, 116)", + "rgb(168, 159, 81)", + "rgb(164, 123, 187)", + "rgb(238, 144, 68)", + "rgb(164, 123, 187)" + ] + } + ], + "labels": [ + "MPI_Allreduce", + "MPI_Wait", + "MPI_Barrier", + "MPI_Isend", + "MPI_Waitall", + "others" + ] + }, + "mpiWall": { + "datasets": [ + { + "data": ["23.38", "3.97", "1.60", "1.24", "0.82", "69.00"], + "backgroundColor": [ + "rgb(128, 133, 133)", + "rgb(211, 94, 96)", + "rgb(148, 139, 61)", + "rgb(144, 103, 167)", + "rgb(144, 103, 167)", + "rgb(171, 104, 87)" + ], + "hoverBackgroundColor": [ + "rgb(148, 153, 153)", + "rgb(231, 114, 116)", + "rgb(168, 159, 81)", + "rgb(164, 123, 187)", + "rgb(164, 123, 187)", + "rgb(191, 124, 107)" + ] + } + ], + "labels": [ + "MPI_Allreduce", + "MPI_Wait", + "MPI_Barrier", + "MPI_Isend", + "others", + "Apllication" + ] + } + }, + "hpmData": [], + "balanceData": { + "labels": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15", + "16", + "17", + "18", + "19", + "20", + "21", + "22", + "23", + "24", + "25", + "26" + ], + "datasets": [ + { + "label": "MPI_Isend", + "fill": false, + "backgroundColor": "rgb(144, 103, 167)", + "borderColor": "rgb(144, 103, 167)", + "pointHoverBackgroundColor": "rgb(164, 123, 187)", + "data": [ + 0.02238191837, + 0.040223777200000005, + 0.0319313278, + 0.04043537469999999, + 0.06657172349999999, + 0.04233234050000001, + 0.029348146800000002, + 0.0363158299, + 0.03547063, + 0.0448368, + 0.05494626, + 0.047034859000000005, + 0.07798403000000002, + 0.063421741, + 0.060344989999999994, + 0.03836082, + 0.07718898999999997, + 0.040204169, + 0.02763419999999999, + 0.050835938900000016, + 0.033494350000000006, + 0.05130626999999999, + 0.0571668231, + 0.043381689999999994, + 0.0323189394, + 0.052711404100000005, + 0.034681130000000004 + ] + }, + { + "label": "MPI_Wait", + "fill": false, + "backgroundColor": "rgb(211, 94, 96)", + "borderColor": "rgb(211, 94, 96)", + "pointHoverBackgroundColor": "rgb(231, 114, 116)", + "data": [ + 0.21324269999999998, + 0.03248116, + 0.03228582, + 0.137099881, + 0.013003770000000001, + 0.18337054000000003, + 0.15913260140000002, + 0.11942738577, + 0.1681429073, + 0.15133084097000002, + 0.012998200000000001, + 0.14092516367000002, + 0.012912600000000002, + 0.0034818509999999998, + 0.01366346, + 0.127712661, + 0.02432826, + 0.1478228, + 0.14880744580000002, + 0.129802201, + 0.2051483, + 0.1624425968, + 0.10646541367, + 0.10883832767, + 0.14517674579999998, + 0.12818987999999998, + 1.029 + ] + }, + { + "label": "MPI_Irecv", + "fill": false, + "backgroundColor": "rgb(128, 133, 133)", + "borderColor": "rgb(128, 133, 133)", + "pointHoverBackgroundColor": "rgb(148, 153, 153)", + "data": [ + 0.004535440669999999, + 0.170140051, + 0.18046414580000003, + 0.00589393767, + 0.1538210331, + 0.005857943340000001, + 0.004353546670000001, + 0.00561070208, + 0.0041124609999999995, + 0.00553488497, + 0.1057370631, + 0.005357495469999999, + 0.13523839734, + 0.108279721, + 0.13146887367, + 0.0052976442400000014, + 0.16893060367, + 0.005162708, + 0.00353265067, + 0.0050540179, + 0.003636601, + 0.00515244747, + 0.0066995584200000005, + 0.00457143921, + 0.0031881346699999995, + 0.004482971600000001, + 0.03302907 + ] + }, + { + "label": "MPI_Allreduce", + "fill": false, + "backgroundColor": "rgb(128, 133, 133)", + "borderColor": "rgb(128, 133, 133)", + "pointHoverBackgroundColor": "rgb(148, 153, 153)", + "data": [ + 0.80103, + 0.005931640000000002, + 0.004431010000000002, + 1.0443, + 0.008672974869999999, + 0.99402, + 1.0081, + 0.89087, + 0.93448, + 1.0032, + 0.00787616625, + 0.68172, + 0.007796747339999999, + 0.01068567881, + 0.007779375249999999, + 0.79473, + 0.007569790669999999, + 0.98329, + 1.0369, + 0.97984, + 0.95713, + 0.92203, + 0.022473, + 0.79465, + 0.88617, + 1.0251, + 0.11713820729999999 + ] + }, + { + "label": "MPI_Waitall", + "fill": false, + "backgroundColor": "rgb(218, 124, 48)", + "borderColor": "rgb(218, 124, 48)", + "pointHoverBackgroundColor": "rgb(238, 144, 68)", + "data": [ + 0.02262557, + 0.74301, + 0.87752, + 0.02300111, + 0.90345, + 0.01336064, + 0.02294461, + 0.03300764, + 0.032396350000000004, + 0.02241342, + 0.92982, + 0.013979390000000001, + 0.73068, + 0.69684, + 0.71219, + 0.023040579999999998, + 0.93611, + 0.0329669, + 0.04235016999999999, + 0.02309949, + 0.014745910000000001, + 0.02343404, + 0.013747889999999999, + 0.02302875, + 0.04241927000000001, + 0.02259233, + 0.0029926203400000005 + ] + }, + { + "label": "MPI_Reduce", + "fill": false, + "backgroundColor": "rgb(204, 37, 41)", + "borderColor": "rgb(204, 37, 41)", + "pointHoverBackgroundColor": "rgb(224, 57, 61)", + "data": [ + 0.00089192, + 0.000014067, + 0.000019073, + 0.00001502, + 0.00011897, + 0.000015974, + 0.00018406, + 0.000012875, + 0.00037885, + 0.000014067, + 0.00036311, + 0.000016928, + 0.00015998, + 0.00001502, + 0.00002408, + 0.000014067, + 0.00093293, + 0.000017166, + 0.0001111, + 0.000016928, + 0.00097108, + 0.000013828, + 0.000025988, + 0.000017166, + 0.000025034, + 0.000016928, + 0.000017881 + ] + }, + { + "label": "MPI_Comm_size", + "fill": false, + "backgroundColor": "rgb(83, 81, 84)", + "borderColor": "rgb(83, 81, 84)", + "pointHoverBackgroundColor": "rgb(103, 101, 104)", + "data": [ + 9.5367e-7, + 0, + 9.5367e-7, + 9.5367e-7, + 0.0000011921, + 0, + 9.5367e-7, + 9.5367e-7, + 0, + 0, + 9.5367e-7, + 0.0000011921, + 9.5367e-7, + 9.5367e-7, + 9.5367e-7, + 9.5367e-7, + 9.5367e-7, + 0, + 0.0000011921, + 0, + 9.5367e-7, + 0, + 9.5367e-7, + 0, + 0, + 9.5367e-7, + 9.5367e-7 + ] + }, + { + "label": "MPI_Comm_rank", + "fill": false, + "backgroundColor": "rgb(107, 76, 154)", + "borderColor": "rgb(107, 76, 154)", + "pointHoverBackgroundColor": "rgb(127, 96, 174)", + "data": [ + 0.0014315, + 0.0015409, + 0.0015695, + 0.001389, + 0.0013564, + 0.0014706, + 0.0013201, + 0.0013461, + 0.0013676, + 0.0013528, + 0.0014396, + 0.0014329, + 0.0014808, + 0.0013556, + 0.0013652, + 0.0013835, + 0.0015144, + 0.0014236, + 0.0013766, + 0.0013478, + 0.0013077, + 0.0013978, + 0.0013857, + 0.0015237, + 0.0013745, + 0.0013869, + 0.001313 + ] + }, + { + "label": "MPI_Finalize", + "fill": false, + "backgroundColor": "rgb(146, 36, 40)", + "borderColor": "rgb(146, 36, 40)", + "pointHoverBackgroundColor": "rgb(166, 56, 60)", + "data": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 ] }, { - "nr": "22", - "ttot": 0.2663693268599999, - "mpiCalls": [ - { - "call": "MPI_Isend", - "ttot": 0.0571668231, - "count": 32637, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, - { - "call": "MPI_Wait", - "ttot": 0.10646541367, - "count": 24249, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" - }, - { - "call": "MPI_Irecv", - "ttot": 0.0066995584200000005, - "count": 24249, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, - { - "call": "MPI_Allreduce", - "ttot": 0.022473, - "count": 931, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, - { - "call": "MPI_Waitall", - "ttot": 0.013747889999999999, - "count": 2797, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" - }, - { - "call": "MPI_Reduce", - "ttot": 0.000025988, - "count": 1, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" - }, - { - "call": "MPI_Comm_size", - "ttot": 9.5367e-7, - "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" - }, - { - "call": "MPI_Comm_rank", - "ttot": 0.0013857, - "count": 8393, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" - }, - { - "call": "MPI_Finalize", - "ttot": 0, - "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" - }, - { - "call": "MPI_Init", - "ttot": 0, - "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" - }, - { - "call": "MPI_Barrier", - "ttot": 0.058404, - "count": 1, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" - } + "label": "MPI_Init", + "fill": false, + "backgroundColor": "rgb(114, 147, 203)", + "borderColor": "rgb(114, 147, 203)", + "pointHoverBackgroundColor": "rgb(134, 167, 223)", + "data": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + { + "label": "MPI_Barrier", + "fill": false, + "backgroundColor": "rgb(148, 139, 61)", + "borderColor": "rgb(148, 139, 61)", + "pointHoverBackgroundColor": "rgb(168, 159, 81)", + "data": [ + 0.065758, + 0.05297, + 0.041475, + 0.059377, + 0.062046, + 0.046914, + 0.063184, + 0.067147, + 0.050913, + 0.06631, + 0.052314, + 0.067618, + 0.072395, + 0.043329, + 0.057323, + 0.082206, + 0.049869, + 0.071044, + 0.050433, + 0.056757, + 0.056977, + 0.04878, + 0.058404, + 0.062976, + 0.043818, + 0.065243, + 0.075571 ] } ] }, - "mpiPies": { - "mpiPercent": { - "datasets": [ - { - "data": ["75.43", "12.79", "5.15", "3.99", "2.02", "0.63"], - "backgroundColor": [ - "rgb(211, 94, 96)", - "rgb(128, 133, 133)", - "rgb(204, 37, 41)", - "rgb(114, 147, 203)", - "rgb(146, 36, 40)", - "rgb(83, 81, 84)" - ], - "hoverBackgroundColor": [ - "rgb(231, 114, 116)", - "rgb(148, 153, 153)", - "rgb(224, 57, 61)", - "rgb(134, 167, 223)", - "rgb(166, 56, 60)", - "rgb(103, 101, 104)" - ] - } - ], - "labels": [ - "MPI_Allreduce", - "MPI_Wait", - "MPI_Barrier", - "MPI_Isend", - "MPI_Waitall", - "others" - ] - }, - "mpiWall": { - "datasets": [ - { - "data": ["23.38", "3.97", "1.60", "1.24", "0.82", "69.00"], - "backgroundColor": [ - "rgb(211, 94, 96)", - "rgb(128, 133, 133)", - "rgb(204, 37, 41)", - "rgb(114, 147, 203)", - "rgb(83, 81, 84)", - "rgb(107, 76, 154)" - ], - "hoverBackgroundColor": [ - "rgb(231, 114, 116)", - "rgb(148, 153, 153)", - "rgb(224, 57, 61)", - "rgb(134, 167, 223)", - "rgb(103, 101, 104)", - "rgb(127, 96, 174)" - ] - } - ], - "labels": [ - "MPI_Allreduce", - "MPI_Wait", - "MPI_Barrier", - "MPI_Isend", - "others", - "Apllication" - ] - } - }, - "hpmData": [], - "balanceData": { + "balanceDataSorted": { "labels": [ "3", "18", @@ -3001,9 +5674,9 @@ { "label": "MPI_Isend", "fill": false, - "backgroundColor": "rgb(114, 147, 203)", - "borderColor": "rgb(114, 147, 203)", - "pointHoverBackgroundColor": "rgb(134, 167, 223)", + "backgroundColor": "rgb(144, 103, 167)", + "borderColor": "rgb(144, 103, 167)", + "pointHoverBackgroundColor": "rgb(164, 123, 187)", "data": [ 0.04043537469999999, 0.02763419999999999, @@ -3037,9 +5710,9 @@ { "label": "MPI_Wait", "fill": false, - "backgroundColor": "rgb(128, 133, 133)", - "borderColor": "rgb(128, 133, 133)", - "pointHoverBackgroundColor": "rgb(148, 153, 153)", + "backgroundColor": "rgb(211, 94, 96)", + "borderColor": "rgb(211, 94, 96)", + "pointHoverBackgroundColor": "rgb(231, 114, 116)", "data": [ 0.137099881, 0.14880744580000002, @@ -3073,9 +5746,9 @@ { "label": "MPI_Irecv", "fill": false, - "backgroundColor": "rgb(114, 147, 203)", - "borderColor": "rgb(114, 147, 203)", - "pointHoverBackgroundColor": "rgb(134, 167, 223)", + "backgroundColor": "rgb(128, 133, 133)", + "borderColor": "rgb(128, 133, 133)", + "pointHoverBackgroundColor": "rgb(148, 153, 153)", "data": [ 0.00589393767, 0.00353265067, @@ -3109,9 +5782,9 @@ { "label": "MPI_Allreduce", "fill": false, - "backgroundColor": "rgb(211, 94, 96)", - "borderColor": "rgb(211, 94, 96)", - "pointHoverBackgroundColor": "rgb(231, 114, 116)", + "backgroundColor": "rgb(128, 133, 133)", + "borderColor": "rgb(128, 133, 133)", + "pointHoverBackgroundColor": "rgb(148, 153, 153)", "data": [ 1.0443, 1.0369, @@ -3145,9 +5818,9 @@ { "label": "MPI_Waitall", "fill": false, - "backgroundColor": "rgb(146, 36, 40)", - "borderColor": "rgb(146, 36, 40)", - "pointHoverBackgroundColor": "rgb(166, 56, 60)", + "backgroundColor": "rgb(218, 124, 48)", + "borderColor": "rgb(218, 124, 48)", + "pointHoverBackgroundColor": "rgb(238, 144, 68)", "data": [ 0.02300111, 0.04235016999999999, @@ -3181,9 +5854,9 @@ { "label": "MPI_Reduce", "fill": false, - "backgroundColor": "rgb(148, 139, 61)", - "borderColor": "rgb(148, 139, 61)", - "pointHoverBackgroundColor": "rgb(168, 159, 81)", + "backgroundColor": "rgb(204, 37, 41)", + "borderColor": "rgb(204, 37, 41)", + "pointHoverBackgroundColor": "rgb(224, 57, 61)", "data": [ 0.00001502, 0.0001111, @@ -3217,9 +5890,9 @@ { "label": "MPI_Comm_size", "fill": false, - "backgroundColor": "rgb(144, 103, 167)", - "borderColor": "rgb(144, 103, 167)", - "pointHoverBackgroundColor": "rgb(164, 123, 187)", + "backgroundColor": "rgb(83, 81, 84)", + "borderColor": "rgb(83, 81, 84)", + "pointHoverBackgroundColor": "rgb(103, 101, 104)", "data": [ 9.5367e-7, 0.0000011921, @@ -3253,9 +5926,9 @@ { "label": "MPI_Comm_rank", "fill": false, - "backgroundColor": "rgb(171, 104, 87)", - "borderColor": "rgb(171, 104, 87)", - "pointHoverBackgroundColor": "rgb(191, 124, 107)", + "backgroundColor": "rgb(107, 76, 154)", + "borderColor": "rgb(107, 76, 154)", + "pointHoverBackgroundColor": "rgb(127, 96, 174)", "data": [ 0.001389, 0.0013766, @@ -3289,9 +5962,9 @@ { "label": "MPI_Finalize", "fill": false, - "backgroundColor": "rgb(204, 194, 16)", - "borderColor": "rgb(204, 194, 16)", - "pointHoverBackgroundColor": "rgb(224, 214, 36)", + "backgroundColor": "rgb(146, 36, 40)", + "borderColor": "rgb(146, 36, 40)", + "pointHoverBackgroundColor": "rgb(166, 56, 60)", "data": [ 0, 0, @@ -3325,9 +5998,9 @@ { "label": "MPI_Init", "fill": false, - "backgroundColor": "rgb(57, 106, 177)", - "borderColor": "rgb(57, 106, 177)", - "pointHoverBackgroundColor": "rgb(77, 126, 197)", + "backgroundColor": "rgb(114, 147, 203)", + "borderColor": "rgb(114, 147, 203)", + "pointHoverBackgroundColor": "rgb(134, 167, 223)", "data": [ 0, 0, @@ -3361,9 +6034,9 @@ { "label": "MPI_Barrier", "fill": false, - "backgroundColor": "rgb(204, 37, 41)", - "borderColor": "rgb(204, 37, 41)", - "pointHoverBackgroundColor": "rgb(224, 57, 61)", + "backgroundColor": "rgb(148, 139, 61)", + "borderColor": "rgb(148, 139, 61)", + "pointHoverBackgroundColor": "rgb(168, 159, 81)", "data": [ 0.059377, 0.050433, diff --git a/ipm_raw/hunold.1491564090.960496.ipm.json b/ipm_raw/hunold.1491564090.960496.ipm.json index 524e570..b0dd4d2 100644 --- a/ipm_raw/hunold.1491564090.960496.ipm.json +++ b/ipm_raw/hunold.1491564090.960496.ipm.json @@ -6,7 +6,8 @@ "walltime": "48.872171", "ntasks": 27, "nhosts": 27, - "totalWallTime": 1319.5486170000001 + "totalWallTime": 1319.5486170000001, + "cmdline": "/home/hunold/tmp/lulesh2.0.3/./lulesh2.0 -s 20 " }, "hosts": [ { @@ -564,78 +565,78 @@ "call": "MPI_Allreduce", "ttot": 271.17215999999996, "count": 54810, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", "ttot": 15.165890365140003, "count": 1182358, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Waitall", "ttot": 5.099526799999999, "count": 164538, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Isend", "ttot": 4.508663806400003, "count": 1182358, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Barrier", "ttot": 1.0404390000000003, "count": 27, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Irecv", "ttot": 0.5070513484100001, "count": 1182358, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_rank", "ttot": 0.14759410000000003, "count": 493668, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Reduce", "ttot": 0.024781070000000002, "count": 27, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Comm_size", "ttot": 0.00001573558, "count": 27, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 27, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 27, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" } ], "mpiAnalysis": { @@ -644,1081 +645,1164 @@ }, "mpiCallsByTask": [ { - "nr": "26", - "ttot": 15.248368869470005, + "nr": "0", + "ttot": 1.4364204645699998, "mpiCalls": [ { "call": "MPI_Waitall", - "ttot": 0.19420700000000002, + "ttot": 0.0553158, "count": 6094, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allreduce", - "ttot": 14.273, + "ttot": 0.38566, "count": 2030, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 0.5808134458, - "count": 20317, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.8082842458, + "count": 34534, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Irecv", - "ttot": 0.011084796999999997, - "count": 20317, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.016241841, + "count": 34534, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Reduce", - "ttot": 0.000022173, + "ttot": 0.00010991, "count": 1, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Isend", - "ttot": 0.1363126, - "count": 34534, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.0899129141, + "count": 20317, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Comm_size", "ttot": 9.5367e-7, "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0047829, + "ttot": 0.0058928, "count": 18284, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Barrier", - "ttot": 0.048145, + "ttot": 0.075002, "count": 1, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "20", - "ttot": 14.651557119440003, + "nr": "1", + "ttot": 4.0616447230400015, "mpiCalls": [ { "call": "MPI_Waitall", - "ttot": 0.1380985, + "ttot": 0.1458505, "count": 6094, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allreduce", - "ttot": 13.619, + "ttot": 2.9826, "count": 2030, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 0.70404814577, - "count": 24379, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.7342081994, + "count": 50786, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Irecv", - "ttot": 0.012825113669999999, - "count": 24379, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.018561431640000004, + "count": 50786, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Reduce", - "ttot": 0.0050871, + "ttot": 0.000019073, "count": 1, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Isend", - "ttot": 0.12620386000000003, - "count": 30472, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.14044211899999998, + "count": 32507, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Comm_size", "ttot": 0, "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0048954, + "ttot": 0.0055344, "count": 18284, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Barrier", - "ttot": 0.041399, + "ttot": 0.034429, "count": 1, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "25", - "ttot": 14.589639873800001, + "nr": "2", + "ttot": 12.372680046100005, "mpiCalls": [ { "call": "MPI_Waitall", - "ttot": 0.2777645, + "ttot": 0.137652, "count": 6094, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allreduce", - "ttot": 13.418, + "ttot": 11.534, "count": 2030, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 0.6691787373, - "count": 32507, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.5343808530999999, + "count": 32503, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Irecv", - "ttot": 0.015859851600000002, - "count": 32507, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.016288331, + "count": 32503, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Reduce", - "ttot": 0.000021935, + "ttot": 0.000030041, "count": 1, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Isend", - "ttot": 0.17615774989999997, - "count": 50786, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.112812321, + "count": 22348, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Comm_size", "ttot": 0, "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0055311, + "ttot": 0.0051675, "count": 18284, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Barrier", - "ttot": 0.027126, + "ttot": 0.032349, "count": 1, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "5", - "ttot": 14.566805833570003, + "nr": "3", + "ttot": 14.506121961010008, "mpiCalls": [ { "call": "MPI_Waitall", - "ttot": 0.20776160000000002, + "ttot": 0.1478391, "count": 6094, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allreduce", - "ttot": 13.42, + "ttot": 13.559, "count": 2030, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 0.69816525367, - "count": 46724, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.59926209947, + "count": 48755, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Irecv", - "ttot": 0.018148651099999996, - "count": 46724, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.017960159140000004, + "count": 48755, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Reduce", - "ttot": 0.000022173, + "ttot": 0.000019073, "count": 1, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Isend", - "ttot": 0.15484475579999996, - "count": 36569, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.1456771294, + "count": 34538, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Comm_size", "ttot": 0, "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0060434, + "ttot": 0.0059254, "count": 18284, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Barrier", - "ttot": 0.06182, + "ttot": 0.030439, "count": 1, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "3", - "ttot": 14.506121961010008, + "nr": "4", + "ttot": 12.827758125239997, "mpiCalls": [ { "call": "MPI_Waitall", - "ttot": 0.1478391, + "ttot": 0.0943791, "count": 6094, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allreduce", - "ttot": 13.559, + "ttot": 12.017, "count": 2030, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 0.59926209947, - "count": 48755, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.44065684577, + "count": 71102, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Irecv", - "ttot": 0.017960159140000004, - "count": 48755, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.026524237999999995, + "count": 71102, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Reduce", - "ttot": 0.000019073, + "ttot": 0.0026488, "count": 1, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Isend", - "ttot": 0.1456771294, - "count": 34538, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.20854108779999997, + "count": 52823, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Comm_size", - "ttot": 0, + "ttot": 9.5367e-7, "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0059254, + "ttot": 0.0058131, "count": 18284, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Barrier", - "ttot": 0.030439, + "ttot": 0.032194, "count": 1, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "7", - "ttot": 13.97558603188, + "nr": "5", + "ttot": 14.566805833570003, "mpiCalls": [ { "call": "MPI_Waitall", - "ttot": 0.23284760000000002, + "ttot": 0.20776160000000002, "count": 6094, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allreduce", - "ttot": 12.978, + "ttot": 13.42, "count": 2030, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 0.55170046367, - "count": 44693, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.69816525367, + "count": 46724, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Irecv", - "ttot": 0.01727725374, - "count": 44693, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.018148651099999996, + "count": 46724, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Reduce", - "ttot": 0.000019073, + "ttot": 0.000022173, "count": 1, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Isend", - "ttot": 0.15132298779999998, - "count": 38600, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.15484475579999996, + "count": 36569, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Comm_size", - "ttot": 9.5367e-7, + "ttot": 0, "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0060847, + "ttot": 0.0060434, "count": 18284, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Barrier", - "ttot": 0.038333, + "ttot": 0.06182, "count": 1, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "16", - "ttot": 13.930543915869997, + "nr": "6", + "ttot": 8.003854788369994, "mpiCalls": [ { "call": "MPI_Waitall", - "ttot": 0.39668480000000006, + "ttot": 0.13815739999999999, "count": 6094, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allreduce", - "ttot": 12.994, + "ttot": 6.9678, "count": 2030, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 0.24598427209999996, - "count": 58916, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.7287278846699999, + "count": 30472, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Irecv", - "ttot": 0.0244853001, - "count": 58916, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.013821218, + "count": 30472, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Reduce", - "ttot": 0.0047328, + "ttot": 0.000030041, "count": 1, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Isend", - "ttot": 0.22835358999999997, - "count": 65009, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.11598084469999999, + "count": 24379, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Comm_size", - "ttot": 9.5367e-7, + "ttot": 0, "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0059152, + "ttot": 0.0053544, "count": 18284, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Barrier", - "ttot": 0.030387, + "ttot": 0.033983, "count": 1, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "21", - "ttot": 13.854509146899996, + "nr": "7", + "ttot": 13.97558603188, "mpiCalls": [ { "call": "MPI_Waitall", - "ttot": 0.1720324, + "ttot": 0.23284760000000002, "count": 6094, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allreduce", - "ttot": 12.488, + "ttot": 12.978, "count": 2030, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 0.9786605073000001, - "count": 36569, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.55170046367, + "count": 44693, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Irecv", - "ttot": 0.0166321895, - "count": 36569, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.01727725374, + "count": 44693, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Reduce", - "ttot": 0.000016928, + "ttot": 0.000019073, "count": 1, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Isend", - "ttot": 0.16189553000000004, - "count": 46724, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.15132298779999998, + "count": 38600, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Comm_size", - "ttot": 0.0000011921, + "ttot": 9.5367e-7, "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0048914, + "ttot": 0.0060847, "count": 18284, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Barrier", - "ttot": 0.032379, + "ttot": 0.038333, "count": 1, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "17", - "ttot": 13.76494887497, + "nr": "8", + "ttot": 13.582856834969991, "mpiCalls": [ { "call": "MPI_Waitall", - "ttot": 0.2918866, + "ttot": 0.1426792, "count": 6094, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allreduce", - "ttot": 12.575, + "ttot": 12.523, "count": 2030, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 0.68650358097, - "count": 38600, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.7275386073, + "count": 28441, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Irecv", - "ttot": 0.016581813000000004, - "count": 38600, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.015183974000000001, + "count": 28441, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Reduce", - "ttot": 0.000020027, + "ttot": 0.0038509, "count": 1, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Isend", - "ttot": 0.154183154, - "count": 44693, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.1266101, + "count": 26410, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Comm_size", - "ttot": 0, + "ttot": 9.5367e-7, "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0052137, + "ttot": 0.0056751, "count": 18284, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Barrier", - "ttot": 0.03556, + "ttot": 0.038318, "count": 1, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "10", - "ttot": 13.743369351639984, + "nr": "9", + "ttot": 10.706795281740003, "mpiCalls": [ { "call": "MPI_Waitall", - "ttot": 0.0923387, + "ttot": 0.138274, "count": 6094, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allreduce", - "ttot": 13.001, + "ttot": 9.8864, "count": 2030, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 0.35866709577, - "count": 65009, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.4592862073, + "count": 44693, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Irecv", - "ttot": 0.026106793769999997, - "count": 65009, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.018095764439999995, + "count": 44693, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Reduce", - "ttot": 0.001425, + "ttot": 0.00001812, "count": 1, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Isend", - "ttot": 0.22567646999999996, - "count": 58916, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.15675609000000001, + "count": 38600, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Comm_size", - "ttot": 0.0000011921, + "ttot": 0, "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0059121, + "ttot": 0.0050561, "count": 18284, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Barrier", - "ttot": 0.032242, + "ttot": 0.042909, "count": 1, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "8", - "ttot": 13.582856834969991, + "nr": "10", + "ttot": 13.743369351639984, "mpiCalls": [ { "call": "MPI_Waitall", - "ttot": 0.1426792, + "ttot": 0.0923387, "count": 6094, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allreduce", - "ttot": 12.523, + "ttot": 13.001, "count": 2030, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 0.7275386073, - "count": 28441, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.35866709577, + "count": 65009, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Irecv", - "ttot": 0.015183974000000001, - "count": 28441, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.026106793769999997, + "count": 65009, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Reduce", - "ttot": 0.0038509, + "ttot": 0.001425, "count": 1, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Isend", - "ttot": 0.1266101, - "count": 26410, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.22567646999999996, + "count": 58916, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Comm_size", - "ttot": 9.5367e-7, + "ttot": 0.0000011921, "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0056751, + "ttot": 0.0059121, "count": 18284, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Barrier", - "ttot": 0.038318, + "ttot": 0.032242, "count": 1, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "4", - "ttot": 12.827758125239997, + "nr": "11", + "ttot": 12.151699387739997, "mpiCalls": [ { "call": "MPI_Waitall", - "ttot": 0.0943791, + "ttot": 0.3067682, "count": 6094, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allreduce", - "ttot": 12.017, + "ttot": 10.953, "count": 2030, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 0.44065684577, - "count": 71102, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.6647474379, + "count": 42662, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Irecv", - "ttot": 0.026524237999999995, - "count": 71102, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.01820713417, + "count": 42662, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Reduce", - "ttot": 0.0026488, + "ttot": 0.000021935, "count": 1, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Isend", - "ttot": 0.20854108779999997, - "count": 52823, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.16481972699999997, + "count": 40631, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Comm_size", "ttot": 9.5367e-7, "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0058131, + "ttot": 0.005584, "count": 18284, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Barrier", - "ttot": 0.032194, + "ttot": 0.03855, "count": 1, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "13", - "ttot": 12.801131362979998, + "nr": "12", + "ttot": 11.49715666983999, "mpiCalls": [ { "call": "MPI_Waitall", - "ttot": 0.08677750000000001, + "ttot": 0.0683926, "count": 6094, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allreduce", - "ttot": 12.063, + "ttot": 10.556, "count": 2030, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.5396142605, + "count": 62978, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { - "call": "MPI_Wait", - "ttot": 0.2753144825, - "count": 91421, + "call": "MPI_Irecv", + "ttot": 0.02526406934, + "count": 62978, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { - "call": "MPI_Irecv", - "ttot": 0.03420660048, - "count": 91421, + "call": "MPI_Reduce", + "ttot": 0.003062, + "count": 1, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Isend", + "ttot": 0.2295658399999999, + "count": 60947, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0, + "count": 1, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0056839, + "count": 18284, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { - "call": "MPI_Reduce", - "ttot": 0.000019073, + "call": "MPI_Barrier", + "ttot": 0.069574, "count": 1, "color": "rgb(148, 139, 61)", "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "13", + "ttot": 12.801131362979998, + "mpiCalls": [ + { + "call": "MPI_Waitall", + "ttot": 0.08677750000000001, + "count": 6094, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allreduce", + "ttot": 12.063, + "count": 2030, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.2753144825, + "count": 91421, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.03420660048, + "count": 91421, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.000019073, + "count": 1, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Isend", "ttot": 0.30729010699999987, "count": 91421, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Comm_size", "ttot": 0, "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", "ttot": 0.0052066, "count": 18284, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Barrier", "ttot": 0.029317, "count": 1, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, @@ -1730,410 +1814,410 @@ "call": "MPI_Waitall", "ttot": 0.3688821, "count": 6094, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allreduce", "ttot": 11.839, "count": 2030, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", "ttot": 0.2272622273, "count": 60947, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Irecv", "ttot": 0.026083454000000006, "count": 60947, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Reduce", "ttot": 0.0034211, "count": 1, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Isend", "ttot": 0.22474620000000003, "count": 62978, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Comm_size", "ttot": 9.5367e-7, "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", "ttot": 0.005893, "count": 18284, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Barrier", "ttot": 0.025343, "count": 1, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "2", - "ttot": 12.372680046100005, + "nr": "15", + "ttot": 6.550368703509996, "mpiCalls": [ { "call": "MPI_Waitall", - "ttot": 0.137652, + "ttot": 0.1714841, "count": 6094, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allreduce", - "ttot": 11.534, + "ttot": 5.4057, "count": 2030, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 0.5343808530999999, - "count": 32503, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.7384874530700001, + "count": 40631, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Irecv", - "ttot": 0.016288331, - "count": 32503, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.017837041769999992, + "count": 40631, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Reduce", - "ttot": 0.000030041, + "ttot": 0.000018835, "count": 1, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Isend", - "ttot": 0.112812321, - "count": 22348, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.16525572000000002, + "count": 42662, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Comm_size", - "ttot": 0, + "ttot": 9.5367e-7, "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0051675, + "ttot": 0.0048356, "count": 18284, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Barrier", - "ttot": 0.032349, + "ttot": 0.046749, "count": 1, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "11", - "ttot": 12.151699387739997, + "nr": "16", + "ttot": 13.930543915869997, "mpiCalls": [ { "call": "MPI_Waitall", - "ttot": 0.3067682, + "ttot": 0.39668480000000006, "count": 6094, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allreduce", - "ttot": 10.953, + "ttot": 12.994, "count": 2030, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 0.6647474379, - "count": 42662, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.24598427209999996, + "count": 58916, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Irecv", - "ttot": 0.01820713417, - "count": 42662, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.0244853001, + "count": 58916, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Reduce", - "ttot": 0.000021935, + "ttot": 0.0047328, "count": 1, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Isend", - "ttot": 0.16481972699999997, - "count": 40631, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.22835358999999997, + "count": 65009, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Comm_size", "ttot": 9.5367e-7, "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.005584, + "ttot": 0.0059152, "count": 18284, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Barrier", - "ttot": 0.03855, + "ttot": 0.030387, "count": 1, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "12", - "ttot": 11.49715666983999, + "nr": "17", + "ttot": 13.76494887497, "mpiCalls": [ { "call": "MPI_Waitall", - "ttot": 0.0683926, + "ttot": 0.2918866, "count": 6094, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allreduce", - "ttot": 10.556, + "ttot": 12.575, "count": 2030, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 0.5396142605, - "count": 62978, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.68650358097, + "count": 38600, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Irecv", - "ttot": 0.02526406934, - "count": 62978, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.016581813000000004, + "count": 38600, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Reduce", - "ttot": 0.003062, + "ttot": 0.000020027, "count": 1, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Isend", - "ttot": 0.2295658399999999, - "count": 60947, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.154183154, + "count": 44693, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Comm_size", "ttot": 0, "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0056839, + "ttot": 0.0052137, "count": 18284, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Barrier", - "ttot": 0.069574, + "ttot": 0.03556, "count": 1, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "9", - "ttot": 10.706795281740003, + "nr": "18", + "ttot": 6.095587840640001, "mpiCalls": [ { "call": "MPI_Waitall", - "ttot": 0.138274, + "ttot": 0.1240791, "count": 6094, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allreduce", - "ttot": 9.8864, + "ttot": 5.1513, "count": 2030, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 0.4592862073, - "count": 44693, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.6504628609700001, + "count": 26410, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Irecv", - "ttot": 0.018095764439999995, - "count": 44693, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.013931938000000001, + "count": 26410, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Reduce", - "ttot": 0.00001812, + "ttot": 0.000031948, "count": 1, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Isend", - "ttot": 0.15675609000000001, - "count": 38600, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.11778433999999999, + "count": 28441, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Comm_size", - "ttot": 0, + "ttot": 9.5367e-7, "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0050561, + "ttot": 0.0056617, "count": 18284, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Barrier", - "ttot": 0.042909, + "ttot": 0.032335, "count": 1, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, @@ -2145,327 +2229,327 @@ "call": "MPI_Waitall", "ttot": 0.32330440000000005, "count": 6094, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allreduce", "ttot": 8.5974, "count": 2030, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", "ttot": 0.52261866947, "count": 38600, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Irecv", "ttot": 0.018322233670000004, "count": 38600, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Reduce", "ttot": 0.000021935, "count": 1, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Isend", "ttot": 0.16712366599999998, "count": 44693, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Comm_size", "ttot": 9.5367e-7, "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", "ttot": 0.0052011, "count": 18284, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Barrier", "ttot": 0.038478, "count": 1, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "24", - "ttot": 9.401756394870002, + "nr": "20", + "ttot": 14.651557119440003, "mpiCalls": [ { "call": "MPI_Waitall", - "ttot": 0.11820939999999999, + "ttot": 0.1380985, "count": 6094, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allreduce", - "ttot": 8.7118, + "ttot": 13.619, "count": 2030, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 0.3942060994, - "count": 22348, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.70404814577, + "count": 24379, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Irecv", - "ttot": 0.0129900531, - "count": 22348, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.012825113669999999, + "count": 24379, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Reduce", - "ttot": 0.000034094, + "ttot": 0.0050871, "count": 1, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Isend", - "ttot": 0.1283033947, - "count": 32503, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.12620386000000003, + "count": 30472, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Comm_size", - "ttot": 9.5367e-7, + "ttot": 0, "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0049894, + "ttot": 0.0048954, "count": 18284, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Barrier", - "ttot": 0.031223, + "ttot": 0.041399, "count": 1, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "6", - "ttot": 8.003854788369994, + "nr": "21", + "ttot": 13.854509146899996, "mpiCalls": [ { "call": "MPI_Waitall", - "ttot": 0.13815739999999999, + "ttot": 0.1720324, "count": 6094, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allreduce", - "ttot": 6.9678, + "ttot": 12.488, "count": 2030, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 0.7287278846699999, - "count": 30472, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.9786605073000001, + "count": 36569, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Irecv", - "ttot": 0.013821218, - "count": 30472, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.0166321895, + "count": 36569, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Reduce", - "ttot": 0.000030041, + "ttot": 0.000016928, "count": 1, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Isend", - "ttot": 0.11598084469999999, - "count": 24379, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.16189553000000004, + "count": 46724, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Comm_size", - "ttot": 0, + "ttot": 0.0000011921, "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0053544, + "ttot": 0.0048914, "count": 18284, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Barrier", - "ttot": 0.033983, + "ttot": 0.032379, "count": 1, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "15", - "ttot": 6.550368703509996, + "nr": "22", + "ttot": 4.479264336080002, "mpiCalls": [ { "call": "MPI_Waitall", - "ttot": 0.1714841, + "ttot": 0.3439561, "count": 6094, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allreduce", - "ttot": 5.4057, + "ttot": 3.6309, "count": 2030, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 0.7384874530700001, - "count": 40631, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.21757257210000003, + "count": 52823, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Irecv", - "ttot": 0.017837041769999992, - "count": 40631, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.02205851611, + "count": 52823, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Reduce", - "ttot": 0.000018835, + "ttot": 0.000035048, "count": 1, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Isend", - "ttot": 0.16525572000000002, - "count": 42662, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.2343309462, + "count": 71102, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Comm_size", "ttot": 9.5367e-7, "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0048356, + "ttot": 0.0052032, "count": 18284, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Barrier", - "ttot": 0.046749, + "ttot": 0.025207, "count": 1, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, @@ -2477,467 +2561,3056 @@ "call": "MPI_Waitall", "ttot": 0.18390450000000003, "count": 6094, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allreduce", "ttot": 5.6426, "count": 2030, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", "ttot": 0.42953785677, "count": 34538, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Irecv", "ttot": 0.01647158707, "count": 34538, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Reduce", "ttot": 0.000021935, "count": 1, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Isend", "ttot": 0.157760562, "count": 48755, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Comm_size", "ttot": 9.5367e-7, "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", "ttot": 0.0056469, "count": 18284, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Barrier", "ttot": 0.036649, "count": 1, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "18", - "ttot": 6.095587840640001, + "nr": "24", + "ttot": 9.401756394870002, "mpiCalls": [ { "call": "MPI_Waitall", - "ttot": 0.1240791, + "ttot": 0.11820939999999999, "count": 6094, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allreduce", - "ttot": 5.1513, + "ttot": 8.7118, "count": 2030, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 0.6504628609700001, - "count": 26410, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.3942060994, + "count": 22348, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Irecv", - "ttot": 0.013931938000000001, - "count": 26410, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.0129900531, + "count": 22348, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Reduce", - "ttot": 0.000031948, + "ttot": 0.000034094, "count": 1, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Isend", - "ttot": 0.11778433999999999, - "count": 28441, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.1283033947, + "count": 32503, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Comm_size", "ttot": 9.5367e-7, "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0056617, + "ttot": 0.0049894, "count": 18284, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Barrier", - "ttot": 0.032335, + "ttot": 0.031223, "count": 1, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "22", - "ttot": 4.479264336080002, + "nr": "25", + "ttot": 14.589639873800001, "mpiCalls": [ { "call": "MPI_Waitall", - "ttot": 0.3439561, + "ttot": 0.2777645, "count": 6094, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allreduce", - "ttot": 3.6309, + "ttot": 13.418, "count": 2030, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 0.21757257210000003, - "count": 52823, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.6691787373, + "count": 32507, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Irecv", - "ttot": 0.02205851611, - "count": 52823, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.015859851600000002, + "count": 32507, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Reduce", - "ttot": 0.000035048, + "ttot": 0.000021935, "count": 1, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Isend", - "ttot": 0.2343309462, - "count": 71102, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.17615774989999997, + "count": 50786, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Comm_size", - "ttot": 9.5367e-7, + "ttot": 0, "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0052032, + "ttot": 0.0055311, "count": 18284, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Barrier", - "ttot": 0.025207, + "ttot": 0.027126, "count": 1, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "1", - "ttot": 4.0616447230400015, + "nr": "26", + "ttot": 15.248368869470005, "mpiCalls": [ { "call": "MPI_Waitall", - "ttot": 0.1458505, + "ttot": 0.19420700000000002, "count": 6094, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" }, { "call": "MPI_Allreduce", - "ttot": 2.9826, + "ttot": 14.273, "count": 2030, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 0.7342081994, - "count": 50786, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.5808134458, + "count": 20317, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Irecv", - "ttot": 0.018561431640000004, - "count": 50786, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.011084796999999997, + "count": 20317, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Reduce", - "ttot": 0.000019073, + "ttot": 0.000022173, "count": 1, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" }, { "call": "MPI_Isend", - "ttot": 0.14044211899999998, - "count": 32507, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.1363126, + "count": 34534, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Comm_size", - "ttot": 0, + "ttot": 9.5367e-7, "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0055344, + "ttot": 0.0047829, "count": 18284, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Barrier", - "ttot": 0.034429, + "ttot": 0.048145, + "count": 1, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + } + ], + "mpiCallsByTaskSorted": [ + { + "nr": "26", + "ttot": 15.248368869470005, + "mpiCalls": [ + { + "call": "MPI_Waitall", + "ttot": 0.19420700000000002, + "count": 6094, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allreduce", + "ttot": 14.273, + "count": 2030, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.5808134458, + "count": 20317, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.011084796999999997, + "count": 20317, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.000022173, + "count": 1, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Isend", + "ttot": 0.1363126, + "count": 34534, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Comm_size", + "ttot": 9.5367e-7, + "count": 1, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0047829, + "count": 18284, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.048145, + "count": 1, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "20", + "ttot": 14.651557119440003, + "mpiCalls": [ + { + "call": "MPI_Waitall", + "ttot": 0.1380985, + "count": 6094, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allreduce", + "ttot": 13.619, + "count": 2030, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.70404814577, + "count": 24379, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.012825113669999999, + "count": 24379, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.0050871, + "count": 1, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Isend", + "ttot": 0.12620386000000003, + "count": 30472, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0, + "count": 1, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0048954, + "count": 18284, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.041399, + "count": 1, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "25", + "ttot": 14.589639873800001, + "mpiCalls": [ + { + "call": "MPI_Waitall", + "ttot": 0.2777645, + "count": 6094, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allreduce", + "ttot": 13.418, + "count": 2030, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.6691787373, + "count": 32507, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.015859851600000002, + "count": 32507, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.000021935, "count": 1, "color": "rgb(204, 37, 41)", "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Isend", + "ttot": 0.17615774989999997, + "count": 50786, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0, + "count": 1, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0055311, + "count": 18284, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.027126, + "count": 1, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "0", - "ttot": 1.4364204645699998, - "mpiCalls": [ - { - "call": "MPI_Waitall", - "ttot": 0.0553158, - "count": 6094, - "color": "rgb(146, 36, 40)", - "hoverColor": "rgb(166, 56, 60)" - }, - { - "call": "MPI_Allreduce", - "ttot": 0.38566, - "count": 2030, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, - { - "call": "MPI_Wait", - "ttot": 0.8082842458, - "count": 34534, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" - }, - { - "call": "MPI_Irecv", - "ttot": 0.016241841, - "count": 34534, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, - { - "call": "MPI_Reduce", - "ttot": 0.00010991, - "count": 1, - "color": "rgb(148, 139, 61)", - "hoverColor": "rgb(168, 159, 81)" - }, - { - "call": "MPI_Isend", - "ttot": 0.0899129141, - "count": 20317, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, - { - "call": "MPI_Comm_size", - "ttot": 9.5367e-7, - "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" - }, - { - "call": "MPI_Comm_rank", - "ttot": 0.0058928, - "count": 18284, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" - }, - { - "call": "MPI_Finalize", - "ttot": 0, - "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" - }, - { - "call": "MPI_Init", - "ttot": 0, - "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" - }, - { - "call": "MPI_Barrier", - "ttot": 0.075002, - "count": 1, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" - } + "nr": "5", + "ttot": 14.566805833570003, + "mpiCalls": [ + { + "call": "MPI_Waitall", + "ttot": 0.20776160000000002, + "count": 6094, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allreduce", + "ttot": 13.42, + "count": 2030, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.69816525367, + "count": 46724, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.018148651099999996, + "count": 46724, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.000022173, + "count": 1, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Isend", + "ttot": 0.15484475579999996, + "count": 36569, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0, + "count": 1, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0060434, + "count": 18284, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.06182, + "count": 1, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "3", + "ttot": 14.506121961010008, + "mpiCalls": [ + { + "call": "MPI_Waitall", + "ttot": 0.1478391, + "count": 6094, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allreduce", + "ttot": 13.559, + "count": 2030, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.59926209947, + "count": 48755, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.017960159140000004, + "count": 48755, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.000019073, + "count": 1, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Isend", + "ttot": 0.1456771294, + "count": 34538, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0, + "count": 1, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0059254, + "count": 18284, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.030439, + "count": 1, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "7", + "ttot": 13.97558603188, + "mpiCalls": [ + { + "call": "MPI_Waitall", + "ttot": 0.23284760000000002, + "count": 6094, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allreduce", + "ttot": 12.978, + "count": 2030, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.55170046367, + "count": 44693, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.01727725374, + "count": 44693, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.000019073, + "count": 1, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Isend", + "ttot": 0.15132298779999998, + "count": 38600, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Comm_size", + "ttot": 9.5367e-7, + "count": 1, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0060847, + "count": 18284, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.038333, + "count": 1, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "16", + "ttot": 13.930543915869997, + "mpiCalls": [ + { + "call": "MPI_Waitall", + "ttot": 0.39668480000000006, + "count": 6094, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allreduce", + "ttot": 12.994, + "count": 2030, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.24598427209999996, + "count": 58916, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.0244853001, + "count": 58916, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.0047328, + "count": 1, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Isend", + "ttot": 0.22835358999999997, + "count": 65009, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Comm_size", + "ttot": 9.5367e-7, + "count": 1, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0059152, + "count": 18284, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.030387, + "count": 1, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "21", + "ttot": 13.854509146899996, + "mpiCalls": [ + { + "call": "MPI_Waitall", + "ttot": 0.1720324, + "count": 6094, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allreduce", + "ttot": 12.488, + "count": 2030, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.9786605073000001, + "count": 36569, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.0166321895, + "count": 36569, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.000016928, + "count": 1, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Isend", + "ttot": 0.16189553000000004, + "count": 46724, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.0000011921, + "count": 1, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0048914, + "count": 18284, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.032379, + "count": 1, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "17", + "ttot": 13.76494887497, + "mpiCalls": [ + { + "call": "MPI_Waitall", + "ttot": 0.2918866, + "count": 6094, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allreduce", + "ttot": 12.575, + "count": 2030, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.68650358097, + "count": 38600, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.016581813000000004, + "count": 38600, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.000020027, + "count": 1, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Isend", + "ttot": 0.154183154, + "count": 44693, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0, + "count": 1, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0052137, + "count": 18284, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.03556, + "count": 1, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "10", + "ttot": 13.743369351639984, + "mpiCalls": [ + { + "call": "MPI_Waitall", + "ttot": 0.0923387, + "count": 6094, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allreduce", + "ttot": 13.001, + "count": 2030, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.35866709577, + "count": 65009, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.026106793769999997, + "count": 65009, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.001425, + "count": 1, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Isend", + "ttot": 0.22567646999999996, + "count": 58916, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.0000011921, + "count": 1, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0059121, + "count": 18284, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.032242, + "count": 1, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "8", + "ttot": 13.582856834969991, + "mpiCalls": [ + { + "call": "MPI_Waitall", + "ttot": 0.1426792, + "count": 6094, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allreduce", + "ttot": 12.523, + "count": 2030, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.7275386073, + "count": 28441, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.015183974000000001, + "count": 28441, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.0038509, + "count": 1, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Isend", + "ttot": 0.1266101, + "count": 26410, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Comm_size", + "ttot": 9.5367e-7, + "count": 1, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0056751, + "count": 18284, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.038318, + "count": 1, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "4", + "ttot": 12.827758125239997, + "mpiCalls": [ + { + "call": "MPI_Waitall", + "ttot": 0.0943791, + "count": 6094, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allreduce", + "ttot": 12.017, + "count": 2030, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.44065684577, + "count": 71102, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.026524237999999995, + "count": 71102, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.0026488, + "count": 1, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Isend", + "ttot": 0.20854108779999997, + "count": 52823, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Comm_size", + "ttot": 9.5367e-7, + "count": 1, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0058131, + "count": 18284, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.032194, + "count": 1, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "13", + "ttot": 12.801131362979998, + "mpiCalls": [ + { + "call": "MPI_Waitall", + "ttot": 0.08677750000000001, + "count": 6094, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allreduce", + "ttot": 12.063, + "count": 2030, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.2753144825, + "count": 91421, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.03420660048, + "count": 91421, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.000019073, + "count": 1, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Isend", + "ttot": 0.30729010699999987, + "count": 91421, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0, + "count": 1, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0052066, + "count": 18284, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.029317, + "count": 1, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "14", + "ttot": 12.720632034969995, + "mpiCalls": [ + { + "call": "MPI_Waitall", + "ttot": 0.3688821, + "count": 6094, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allreduce", + "ttot": 11.839, + "count": 2030, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.2272622273, + "count": 60947, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.026083454000000006, + "count": 60947, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.0034211, + "count": 1, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Isend", + "ttot": 0.22474620000000003, + "count": 62978, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Comm_size", + "ttot": 9.5367e-7, + "count": 1, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.005893, + "count": 18284, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.025343, + "count": 1, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "2", + "ttot": 12.372680046100005, + "mpiCalls": [ + { + "call": "MPI_Waitall", + "ttot": 0.137652, + "count": 6094, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allreduce", + "ttot": 11.534, + "count": 2030, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.5343808530999999, + "count": 32503, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.016288331, + "count": 32503, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.000030041, + "count": 1, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Isend", + "ttot": 0.112812321, + "count": 22348, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0, + "count": 1, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0051675, + "count": 18284, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.032349, + "count": 1, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "11", + "ttot": 12.151699387739997, + "mpiCalls": [ + { + "call": "MPI_Waitall", + "ttot": 0.3067682, + "count": 6094, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allreduce", + "ttot": 10.953, + "count": 2030, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.6647474379, + "count": 42662, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.01820713417, + "count": 42662, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.000021935, + "count": 1, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Isend", + "ttot": 0.16481972699999997, + "count": 40631, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Comm_size", + "ttot": 9.5367e-7, + "count": 1, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.005584, + "count": 18284, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.03855, + "count": 1, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "12", + "ttot": 11.49715666983999, + "mpiCalls": [ + { + "call": "MPI_Waitall", + "ttot": 0.0683926, + "count": 6094, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allreduce", + "ttot": 10.556, + "count": 2030, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.5396142605, + "count": 62978, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.02526406934, + "count": 62978, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.003062, + "count": 1, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Isend", + "ttot": 0.2295658399999999, + "count": 60947, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0, + "count": 1, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0056839, + "count": 18284, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.069574, + "count": 1, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "9", + "ttot": 10.706795281740003, + "mpiCalls": [ + { + "call": "MPI_Waitall", + "ttot": 0.138274, + "count": 6094, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allreduce", + "ttot": 9.8864, + "count": 2030, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.4592862073, + "count": 44693, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.018095764439999995, + "count": 44693, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.00001812, + "count": 1, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Isend", + "ttot": 0.15675609000000001, + "count": 38600, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0, + "count": 1, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0050561, + "count": 18284, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.042909, + "count": 1, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "19", + "ttot": 9.672470957809994, + "mpiCalls": [ + { + "call": "MPI_Waitall", + "ttot": 0.32330440000000005, + "count": 6094, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allreduce", + "ttot": 8.5974, + "count": 2030, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.52261866947, + "count": 38600, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.018322233670000004, + "count": 38600, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.000021935, + "count": 1, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Isend", + "ttot": 0.16712366599999998, + "count": 44693, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Comm_size", + "ttot": 9.5367e-7, + "count": 1, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0052011, + "count": 18284, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.038478, + "count": 1, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "24", + "ttot": 9.401756394870002, + "mpiCalls": [ + { + "call": "MPI_Waitall", + "ttot": 0.11820939999999999, + "count": 6094, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allreduce", + "ttot": 8.7118, + "count": 2030, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.3942060994, + "count": 22348, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.0129900531, + "count": 22348, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.000034094, + "count": 1, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Isend", + "ttot": 0.1283033947, + "count": 32503, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Comm_size", + "ttot": 9.5367e-7, + "count": 1, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0049894, + "count": 18284, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.031223, + "count": 1, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "6", + "ttot": 8.003854788369994, + "mpiCalls": [ + { + "call": "MPI_Waitall", + "ttot": 0.13815739999999999, + "count": 6094, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allreduce", + "ttot": 6.9678, + "count": 2030, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.7287278846699999, + "count": 30472, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.013821218, + "count": 30472, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.000030041, + "count": 1, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Isend", + "ttot": 0.11598084469999999, + "count": 24379, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0, + "count": 1, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0053544, + "count": 18284, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.033983, + "count": 1, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "15", + "ttot": 6.550368703509996, + "mpiCalls": [ + { + "call": "MPI_Waitall", + "ttot": 0.1714841, + "count": 6094, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allreduce", + "ttot": 5.4057, + "count": 2030, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.7384874530700001, + "count": 40631, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.017837041769999992, + "count": 40631, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.000018835, + "count": 1, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Isend", + "ttot": 0.16525572000000002, + "count": 42662, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Comm_size", + "ttot": 9.5367e-7, + "count": 1, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0048356, + "count": 18284, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.046749, + "count": 1, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "23", + "ttot": 6.472593294509999, + "mpiCalls": [ + { + "call": "MPI_Waitall", + "ttot": 0.18390450000000003, + "count": 6094, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allreduce", + "ttot": 5.6426, + "count": 2030, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.42953785677, + "count": 34538, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.01647158707, + "count": 34538, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.000021935, + "count": 1, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Isend", + "ttot": 0.157760562, + "count": 48755, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Comm_size", + "ttot": 9.5367e-7, + "count": 1, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0056469, + "count": 18284, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.036649, + "count": 1, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "18", + "ttot": 6.095587840640001, + "mpiCalls": [ + { + "call": "MPI_Waitall", + "ttot": 0.1240791, + "count": 6094, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allreduce", + "ttot": 5.1513, + "count": 2030, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.6504628609700001, + "count": 26410, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.013931938000000001, + "count": 26410, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.000031948, + "count": 1, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Isend", + "ttot": 0.11778433999999999, + "count": 28441, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Comm_size", + "ttot": 9.5367e-7, + "count": 1, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0056617, + "count": 18284, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.032335, + "count": 1, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "22", + "ttot": 4.479264336080002, + "mpiCalls": [ + { + "call": "MPI_Waitall", + "ttot": 0.3439561, + "count": 6094, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allreduce", + "ttot": 3.6309, + "count": 2030, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.21757257210000003, + "count": 52823, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.02205851611, + "count": 52823, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.000035048, + "count": 1, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Isend", + "ttot": 0.2343309462, + "count": 71102, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Comm_size", + "ttot": 9.5367e-7, + "count": 1, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0052032, + "count": 18284, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.025207, + "count": 1, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "1", + "ttot": 4.0616447230400015, + "mpiCalls": [ + { + "call": "MPI_Waitall", + "ttot": 0.1458505, + "count": 6094, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.9826, + "count": 2030, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.7342081994, + "count": 50786, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.018561431640000004, + "count": 50786, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.000019073, + "count": 1, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Isend", + "ttot": 0.14044211899999998, + "count": 32507, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0, + "count": 1, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0055344, + "count": 18284, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.034429, + "count": 1, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "0", + "ttot": 1.4364204645699998, + "mpiCalls": [ + { + "call": "MPI_Waitall", + "ttot": 0.0553158, + "count": 6094, + "color": "rgb(218, 124, 48)", + "hoverColor": "rgb(238, 144, 68)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.38566, + "count": 2030, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.8082842458, + "count": 34534, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.016241841, + "count": 34534, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Reduce", + "ttot": 0.00010991, + "count": 1, + "color": "rgb(204, 37, 41)", + "hoverColor": "rgb(224, 57, 61)" + }, + { + "call": "MPI_Isend", + "ttot": 0.0899129141, + "count": 20317, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Comm_size", + "ttot": 9.5367e-7, + "count": 1, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0058928, + "count": 18284, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.075002, + "count": 1, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + } + ] + }, + "mpiPies": { + "mpiPercent": { + "datasets": [ + { + "data": ["91.10", "5.09", "1.71", "1.51", "0.58"], + "backgroundColor": [ + "rgb(128, 133, 133)", + "rgb(211, 94, 96)", + "rgb(218, 124, 48)", + "rgb(144, 103, 167)", + "rgb(144, 103, 167)" + ], + "hoverBackgroundColor": [ + "rgb(148, 153, 153)", + "rgb(231, 114, 116)", + "rgb(238, 144, 68)", + "rgb(164, 123, 187)", + "rgb(164, 123, 187)" + ] + } + ], + "labels": [ + "MPI_Allreduce", + "MPI_Wait", + "MPI_Waitall", + "MPI_Isend", + "others" + ] + }, + "mpiWall": { + "datasets": [ + { + "data": ["20.55", "1.15", "0.86", "77.44"], + "backgroundColor": [ + "rgb(128, 133, 133)", + "rgb(211, 94, 96)", + "rgb(144, 103, 167)", + "rgb(171, 104, 87)" + ], + "hoverBackgroundColor": [ + "rgb(148, 153, 153)", + "rgb(231, 114, 116)", + "rgb(164, 123, 187)", + "rgb(191, 124, 107)" + ] + } + ], + "labels": ["MPI_Allreduce", "MPI_Wait", "others", "Apllication"] + } + }, + "hpmData": [], + "balanceData": { + "labels": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15", + "16", + "17", + "18", + "19", + "20", + "21", + "22", + "23", + "24", + "25", + "26" + ], + "datasets": [ + { + "label": "MPI_Waitall", + "fill": false, + "backgroundColor": "rgb(218, 124, 48)", + "borderColor": "rgb(218, 124, 48)", + "pointHoverBackgroundColor": "rgb(238, 144, 68)", + "data": [ + 0.0553158, + 0.1458505, + 0.137652, + 0.1478391, + 0.0943791, + 0.20776160000000002, + 0.13815739999999999, + 0.23284760000000002, + 0.1426792, + 0.138274, + 0.0923387, + 0.3067682, + 0.0683926, + 0.08677750000000001, + 0.3688821, + 0.1714841, + 0.39668480000000006, + 0.2918866, + 0.1240791, + 0.32330440000000005, + 0.1380985, + 0.1720324, + 0.3439561, + 0.18390450000000003, + 0.11820939999999999, + 0.2777645, + 0.19420700000000002 + ] + }, + { + "label": "MPI_Allreduce", + "fill": false, + "backgroundColor": "rgb(128, 133, 133)", + "borderColor": "rgb(128, 133, 133)", + "pointHoverBackgroundColor": "rgb(148, 153, 153)", + "data": [ + 0.38566, + 2.9826, + 11.534, + 13.559, + 12.017, + 13.42, + 6.9678, + 12.978, + 12.523, + 9.8864, + 13.001, + 10.953, + 10.556, + 12.063, + 11.839, + 5.4057, + 12.994, + 12.575, + 5.1513, + 8.5974, + 13.619, + 12.488, + 3.6309, + 5.6426, + 8.7118, + 13.418, + 14.273 + ] + }, + { + "label": "MPI_Wait", + "fill": false, + "backgroundColor": "rgb(211, 94, 96)", + "borderColor": "rgb(211, 94, 96)", + "pointHoverBackgroundColor": "rgb(231, 114, 116)", + "data": [ + 0.8082842458, + 0.7342081994, + 0.5343808530999999, + 0.59926209947, + 0.44065684577, + 0.69816525367, + 0.7287278846699999, + 0.55170046367, + 0.7275386073, + 0.4592862073, + 0.35866709577, + 0.6647474379, + 0.5396142605, + 0.2753144825, + 0.2272622273, + 0.7384874530700001, + 0.24598427209999996, + 0.68650358097, + 0.6504628609700001, + 0.52261866947, + 0.70404814577, + 0.9786605073000001, + 0.21757257210000003, + 0.42953785677, + 0.3942060994, + 0.6691787373, + 0.5808134458 + ] + }, + { + "label": "MPI_Irecv", + "fill": false, + "backgroundColor": "rgb(128, 133, 133)", + "borderColor": "rgb(128, 133, 133)", + "pointHoverBackgroundColor": "rgb(148, 153, 153)", + "data": [ + 0.016241841, + 0.018561431640000004, + 0.016288331, + 0.017960159140000004, + 0.026524237999999995, + 0.018148651099999996, + 0.013821218, + 0.01727725374, + 0.015183974000000001, + 0.018095764439999995, + 0.026106793769999997, + 0.01820713417, + 0.02526406934, + 0.03420660048, + 0.026083454000000006, + 0.017837041769999992, + 0.0244853001, + 0.016581813000000004, + 0.013931938000000001, + 0.018322233670000004, + 0.012825113669999999, + 0.0166321895, + 0.02205851611, + 0.01647158707, + 0.0129900531, + 0.015859851600000002, + 0.011084796999999997 + ] + }, + { + "label": "MPI_Reduce", + "fill": false, + "backgroundColor": "rgb(204, 37, 41)", + "borderColor": "rgb(204, 37, 41)", + "pointHoverBackgroundColor": "rgb(224, 57, 61)", + "data": [ + 0.00010991, + 0.000019073, + 0.000030041, + 0.000019073, + 0.0026488, + 0.000022173, + 0.000030041, + 0.000019073, + 0.0038509, + 0.00001812, + 0.001425, + 0.000021935, + 0.003062, + 0.000019073, + 0.0034211, + 0.000018835, + 0.0047328, + 0.000020027, + 0.000031948, + 0.000021935, + 0.0050871, + 0.000016928, + 0.000035048, + 0.000021935, + 0.000034094, + 0.000021935, + 0.000022173 + ] + }, + { + "label": "MPI_Isend", + "fill": false, + "backgroundColor": "rgb(144, 103, 167)", + "borderColor": "rgb(144, 103, 167)", + "pointHoverBackgroundColor": "rgb(164, 123, 187)", + "data": [ + 0.0899129141, + 0.14044211899999998, + 0.112812321, + 0.1456771294, + 0.20854108779999997, + 0.15484475579999996, + 0.11598084469999999, + 0.15132298779999998, + 0.1266101, + 0.15675609000000001, + 0.22567646999999996, + 0.16481972699999997, + 0.2295658399999999, + 0.30729010699999987, + 0.22474620000000003, + 0.16525572000000002, + 0.22835358999999997, + 0.154183154, + 0.11778433999999999, + 0.16712366599999998, + 0.12620386000000003, + 0.16189553000000004, + 0.2343309462, + 0.157760562, + 0.1283033947, + 0.17615774989999997, + 0.1363126 + ] + }, + { + "label": "MPI_Comm_size", + "fill": false, + "backgroundColor": "rgb(83, 81, 84)", + "borderColor": "rgb(83, 81, 84)", + "pointHoverBackgroundColor": "rgb(103, 101, 104)", + "data": [ + 9.5367e-7, + 0, + 0, + 0, + 9.5367e-7, + 0, + 0, + 9.5367e-7, + 9.5367e-7, + 0, + 0.0000011921, + 9.5367e-7, + 0, + 0, + 9.5367e-7, + 9.5367e-7, + 9.5367e-7, + 0, + 9.5367e-7, + 9.5367e-7, + 0, + 0.0000011921, + 9.5367e-7, + 9.5367e-7, + 9.5367e-7, + 0, + 9.5367e-7 + ] + }, + { + "label": "MPI_Comm_rank", + "fill": false, + "backgroundColor": "rgb(107, 76, 154)", + "borderColor": "rgb(107, 76, 154)", + "pointHoverBackgroundColor": "rgb(127, 96, 174)", + "data": [ + 0.0058928, + 0.0055344, + 0.0051675, + 0.0059254, + 0.0058131, + 0.0060434, + 0.0053544, + 0.0060847, + 0.0056751, + 0.0050561, + 0.0059121, + 0.005584, + 0.0056839, + 0.0052066, + 0.005893, + 0.0048356, + 0.0059152, + 0.0052137, + 0.0056617, + 0.0052011, + 0.0048954, + 0.0048914, + 0.0052032, + 0.0056469, + 0.0049894, + 0.0055311, + 0.0047829 + ] + }, + { + "label": "MPI_Finalize", + "fill": false, + "backgroundColor": "rgb(146, 36, 40)", + "borderColor": "rgb(146, 36, 40)", + "pointHoverBackgroundColor": "rgb(166, 56, 60)", + "data": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + { + "label": "MPI_Init", + "fill": false, + "backgroundColor": "rgb(114, 147, 203)", + "borderColor": "rgb(114, 147, 203)", + "pointHoverBackgroundColor": "rgb(134, 167, 223)", + "data": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + { + "label": "MPI_Barrier", + "fill": false, + "backgroundColor": "rgb(148, 139, 61)", + "borderColor": "rgb(148, 139, 61)", + "pointHoverBackgroundColor": "rgb(168, 159, 81)", + "data": [ + 0.075002, + 0.034429, + 0.032349, + 0.030439, + 0.032194, + 0.06182, + 0.033983, + 0.038333, + 0.038318, + 0.042909, + 0.032242, + 0.03855, + 0.069574, + 0.029317, + 0.025343, + 0.046749, + 0.030387, + 0.03556, + 0.032335, + 0.038478, + 0.041399, + 0.032379, + 0.025207, + 0.036649, + 0.031223, + 0.027126, + 0.048145 ] } ] }, - "mpiPies": { - "mpiPercent": { - "datasets": [ - { - "data": ["91.10", "5.09", "1.71", "1.51", "0.58"], - "backgroundColor": [ - "rgb(211, 94, 96)", - "rgb(128, 133, 133)", - "rgb(146, 36, 40)", - "rgb(114, 147, 203)", - "rgb(83, 81, 84)" - ], - "hoverBackgroundColor": [ - "rgb(231, 114, 116)", - "rgb(148, 153, 153)", - "rgb(166, 56, 60)", - "rgb(134, 167, 223)", - "rgb(103, 101, 104)" - ] - } - ], - "labels": [ - "MPI_Allreduce", - "MPI_Wait", - "MPI_Waitall", - "MPI_Isend", - "others" - ] - }, - "mpiWall": { - "datasets": [ - { - "data": ["20.55", "1.15", "0.86", "77.44"], - "backgroundColor": [ - "rgb(211, 94, 96)", - "rgb(128, 133, 133)", - "rgb(83, 81, 84)", - "rgb(107, 76, 154)" - ], - "hoverBackgroundColor": [ - "rgb(231, 114, 116)", - "rgb(148, 153, 153)", - "rgb(103, 101, 104)", - "rgb(127, 96, 174)" - ] - } - ], - "labels": ["MPI_Allreduce", "MPI_Wait", "others", "Apllication"] - } - }, - "hpmData": [], - "balanceData": { + "balanceDataSorted": { "labels": [ "26", "20", @@ -2971,9 +5644,9 @@ { "label": "MPI_Waitall", "fill": false, - "backgroundColor": "rgb(146, 36, 40)", - "borderColor": "rgb(146, 36, 40)", - "pointHoverBackgroundColor": "rgb(166, 56, 60)", + "backgroundColor": "rgb(218, 124, 48)", + "borderColor": "rgb(218, 124, 48)", + "pointHoverBackgroundColor": "rgb(238, 144, 68)", "data": [ 0.19420700000000002, 0.1380985, @@ -3007,9 +5680,9 @@ { "label": "MPI_Allreduce", "fill": false, - "backgroundColor": "rgb(211, 94, 96)", - "borderColor": "rgb(211, 94, 96)", - "pointHoverBackgroundColor": "rgb(231, 114, 116)", + "backgroundColor": "rgb(128, 133, 133)", + "borderColor": "rgb(128, 133, 133)", + "pointHoverBackgroundColor": "rgb(148, 153, 153)", "data": [ 14.273, 13.619, @@ -3043,9 +5716,9 @@ { "label": "MPI_Wait", "fill": false, - "backgroundColor": "rgb(128, 133, 133)", - "borderColor": "rgb(128, 133, 133)", - "pointHoverBackgroundColor": "rgb(148, 153, 153)", + "backgroundColor": "rgb(211, 94, 96)", + "borderColor": "rgb(211, 94, 96)", + "pointHoverBackgroundColor": "rgb(231, 114, 116)", "data": [ 0.5808134458, 0.70404814577, @@ -3079,9 +5752,9 @@ { "label": "MPI_Irecv", "fill": false, - "backgroundColor": "rgb(114, 147, 203)", - "borderColor": "rgb(114, 147, 203)", - "pointHoverBackgroundColor": "rgb(134, 167, 223)", + "backgroundColor": "rgb(128, 133, 133)", + "borderColor": "rgb(128, 133, 133)", + "pointHoverBackgroundColor": "rgb(148, 153, 153)", "data": [ 0.011084796999999997, 0.012825113669999999, @@ -3115,9 +5788,9 @@ { "label": "MPI_Reduce", "fill": false, - "backgroundColor": "rgb(148, 139, 61)", - "borderColor": "rgb(148, 139, 61)", - "pointHoverBackgroundColor": "rgb(168, 159, 81)", + "backgroundColor": "rgb(204, 37, 41)", + "borderColor": "rgb(204, 37, 41)", + "pointHoverBackgroundColor": "rgb(224, 57, 61)", "data": [ 0.000022173, 0.0050871, @@ -3151,9 +5824,9 @@ { "label": "MPI_Isend", "fill": false, - "backgroundColor": "rgb(114, 147, 203)", - "borderColor": "rgb(114, 147, 203)", - "pointHoverBackgroundColor": "rgb(134, 167, 223)", + "backgroundColor": "rgb(144, 103, 167)", + "borderColor": "rgb(144, 103, 167)", + "pointHoverBackgroundColor": "rgb(164, 123, 187)", "data": [ 0.1363126, 0.12620386000000003, @@ -3187,9 +5860,9 @@ { "label": "MPI_Comm_size", "fill": false, - "backgroundColor": "rgb(144, 103, 167)", - "borderColor": "rgb(144, 103, 167)", - "pointHoverBackgroundColor": "rgb(164, 123, 187)", + "backgroundColor": "rgb(83, 81, 84)", + "borderColor": "rgb(83, 81, 84)", + "pointHoverBackgroundColor": "rgb(103, 101, 104)", "data": [ 9.5367e-7, 0, @@ -3223,9 +5896,9 @@ { "label": "MPI_Comm_rank", "fill": false, - "backgroundColor": "rgb(171, 104, 87)", - "borderColor": "rgb(171, 104, 87)", - "pointHoverBackgroundColor": "rgb(191, 124, 107)", + "backgroundColor": "rgb(107, 76, 154)", + "borderColor": "rgb(107, 76, 154)", + "pointHoverBackgroundColor": "rgb(127, 96, 174)", "data": [ 0.0047829, 0.0048954, @@ -3259,9 +5932,9 @@ { "label": "MPI_Finalize", "fill": false, - "backgroundColor": "rgb(204, 194, 16)", - "borderColor": "rgb(204, 194, 16)", - "pointHoverBackgroundColor": "rgb(224, 214, 36)", + "backgroundColor": "rgb(146, 36, 40)", + "borderColor": "rgb(146, 36, 40)", + "pointHoverBackgroundColor": "rgb(166, 56, 60)", "data": [ 0, 0, @@ -3295,9 +5968,9 @@ { "label": "MPI_Init", "fill": false, - "backgroundColor": "rgb(57, 106, 177)", - "borderColor": "rgb(57, 106, 177)", - "pointHoverBackgroundColor": "rgb(77, 126, 197)", + "backgroundColor": "rgb(114, 147, 203)", + "borderColor": "rgb(114, 147, 203)", + "pointHoverBackgroundColor": "rgb(134, 167, 223)", "data": [ 0, 0, @@ -3331,9 +6004,9 @@ { "label": "MPI_Barrier", "fill": false, - "backgroundColor": "rgb(204, 37, 41)", - "borderColor": "rgb(204, 37, 41)", - "pointHoverBackgroundColor": "rgb(224, 57, 61)", + "backgroundColor": "rgb(148, 139, 61)", + "borderColor": "rgb(148, 139, 61)", + "pointHoverBackgroundColor": "rgb(168, 159, 81)", "data": [ 0.048145, 0.041399, diff --git a/ipm_raw/hunold.1494937738.200810.ipm.json b/ipm_raw/hunold.1494937738.200810.ipm.json index 066dbe4..2583c04 100644 --- a/ipm_raw/hunold.1494937738.200810.ipm.json +++ b/ipm_raw/hunold.1494937738.200810.ipm.json @@ -6,7 +6,8 @@ "walltime": "6.002419", "ntasks": 64, "nhosts": 4, - "totalWallTime": 384.154816 + "totalWallTime": 384.154816, + "cmdline": "/home/hunold/tmp/lammps-17Nov16/examples/comb/../../src/lmp_mpi -in in.comb3 " }, "hosts": [ { @@ -1054,85 +1055,85 @@ "call": "MPI_Wait", "ttot": 55.33578999999998, "count": 1780800, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Allreduce", "ttot": 54.78838889600002, "count": 157504, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Send", "ttot": 52.12660896731022, "count": 1780800, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Bcast", "ttot": 7.133554184029973, "count": 156480, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Sendrecv", "ttot": 2.103714282099998, "count": 1408, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Irecv", "ttot": 0.5071236165800017, "count": 1780800, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Barrier", "ttot": 0.24294966000000007, "count": 192, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" }, { "call": "MPI_Comm_free", "ttot": 0.0012066329999999997, "count": 64, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Comm_rank", "ttot": 0.0002255430399999999, "count": 704, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Comm_size", "ttot": 0.00010609528, "count": 256, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 64, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 64, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" } ], "mpiAnalysis": { @@ -1141,5833 +1142,12541 @@ }, "mpiCallsByTask": [ { - "nr": "47", - "ttot": 4.403404572430001, + "nr": "0", + "ttot": 2.2333901101300015, "mpiCalls": [ { - "call": "MPI_Bcast", - "ttot": 0.13247702471, - "count": 2445, + "call": "MPI_Irecv", + "ttot": 0.009639959480000002, + "count": 33726, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 0.3793110646500002, + "count": 34569, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Send", - "ttot": 0.5990204141099998, - "count": 3378, + "call": "MPI_Bcast", + "ttot": 0.0432604605, + "count": 2445, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, - { - "call": "MPI_Irecv", - "ttot": 0.00166559041, - "count": 6750, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Allreduce", - "ttot": 3.220890688, + "ttot": 0.111014438, "count": 2461, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 0.43779, - "count": 6750, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 1.6474, + "count": 33726, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0, + "ttot": 0.0000030994, "count": 4, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0000019073, + "ttot": 0.0000040531, "count": 11, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Sendrecv", - "ttot": 0.0077468809, + "ttot": 0.042584901, "count": 22, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Comm_free", - "ttot": 0.000014067, + "ttot": 0.000015974, "count": 1, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Barrier", - "ttot": 0.003798, + "ttot": 0.00015616, "count": 3, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "15", - "ttot": 4.390536181849997, + "nr": "1", + "ttot": 1.24637164048, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.12865583020000002, + "ttot": 0.07621964579999999, "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.09174368533999999, + "count": 36255, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Irecv", - "ttot": 0.0014615072400000003, - "count": 6750, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.010724165439999996, + "count": 34569, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 3.2243652739999997, + "ttot": 0.12200719899999998, "count": 2461, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, - { - "call": "MPI_Send", - "ttot": 0.5987772141099998, - "count": 3378, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 0.39221, - "count": 6750, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.90224, + "count": 34569, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.0000019073, + "ttot": 0.0000030994, "count": 4, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0000042915, + "ttot": 0.0000059605, "count": 11, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Sendrecv", - "ttot": 0.0409929375, + "ttot": 0.039468478, "count": 22, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Comm_free", - "ttot": 0.00001502, + "ttot": 0.000047207, "count": 1, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Barrier", - "ttot": 0.0040522, + "ttot": 0.0039122, "count": 3, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "39", - "ttot": 4.388768769849998, + "nr": "2", + "ttot": 2.8120303848299995, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.1063723588, + "ttot": 0.07564677550000001, "count": 2445, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" - }, - { - "call": "MPI_Send", - "ttot": 0.6367636062099999, - "count": 3378, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Irecv", - "ttot": 0.0015644967699999998, - "count": 6750, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.00985278948, + "count": 36255, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 1.62143738185, + "count": 37098, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Allreduce", - "ttot": 3.2077339719999998, + "ttot": 0.132828142, "count": 2461, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 0.42677, - "count": 6750, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.92815, + "count": 36255, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 9.5367e-7, + "ttot": 0.0000021458, "count": 4, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0000019073, + "ttot": 0.0000059605, "count": 11, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Sendrecv", - "ttot": 0.0056626550999999995, + "ttot": 0.0403020227, "count": 22, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Comm_free", - "ttot": 0.00001502, + "ttot": 0.000014067, "count": 1, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Barrier", - "ttot": 0.0038838, + "ttot": 0.0037911, "count": 3, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "63", - "ttot": 4.387765185539998, + "nr": "3", + "ttot": 4.3827305339499985, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.09818256754000002, + "ttot": 0.07678277636999997, "count": 2445, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" - }, - { - "call": "MPI_Send", - "ttot": 0.7124545823499998, - "count": 3378, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Irecv", - "ttot": 0.00171971435, + "ttot": 0.0014965485, "count": 6750, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 3.146316964, + "ttot": 3.2009811040000002, "count": 2461, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 0.6719731280099999, + "count": 3378, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Wait", - "ttot": 0.38393, + "ttot": 0.38629, "count": 6750, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.0000011921, + "ttot": 9.5367e-7, "count": 4, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.000002861, + "ttot": 0.0000030994, "count": 11, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Sendrecv", - "ttot": 0.0411635762, + "ttot": 0.04115505, "count": 22, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Comm_free", - "ttot": 0.000016928, + "ttot": 0.000015974, "count": 1, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Barrier", - "ttot": 0.0039768, + "ttot": 0.0040319, "count": 3, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "43", - "ttot": 4.385934691050001, + "nr": "4", + "ttot": 2.218522090359999, "mpiCalls": [ { - "call": "MPI_Bcast", - "ttot": 0.11889067094000001, - "count": 2445, + "call": "MPI_Irecv", + "ttot": 0.009205119109999996, + "count": 33726, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 0.3420663989500002, + "count": 34569, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Send", - "ttot": 0.6461835989000002, - "count": 3378, + "call": "MPI_Bcast", + "ttot": 0.07609447179999998, + "count": 2445, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, - { - "call": "MPI_Irecv", - "ttot": 0.00159787521, - "count": 6750, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Allreduce", - "ttot": 3.1864090239999996, + "ttot": 0.128996217, "count": 2461, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 0.42654, - "count": 6750, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 1.6155, + "count": 33726, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.0000021458, + "ttot": 0.0000033379, "count": 4, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0000061989, + "ttot": 0.0000038147, "count": 11, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Sendrecv", - "ttot": 0.0024454573, + "ttot": 0.0425614569, "count": 22, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Comm_free", - "ttot": 0.00001502, + "ttot": 0.000015974, "count": 1, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Barrier", - "ttot": 0.0038447, + "ttot": 0.0040753, "count": 3, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "23", - "ttot": 4.385379103349999, + "nr": "5", + "ttot": 1.4168942906899993, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.1049133992, + "ttot": 0.08020176259999996, "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.09159136824, + "count": 37098, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Irecv", - "ttot": 0.00164510271, - "count": 6750, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.01106021835, + "count": 36255, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 3.0621775490000003, + "ttot": 0.12201085700000001, "count": 2461, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, - { - "call": "MPI_Send", - "ttot": 0.7955199988699999, - "count": 3378, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 0.37703, - "count": 6750, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 1.0659, + "count": 36255, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 9.5367e-7, + "ttot": 0.0000030994, "count": 4, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.000002861, + "ttot": 0.0000038147, "count": 11, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Sendrecv", - "ttot": 0.0401143189, + "ttot": 0.0423013624, "count": 22, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Comm_free", - "ttot": 0.00001502, + "ttot": 0.000041008, "count": 1, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Barrier", - "ttot": 0.0039599, + "ttot": 0.0037808, "count": 3, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "31", - "ttot": 4.383515757230001, + "nr": "6", + "ttot": 2.8506290463199995, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.12334000344, + "ttot": 0.0761020053, "count": 2445, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Irecv", - "ttot": 0.0015735669100000003, - "count": 6750, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, - { - "call": "MPI_Allreduce", - "ttot": 3.05264071, - "count": 2461, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "ttot": 0.01023631281, + "count": 36255, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Send", - "ttot": 0.7878667599100001, - "count": 3378, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "ttot": 1.5012789629099998, + "count": 37098, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Wait", - "ttot": 0.37349, - "count": 6750, + "call": "MPI_Allreduce", + "ttot": 0.129675515, + "count": 2461, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, + { + "call": "MPI_Wait", + "ttot": 1.087, + "count": 36255, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Comm_size", - "ttot": 9.5367e-7, + "ttot": 0.0000030994, "count": 4, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0000038147, + "ttot": 0.0000066757, "count": 11, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Sendrecv", - "ttot": 0.0403877746, + "ttot": 0.0425001282, "count": 22, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Comm_free", - "ttot": 0.000015974, + "ttot": 0.000038147, "count": 1, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Barrier", - "ttot": 0.0041962, + "ttot": 0.0037882, "count": 3, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "35", - "ttot": 4.3834727407799985, + "nr": "7", + "ttot": 4.380636115910001, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.12374557907, + "ttot": 0.09182728150000001, "count": 2445, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" - }, - { - "call": "MPI_Send", - "ttot": 0.67081060624, - "count": 3378, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Irecv", - "ttot": 0.0018756348, + "ttot": 0.00148392824, "count": 6750, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 3.159821506, + "ttot": 3.21557107, "count": 2461, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 0.6386619683700001, + "count": 3378, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Wait", - "ttot": 0.4042, + "ttot": 0.38887, "count": 6750, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 9.5367e-7, + "ttot": 0.000002861, "count": 4, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.000002861, + "ttot": 0.0000038147, "count": 11, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Sendrecv", - "ttot": 0.019081479999999998, + "ttot": 0.0404264431, "count": 22, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Comm_free", - "ttot": 0.00001812, + "ttot": 0.000028849, "count": 1, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Barrier", - "ttot": 0.003916, + "ttot": 0.0037599, "count": 3, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "3", - "ttot": 4.3827305339499985, + "nr": "8", + "ttot": 2.2953017818200006, "mpiCalls": [ - { - "call": "MPI_Bcast", - "ttot": 0.07678277636999997, - "count": 2445, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" - }, { "call": "MPI_Irecv", - "ttot": 0.0014965485, - "count": 6750, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.009862434370000001, + "count": 33726, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { - "call": "MPI_Allreduce", - "ttot": 3.2009811040000002, - "count": 2461, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "call": "MPI_Send", + "ttot": 0.35628245315, + "count": 34569, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Send", - "ttot": 0.6719731280099999, - "count": 3378, + "call": "MPI_Bcast", + "ttot": 0.08926206060000001, + "count": 2445, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { - "call": "MPI_Wait", - "ttot": 0.38629, - "count": 6750, + "call": "MPI_Allreduce", + "ttot": 0.115097554, + "count": 2461, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, + { + "call": "MPI_Wait", + "ttot": 1.6784, + "count": 33726, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Comm_size", - "ttot": 9.5367e-7, + "ttot": 0.0000019073, "count": 4, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0000030994, + "ttot": 0.0000047684, "count": 11, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Sendrecv", - "ttot": 0.04115505, + "ttot": 0.04238943, "count": 22, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Comm_free", "ttot": 0.000015974, "count": 1, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Barrier", - "ttot": 0.0040319, + "ttot": 0.0039852, "count": 3, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "7", - "ttot": 4.380636115910001, + "nr": "9", + "ttot": 1.3820999678200006, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.09182728150000001, + "ttot": 0.10047234850000002, "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.09143675691, + "count": 37941, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Irecv", - "ttot": 0.00148392824, - "count": 6750, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.011738793010000002, + "count": 35412, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 3.21557107, + "ttot": 0.105144495, "count": 2461, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, - { - "call": "MPI_Send", - "ttot": 0.6386619683700001, - "count": 3378, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 0.38887, - "count": 6750, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 1.0273, + "count": 35412, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.000002861, + "ttot": 0.0000019073, "count": 4, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0000038147, + "ttot": 0.0000047684, "count": 11, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Sendrecv", - "ttot": 0.0404264431, + "ttot": 0.0423450247, "count": 22, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Comm_free", - "ttot": 0.000028849, + "ttot": 0.000015974, "count": 1, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Barrier", - "ttot": 0.0037599, + "ttot": 0.0036399, "count": 3, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "55", - "ttot": 4.38033640925, + "nr": "10", + "ttot": 2.82547521132, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.10484531110000003, + "ttot": 0.0944344446, "count": 2445, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" - }, - { - "call": "MPI_Send", - "ttot": 0.74671630627, - "count": 3378, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Irecv", - "ttot": 0.0015249157800000003, - "count": 6750, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.010187354580000002, + "count": 35412, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 1.51154998364, + "count": 35412, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Allreduce", - "ttot": 3.106494178, + "ttot": 0.114060467, "count": 2461, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 0.37618, - "count": 6750, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 1.0489, + "count": 35412, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", "ttot": 0.000002861, "count": 4, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0000011921, + "ttot": 0.0000078678, "count": 11, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Sendrecv", - "ttot": 0.040534771, + "ttot": 0.0424433657, "count": 22, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Comm_free", - "ttot": 0.000015974, + "ttot": 0.000014067, "count": 1, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Barrier", - "ttot": 0.0040209, + "ttot": 0.0038748, "count": 3, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "51", - "ttot": 4.380081229350001, + "nr": "11", + "ttot": 4.377764783579994, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.12254866900000001, + "ttot": 0.09547162289999998, "count": 2445, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" - }, - { - "call": "MPI_Send", - "ttot": 0.75250540624, - "count": 3378, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Irecv", - "ttot": 0.0015473345100000002, + "ttot": 0.00152540247, "count": 6750, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 3.08439229, + "ttot": 3.2044651570000005, "count": 2461, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 0.6453511141099999, + "count": 3378, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Wait", - "ttot": 0.37375, + "ttot": 0.38603, "count": 6750, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.0000019073, + "ttot": 0.000002861, "count": 4, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0000019073, + "ttot": 0.0000054836, "count": 11, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Sendrecv", - "ttot": 0.04122382, + "ttot": 0.0411020615, "count": 22, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Comm_free", - "ttot": 0.000027895, + "ttot": 0.000063181, "count": 1, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Barrier", - "ttot": 0.004082, + "ttot": 0.0037479, "count": 3, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "27", - "ttot": 4.378457483359996, + "nr": "12", + "ttot": 2.28830860376, "mpiCalls": [ - { - "call": "MPI_Bcast", - "ttot": 0.11653011814, - "count": 2445, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" - }, { "call": "MPI_Irecv", - "ttot": 0.0014288380500000002, - "count": 6750, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.00875899951, + "count": 33726, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { - "call": "MPI_Allreduce", - "ttot": 3.0902747770000003, - "count": 2461, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "call": "MPI_Send", + "ttot": 0.30259940668, + "count": 34569, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Send", - "ttot": 0.75174519887, - "count": 3378, + "call": "MPI_Bcast", + "ttot": 0.09407783139999999, + "count": 2445, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { - "call": "MPI_Wait", - "ttot": 0.37374, - "count": 6750, + "call": "MPI_Allreduce", + "ttot": 0.110382599, + "count": 2461, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, + { + "call": "MPI_Wait", + "ttot": 1.7355, + "count": 33726, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Comm_size", - "ttot": 0.0000021458, + "ttot": 9.5367e-7, "count": 4, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0000050068, + "ttot": 0.0000088215, "count": 11, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Sendrecv", - "ttot": 0.0407276247, + "ttot": 0.033036818, "count": 22, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Comm_free", "ttot": 0.000015974, "count": 1, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Barrier", - "ttot": 0.0039878, + "ttot": 0.0039272, "count": 3, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "11", - "ttot": 4.377764783579994, + "nr": "13", + "ttot": 1.5510977615600003, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.09547162289999998, + "ttot": 0.09676463420000002, "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.09094397924000001, + "count": 36255, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Irecv", - "ttot": 0.00152540247, - "count": 6750, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.011415955849999996, + "count": 34569, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 3.2044651570000005, + "ttot": 0.102351829, "count": 2461, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, - { - "call": "MPI_Send", - "ttot": 0.6453511141099999, - "count": 3378, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 0.38603, - "count": 6750, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 1.2037, + "count": 34569, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.000002861, + "ttot": 9.5367e-7, "count": 4, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0000054836, + "ttot": 0.0000047684, "count": 11, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Sendrecv", - "ttot": 0.0411020615, + "ttot": 0.0422504612, "count": 22, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Comm_free", - "ttot": 0.000063181, + "ttot": 0.00002408, "count": 1, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Barrier", - "ttot": 0.0037479, + "ttot": 0.0036411, "count": 3, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "19", - "ttot": 4.37767884992, + "nr": "14", + "ttot": 2.9655018860299998, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.12125564140999999, + "ttot": 0.09519135857000001, "count": 2445, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Irecv", - "ttot": 0.00158571907, - "count": 6750, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, - { - "call": "MPI_Allreduce", - "ttot": 3.0196938179999995, - "count": 2461, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "ttot": 0.00920785991, + "count": 34569, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Send", - "ttot": 0.82435140677, - "count": 3378, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "ttot": 1.47412038335, + "count": 36255, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Wait", - "ttot": 0.36586, - "count": 6750, + "call": "MPI_Allreduce", + "ttot": 0.11305436600000002, + "count": 2461, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, + { + "call": "MPI_Wait", + "ttot": 1.2276, + "count": 34569, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Comm_size", - "ttot": 9.5367e-7, + "ttot": 0.0000030994, "count": 4, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.000002861, + "ttot": 0.0000019073, "count": 11, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Sendrecv", - "ttot": 0.04065143, + "ttot": 0.0425301165, "count": 22, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Comm_free", - "ttot": 0.00001502, + "ttot": 0.000027895, "count": 1, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Barrier", - "ttot": 0.004262, + "ttot": 0.0037649, "count": 3, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "59", - "ttot": 4.377340544619998, + "nr": "15", + "ttot": 4.390536181849997, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.11684439354000001, + "ttot": 0.12865583020000002, "count": 2445, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" - }, - { - "call": "MPI_Send", - "ttot": 0.74251291417, - "count": 3378, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Irecv", - "ttot": 0.0015413691100000003, + "ttot": 0.0014615072400000003, "count": 6750, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 3.098561188, + "ttot": 3.2243652739999997, "count": 2461, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 0.5987772141099998, + "count": 3378, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Wait", - "ttot": 0.37273, + "ttot": 0.39221, "count": 6750, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", "ttot": 0.0000019073, "count": 4, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0000050068, + "ttot": 0.0000042915, "count": 11, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Sendrecv", - "ttot": 0.0411490847, + "ttot": 0.0409929375, "count": 22, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Comm_free", - "ttot": 0.000017881, + "ttot": 0.00001502, "count": 1, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Barrier", - "ttot": 0.0039768, + "ttot": 0.0040522, "count": 3, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "62", - "ttot": 3.6765468953300005, + "nr": "16", + "ttot": 2.1127067755599995, "mpiCalls": [ { - "call": "MPI_Bcast", - "ttot": 0.13020980427, - "count": 2445, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "call": "MPI_Irecv", + "ttot": 0.009201970240000001, + "count": 33726, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { - "call": "MPI_Irecv", - "ttot": 0.00815367494, + "call": "MPI_Send", + "ttot": 0.48712320851, "count": 34569, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Send", - "ttot": 2.59592201155, - "count": 36255, + "call": "MPI_Bcast", + "ttot": 0.11721709254, + "count": 2445, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allreduce", - "ttot": 0.08913830099999999, + "ttot": 0.08698561599999999, "count": 2461, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 0.80686, - "count": 34569, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 1.3659, + "count": 33726, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", "ttot": 9.5367e-7, "count": 4, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0000019073, + "ttot": 0.0000038147, "count": 11, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Sendrecv", - "ttot": 0.042302962599999994, + "ttot": 0.042350199899999996, "count": 22, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Comm_free", - "ttot": 0.00002408, + "ttot": 0.00001502, "count": 1, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Barrier", - "ttot": 0.0039332, + "ttot": 0.0039089, "count": 3, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "58", - "ttot": 3.6554962959300012, + "nr": "17", + "ttot": 0.5378492292000001, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.12443705454000001, + "ttot": 0.11785921616999999, "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.09040114922, + "count": 36255, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Irecv", - "ttot": 0.00827768118, - "count": 35412, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, - { - "call": "MPI_Send", - "ttot": 2.7848527844399995, - "count": 35412, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "ttot": 0.01132560041, + "count": 34569, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 0.086886005, + "ttot": 0.08025480700000001, "count": 2461, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 0.60476, - "count": 35412, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.19559, + "count": 34569, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 9.5367e-7, + "ttot": 0.0000019073, "count": 4, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.000002861, + "ttot": 0.00000453, "count": 11, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Sendrecv", - "ttot": 0.0423586361, + "ttot": 0.0384568521, "count": 22, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Comm_free", - "ttot": 0.00001812, + "ttot": 0.000014067, "count": 1, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Barrier", - "ttot": 0.0039022, + "ttot": 0.0039411, "count": 3, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "50", - "ttot": 3.53974863469, + "nr": "18", + "ttot": 3.0127904367499996, "mpiCalls": [ - { - "call": "MPI_Bcast", - "ttot": 0.11818934294000001, - "count": 2445, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" - }, { "call": "MPI_Irecv", - "ttot": 0.00894693011, + "ttot": 0.009734148469999999, "count": 36255, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { - "call": "MPI_Send", - "ttot": 2.6183891445400005, - "count": 37098, + "call": "MPI_Bcast", + "ttot": 0.11679258237, + "count": 2445, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, + { + "call": "MPI_Send", + "ttot": 2.5319523040400003, + "count": 37098, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, { "call": "MPI_Allreduce", - "ttot": 0.092978162, + "ttot": 0.09047332699999999, "count": 2461, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 0.65725, + "ttot": 0.22053, "count": 36255, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.0000019073, + "ttot": 9.5367e-7, "count": 4, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", "ttot": 0.0000019073, "count": 11, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Sendrecv", - "ttot": 0.04019945250000001, + "ttot": 0.0396123019, "count": 22, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Comm_free", - "ttot": 0.000025988, + "ttot": 0.000016212, "count": 1, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Barrier", - "ttot": 0.0037658, + "ttot": 0.0036767, "count": 3, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "54", - "ttot": 3.5092817170400004, + "nr": "19", + "ttot": 4.37767884992, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.12409544680999997, + "ttot": 0.12125564140999999, "count": 2445, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Irecv", - "ttot": 0.00870298728, - "count": 36255, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, - { - "call": "MPI_Send", - "ttot": 2.5881318710500003, - "count": 37098, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "ttot": 0.00158571907, + "count": 6750, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 0.086543861, + "ttot": 3.0196938179999995, "count": 2461, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 0.82435140677, + "count": 3378, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Wait", - "ttot": 0.65568, - "count": 36255, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.36586, + "count": 6750, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.0000021458, + "ttot": 9.5367e-7, "count": 4, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0000061989, + "ttot": 0.000002861, "count": 11, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Sendrecv", - "ttot": 0.042372432200000004, + "ttot": 0.04065143, "count": 22, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Comm_free", - "ttot": 0.000015974, + "ttot": 0.00001502, "count": 1, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Barrier", - "ttot": 0.0037308, + "ttot": 0.004262, "count": 3, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "42", - "ttot": 3.32188564503, + "nr": "20", + "ttot": 2.0983671023, "mpiCalls": [ { "call": "MPI_Irecv", - "ttot": 0.00885133008, - "count": 35412, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, - { - "call": "MPI_Bcast", - "ttot": 0.12373896497, - "count": 2445, + "ttot": 0.00973993211, + "count": 33726, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 0.46889527565000017, + "count": 34569, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Send", - "ttot": 1.9348742756800001, - "count": 35412, + "call": "MPI_Bcast", + "ttot": 0.12499657827, + "count": 2445, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allreduce", - "ttot": 0.08706894700000001, + "ttot": 0.084043598, "count": 2461, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 1.161, - "count": 35412, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 1.3645, + "count": 33726, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.0000021458, + "ttot": 9.5367e-7, "count": 4, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", "ttot": 0.0000030994, "count": 11, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Sendrecv", - "ttot": 0.0026018161, + "ttot": 0.0423292982, "count": 22, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Comm_free", - "ttot": 0.000017166, + "ttot": 0.000014067, "count": 1, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Barrier", - "ttot": 0.0037279, + "ttot": 0.0038443, "count": 3, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "46", - "ttot": 3.2848712059600014, + "nr": "21", + "ttot": 0.7646737976000004, "mpiCalls": [ - { - "call": "MPI_Irecv", - "ttot": 0.00975941051, - "count": 34569, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Bcast", - "ttot": 0.12129235796999996, + "ttot": 0.12287212586999997, "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.09203789774999999, + "count": 37098, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Send", - "ttot": 1.53827272981, + "call": "MPI_Irecv", + "ttot": 0.011716807679999998, "count": 36255, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 0.089499006, + "ttot": 0.07654810799999999, "count": 2461, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 1.5174, - "count": 34569, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.41607, + "count": 36255, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 9.5367e-7, + "ttot": 0.0000019073, "count": 4, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0000011921, + "ttot": 0.0000040531, "count": 11, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Sendrecv", - "ttot": 0.0047905819, + "ttot": 0.0416329699, "count": 22, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Comm_free", - "ttot": 0.000015974, + "ttot": 0.000013828, "count": 1, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Barrier", - "ttot": 0.003839, + "ttot": 0.0037761, "count": 3, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "34", - "ttot": 3.254508123380002, + "nr": "22", + "ttot": 3.0824231011900007, "mpiCalls": [ { "call": "MPI_Irecv", - "ttot": 0.009796175789999998, + "ttot": 0.009531101569999999, "count": 36255, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Bcast", - "ttot": 0.11746038627, + "ttot": 0.12146369896999999, "count": 2445, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 2.0193760921500004, + "ttot": 2.3710764653500003, "count": 37098, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Allreduce", - "ttot": 0.093448977, + "ttot": 0.083240327, "count": 2461, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 1.0035, + "ttot": 0.45129, "count": 36255, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 9.5367e-7, + "ttot": 0.0000019073, "count": 4, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0000023842, + "ttot": 0.0000042915, "count": 11, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Sendrecv", - "ttot": 0.007011180299999999, + "ttot": 0.0419643895, "count": 22, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Comm_free", - "ttot": 0.000015974, + "ttot": 0.00001502, "count": 1, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Barrier", - "ttot": 0.003896, + "ttot": 0.0038359, "count": 3, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "30", - "ttot": 3.25265475044, + "nr": "23", + "ttot": 4.385379103349999, "mpiCalls": [ - { - "call": "MPI_Irecv", - "ttot": 0.009663839149999999, - "count": 34569, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Bcast", - "ttot": 0.12376094634, + "ttot": 0.1049133992, "count": 2445, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" - }, - { - "call": "MPI_Send", - "ttot": 2.50522525585, - "count": 36255, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, + { + "call": "MPI_Irecv", + "ttot": 0.00164510271, + "count": 6750, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, { "call": "MPI_Allreduce", - "ttot": 0.08635657100000001, + "ttot": 3.0621775490000003, "count": 2461, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 0.7955199988699999, + "count": 3378, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Wait", - "ttot": 0.48187, - "count": 34569, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.37703, + "count": 6750, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.0000019073, + "ttot": 9.5367e-7, "count": 4, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0000019073, + "ttot": 0.000002861, "count": 11, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Sendrecv", - "ttot": 0.0419860495, + "ttot": 0.0401143189, "count": 22, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Comm_free", - "ttot": 0.000015974, + "ttot": 0.00001502, "count": 1, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Barrier", - "ttot": 0.0037723, + "ttot": 0.0039599, "count": 3, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "26", - "ttot": 3.141405785120002, + "nr": "24", + "ttot": 2.077890571810002, "mpiCalls": [ { "call": "MPI_Irecv", - "ttot": 0.009308592970000001, - "count": 35412, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.009082355649999999, + "count": 33726, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { - "call": "MPI_Bcast", - "ttot": 0.12338313946999999, - "count": 2445, + "call": "MPI_Send", + "ttot": 0.41841272835000004, + "count": 34569, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Send", - "ttot": 2.2531581055100003, - "count": 35412, - "color": "rgb(225, 151, 76)", + "call": "MPI_Bcast", + "ttot": 0.10386076963999999, + "count": 2445, + "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allreduce", - "ttot": 0.084352197, + "ttot": 0.10337790000000001, "count": 2461, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 0.62548, - "count": 35412, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 1.397, + "count": 33726, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", "ttot": 9.5367e-7, "count": 4, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0000019073, + "ttot": 0.0000042915, "count": 11, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Sendrecv", - "ttot": 0.0420327692, + "ttot": 0.04230756, "count": 22, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Comm_free", - "ttot": 0.00001502, + "ttot": 0.000013113, "count": 1, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Barrier", - "ttot": 0.0036731, + "ttot": 0.0038309, "count": 3, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "38", - "ttot": 3.1272477490800012, + "nr": "25", + "ttot": 0.9426275988999999, "mpiCalls": [ - { - "call": "MPI_Irecv", - "ttot": 0.01028541488, - "count": 36255, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Bcast", - "ttot": 0.12222456904000001, + "ttot": 0.13208435747, "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.09033240382, + "count": 37941, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Send", - "ttot": 1.81900740736, - "count": 37098, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "call": "MPI_Irecv", + "ttot": 0.011114603110000001, + "count": 35412, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 0.08490080100000001, + "ttot": 0.07418241899999999, "count": 2461, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 1.0824, - "count": 36255, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.5897, + "count": 35412, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", "ttot": 0.0000019073, "count": 4, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0, + "ttot": 0.0000030994, "count": 11, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Sendrecv", - "ttot": 0.0047156755, + "ttot": 0.041302088800000004, "count": 22, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Comm_free", - "ttot": 0.000015974, + "ttot": 0.00001502, "count": 1, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Barrier", - "ttot": 0.003696, + "ttot": 0.0038917, "count": 3, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "22", - "ttot": 3.0824231011900007, + "nr": "26", + "ttot": 3.141405785120002, "mpiCalls": [ { "call": "MPI_Irecv", - "ttot": 0.009531101569999999, - "count": 36255, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.009308592970000001, + "count": 35412, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Bcast", - "ttot": 0.12146369896999999, + "ttot": 0.12338313946999999, "count": 2445, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 2.3710764653500003, - "count": 37098, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "ttot": 2.2531581055100003, + "count": 35412, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Allreduce", - "ttot": 0.083240327, + "ttot": 0.084352197, "count": 2461, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 0.45129, - "count": 36255, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.62548, + "count": 35412, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.0000019073, + "ttot": 9.5367e-7, "count": 4, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0000042915, + "ttot": 0.0000019073, "count": 11, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Sendrecv", - "ttot": 0.0419643895, + "ttot": 0.0420327692, "count": 22, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Comm_free", "ttot": 0.00001502, "count": 1, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Barrier", - "ttot": 0.0038359, + "ttot": 0.0036731, "count": 3, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "18", - "ttot": 3.0127904367499996, + "nr": "27", + "ttot": 4.378457483359996, "mpiCalls": [ - { - "call": "MPI_Irecv", - "ttot": 0.009734148469999999, - "count": 36255, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Bcast", - "ttot": 0.11679258237, + "ttot": 0.11653011814, "count": 2445, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" - }, - { - "call": "MPI_Send", - "ttot": 2.5319523040400003, - "count": 37098, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, + { + "call": "MPI_Irecv", + "ttot": 0.0014288380500000002, + "count": 6750, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, { "call": "MPI_Allreduce", - "ttot": 0.09047332699999999, + "ttot": 3.0902747770000003, "count": 2461, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 0.75174519887, + "count": 3378, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Wait", - "ttot": 0.22053, - "count": 36255, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.37374, + "count": 6750, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 9.5367e-7, + "ttot": 0.0000021458, "count": 4, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0000019073, + "ttot": 0.0000050068, "count": 11, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Sendrecv", - "ttot": 0.0396123019, + "ttot": 0.0407276247, "count": 22, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Comm_free", - "ttot": 0.000016212, + "ttot": 0.000015974, "count": 1, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Barrier", - "ttot": 0.0036767, + "ttot": 0.0039878, "count": 3, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "14", - "ttot": 2.9655018860299998, + "nr": "28", + "ttot": 2.1401937391000008, "mpiCalls": [ { - "call": "MPI_Bcast", - "ttot": 0.09519135857000001, - "count": 2445, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "call": "MPI_Irecv", + "ttot": 0.00975923384, + "count": 33726, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { - "call": "MPI_Irecv", - "ttot": 0.00920785991, + "call": "MPI_Send", + "ttot": 0.4569528614200002, "count": 34569, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Send", - "ttot": 1.47412038335, - "count": 36255, + "call": "MPI_Bcast", + "ttot": 0.11658704514, + "count": 2445, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Allreduce", - "ttot": 0.11305436600000002, + "ttot": 0.09075763199999999, "count": 2461, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 1.2276, - "count": 34569, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 1.4296, + "count": 33726, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.0000030994, + "ttot": 0.0000011921, "count": 4, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0000019073, + "ttot": 0.0000030994, "count": 11, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Sendrecv", - "ttot": 0.0425301165, + "ttot": 0.032821900200000004, "count": 22, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Comm_free", - "ttot": 0.000027895, + "ttot": 0.000012875, "count": 1, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Barrier", - "ttot": 0.0037649, + "ttot": 0.0036979, "count": 3, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "6", - "ttot": 2.8506290463199995, + "nr": "29", + "ttot": 0.8006057966200001, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.0761020053, + "ttot": 0.12264468144, "count": 2445, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { - "call": "MPI_Irecv", - "ttot": 0.01023631281, + "call": "MPI_Send", + "ttot": 0.08968604187999998, "count": 36255, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Send", - "ttot": 1.5012789629099998, - "count": 37098, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "call": "MPI_Irecv", + "ttot": 0.0117699798, + "count": 34569, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 0.129675515, + "ttot": 0.076014108, "count": 2461, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 1.087, - "count": 36255, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.45508, + "count": 34569, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.0000030994, + "ttot": 0.0000021458, "count": 4, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0000066757, + "ttot": 0.0000019073, "count": 11, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Sendrecv", - "ttot": 0.0425001282, + "ttot": 0.041547204399999996, "count": 22, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Comm_free", - "ttot": 0.000038147, + "ttot": 0.000013828, "count": 1, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Barrier", - "ttot": 0.0037882, + "ttot": 0.0038459, "count": 3, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "10", - "ttot": 2.82547521132, + "nr": "30", + "ttot": 3.25265475044, "mpiCalls": [ - { - "call": "MPI_Bcast", - "ttot": 0.0944344446, - "count": 2445, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" - }, { "call": "MPI_Irecv", - "ttot": 0.010187354580000002, - "count": 35412, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.009663839149999999, + "count": 34569, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { - "call": "MPI_Send", - "ttot": 1.51154998364, - "count": 35412, + "call": "MPI_Bcast", + "ttot": 0.12376094634, + "count": 2445, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, + { + "call": "MPI_Send", + "ttot": 2.50522525585, + "count": 36255, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, { "call": "MPI_Allreduce", - "ttot": 0.114060467, + "ttot": 0.08635657100000001, "count": 2461, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 1.0489, - "count": 35412, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.48187, + "count": 34569, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.000002861, + "ttot": 0.0000019073, "count": 4, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0000078678, + "ttot": 0.0000019073, "count": 11, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Sendrecv", - "ttot": 0.0424433657, + "ttot": 0.0419860495, "count": 22, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Comm_free", - "ttot": 0.000014067, + "ttot": 0.000015974, "count": 1, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Barrier", - "ttot": 0.0038748, + "ttot": 0.0037723, "count": 3, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "2", - "ttot": 2.8120303848299995, + "nr": "31", + "ttot": 4.383515757230001, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.07564677550000001, + "ttot": 0.12334000344, "count": 2445, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Irecv", - "ttot": 0.00985278948, - "count": 36255, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, - { - "call": "MPI_Send", - "ttot": 1.62143738185, - "count": 37098, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "ttot": 0.0015735669100000003, + "count": 6750, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 0.132828142, + "ttot": 3.05264071, "count": 2461, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 0.7878667599100001, + "count": 3378, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Wait", - "ttot": 0.92815, - "count": 36255, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.37349, + "count": 6750, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.0000021458, + "ttot": 9.5367e-7, "count": 4, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0000059605, + "ttot": 0.0000038147, "count": 11, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Sendrecv", - "ttot": 0.0403020227, + "ttot": 0.0403877746, "count": 22, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Comm_free", - "ttot": 0.000014067, + "ttot": 0.000015974, "count": 1, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Barrier", - "ttot": 0.0037911, + "ttot": 0.0041962, "count": 3, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "8", - "ttot": 2.2953017818200006, + "nr": "32", + "ttot": 2.04903833476, "mpiCalls": [ { - "call": "MPI_Irecv", - "ttot": 0.009862434370000001, - "count": 33726, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, - { - "call": "MPI_Send", - "ttot": 0.35628245315, - "count": 34569, + "call": "MPI_Bcast", + "ttot": 0.12121426587, + "count": 2445, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { - "call": "MPI_Bcast", - "ttot": 0.08926206060000001, - "count": 2445, + "call": "MPI_Send", + "ttot": 0.35402829258000007, + "count": 34569, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, + { + "call": "MPI_Irecv", + "ttot": 0.009214667709999999, + "count": 33726, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, { "call": "MPI_Allreduce", - "ttot": 0.115097554, + "ttot": 0.087441745, "count": 2461, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 1.6784, + "ttot": 1.4536, "count": 33726, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.0000019073, + "ttot": 0.000002861, "count": 4, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0000047684, + "ttot": 0.0000050068, "count": 11, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Sendrecv", - "ttot": 0.04238943, + "ttot": 0.019748467799999996, "count": 22, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Comm_free", - "ttot": 0.000015974, + "ttot": 0.000016928, "count": 1, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Barrier", - "ttot": 0.0039852, + "ttot": 0.0037661, "count": 3, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "12", - "ttot": 2.28830860376, + "nr": "33", + "ttot": 1.3059618878600003, "mpiCalls": [ { - "call": "MPI_Irecv", - "ttot": 0.00875899951, - "count": 33726, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, - { - "call": "MPI_Send", - "ttot": 0.30259940668, - "count": 34569, + "call": "MPI_Bcast", + "ttot": 0.11854357804, + "count": 2445, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { - "call": "MPI_Bcast", - "ttot": 0.09407783139999999, - "count": 2445, + "call": "MPI_Send", + "ttot": 0.08906350768, + "count": 36255, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, + { + "call": "MPI_Irecv", + "ttot": 0.011068192939999999, + "count": 34569, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, { "call": "MPI_Allreduce", - "ttot": 0.110382599, + "ttot": 0.08257393700000001, "count": 2461, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 1.7355, - "count": 33726, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.99992, + "count": 34569, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 9.5367e-7, + "ttot": 0.0000019073, "count": 4, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0000088215, + "ttot": 0.0000042915, "count": 11, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Sendrecv", - "ttot": 0.033036818, + "ttot": 0.0007638913999999999, "count": 22, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Comm_free", - "ttot": 0.000015974, + "ttot": 0.000014782, "count": 1, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Barrier", - "ttot": 0.0039272, + "ttot": 0.0040078, "count": 3, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "0", - "ttot": 2.2333901101300015, + "nr": "34", + "ttot": 3.254508123380002, "mpiCalls": [ { "call": "MPI_Irecv", - "ttot": 0.009639959480000002, - "count": 33726, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.009796175789999998, + "count": 36255, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { - "call": "MPI_Send", - "ttot": 0.3793110646500002, - "count": 34569, + "call": "MPI_Bcast", + "ttot": 0.11746038627, + "count": 2445, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { - "call": "MPI_Bcast", - "ttot": 0.0432604605, - "count": 2445, + "call": "MPI_Send", + "ttot": 2.0193760921500004, + "count": 37098, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Allreduce", - "ttot": 0.111014438, + "ttot": 0.093448977, "count": 2461, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 1.6474, - "count": 33726, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 1.0035, + "count": 36255, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.0000030994, + "ttot": 9.5367e-7, "count": 4, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0000040531, + "ttot": 0.0000023842, "count": 11, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Sendrecv", - "ttot": 0.042584901, + "ttot": 0.007011180299999999, "count": 22, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Comm_free", "ttot": 0.000015974, "count": 1, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Barrier", - "ttot": 0.00015616, + "ttot": 0.003896, "count": 3, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "4", - "ttot": 2.218522090359999, + "nr": "35", + "ttot": 4.3834727407799985, "mpiCalls": [ { - "call": "MPI_Irecv", - "ttot": 0.009205119109999996, - "count": 33726, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, - { - "call": "MPI_Send", - "ttot": 0.3420663989500002, - "count": 34569, + "call": "MPI_Bcast", + "ttot": 0.12374557907, + "count": 2445, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { - "call": "MPI_Bcast", - "ttot": 0.07609447179999998, - "count": 2445, + "call": "MPI_Send", + "ttot": 0.67081060624, + "count": 3378, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, + { + "call": "MPI_Irecv", + "ttot": 0.0018756348, + "count": 6750, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, { "call": "MPI_Allreduce", - "ttot": 0.128996217, + "ttot": 3.159821506, "count": 2461, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 1.6155, - "count": 33726, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.4042, + "count": 6750, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.0000033379, + "ttot": 9.5367e-7, "count": 4, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0000038147, + "ttot": 0.000002861, "count": 11, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Sendrecv", - "ttot": 0.0425614569, + "ttot": 0.019081479999999998, "count": 22, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Comm_free", - "ttot": 0.000015974, + "ttot": 0.00001812, "count": 1, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Barrier", - "ttot": 0.0040753, + "ttot": 0.003916, "count": 3, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "44", - "ttot": 2.1449661161300018, + "nr": "36", + "ttot": 2.1128904844400016, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.11583021147000001, + "ttot": 0.12054678590999997, "count": 2445, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.2787249724800001, + "ttot": 0.32811199608000013, "count": 34569, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Irecv", - "ttot": 0.00981117508, + "ttot": 0.009360076479999998, "count": 33726, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 0.091785416, + "ttot": 0.086495898, "count": 2461, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 1.6349, + "ttot": 1.5545, "count": 33726, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.0000019073, + "ttot": 9.5367e-7, "count": 4, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0000019073, + "ttot": 0.0000047684, "count": 11, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Sendrecv", - "ttot": 0.0101401525, + "ttot": 0.0102271779, "count": 22, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Comm_free", - "ttot": 0.000015974, + "ttot": 0.000016928, "count": 1, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Barrier", - "ttot": 0.0037544, + "ttot": 0.0036259, "count": 3, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "28", - "ttot": 2.1401937391000008, + "nr": "37", + "ttot": 1.3618171904100005, "mpiCalls": [ { - "call": "MPI_Irecv", - "ttot": 0.00975923384, - "count": 33726, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, - { - "call": "MPI_Send", - "ttot": 0.4569528614200002, - "count": 34569, + "call": "MPI_Bcast", + "ttot": 0.12667632581, + "count": 2445, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { - "call": "MPI_Bcast", - "ttot": 0.11658704514, - "count": 2445, + "call": "MPI_Send", + "ttot": 0.09178927527999999, + "count": 37098, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, + { + "call": "MPI_Irecv", + "ttot": 0.01180981235, + "count": 36255, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, { "call": "MPI_Allreduce", - "ttot": 0.09075763199999999, + "ttot": 0.07733251399999999, "count": 2461, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 1.4296, - "count": 33726, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 1.0361, + "count": 36255, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.0000011921, + "ttot": 9.5367e-7, "count": 4, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0000030994, + "ttot": 0.0000050068, "count": 11, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Sendrecv", - "ttot": 0.032821900200000004, + "ttot": 0.0140542355, "count": 22, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Comm_free", - "ttot": 0.000012875, + "ttot": 0.000014067, "count": 1, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Barrier", - "ttot": 0.0036979, + "ttot": 0.004035, "count": 3, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "36", - "ttot": 2.1128904844400016, + "nr": "38", + "ttot": 3.1272477490800012, "mpiCalls": [ { - "call": "MPI_Bcast", - "ttot": 0.12054678590999997, - "count": 2445, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "call": "MPI_Irecv", + "ttot": 0.01028541488, + "count": 36255, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { - "call": "MPI_Send", - "ttot": 0.32811199608000013, - "count": 34569, + "call": "MPI_Bcast", + "ttot": 0.12222456904000001, + "count": 2445, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { - "call": "MPI_Irecv", - "ttot": 0.009360076479999998, - "count": 33726, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "call": "MPI_Send", + "ttot": 1.81900740736, + "count": 37098, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Allreduce", - "ttot": 0.086495898, + "ttot": 0.08490080100000001, "count": 2461, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 1.5545, - "count": 33726, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 1.0824, + "count": 36255, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 9.5367e-7, + "ttot": 0.0000019073, "count": 4, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0000047684, + "ttot": 0, "count": 11, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Sendrecv", - "ttot": 0.0102271779, + "ttot": 0.0047156755, "count": 22, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Comm_free", - "ttot": 0.000016928, + "ttot": 0.000015974, "count": 1, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Barrier", - "ttot": 0.0036259, + "ttot": 0.003696, "count": 3, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "16", - "ttot": 2.1127067755599995, + "nr": "39", + "ttot": 4.388768769849998, "mpiCalls": [ { - "call": "MPI_Irecv", - "ttot": 0.009201970240000001, - "count": 33726, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, - { - "call": "MPI_Send", - "ttot": 0.48712320851, - "count": 34569, + "call": "MPI_Bcast", + "ttot": 0.1063723588, + "count": 2445, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { - "call": "MPI_Bcast", - "ttot": 0.11721709254, - "count": 2445, + "call": "MPI_Send", + "ttot": 0.6367636062099999, + "count": 3378, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, + { + "call": "MPI_Irecv", + "ttot": 0.0015644967699999998, + "count": 6750, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, { "call": "MPI_Allreduce", - "ttot": 0.08698561599999999, + "ttot": 3.2077339719999998, "count": 2461, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 1.3659, - "count": 33726, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.42677, + "count": 6750, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", "ttot": 9.5367e-7, "count": 4, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0000038147, + "ttot": 0.0000019073, "count": 11, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Sendrecv", - "ttot": 0.042350199899999996, + "ttot": 0.0056626550999999995, "count": 22, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Comm_free", "ttot": 0.00001502, "count": 1, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Barrier", - "ttot": 0.0039089, + "ttot": 0.0038838, "count": 3, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "20", - "ttot": 2.0983671023, + "nr": "40", + "ttot": 2.079995128229999, "mpiCalls": [ { - "call": "MPI_Irecv", - "ttot": 0.00973993211, - "count": 33726, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, - { - "call": "MPI_Send", - "ttot": 0.46889527565000017, - "count": 34569, + "call": "MPI_Bcast", + "ttot": 0.10096472766999999, + "count": 2445, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { - "call": "MPI_Bcast", - "ttot": 0.12499657827, - "count": 2445, + "call": "MPI_Send", + "ttot": 0.3236872153100002, + "count": 34569, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, + { + "call": "MPI_Irecv", + "ttot": 0.00927620691, + "count": 33726, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, { "call": "MPI_Allreduce", - "ttot": 0.084043598, + "ttot": 0.105865214, "count": 2461, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 1.3645, + "ttot": 1.5162, "count": 33726, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", "ttot": 9.5367e-7, "count": 4, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0000030994, + "ttot": 9.5367e-7, "count": 11, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Sendrecv", - "ttot": 0.0423292982, + "ttot": 0.020348283, "count": 22, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Comm_free", - "ttot": 0.000014067, + "ttot": 0.000015974, "count": 1, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Barrier", - "ttot": 0.0038443, + "ttot": 0.0036356, "count": 3, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "40", - "ttot": 2.079995128229999, + "nr": "41", + "ttot": 1.4582503616300009, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.10096472766999999, + "ttot": 0.13010748804, "count": 2445, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.3236872153100002, - "count": 34569, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "ttot": 0.09180401831, + "count": 37941, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Irecv", - "ttot": 0.00927620691, - "count": 33726, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.01083902741, + "count": 35412, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 0.105865214, + "ttot": 0.07541292599999999, "count": 2461, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 1.5162, - "count": 33726, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 1.1455, + "count": 35412, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", "ttot": 9.5367e-7, "count": 4, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 9.5367e-7, + "ttot": 0.0000019073, "count": 11, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Sendrecv", - "ttot": 0.020348283, + "ttot": 0.0007901208999999998, "count": 22, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Comm_free", - "ttot": 0.000015974, + "ttot": 0.00001502, "count": 1, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Barrier", - "ttot": 0.0036356, + "ttot": 0.0037789, "count": 3, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "24", - "ttot": 2.077890571810002, + "nr": "42", + "ttot": 3.32188564503, "mpiCalls": [ { "call": "MPI_Irecv", - "ttot": 0.009082355649999999, - "count": 33726, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.00885133008, + "count": 35412, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { - "call": "MPI_Send", - "ttot": 0.41841272835000004, - "count": 34569, + "call": "MPI_Bcast", + "ttot": 0.12373896497, + "count": 2445, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { - "call": "MPI_Bcast", - "ttot": 0.10386076963999999, - "count": 2445, + "call": "MPI_Send", + "ttot": 1.9348742756800001, + "count": 35412, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Allreduce", - "ttot": 0.10337790000000001, + "ttot": 0.08706894700000001, "count": 2461, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 1.397, - "count": 33726, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 1.161, + "count": 35412, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 9.5367e-7, + "ttot": 0.0000021458, "count": 4, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0000042915, + "ttot": 0.0000030994, "count": 11, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Sendrecv", - "ttot": 0.04230756, + "ttot": 0.0026018161, "count": 22, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Comm_free", - "ttot": 0.000013113, + "ttot": 0.000017166, "count": 1, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Barrier", - "ttot": 0.0038309, + "ttot": 0.0037279, "count": 3, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "32", - "ttot": 2.04903833476, + "nr": "43", + "ttot": 4.385934691050001, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.12121426587, + "ttot": 0.11889067094000001, "count": 2445, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.35402829258000007, - "count": 34569, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "ttot": 0.6461835989000002, + "count": 3378, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Irecv", - "ttot": 0.009214667709999999, - "count": 33726, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.00159787521, + "count": 6750, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 0.087441745, + "ttot": 3.1864090239999996, "count": 2461, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 1.4536, - "count": 33726, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.42654, + "count": 6750, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.000002861, + "ttot": 0.0000021458, "count": 4, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0000050068, + "ttot": 0.0000061989, "count": 11, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Sendrecv", - "ttot": 0.019748467799999996, + "ttot": 0.0024454573, "count": 22, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Comm_free", - "ttot": 0.000016928, + "ttot": 0.00001502, "count": 1, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Barrier", - "ttot": 0.0037661, + "ttot": 0.0038447, "count": 3, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "45", - "ttot": 1.8363188253300005, + "nr": "44", + "ttot": 2.1449661161300018, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.12215466864, + "ttot": 0.11583021147000001, "count": 2445, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.08922117631, - "count": 36255, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "ttot": 0.2787249724800001, + "count": 34569, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Irecv", - "ttot": 0.01145060388, - "count": 34569, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.00981117508, + "count": 33726, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 0.079063567, + "ttot": 0.091785416, "count": 2461, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 1.5247, - "count": 34569, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 1.6349, + "count": 33726, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.0000011921, + "ttot": 0.0000019073, "count": 4, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0000038147, + "ttot": 0.0000019073, "count": 11, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Sendrecv", - "ttot": 0.0058070827, + "ttot": 0.0101401525, "count": 22, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Comm_free", - "ttot": 0.00001502, + "ttot": 0.000015974, "count": 1, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Barrier", - "ttot": 0.0039017, + "ttot": 0.0037544, "count": 3, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "48", - "ttot": 1.6062182850600006, + "nr": "45", + "ttot": 1.8363188253300005, "mpiCalls": [ - { - "call": "MPI_Irecv", - "ttot": 0.009332169289999998, - "count": 33726, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Bcast", - "ttot": 0.11819191718000002, + "ttot": 0.12215466864, "count": 2445, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" - }, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, { "call": "MPI_Send", - "ttot": 0.34098583945000005, + "ttot": 0.08922117631, + "count": 36255, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.01145060388, "count": 34569, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 0.08755029500000001, + "ttot": 0.079063567, "count": 2461, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 1.0035, - "count": 33726, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 1.5247, + "count": 34569, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 9.5367e-7, + "ttot": 0.0000011921, "count": 4, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 9.5367e-7, + "ttot": 0.0000038147, "count": 11, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Sendrecv", - "ttot": 0.0428679368, + "ttot": 0.0058070827, "count": 22, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Comm_free", "ttot": 0.00001502, "count": 1, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Barrier", - "ttot": 0.0037732, + "ttot": 0.0039017, "count": 3, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "60", - "ttot": 1.5944590655000004, + "nr": "46", + "ttot": 3.2848712059600014, "mpiCalls": [ { "call": "MPI_Irecv", - "ttot": 0.00995629601, - "count": 33726, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.00975941051, + "count": 34569, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Bcast", - "ttot": 0.11525986894, + "ttot": 0.12129235796999996, "count": 2445, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.29037549214999997, - "count": 34569, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "ttot": 1.53827272981, + "count": 36255, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Allreduce", - "ttot": 0.092137827, + "ttot": 0.089499006, "count": 2461, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 1.0495, - "count": 33726, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 1.5174, + "count": 34569, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0, + "ttot": 9.5367e-7, "count": 4, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0000030994, + "ttot": 0.0000011921, "count": 11, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Sendrecv", - "ttot": 0.033429216, + "ttot": 0.0047905819, "count": 22, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Comm_free", - "ttot": 0.000017166, + "ttot": 0.000015974, "count": 1, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Barrier", - "ttot": 0.0037801, + "ttot": 0.003839, "count": 3, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "56", - "ttot": 1.5842635501000009, + "nr": "47", + "ttot": 4.403404572430001, "mpiCalls": [ - { - "call": "MPI_Irecv", - "ttot": 0.00911089218, - "count": 33726, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Bcast", - "ttot": 0.10158842677, + "ttot": 0.13247702471, "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.5990204141099998, + "count": 3378, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Send", - "ttot": 0.32419554477999996, - "count": 34569, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "call": "MPI_Irecv", + "ttot": 0.00166559041, + "count": 6750, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 0.105624671, + "ttot": 3.220890688, "count": 2461, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 0.99704, - "count": 33726, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.43779, + "count": 6750, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 9.5367e-7, + "ttot": 0, "count": 4, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0000038147, + "ttot": 0.0000019073, "count": 11, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Sendrecv", - "ttot": 0.04281417999999999, + "ttot": 0.0077468809, "count": 22, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Comm_free", "ttot": 0.000014067, "count": 1, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Barrier", - "ttot": 0.003871, + "ttot": 0.003798, "count": 3, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "13", - "ttot": 1.5510977615600003, + "nr": "48", + "ttot": 1.6062182850600006, "mpiCalls": [ { - "call": "MPI_Bcast", - "ttot": 0.09676463420000002, - "count": 2445, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "call": "MPI_Irecv", + "ttot": 0.009332169289999998, + "count": 33726, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { - "call": "MPI_Send", - "ttot": 0.09094397924000001, - "count": 36255, + "call": "MPI_Bcast", + "ttot": 0.11819191718000002, + "count": 2445, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { - "call": "MPI_Irecv", - "ttot": 0.011415955849999996, + "call": "MPI_Send", + "ttot": 0.34098583945000005, "count": 34569, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Allreduce", - "ttot": 0.102351829, + "ttot": 0.08755029500000001, "count": 2461, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 1.2037, - "count": 34569, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 1.0035, + "count": 33726, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", "ttot": 9.5367e-7, "count": 4, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0000047684, + "ttot": 9.5367e-7, "count": 11, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Sendrecv", - "ttot": 0.0422504612, + "ttot": 0.0428679368, "count": 22, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Comm_free", - "ttot": 0.00002408, + "ttot": 0.00001502, "count": 1, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Barrier", - "ttot": 0.0036411, + "ttot": 0.0037732, "count": 3, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "52", - "ttot": 1.5155607658800003, + "nr": "49", + "ttot": 0.9803961374600005, "mpiCalls": [ - { - "call": "MPI_Irecv", - "ttot": 0.00899956455, - "count": 33726, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Bcast", - "ttot": 0.12380782817000001, + "ttot": 0.12157042053999999, "count": 2445, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.33007984616, - "count": 34569, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "ttot": 0.09116580151, + "count": 36255, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Allreduce", - "ttot": 0.084969612, - "count": 2461, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "call": "MPI_Irecv", + "ttot": 0.011303046009999996, + "count": 34569, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { - "call": "MPI_Wait", - "ttot": 0.92093, - "count": 33726, + "call": "MPI_Allreduce", + "ttot": 0.082808158, + "count": 2461, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, + { + "call": "MPI_Wait", + "ttot": 0.63039, + "count": 34569, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Comm_size", - "ttot": 0, + "ttot": 0.0000030994, "count": 4, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", "ttot": 0.000002861, "count": 11, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Sendrecv", - "ttot": 0.042854034, + "ttot": 0.039271571000000005, "count": 22, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Comm_free", - "ttot": 0.00001502, + "ttot": 0.00002718, "count": 1, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Barrier", - "ttot": 0.003902, + "ttot": 0.003854, "count": 3, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "41", - "ttot": 1.4582503616300009, + "nr": "50", + "ttot": 3.53974863469, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.13010748804, + "ttot": 0.11818934294000001, "count": 2445, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" - }, - { - "call": "MPI_Send", - "ttot": 0.09180401831, - "count": 37941, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Irecv", - "ttot": 0.01083902741, - "count": 35412, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.00894693011, + "count": 36255, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 2.6183891445400005, + "count": 37098, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Allreduce", - "ttot": 0.07541292599999999, + "ttot": 0.092978162, "count": 2461, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 1.1455, - "count": 35412, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.65725, + "count": 36255, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 9.5367e-7, + "ttot": 0.0000019073, "count": 4, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", "ttot": 0.0000019073, "count": 11, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Sendrecv", - "ttot": 0.0007901208999999998, + "ttot": 0.04019945250000001, "count": 22, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Comm_free", - "ttot": 0.00001502, + "ttot": 0.000025988, "count": 1, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Barrier", - "ttot": 0.0037789, + "ttot": 0.0037658, "count": 3, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "5", - "ttot": 1.4168942906899993, + "nr": "51", + "ttot": 4.380081229350001, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.08020176259999996, + "ttot": 0.12254866900000001, "count": 2445, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.09159136824, - "count": 37098, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "ttot": 0.75250540624, + "count": 3378, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Irecv", - "ttot": 0.01106021835, - "count": 36255, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.0015473345100000002, + "count": 6750, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 0.12201085700000001, + "ttot": 3.08439229, "count": 2461, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 1.0659, - "count": 36255, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.37375, + "count": 6750, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.0000030994, + "ttot": 0.0000019073, "count": 4, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0000038147, + "ttot": 0.0000019073, "count": 11, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Sendrecv", - "ttot": 0.0423013624, + "ttot": 0.04122382, "count": 22, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Comm_free", - "ttot": 0.000041008, + "ttot": 0.000027895, "count": 1, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Barrier", - "ttot": 0.0037808, + "ttot": 0.004082, "count": 3, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "9", - "ttot": 1.3820999678200006, + "nr": "52", + "ttot": 1.5155607658800003, "mpiCalls": [ { - "call": "MPI_Bcast", - "ttot": 0.10047234850000002, - "count": 2445, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "call": "MPI_Irecv", + "ttot": 0.00899956455, + "count": 33726, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { - "call": "MPI_Send", - "ttot": 0.09143675691, - "count": 37941, + "call": "MPI_Bcast", + "ttot": 0.12380782817000001, + "count": 2445, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { - "call": "MPI_Irecv", - "ttot": 0.011738793010000002, - "count": 35412, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "call": "MPI_Send", + "ttot": 0.33007984616, + "count": 34569, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Allreduce", - "ttot": 0.105144495, + "ttot": 0.084969612, "count": 2461, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 1.0273, - "count": 35412, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.92093, + "count": 33726, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.0000019073, + "ttot": 0, "count": 4, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0000047684, + "ttot": 0.000002861, "count": 11, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Sendrecv", - "ttot": 0.0423450247, + "ttot": 0.042854034, "count": 22, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Comm_free", - "ttot": 0.000015974, + "ttot": 0.00001502, "count": 1, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Barrier", - "ttot": 0.0036399, + "ttot": 0.003902, "count": 3, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "37", - "ttot": 1.3618171904100005, + "nr": "53", + "ttot": 0.9770211526600001, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.12667632581, + "ttot": 0.12743211154, "count": 2445, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.09178927527999999, + "ttot": 0.09223008204, "count": 37098, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Irecv", - "ttot": 0.01180981235, + "ttot": 0.010827340780000002, "count": 36255, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 0.07733251399999999, + "ttot": 0.078323587, "count": 2461, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, - { - "call": "MPI_Wait", - "ttot": 1.0361, - "count": 36255, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { - "call": "MPI_Comm_size", - "ttot": 9.5367e-7, + "call": "MPI_Wait", + "ttot": 0.62217, + "count": 36255, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.0000019073, "count": 4, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0000050068, + "ttot": 0.000002861, "count": 11, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Sendrecv", - "ttot": 0.0140542355, + "ttot": 0.042342542999999996, "count": 22, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Comm_free", - "ttot": 0.000014067, + "ttot": 0.00001502, "count": 1, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Barrier", - "ttot": 0.004035, + "ttot": 0.0036757, "count": 3, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "33", - "ttot": 1.3059618878600003, + "nr": "54", + "ttot": 3.5092817170400004, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.11854357804, + "ttot": 0.12409544680999997, "count": 2445, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" - }, - { - "call": "MPI_Send", - "ttot": 0.08906350768, - "count": 36255, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Irecv", - "ttot": 0.011068192939999999, - "count": 34569, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.00870298728, + "count": 36255, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 2.5881318710500003, + "count": 37098, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Allreduce", - "ttot": 0.08257393700000001, + "ttot": 0.086543861, "count": 2461, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 0.99992, - "count": 34569, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.65568, + "count": 36255, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.0000019073, + "ttot": 0.0000021458, "count": 4, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0000042915, + "ttot": 0.0000061989, "count": 11, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Sendrecv", - "ttot": 0.0007638913999999999, + "ttot": 0.042372432200000004, "count": 22, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Comm_free", - "ttot": 0.000014782, + "ttot": 0.000015974, "count": 1, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Barrier", - "ttot": 0.0040078, + "ttot": 0.0037308, "count": 3, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "1", - "ttot": 1.24637164048, + "nr": "55", + "ttot": 4.38033640925, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.07621964579999999, + "ttot": 0.10484531110000003, "count": 2445, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.09174368533999999, - "count": 36255, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "ttot": 0.74671630627, + "count": 3378, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Irecv", - "ttot": 0.010724165439999996, - "count": 34569, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.0015249157800000003, + "count": 6750, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 0.12200719899999998, + "ttot": 3.106494178, "count": 2461, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 0.90224, - "count": 34569, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.37618, + "count": 6750, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.0000030994, + "ttot": 0.000002861, "count": 4, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0000059605, + "ttot": 0.0000011921, "count": 11, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Sendrecv", - "ttot": 0.039468478, + "ttot": 0.040534771, "count": 22, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Comm_free", - "ttot": 0.000047207, + "ttot": 0.000015974, "count": 1, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Barrier", - "ttot": 0.0039122, + "ttot": 0.0040209, "count": 3, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "61", - "ttot": 1.1354740810900006, + "nr": "56", + "ttot": 1.5842635501000009, "mpiCalls": [ { - "call": "MPI_Bcast", - "ttot": 0.12770686104, - "count": 2445, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "call": "MPI_Irecv", + "ttot": 0.00911089218, + "count": 33726, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { - "call": "MPI_Send", - "ttot": 0.09061569467, - "count": 36255, + "call": "MPI_Bcast", + "ttot": 0.10158842677, + "count": 2445, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { - "call": "MPI_Irecv", - "ttot": 0.01093047341, + "call": "MPI_Send", + "ttot": 0.32419554477999996, "count": 34569, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Allreduce", - "ttot": 0.07900347199999999, + "ttot": 0.105624671, "count": 2461, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 0.7812, - "count": 34569, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.99704, + "count": 33726, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", "ttot": 9.5367e-7, "count": 4, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0000019073, + "ttot": 0.0000038147, "count": 11, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Sendrecv", - "ttot": 0.042240745, + "ttot": 0.04281417999999999, "count": 22, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Comm_free", - "ttot": 0.000015974, + "ttot": 0.000014067, "count": 1, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Barrier", - "ttot": 0.003758, + "ttot": 0.003871, "count": 3, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "49", - "ttot": 0.9803961374600005, + "nr": "57", + "ttot": 0.93383583263, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.12157042053999999, + "ttot": 0.13637749067, "count": 2445, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.09116580151, - "count": 36255, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "ttot": 0.09087415017000001, + "count": 37941, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Irecv", - "ttot": 0.011303046009999996, - "count": 34569, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.011984795789999997, + "count": 35412, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 0.082808158, + "ttot": 0.07753644000000001, "count": 2461, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 0.63039, - "count": 34569, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.57118, + "count": 35412, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.0000030994, + "ttot": 0.0000019073, "count": 4, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.000002861, + "ttot": 0.0000038147, "count": 11, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Sendrecv", - "ttot": 0.039271571000000005, + "ttot": 0.04203939300000001, "count": 22, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Comm_free", - "ttot": 0.00002718, + "ttot": 0.000026941, "count": 1, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Barrier", - "ttot": 0.003854, + "ttot": 0.0038109, "count": 3, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "53", - "ttot": 0.9770211526600001, + "nr": "58", + "ttot": 3.6554962959300012, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.12743211154, + "ttot": 0.12443705454000001, "count": 2445, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" - }, - { - "call": "MPI_Send", - "ttot": 0.09223008204, - "count": 37098, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Irecv", - "ttot": 0.010827340780000002, - "count": 36255, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.00827768118, + "count": 35412, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 2.7848527844399995, + "count": 35412, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Allreduce", - "ttot": 0.078323587, + "ttot": 0.086886005, "count": 2461, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 0.62217, - "count": 36255, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.60476, + "count": 35412, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.0000019073, + "ttot": 9.5367e-7, "count": 4, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", "ttot": 0.000002861, "count": 11, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Sendrecv", - "ttot": 0.042342542999999996, + "ttot": 0.0423586361, "count": 22, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Comm_free", - "ttot": 0.00001502, + "ttot": 0.00001812, "count": 1, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Barrier", - "ttot": 0.0036757, + "ttot": 0.0039022, "count": 3, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "25", - "ttot": 0.9426275988999999, + "nr": "59", + "ttot": 4.377340544619998, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.13208435747, + "ttot": 0.11684439354000001, "count": 2445, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.09033240382, - "count": 37941, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "ttot": 0.74251291417, + "count": 3378, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Irecv", - "ttot": 0.011114603110000001, - "count": 35412, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "ttot": 0.0015413691100000003, + "count": 6750, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 0.07418241899999999, + "ttot": 3.098561188, "count": 2461, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 0.5897, - "count": 35412, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 0.37273, + "count": 6750, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", "ttot": 0.0000019073, "count": 4, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0000030994, + "ttot": 0.0000050068, "count": 11, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Sendrecv", - "ttot": 0.041302088800000004, + "ttot": 0.0411490847, "count": 22, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Comm_free", - "ttot": 0.00001502, + "ttot": 0.000017881, "count": 1, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Barrier", - "ttot": 0.0038917, + "ttot": 0.0039768, "count": 3, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "57", - "ttot": 0.93383583263, + "nr": "60", + "ttot": 1.5944590655000004, "mpiCalls": [ { - "call": "MPI_Bcast", - "ttot": 0.13637749067, - "count": 2445, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "call": "MPI_Irecv", + "ttot": 0.00995629601, + "count": 33726, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { - "call": "MPI_Send", - "ttot": 0.09087415017000001, - "count": 37941, + "call": "MPI_Bcast", + "ttot": 0.11525986894, + "count": 2445, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { - "call": "MPI_Irecv", - "ttot": 0.011984795789999997, - "count": 35412, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "call": "MPI_Send", + "ttot": 0.29037549214999997, + "count": 34569, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Allreduce", - "ttot": 0.07753644000000001, + "ttot": 0.092137827, "count": 2461, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 0.57118, - "count": 35412, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "ttot": 1.0495, + "count": 33726, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.0000019073, + "ttot": 0, "count": 4, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0000038147, + "ttot": 0.0000030994, "count": 11, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Sendrecv", - "ttot": 0.04203939300000001, + "ttot": 0.033429216, "count": 22, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Comm_free", - "ttot": 0.000026941, + "ttot": 0.000017166, "count": 1, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Barrier", - "ttot": 0.0038109, + "ttot": 0.0037801, "count": 3, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "29", - "ttot": 0.8006057966200001, + "nr": "61", + "ttot": 1.1354740810900006, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.12264468144, + "ttot": 0.12770686104, "count": 2445, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 0.08968604187999998, + "ttot": 0.09061569467, "count": 36255, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Irecv", - "ttot": 0.0117699798, + "ttot": 0.01093047341, "count": 34569, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 0.076014108, + "ttot": 0.07900347199999999, "count": 2461, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Wait", - "ttot": 0.45508, + "ttot": 0.7812, "count": 34569, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 0.0000021458, + "ttot": 9.5367e-7, "count": 4, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", "ttot": 0.0000019073, "count": 11, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Sendrecv", - "ttot": 0.041547204399999996, + "ttot": 0.042240745, "count": 22, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Comm_free", - "ttot": 0.000013828, + "ttot": 0.000015974, "count": 1, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Barrier", - "ttot": 0.0038459, + "ttot": 0.003758, "count": 3, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "21", - "ttot": 0.7646737976000004, + "nr": "62", + "ttot": 3.6765468953300005, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.12287212586999997, + "ttot": 0.13020980427, "count": 2445, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" - }, - { - "call": "MPI_Send", - "ttot": 0.09203789774999999, - "count": 37098, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Irecv", - "ttot": 0.011716807679999998, + "ttot": 0.00815367494, + "count": 34569, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 2.59592201155, "count": 36255, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Allreduce", - "ttot": 0.07654810799999999, + "ttot": 0.08913830099999999, "count": 2461, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.80686, + "count": 34569, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { - "call": "MPI_Wait", - "ttot": 0.41607, - "count": 36255, + "call": "MPI_Comm_size", + "ttot": 9.5367e-7, + "count": 4, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0000019073, + "count": 11, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Sendrecv", + "ttot": 0.042302962599999994, + "count": 22, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Comm_free", + "ttot": 0.00002408, + "count": 1, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0039332, + "count": 3, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "63", + "ttot": 4.387765185539998, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.09818256754000002, + "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.7124545823499998, + "count": 3378, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.00171971435, + "count": 6750, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 3.146316964, + "count": 2461, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, + { + "call": "MPI_Wait", + "ttot": 0.38393, + "count": 6750, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Comm_size", - "ttot": 0.0000019073, + "ttot": 0.0000011921, "count": 4, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0000040531, + "ttot": 0.000002861, "count": 11, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" }, { "call": "MPI_Finalize", "ttot": 0, "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" }, { "call": "MPI_Init", "ttot": 0, "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Sendrecv", + "ttot": 0.0411635762, + "count": 22, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Comm_free", + "ttot": 0.000016928, + "count": 1, "color": "rgb(57, 106, 177)", "hoverColor": "rgb(77, 126, 197)" }, + { + "call": "MPI_Barrier", + "ttot": 0.0039768, + "count": 3, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + } + ], + "mpiCallsByTaskSorted": [ + { + "nr": "47", + "ttot": 4.403404572430001, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.13247702471, + "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.5990204141099998, + "count": 3378, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.00166559041, + "count": 6750, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 3.220890688, + "count": 2461, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.43779, + "count": 6750, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0, + "count": 4, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0000019073, + "count": 11, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Sendrecv", - "ttot": 0.0416329699, + "ttot": 0.0077468809, "count": 22, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" }, { "call": "MPI_Comm_free", - "ttot": 0.000013828, + "ttot": 0.000014067, "count": 1, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" }, { "call": "MPI_Barrier", - "ttot": 0.0037761, + "ttot": 0.003798, "count": 3, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" } ] }, { - "nr": "17", - "ttot": 0.5378492292000001, - "mpiCalls": [ - { - "call": "MPI_Bcast", - "ttot": 0.11785921616999999, - "count": 2445, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" - }, - { - "call": "MPI_Send", - "ttot": 0.09040114922, - "count": 36255, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" - }, - { - "call": "MPI_Irecv", - "ttot": 0.01132560041, - "count": 34569, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, - { - "call": "MPI_Allreduce", - "ttot": 0.08025480700000001, - "count": 2461, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, - { - "call": "MPI_Wait", - "ttot": 0.19559, - "count": 34569, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" - }, - { - "call": "MPI_Comm_size", - "ttot": 0.0000019073, - "count": 4, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" - }, - { - "call": "MPI_Comm_rank", - "ttot": 0.00000453, - "count": 11, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" - }, - { - "call": "MPI_Finalize", - "ttot": 0, - "count": 1, - "color": "rgb(204, 194, 16)", - "hoverColor": "rgb(224, 214, 36)" - }, - { - "call": "MPI_Init", - "ttot": 0, - "count": 1, - "color": "rgb(57, 106, 177)", - "hoverColor": "rgb(77, 126, 197)" - }, - { - "call": "MPI_Sendrecv", - "ttot": 0.0384568521, - "count": 22, - "color": "rgb(218, 124, 48)", - "hoverColor": "rgb(238, 144, 68)" - }, - { - "call": "MPI_Comm_free", - "ttot": 0.000014067, - "count": 1, - "color": "rgb(62, 150, 81)", - "hoverColor": "rgb(82, 170, 101)" - }, - { - "call": "MPI_Barrier", - "ttot": 0.0039411, - "count": 3, - "color": "rgb(204, 37, 41)", - "hoverColor": "rgb(224, 57, 61)" - } + "nr": "15", + "ttot": 4.390536181849997, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.12865583020000002, + "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.0014615072400000003, + "count": 6750, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 3.2243652739999997, + "count": 2461, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 0.5987772141099998, + "count": 3378, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Wait", + "ttot": 0.39221, + "count": 6750, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.0000019073, + "count": 4, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0000042915, + "count": 11, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Sendrecv", + "ttot": 0.0409929375, + "count": 22, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Comm_free", + "ttot": 0.00001502, + "count": 1, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0040522, + "count": 3, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "39", + "ttot": 4.388768769849998, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.1063723588, + "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.6367636062099999, + "count": 3378, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.0015644967699999998, + "count": 6750, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 3.2077339719999998, + "count": 2461, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.42677, + "count": 6750, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 9.5367e-7, + "count": 4, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0000019073, + "count": 11, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Sendrecv", + "ttot": 0.0056626550999999995, + "count": 22, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Comm_free", + "ttot": 0.00001502, + "count": 1, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0038838, + "count": 3, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "63", + "ttot": 4.387765185539998, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.09818256754000002, + "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.7124545823499998, + "count": 3378, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.00171971435, + "count": 6750, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 3.146316964, + "count": 2461, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.38393, + "count": 6750, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.0000011921, + "count": 4, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000002861, + "count": 11, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Sendrecv", + "ttot": 0.0411635762, + "count": 22, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Comm_free", + "ttot": 0.000016928, + "count": 1, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0039768, + "count": 3, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "43", + "ttot": 4.385934691050001, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.11889067094000001, + "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.6461835989000002, + "count": 3378, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.00159787521, + "count": 6750, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 3.1864090239999996, + "count": 2461, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.42654, + "count": 6750, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.0000021458, + "count": 4, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0000061989, + "count": 11, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Sendrecv", + "ttot": 0.0024454573, + "count": 22, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Comm_free", + "ttot": 0.00001502, + "count": 1, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0038447, + "count": 3, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "23", + "ttot": 4.385379103349999, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.1049133992, + "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.00164510271, + "count": 6750, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 3.0621775490000003, + "count": 2461, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 0.7955199988699999, + "count": 3378, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Wait", + "ttot": 0.37703, + "count": 6750, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 9.5367e-7, + "count": 4, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000002861, + "count": 11, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Sendrecv", + "ttot": 0.0401143189, + "count": 22, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Comm_free", + "ttot": 0.00001502, + "count": 1, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0039599, + "count": 3, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "31", + "ttot": 4.383515757230001, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.12334000344, + "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.0015735669100000003, + "count": 6750, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 3.05264071, + "count": 2461, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 0.7878667599100001, + "count": 3378, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Wait", + "ttot": 0.37349, + "count": 6750, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 9.5367e-7, + "count": 4, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0000038147, + "count": 11, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Sendrecv", + "ttot": 0.0403877746, + "count": 22, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Comm_free", + "ttot": 0.000015974, + "count": 1, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0041962, + "count": 3, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "35", + "ttot": 4.3834727407799985, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.12374557907, + "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.67081060624, + "count": 3378, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.0018756348, + "count": 6750, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 3.159821506, + "count": 2461, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.4042, + "count": 6750, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 9.5367e-7, + "count": 4, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000002861, + "count": 11, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Sendrecv", + "ttot": 0.019081479999999998, + "count": 22, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Comm_free", + "ttot": 0.00001812, + "count": 1, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.003916, + "count": 3, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "3", + "ttot": 4.3827305339499985, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.07678277636999997, + "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.0014965485, + "count": 6750, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 3.2009811040000002, + "count": 2461, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 0.6719731280099999, + "count": 3378, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Wait", + "ttot": 0.38629, + "count": 6750, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 9.5367e-7, + "count": 4, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0000030994, + "count": 11, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Sendrecv", + "ttot": 0.04115505, + "count": 22, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Comm_free", + "ttot": 0.000015974, + "count": 1, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0040319, + "count": 3, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "7", + "ttot": 4.380636115910001, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.09182728150000001, + "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.00148392824, + "count": 6750, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 3.21557107, + "count": 2461, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 0.6386619683700001, + "count": 3378, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Wait", + "ttot": 0.38887, + "count": 6750, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000002861, + "count": 4, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0000038147, + "count": 11, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Sendrecv", + "ttot": 0.0404264431, + "count": 22, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Comm_free", + "ttot": 0.000028849, + "count": 1, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0037599, + "count": 3, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "55", + "ttot": 4.38033640925, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.10484531110000003, + "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.74671630627, + "count": 3378, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.0015249157800000003, + "count": 6750, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 3.106494178, + "count": 2461, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.37618, + "count": 6750, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000002861, + "count": 4, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0000011921, + "count": 11, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Sendrecv", + "ttot": 0.040534771, + "count": 22, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Comm_free", + "ttot": 0.000015974, + "count": 1, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0040209, + "count": 3, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "51", + "ttot": 4.380081229350001, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.12254866900000001, + "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.75250540624, + "count": 3378, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.0015473345100000002, + "count": 6750, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 3.08439229, + "count": 2461, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.37375, + "count": 6750, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.0000019073, + "count": 4, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0000019073, + "count": 11, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Sendrecv", + "ttot": 0.04122382, + "count": 22, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Comm_free", + "ttot": 0.000027895, + "count": 1, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.004082, + "count": 3, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "27", + "ttot": 4.378457483359996, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.11653011814, + "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.0014288380500000002, + "count": 6750, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 3.0902747770000003, + "count": 2461, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 0.75174519887, + "count": 3378, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Wait", + "ttot": 0.37374, + "count": 6750, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.0000021458, + "count": 4, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0000050068, + "count": 11, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Sendrecv", + "ttot": 0.0407276247, + "count": 22, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Comm_free", + "ttot": 0.000015974, + "count": 1, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0039878, + "count": 3, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "11", + "ttot": 4.377764783579994, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.09547162289999998, + "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.00152540247, + "count": 6750, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 3.2044651570000005, + "count": 2461, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 0.6453511141099999, + "count": 3378, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Wait", + "ttot": 0.38603, + "count": 6750, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000002861, + "count": 4, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0000054836, + "count": 11, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Sendrecv", + "ttot": 0.0411020615, + "count": 22, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Comm_free", + "ttot": 0.000063181, + "count": 1, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0037479, + "count": 3, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "19", + "ttot": 4.37767884992, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.12125564140999999, + "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.00158571907, + "count": 6750, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 3.0196938179999995, + "count": 2461, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 0.82435140677, + "count": 3378, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Wait", + "ttot": 0.36586, + "count": 6750, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 9.5367e-7, + "count": 4, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000002861, + "count": 11, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Sendrecv", + "ttot": 0.04065143, + "count": 22, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Comm_free", + "ttot": 0.00001502, + "count": 1, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.004262, + "count": 3, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "59", + "ttot": 4.377340544619998, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.11684439354000001, + "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.74251291417, + "count": 3378, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.0015413691100000003, + "count": 6750, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 3.098561188, + "count": 2461, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.37273, + "count": 6750, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.0000019073, + "count": 4, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0000050068, + "count": 11, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Sendrecv", + "ttot": 0.0411490847, + "count": 22, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Comm_free", + "ttot": 0.000017881, + "count": 1, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0039768, + "count": 3, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "62", + "ttot": 3.6765468953300005, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.13020980427, + "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.00815367494, + "count": 34569, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 2.59592201155, + "count": 36255, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.08913830099999999, + "count": 2461, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.80686, + "count": 34569, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 9.5367e-7, + "count": 4, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0000019073, + "count": 11, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Sendrecv", + "ttot": 0.042302962599999994, + "count": 22, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Comm_free", + "ttot": 0.00002408, + "count": 1, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0039332, + "count": 3, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "58", + "ttot": 3.6554962959300012, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.12443705454000001, + "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.00827768118, + "count": 35412, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 2.7848527844399995, + "count": 35412, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.086886005, + "count": 2461, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.60476, + "count": 35412, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 9.5367e-7, + "count": 4, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000002861, + "count": 11, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Sendrecv", + "ttot": 0.0423586361, + "count": 22, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Comm_free", + "ttot": 0.00001812, + "count": 1, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0039022, + "count": 3, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "50", + "ttot": 3.53974863469, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.11818934294000001, + "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.00894693011, + "count": 36255, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 2.6183891445400005, + "count": 37098, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.092978162, + "count": 2461, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.65725, + "count": 36255, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.0000019073, + "count": 4, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0000019073, + "count": 11, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Sendrecv", + "ttot": 0.04019945250000001, + "count": 22, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Comm_free", + "ttot": 0.000025988, + "count": 1, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0037658, + "count": 3, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "54", + "ttot": 3.5092817170400004, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.12409544680999997, + "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.00870298728, + "count": 36255, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 2.5881318710500003, + "count": 37098, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.086543861, + "count": 2461, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.65568, + "count": 36255, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.0000021458, + "count": 4, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0000061989, + "count": 11, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Sendrecv", + "ttot": 0.042372432200000004, + "count": 22, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Comm_free", + "ttot": 0.000015974, + "count": 1, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0037308, + "count": 3, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "42", + "ttot": 3.32188564503, + "mpiCalls": [ + { + "call": "MPI_Irecv", + "ttot": 0.00885133008, + "count": 35412, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.12373896497, + "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 1.9348742756800001, + "count": 35412, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.08706894700000001, + "count": 2461, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 1.161, + "count": 35412, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.0000021458, + "count": 4, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0000030994, + "count": 11, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Sendrecv", + "ttot": 0.0026018161, + "count": 22, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Comm_free", + "ttot": 0.000017166, + "count": 1, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0037279, + "count": 3, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "46", + "ttot": 3.2848712059600014, + "mpiCalls": [ + { + "call": "MPI_Irecv", + "ttot": 0.00975941051, + "count": 34569, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.12129235796999996, + "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 1.53827272981, + "count": 36255, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.089499006, + "count": 2461, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 1.5174, + "count": 34569, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 9.5367e-7, + "count": 4, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0000011921, + "count": 11, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Sendrecv", + "ttot": 0.0047905819, + "count": 22, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Comm_free", + "ttot": 0.000015974, + "count": 1, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.003839, + "count": 3, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "34", + "ttot": 3.254508123380002, + "mpiCalls": [ + { + "call": "MPI_Irecv", + "ttot": 0.009796175789999998, + "count": 36255, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.11746038627, + "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 2.0193760921500004, + "count": 37098, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.093448977, + "count": 2461, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 1.0035, + "count": 36255, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 9.5367e-7, + "count": 4, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0000023842, + "count": 11, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Sendrecv", + "ttot": 0.007011180299999999, + "count": 22, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Comm_free", + "ttot": 0.000015974, + "count": 1, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.003896, + "count": 3, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "30", + "ttot": 3.25265475044, + "mpiCalls": [ + { + "call": "MPI_Irecv", + "ttot": 0.009663839149999999, + "count": 34569, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.12376094634, + "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 2.50522525585, + "count": 36255, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.08635657100000001, + "count": 2461, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.48187, + "count": 34569, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.0000019073, + "count": 4, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0000019073, + "count": 11, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Sendrecv", + "ttot": 0.0419860495, + "count": 22, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Comm_free", + "ttot": 0.000015974, + "count": 1, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0037723, + "count": 3, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "26", + "ttot": 3.141405785120002, + "mpiCalls": [ + { + "call": "MPI_Irecv", + "ttot": 0.009308592970000001, + "count": 35412, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.12338313946999999, + "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 2.2531581055100003, + "count": 35412, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.084352197, + "count": 2461, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.62548, + "count": 35412, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 9.5367e-7, + "count": 4, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0000019073, + "count": 11, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Sendrecv", + "ttot": 0.0420327692, + "count": 22, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Comm_free", + "ttot": 0.00001502, + "count": 1, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0036731, + "count": 3, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "38", + "ttot": 3.1272477490800012, + "mpiCalls": [ + { + "call": "MPI_Irecv", + "ttot": 0.01028541488, + "count": 36255, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.12222456904000001, + "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 1.81900740736, + "count": 37098, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.08490080100000001, + "count": 2461, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 1.0824, + "count": 36255, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.0000019073, + "count": 4, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0, + "count": 11, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Sendrecv", + "ttot": 0.0047156755, + "count": 22, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Comm_free", + "ttot": 0.000015974, + "count": 1, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.003696, + "count": 3, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "22", + "ttot": 3.0824231011900007, + "mpiCalls": [ + { + "call": "MPI_Irecv", + "ttot": 0.009531101569999999, + "count": 36255, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.12146369896999999, + "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 2.3710764653500003, + "count": 37098, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.083240327, + "count": 2461, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.45129, + "count": 36255, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.0000019073, + "count": 4, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0000042915, + "count": 11, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Sendrecv", + "ttot": 0.0419643895, + "count": 22, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Comm_free", + "ttot": 0.00001502, + "count": 1, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0038359, + "count": 3, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "18", + "ttot": 3.0127904367499996, + "mpiCalls": [ + { + "call": "MPI_Irecv", + "ttot": 0.009734148469999999, + "count": 36255, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.11679258237, + "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 2.5319523040400003, + "count": 37098, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.09047332699999999, + "count": 2461, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.22053, + "count": 36255, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 9.5367e-7, + "count": 4, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0000019073, + "count": 11, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Sendrecv", + "ttot": 0.0396123019, + "count": 22, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Comm_free", + "ttot": 0.000016212, + "count": 1, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0036767, + "count": 3, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "14", + "ttot": 2.9655018860299998, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.09519135857000001, + "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.00920785991, + "count": 34569, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 1.47412038335, + "count": 36255, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.11305436600000002, + "count": 2461, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 1.2276, + "count": 34569, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.0000030994, + "count": 4, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0000019073, + "count": 11, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Sendrecv", + "ttot": 0.0425301165, + "count": 22, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Comm_free", + "ttot": 0.000027895, + "count": 1, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0037649, + "count": 3, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "6", + "ttot": 2.8506290463199995, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.0761020053, + "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.01023631281, + "count": 36255, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 1.5012789629099998, + "count": 37098, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.129675515, + "count": 2461, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 1.087, + "count": 36255, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.0000030994, + "count": 4, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0000066757, + "count": 11, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Sendrecv", + "ttot": 0.0425001282, + "count": 22, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Comm_free", + "ttot": 0.000038147, + "count": 1, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0037882, + "count": 3, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "10", + "ttot": 2.82547521132, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.0944344446, + "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.010187354580000002, + "count": 35412, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 1.51154998364, + "count": 35412, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.114060467, + "count": 2461, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 1.0489, + "count": 35412, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000002861, + "count": 4, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0000078678, + "count": 11, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Sendrecv", + "ttot": 0.0424433657, + "count": 22, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Comm_free", + "ttot": 0.000014067, + "count": 1, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0038748, + "count": 3, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "2", + "ttot": 2.8120303848299995, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.07564677550000001, + "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.00985278948, + "count": 36255, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 1.62143738185, + "count": 37098, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.132828142, + "count": 2461, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.92815, + "count": 36255, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.0000021458, + "count": 4, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0000059605, + "count": 11, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Sendrecv", + "ttot": 0.0403020227, + "count": 22, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Comm_free", + "ttot": 0.000014067, + "count": 1, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0037911, + "count": 3, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "8", + "ttot": 2.2953017818200006, + "mpiCalls": [ + { + "call": "MPI_Irecv", + "ttot": 0.009862434370000001, + "count": 33726, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 0.35628245315, + "count": 34569, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.08926206060000001, + "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.115097554, + "count": 2461, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 1.6784, + "count": 33726, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.0000019073, + "count": 4, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0000047684, + "count": 11, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Sendrecv", + "ttot": 0.04238943, + "count": 22, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Comm_free", + "ttot": 0.000015974, + "count": 1, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0039852, + "count": 3, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "12", + "ttot": 2.28830860376, + "mpiCalls": [ + { + "call": "MPI_Irecv", + "ttot": 0.00875899951, + "count": 33726, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 0.30259940668, + "count": 34569, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.09407783139999999, + "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.110382599, + "count": 2461, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 1.7355, + "count": 33726, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 9.5367e-7, + "count": 4, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0000088215, + "count": 11, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Sendrecv", + "ttot": 0.033036818, + "count": 22, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Comm_free", + "ttot": 0.000015974, + "count": 1, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0039272, + "count": 3, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "0", + "ttot": 2.2333901101300015, + "mpiCalls": [ + { + "call": "MPI_Irecv", + "ttot": 0.009639959480000002, + "count": 33726, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 0.3793110646500002, + "count": 34569, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.0432604605, + "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.111014438, + "count": 2461, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 1.6474, + "count": 33726, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.0000030994, + "count": 4, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0000040531, + "count": 11, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Sendrecv", + "ttot": 0.042584901, + "count": 22, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Comm_free", + "ttot": 0.000015974, + "count": 1, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00015616, + "count": 3, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "4", + "ttot": 2.218522090359999, + "mpiCalls": [ + { + "call": "MPI_Irecv", + "ttot": 0.009205119109999996, + "count": 33726, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 0.3420663989500002, + "count": 34569, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.07609447179999998, + "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.128996217, + "count": 2461, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 1.6155, + "count": 33726, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.0000033379, + "count": 4, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0000038147, + "count": 11, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Sendrecv", + "ttot": 0.0425614569, + "count": 22, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Comm_free", + "ttot": 0.000015974, + "count": 1, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0040753, + "count": 3, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "44", + "ttot": 2.1449661161300018, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.11583021147000001, + "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.2787249724800001, + "count": 34569, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.00981117508, + "count": 33726, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.091785416, + "count": 2461, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 1.6349, + "count": 33726, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.0000019073, + "count": 4, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0000019073, + "count": 11, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Sendrecv", + "ttot": 0.0101401525, + "count": 22, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Comm_free", + "ttot": 0.000015974, + "count": 1, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0037544, + "count": 3, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "28", + "ttot": 2.1401937391000008, + "mpiCalls": [ + { + "call": "MPI_Irecv", + "ttot": 0.00975923384, + "count": 33726, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 0.4569528614200002, + "count": 34569, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.11658704514, + "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.09075763199999999, + "count": 2461, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 1.4296, + "count": 33726, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.0000011921, + "count": 4, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0000030994, + "count": 11, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Sendrecv", + "ttot": 0.032821900200000004, + "count": 22, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Comm_free", + "ttot": 0.000012875, + "count": 1, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0036979, + "count": 3, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "36", + "ttot": 2.1128904844400016, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.12054678590999997, + "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.32811199608000013, + "count": 34569, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.009360076479999998, + "count": 33726, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.086495898, + "count": 2461, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 1.5545, + "count": 33726, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 9.5367e-7, + "count": 4, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0000047684, + "count": 11, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Sendrecv", + "ttot": 0.0102271779, + "count": 22, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Comm_free", + "ttot": 0.000016928, + "count": 1, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0036259, + "count": 3, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "16", + "ttot": 2.1127067755599995, + "mpiCalls": [ + { + "call": "MPI_Irecv", + "ttot": 0.009201970240000001, + "count": 33726, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 0.48712320851, + "count": 34569, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.11721709254, + "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.08698561599999999, + "count": 2461, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 1.3659, + "count": 33726, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 9.5367e-7, + "count": 4, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0000038147, + "count": 11, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Sendrecv", + "ttot": 0.042350199899999996, + "count": 22, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Comm_free", + "ttot": 0.00001502, + "count": 1, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0039089, + "count": 3, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "20", + "ttot": 2.0983671023, + "mpiCalls": [ + { + "call": "MPI_Irecv", + "ttot": 0.00973993211, + "count": 33726, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 0.46889527565000017, + "count": 34569, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.12499657827, + "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.084043598, + "count": 2461, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 1.3645, + "count": 33726, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 9.5367e-7, + "count": 4, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0000030994, + "count": 11, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Sendrecv", + "ttot": 0.0423292982, + "count": 22, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Comm_free", + "ttot": 0.000014067, + "count": 1, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0038443, + "count": 3, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "40", + "ttot": 2.079995128229999, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.10096472766999999, + "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.3236872153100002, + "count": 34569, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.00927620691, + "count": 33726, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.105865214, + "count": 2461, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 1.5162, + "count": 33726, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 9.5367e-7, + "count": 4, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 9.5367e-7, + "count": 11, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Sendrecv", + "ttot": 0.020348283, + "count": 22, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Comm_free", + "ttot": 0.000015974, + "count": 1, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0036356, + "count": 3, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "24", + "ttot": 2.077890571810002, + "mpiCalls": [ + { + "call": "MPI_Irecv", + "ttot": 0.009082355649999999, + "count": 33726, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 0.41841272835000004, + "count": 34569, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.10386076963999999, + "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.10337790000000001, + "count": 2461, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 1.397, + "count": 33726, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 9.5367e-7, + "count": 4, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0000042915, + "count": 11, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Sendrecv", + "ttot": 0.04230756, + "count": 22, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Comm_free", + "ttot": 0.000013113, + "count": 1, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0038309, + "count": 3, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "32", + "ttot": 2.04903833476, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.12121426587, + "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.35402829258000007, + "count": 34569, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.009214667709999999, + "count": 33726, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.087441745, + "count": 2461, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 1.4536, + "count": 33726, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.000002861, + "count": 4, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0000050068, + "count": 11, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Sendrecv", + "ttot": 0.019748467799999996, + "count": 22, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Comm_free", + "ttot": 0.000016928, + "count": 1, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0037661, + "count": 3, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "45", + "ttot": 1.8363188253300005, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.12215466864, + "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.08922117631, + "count": 36255, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.01145060388, + "count": 34569, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.079063567, + "count": 2461, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 1.5247, + "count": 34569, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.0000011921, + "count": 4, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0000038147, + "count": 11, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Sendrecv", + "ttot": 0.0058070827, + "count": 22, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Comm_free", + "ttot": 0.00001502, + "count": 1, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0039017, + "count": 3, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "48", + "ttot": 1.6062182850600006, + "mpiCalls": [ + { + "call": "MPI_Irecv", + "ttot": 0.009332169289999998, + "count": 33726, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.11819191718000002, + "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.34098583945000005, + "count": 34569, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.08755029500000001, + "count": 2461, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 1.0035, + "count": 33726, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 9.5367e-7, + "count": 4, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 9.5367e-7, + "count": 11, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Sendrecv", + "ttot": 0.0428679368, + "count": 22, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Comm_free", + "ttot": 0.00001502, + "count": 1, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0037732, + "count": 3, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "60", + "ttot": 1.5944590655000004, + "mpiCalls": [ + { + "call": "MPI_Irecv", + "ttot": 0.00995629601, + "count": 33726, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.11525986894, + "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.29037549214999997, + "count": 34569, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.092137827, + "count": 2461, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 1.0495, + "count": 33726, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0, + "count": 4, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0000030994, + "count": 11, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Sendrecv", + "ttot": 0.033429216, + "count": 22, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Comm_free", + "ttot": 0.000017166, + "count": 1, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0037801, + "count": 3, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "56", + "ttot": 1.5842635501000009, + "mpiCalls": [ + { + "call": "MPI_Irecv", + "ttot": 0.00911089218, + "count": 33726, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.10158842677, + "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.32419554477999996, + "count": 34569, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.105624671, + "count": 2461, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.99704, + "count": 33726, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 9.5367e-7, + "count": 4, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0000038147, + "count": 11, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Sendrecv", + "ttot": 0.04281417999999999, + "count": 22, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Comm_free", + "ttot": 0.000014067, + "count": 1, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.003871, + "count": 3, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "13", + "ttot": 1.5510977615600003, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.09676463420000002, + "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.09094397924000001, + "count": 36255, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.011415955849999996, + "count": 34569, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.102351829, + "count": 2461, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 1.2037, + "count": 34569, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 9.5367e-7, + "count": 4, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0000047684, + "count": 11, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Sendrecv", + "ttot": 0.0422504612, + "count": 22, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Comm_free", + "ttot": 0.00002408, + "count": 1, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0036411, + "count": 3, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "52", + "ttot": 1.5155607658800003, + "mpiCalls": [ + { + "call": "MPI_Irecv", + "ttot": 0.00899956455, + "count": 33726, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.12380782817000001, + "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.33007984616, + "count": 34569, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.084969612, + "count": 2461, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.92093, + "count": 33726, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0, + "count": 4, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000002861, + "count": 11, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Sendrecv", + "ttot": 0.042854034, + "count": 22, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Comm_free", + "ttot": 0.00001502, + "count": 1, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.003902, + "count": 3, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "41", + "ttot": 1.4582503616300009, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.13010748804, + "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.09180401831, + "count": 37941, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.01083902741, + "count": 35412, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.07541292599999999, + "count": 2461, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 1.1455, + "count": 35412, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 9.5367e-7, + "count": 4, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0000019073, + "count": 11, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Sendrecv", + "ttot": 0.0007901208999999998, + "count": 22, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Comm_free", + "ttot": 0.00001502, + "count": 1, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0037789, + "count": 3, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "5", + "ttot": 1.4168942906899993, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.08020176259999996, + "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.09159136824, + "count": 37098, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.01106021835, + "count": 36255, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.12201085700000001, + "count": 2461, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 1.0659, + "count": 36255, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.0000030994, + "count": 4, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0000038147, + "count": 11, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Sendrecv", + "ttot": 0.0423013624, + "count": 22, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Comm_free", + "ttot": 0.000041008, + "count": 1, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0037808, + "count": 3, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "9", + "ttot": 1.3820999678200006, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.10047234850000002, + "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.09143675691, + "count": 37941, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.011738793010000002, + "count": 35412, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.105144495, + "count": 2461, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 1.0273, + "count": 35412, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.0000019073, + "count": 4, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0000047684, + "count": 11, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Sendrecv", + "ttot": 0.0423450247, + "count": 22, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Comm_free", + "ttot": 0.000015974, + "count": 1, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0036399, + "count": 3, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "37", + "ttot": 1.3618171904100005, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.12667632581, + "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.09178927527999999, + "count": 37098, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.01180981235, + "count": 36255, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.07733251399999999, + "count": 2461, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 1.0361, + "count": 36255, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 9.5367e-7, + "count": 4, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0000050068, + "count": 11, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Sendrecv", + "ttot": 0.0140542355, + "count": 22, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Comm_free", + "ttot": 0.000014067, + "count": 1, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.004035, + "count": 3, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "33", + "ttot": 1.3059618878600003, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.11854357804, + "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.08906350768, + "count": 36255, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.011068192939999999, + "count": 34569, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.08257393700000001, + "count": 2461, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.99992, + "count": 34569, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.0000019073, + "count": 4, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0000042915, + "count": 11, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Sendrecv", + "ttot": 0.0007638913999999999, + "count": 22, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Comm_free", + "ttot": 0.000014782, + "count": 1, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0040078, + "count": 3, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "1", + "ttot": 1.24637164048, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.07621964579999999, + "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.09174368533999999, + "count": 36255, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.010724165439999996, + "count": 34569, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.12200719899999998, + "count": 2461, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.90224, + "count": 34569, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.0000030994, + "count": 4, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0000059605, + "count": 11, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Sendrecv", + "ttot": 0.039468478, + "count": 22, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Comm_free", + "ttot": 0.000047207, + "count": 1, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0039122, + "count": 3, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "61", + "ttot": 1.1354740810900006, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.12770686104, + "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.09061569467, + "count": 36255, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.01093047341, + "count": 34569, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.07900347199999999, + "count": 2461, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.7812, + "count": 34569, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 9.5367e-7, + "count": 4, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0000019073, + "count": 11, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Sendrecv", + "ttot": 0.042240745, + "count": 22, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Comm_free", + "ttot": 0.000015974, + "count": 1, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.003758, + "count": 3, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "49", + "ttot": 0.9803961374600005, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.12157042053999999, + "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.09116580151, + "count": 36255, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.011303046009999996, + "count": 34569, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.082808158, + "count": 2461, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.63039, + "count": 34569, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.0000030994, + "count": 4, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000002861, + "count": 11, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Sendrecv", + "ttot": 0.039271571000000005, + "count": 22, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Comm_free", + "ttot": 0.00002718, + "count": 1, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.003854, + "count": 3, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "53", + "ttot": 0.9770211526600001, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.12743211154, + "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.09223008204, + "count": 37098, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.010827340780000002, + "count": 36255, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.078323587, + "count": 2461, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.62217, + "count": 36255, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.0000019073, + "count": 4, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.000002861, + "count": 11, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Sendrecv", + "ttot": 0.042342542999999996, + "count": 22, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Comm_free", + "ttot": 0.00001502, + "count": 1, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0036757, + "count": 3, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "25", + "ttot": 0.9426275988999999, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.13208435747, + "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.09033240382, + "count": 37941, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.011114603110000001, + "count": 35412, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.07418241899999999, + "count": 2461, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.5897, + "count": 35412, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.0000019073, + "count": 4, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0000030994, + "count": 11, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Sendrecv", + "ttot": 0.041302088800000004, + "count": 22, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Comm_free", + "ttot": 0.00001502, + "count": 1, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0038917, + "count": 3, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "57", + "ttot": 0.93383583263, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.13637749067, + "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.09087415017000001, + "count": 37941, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.011984795789999997, + "count": 35412, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.07753644000000001, + "count": 2461, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.57118, + "count": 35412, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.0000019073, + "count": 4, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0000038147, + "count": 11, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Sendrecv", + "ttot": 0.04203939300000001, + "count": 22, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Comm_free", + "ttot": 0.000026941, + "count": 1, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0038109, + "count": 3, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "29", + "ttot": 0.8006057966200001, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.12264468144, + "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.08968604187999998, + "count": 36255, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.0117699798, + "count": 34569, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.076014108, + "count": 2461, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.45508, + "count": 34569, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.0000021458, + "count": 4, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0000019073, + "count": 11, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Sendrecv", + "ttot": 0.041547204399999996, + "count": 22, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Comm_free", + "ttot": 0.000013828, + "count": 1, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0038459, + "count": 3, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "21", + "ttot": 0.7646737976000004, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.12287212586999997, + "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.09203789774999999, + "count": 37098, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.011716807679999998, + "count": 36255, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.07654810799999999, + "count": 2461, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.41607, + "count": 36255, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.0000019073, + "count": 4, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0000040531, + "count": 11, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Sendrecv", + "ttot": 0.0416329699, + "count": 22, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Comm_free", + "ttot": 0.000013828, + "count": 1, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0037761, + "count": 3, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + }, + { + "nr": "17", + "ttot": 0.5378492292000001, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.11785921616999999, + "count": 2445, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 0.09040114922, + "count": 36255, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Irecv", + "ttot": 0.01132560041, + "count": 34569, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.08025480700000001, + "count": 2461, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Wait", + "ttot": 0.19559, + "count": 34569, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 0.0000019073, + "count": 4, + "color": "rgb(83, 81, 84)", + "hoverColor": "rgb(103, 101, 104)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.00000453, + "count": 11, + "color": "rgb(107, 76, 154)", + "hoverColor": "rgb(127, 96, 174)" + }, + { + "call": "MPI_Finalize", + "ttot": 0, + "count": 1, + "color": "rgb(146, 36, 40)", + "hoverColor": "rgb(166, 56, 60)" + }, + { + "call": "MPI_Init", + "ttot": 0, + "count": 1, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Sendrecv", + "ttot": 0.0384568521, + "count": 22, + "color": "rgb(204, 194, 16)", + "hoverColor": "rgb(224, 214, 36)" + }, + { + "call": "MPI_Comm_free", + "ttot": 0.000014067, + "count": 1, + "color": "rgb(57, 106, 177)", + "hoverColor": "rgb(77, 126, 197)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0039411, + "count": 3, + "color": "rgb(148, 139, 61)", + "hoverColor": "rgb(168, 159, 81)" + } + ] + } + ] + }, + "mpiPies": { + "mpiPercent": { + "datasets": [ + { + "data": ["32.13", "31.81", "30.26", "4.14", "1.22", "0.44"], + "backgroundColor": [ + "rgb(211, 94, 96)", + "rgb(128, 133, 133)", + "rgb(132, 186, 91)", + "rgb(225, 151, 76)", + "rgb(204, 194, 16)", + "rgb(144, 103, 167)" + ], + "hoverBackgroundColor": [ + "rgb(231, 114, 116)", + "rgb(148, 153, 153)", + "rgb(152, 206, 111)", + "rgb(245, 171, 96)", + "rgb(224, 214, 36)", + "rgb(164, 123, 187)" + ] + } + ], + "labels": [ + "MPI_Wait", + "MPI_Allreduce", + "MPI_Send", + "MPI_Bcast", + "MPI_Sendrecv", + "others" + ] + }, + "mpiWall": { + "datasets": [ + { + "data": ["14.40", "14.26", "13.57", "1.86", "0.74", "55.16"], + "backgroundColor": [ + "rgb(211, 94, 96)", + "rgb(128, 133, 133)", + "rgb(132, 186, 91)", + "rgb(225, 151, 76)", + "rgb(144, 103, 167)", + "rgb(171, 104, 87)" + ], + "hoverBackgroundColor": [ + "rgb(231, 114, 116)", + "rgb(148, 153, 153)", + "rgb(152, 206, 111)", + "rgb(245, 171, 96)", + "rgb(164, 123, 187)", + "rgb(191, 124, 107)" + ] + } + ], + "labels": [ + "MPI_Wait", + "MPI_Allreduce", + "MPI_Send", + "MPI_Bcast", + "others", + "Apllication" + ] + } + }, + "hpmData": [], + "balanceData": { + "labels": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15", + "16", + "17", + "18", + "19", + "20", + "21", + "22", + "23", + "24", + "25", + "26", + "27", + "28", + "29", + "30", + "31", + "32", + "33", + "34", + "35", + "36", + "37", + "38", + "39", + "40", + "41", + "42", + "43", + "44", + "45", + "46", + "47", + "48", + "49", + "50", + "51", + "52", + "53", + "54", + "55", + "56", + "57", + "58", + "59", + "60", + "61", + "62", + "63" + ], + "datasets": [ + { + "label": "MPI_Irecv", + "fill": false, + "backgroundColor": "rgb(128, 133, 133)", + "borderColor": "rgb(128, 133, 133)", + "pointHoverBackgroundColor": "rgb(148, 153, 153)", + "data": [ + 0.009639959480000002, + 0.07621964579999999, + 0.07564677550000001, + 0.07678277636999997, + 0.009205119109999996, + 0.08020176259999996, + 0.0761020053, + 0.09182728150000001, + 0.009862434370000001, + 0.10047234850000002, + 0.0944344446, + 0.09547162289999998, + 0.00875899951, + 0.09676463420000002, + 0.09519135857000001, + 0.12865583020000002, + 0.009201970240000001, + 0.11785921616999999, + 0.009734148469999999, + 0.12125564140999999, + 0.00973993211, + 0.12287212586999997, + 0.009531101569999999, + 0.1049133992, + 0.009082355649999999, + 0.13208435747, + 0.009308592970000001, + 0.11653011814, + 0.00975923384, + 0.12264468144, + 0.009663839149999999, + 0.12334000344, + 0.12121426587, + 0.11854357804, + 0.009796175789999998, + 0.12374557907, + 0.12054678590999997, + 0.12667632581, + 0.01028541488, + 0.1063723588, + 0.10096472766999999, + 0.13010748804, + 0.00885133008, + 0.11889067094000001, + 0.11583021147000001, + 0.12215466864, + 0.00975941051, + 0.13247702471, + 0.009332169289999998, + 0.12157042053999999, + 0.11818934294000001, + 0.12254866900000001, + 0.00899956455, + 0.12743211154, + 0.12409544680999997, + 0.10484531110000003, + 0.00911089218, + 0.13637749067, + 0.12443705454000001, + 0.11684439354000001, + 0.00995629601, + 0.12770686104, + 0.13020980427, + 0.09818256754000002 + ] + }, + { + "label": "MPI_Send", + "fill": false, + "backgroundColor": "rgb(132, 186, 91)", + "borderColor": "rgb(132, 186, 91)", + "pointHoverBackgroundColor": "rgb(152, 206, 111)", + "data": [ + 0.3793110646500002, + 0.09174368533999999, + 0.00985278948, + 0.0014965485, + 0.3420663989500002, + 0.09159136824, + 0.01023631281, + 0.00148392824, + 0.35628245315, + 0.09143675691, + 0.010187354580000002, + 0.00152540247, + 0.30259940668, + 0.09094397924000001, + 0.00920785991, + 0.0014615072400000003, + 0.48712320851, + 0.09040114922, + 0.11679258237, + 0.00158571907, + 0.46889527565000017, + 0.09203789774999999, + 0.12146369896999999, + 0.00164510271, + 0.41841272835000004, + 0.09033240382, + 0.12338313946999999, + 0.0014288380500000002, + 0.4569528614200002, + 0.08968604187999998, + 0.12376094634, + 0.0015735669100000003, + 0.35402829258000007, + 0.08906350768, + 0.11746038627, + 0.67081060624, + 0.32811199608000013, + 0.09178927527999999, + 0.12222456904000001, + 0.6367636062099999, + 0.3236872153100002, + 0.09180401831, + 0.12373896497, + 0.6461835989000002, + 0.2787249724800001, + 0.08922117631, + 0.12129235796999996, + 0.5990204141099998, + 0.11819191718000002, + 0.09116580151, + 0.00894693011, + 0.75250540624, + 0.12380782817000001, + 0.09223008204, + 0.00870298728, + 0.74671630627, + 0.10158842677, + 0.09087415017000001, + 0.00827768118, + 0.74251291417, + 0.11525986894, + 0.09061569467, + 0.00815367494, + 0.7124545823499998 + ] + }, + { + "label": "MPI_Bcast", + "fill": false, + "backgroundColor": "rgb(225, 151, 76)", + "borderColor": "rgb(225, 151, 76)", + "pointHoverBackgroundColor": "rgb(245, 171, 96)", + "data": [ + 0.0432604605, + 0.010724165439999996, + 1.62143738185, + 3.2009811040000002, + 0.07609447179999998, + 0.01106021835, + 1.5012789629099998, + 3.21557107, + 0.08926206060000001, + 0.011738793010000002, + 1.51154998364, + 3.2044651570000005, + 0.09407783139999999, + 0.011415955849999996, + 1.47412038335, + 3.2243652739999997, + 0.11721709254, + 0.01132560041, + 2.5319523040400003, + 3.0196938179999995, + 0.12499657827, + 0.011716807679999998, + 2.3710764653500003, + 3.0621775490000003, + 0.10386076963999999, + 0.011114603110000001, + 2.2531581055100003, + 3.0902747770000003, + 0.11658704514, + 0.0117699798, + 2.50522525585, + 3.05264071, + 0.009214667709999999, + 0.011068192939999999, + 2.0193760921500004, + 0.0018756348, + 0.009360076479999998, + 0.01180981235, + 1.81900740736, + 0.0015644967699999998, + 0.00927620691, + 0.01083902741, + 1.9348742756800001, + 0.00159787521, + 0.00981117508, + 0.01145060388, + 1.53827272981, + 0.00166559041, + 0.34098583945000005, + 0.011303046009999996, + 2.6183891445400005, + 0.0015473345100000002, + 0.33007984616, + 0.010827340780000002, + 2.5881318710500003, + 0.0015249157800000003, + 0.32419554477999996, + 0.011984795789999997, + 2.7848527844399995, + 0.0015413691100000003, + 0.29037549214999997, + 0.01093047341, + 2.59592201155, + 0.00171971435 + ] + }, + { + "label": "MPI_Allreduce", + "fill": false, + "backgroundColor": "rgb(128, 133, 133)", + "borderColor": "rgb(128, 133, 133)", + "pointHoverBackgroundColor": "rgb(148, 153, 153)", + "data": [ + 0.111014438, + 0.12200719899999998, + 0.132828142, + 0.6719731280099999, + 0.128996217, + 0.12201085700000001, + 0.129675515, + 0.6386619683700001, + 0.115097554, + 0.105144495, + 0.114060467, + 0.6453511141099999, + 0.110382599, + 0.102351829, + 0.11305436600000002, + 0.5987772141099998, + 0.08698561599999999, + 0.08025480700000001, + 0.09047332699999999, + 0.82435140677, + 0.084043598, + 0.07654810799999999, + 0.083240327, + 0.7955199988699999, + 0.10337790000000001, + 0.07418241899999999, + 0.084352197, + 0.75174519887, + 0.09075763199999999, + 0.076014108, + 0.08635657100000001, + 0.7878667599100001, + 0.087441745, + 0.08257393700000001, + 0.093448977, + 3.159821506, + 0.086495898, + 0.07733251399999999, + 0.08490080100000001, + 3.2077339719999998, + 0.105865214, + 0.07541292599999999, + 0.08706894700000001, + 3.1864090239999996, + 0.091785416, + 0.079063567, + 0.089499006, + 3.220890688, + 0.08755029500000001, + 0.082808158, + 0.092978162, + 3.08439229, + 0.084969612, + 0.078323587, + 0.086543861, + 3.106494178, + 0.105624671, + 0.07753644000000001, + 0.086886005, + 3.098561188, + 0.092137827, + 0.07900347199999999, + 0.08913830099999999, + 3.146316964 + ] + }, + { + "label": "MPI_Wait", + "fill": false, + "backgroundColor": "rgb(211, 94, 96)", + "borderColor": "rgb(211, 94, 96)", + "pointHoverBackgroundColor": "rgb(231, 114, 116)", + "data": [ + 1.6474, + 0.90224, + 0.92815, + 0.38629, + 1.6155, + 1.0659, + 1.087, + 0.38887, + 1.6784, + 1.0273, + 1.0489, + 0.38603, + 1.7355, + 1.2037, + 1.2276, + 0.39221, + 1.3659, + 0.19559, + 0.22053, + 0.36586, + 1.3645, + 0.41607, + 0.45129, + 0.37703, + 1.397, + 0.5897, + 0.62548, + 0.37374, + 1.4296, + 0.45508, + 0.48187, + 0.37349, + 1.4536, + 0.99992, + 1.0035, + 0.4042, + 1.5545, + 1.0361, + 1.0824, + 0.42677, + 1.5162, + 1.1455, + 1.161, + 0.42654, + 1.6349, + 1.5247, + 1.5174, + 0.43779, + 1.0035, + 0.63039, + 0.65725, + 0.37375, + 0.92093, + 0.62217, + 0.65568, + 0.37618, + 0.99704, + 0.57118, + 0.60476, + 0.37273, + 1.0495, + 0.7812, + 0.80686, + 0.38393 + ] + }, + { + "label": "MPI_Comm_size", + "fill": false, + "backgroundColor": "rgb(83, 81, 84)", + "borderColor": "rgb(83, 81, 84)", + "pointHoverBackgroundColor": "rgb(103, 101, 104)", + "data": [ + 0.0000030994, + 0.0000030994, + 0.0000021458, + 9.5367e-7, + 0.0000033379, + 0.0000030994, + 0.0000030994, + 0.000002861, + 0.0000019073, + 0.0000019073, + 0.000002861, + 0.000002861, + 9.5367e-7, + 9.5367e-7, + 0.0000030994, + 0.0000019073, + 9.5367e-7, + 0.0000019073, + 9.5367e-7, + 9.5367e-7, + 9.5367e-7, + 0.0000019073, + 0.0000019073, + 9.5367e-7, + 9.5367e-7, + 0.0000019073, + 9.5367e-7, + 0.0000021458, + 0.0000011921, + 0.0000021458, + 0.0000019073, + 9.5367e-7, + 0.000002861, + 0.0000019073, + 9.5367e-7, + 9.5367e-7, + 9.5367e-7, + 9.5367e-7, + 0.0000019073, + 9.5367e-7, + 9.5367e-7, + 9.5367e-7, + 0.0000021458, + 0.0000021458, + 0.0000019073, + 0.0000011921, + 9.5367e-7, + 0, + 9.5367e-7, + 0.0000030994, + 0.0000019073, + 0.0000019073, + 0, + 0.0000019073, + 0.0000021458, + 0.000002861, + 9.5367e-7, + 0.0000019073, + 9.5367e-7, + 0.0000019073, + 0, + 9.5367e-7, + 9.5367e-7, + 0.0000011921 + ] + }, + { + "label": "MPI_Comm_rank", + "fill": false, + "backgroundColor": "rgb(107, 76, 154)", + "borderColor": "rgb(107, 76, 154)", + "pointHoverBackgroundColor": "rgb(127, 96, 174)", + "data": [ + 0.0000040531, + 0.0000059605, + 0.0000059605, + 0.0000030994, + 0.0000038147, + 0.0000038147, + 0.0000066757, + 0.0000038147, + 0.0000047684, + 0.0000047684, + 0.0000078678, + 0.0000054836, + 0.0000088215, + 0.0000047684, + 0.0000019073, + 0.0000042915, + 0.0000038147, + 0.00000453, + 0.0000019073, + 0.000002861, + 0.0000030994, + 0.0000040531, + 0.0000042915, + 0.000002861, + 0.0000042915, + 0.0000030994, + 0.0000019073, + 0.0000050068, + 0.0000030994, + 0.0000019073, + 0.0000019073, + 0.0000038147, + 0.0000050068, + 0.0000042915, + 0.0000023842, + 0.000002861, + 0.0000047684, + 0.0000050068, + 0, + 0.0000019073, + 9.5367e-7, + 0.0000019073, + 0.0000030994, + 0.0000061989, + 0.0000019073, + 0.0000038147, + 0.0000011921, + 0.0000019073, + 9.5367e-7, + 0.000002861, + 0.0000019073, + 0.0000019073, + 0.000002861, + 0.000002861, + 0.0000061989, + 0.0000011921, + 0.0000038147, + 0.0000038147, + 0.000002861, + 0.0000050068, + 0.0000030994, + 0.0000019073, + 0.0000019073, + 0.000002861 + ] + }, + { + "label": "MPI_Finalize", + "fill": false, + "backgroundColor": "rgb(146, 36, 40)", + "borderColor": "rgb(146, 36, 40)", + "pointHoverBackgroundColor": "rgb(166, 56, 60)", + "data": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + { + "label": "MPI_Init", + "fill": false, + "backgroundColor": "rgb(114, 147, 203)", + "borderColor": "rgb(114, 147, 203)", + "pointHoverBackgroundColor": "rgb(134, 167, 223)", + "data": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ] + }, + { + "label": "MPI_Sendrecv", + "fill": false, + "backgroundColor": "rgb(204, 194, 16)", + "borderColor": "rgb(204, 194, 16)", + "pointHoverBackgroundColor": "rgb(224, 214, 36)", + "data": [ + 0.042584901, + 0.039468478, + 0.0403020227, + 0.04115505, + 0.0425614569, + 0.0423013624, + 0.0425001282, + 0.0404264431, + 0.04238943, + 0.0423450247, + 0.0424433657, + 0.0411020615, + 0.033036818, + 0.0422504612, + 0.0425301165, + 0.0409929375, + 0.042350199899999996, + 0.0384568521, + 0.0396123019, + 0.04065143, + 0.0423292982, + 0.0416329699, + 0.0419643895, + 0.0401143189, + 0.04230756, + 0.041302088800000004, + 0.0420327692, + 0.0407276247, + 0.032821900200000004, + 0.041547204399999996, + 0.0419860495, + 0.0403877746, + 0.019748467799999996, + 0.0007638913999999999, + 0.007011180299999999, + 0.019081479999999998, + 0.0102271779, + 0.0140542355, + 0.0047156755, + 0.0056626550999999995, + 0.020348283, + 0.0007901208999999998, + 0.0026018161, + 0.0024454573, + 0.0101401525, + 0.0058070827, + 0.0047905819, + 0.0077468809, + 0.0428679368, + 0.039271571000000005, + 0.04019945250000001, + 0.04122382, + 0.042854034, + 0.042342542999999996, + 0.042372432200000004, + 0.040534771, + 0.04281417999999999, + 0.04203939300000001, + 0.0423586361, + 0.0411490847, + 0.033429216, + 0.042240745, + 0.042302962599999994, + 0.0411635762 + ] + }, + { + "label": "MPI_Comm_free", + "fill": false, + "backgroundColor": "rgb(57, 106, 177)", + "borderColor": "rgb(57, 106, 177)", + "pointHoverBackgroundColor": "rgb(77, 126, 197)", + "data": [ + 0.000015974, + 0.000047207, + 0.000014067, + 0.000015974, + 0.000015974, + 0.000041008, + 0.000038147, + 0.000028849, + 0.000015974, + 0.000015974, + 0.000014067, + 0.000063181, + 0.000015974, + 0.00002408, + 0.000027895, + 0.00001502, + 0.00001502, + 0.000014067, + 0.000016212, + 0.00001502, + 0.000014067, + 0.000013828, + 0.00001502, + 0.00001502, + 0.000013113, + 0.00001502, + 0.00001502, + 0.000015974, + 0.000012875, + 0.000013828, + 0.000015974, + 0.000015974, + 0.000016928, + 0.000014782, + 0.000015974, + 0.00001812, + 0.000016928, + 0.000014067, + 0.000015974, + 0.00001502, + 0.000015974, + 0.00001502, + 0.000017166, + 0.00001502, + 0.000015974, + 0.00001502, + 0.000015974, + 0.000014067, + 0.00001502, + 0.00002718, + 0.000025988, + 0.000027895, + 0.00001502, + 0.00001502, + 0.000015974, + 0.000015974, + 0.000014067, + 0.000026941, + 0.00001812, + 0.000017881, + 0.000017166, + 0.000015974, + 0.00002408, + 0.000016928 + ] + }, + { + "label": "MPI_Barrier", + "fill": false, + "backgroundColor": "rgb(148, 139, 61)", + "borderColor": "rgb(148, 139, 61)", + "pointHoverBackgroundColor": "rgb(168, 159, 81)", + "data": [ + 0.00015616, + 0.0039122, + 0.0037911, + 0.0040319, + 0.0040753, + 0.0037808, + 0.0037882, + 0.0037599, + 0.0039852, + 0.0036399, + 0.0038748, + 0.0037479, + 0.0039272, + 0.0036411, + 0.0037649, + 0.0040522, + 0.0039089, + 0.0039411, + 0.0036767, + 0.004262, + 0.0038443, + 0.0037761, + 0.0038359, + 0.0039599, + 0.0038309, + 0.0038917, + 0.0036731, + 0.0039878, + 0.0036979, + 0.0038459, + 0.0037723, + 0.0041962, + 0.0037661, + 0.0040078, + 0.003896, + 0.003916, + 0.0036259, + 0.004035, + 0.003696, + 0.0038838, + 0.0036356, + 0.0037789, + 0.0037279, + 0.0038447, + 0.0037544, + 0.0039017, + 0.003839, + 0.003798, + 0.0037732, + 0.003854, + 0.0037658, + 0.004082, + 0.003902, + 0.0036757, + 0.0037308, + 0.0040209, + 0.003871, + 0.0038109, + 0.0039022, + 0.0039768, + 0.0037801, + 0.003758, + 0.0039332, + 0.0039768 ] } ] }, - "mpiPies": { - "mpiPercent": { - "datasets": [ - { - "data": ["32.13", "31.81", "30.26", "4.14", "1.22", "0.44"], - "backgroundColor": [ - "rgb(128, 133, 133)", - "rgb(211, 94, 96)", - "rgb(225, 151, 76)", - "rgb(132, 186, 91)", - "rgb(218, 124, 48)", - "rgb(83, 81, 84)" - ], - "hoverBackgroundColor": [ - "rgb(148, 153, 153)", - "rgb(231, 114, 116)", - "rgb(245, 171, 96)", - "rgb(152, 206, 111)", - "rgb(238, 144, 68)", - "rgb(103, 101, 104)" - ] - } - ], - "labels": [ - "MPI_Wait", - "MPI_Allreduce", - "MPI_Send", - "MPI_Bcast", - "MPI_Sendrecv", - "others" - ] - }, - "mpiWall": { - "datasets": [ - { - "data": ["14.40", "14.26", "13.57", "1.86", "0.74", "55.16"], - "backgroundColor": [ - "rgb(128, 133, 133)", - "rgb(211, 94, 96)", - "rgb(225, 151, 76)", - "rgb(132, 186, 91)", - "rgb(83, 81, 84)", - "rgb(107, 76, 154)" - ], - "hoverBackgroundColor": [ - "rgb(148, 153, 153)", - "rgb(231, 114, 116)", - "rgb(245, 171, 96)", - "rgb(152, 206, 111)", - "rgb(103, 101, 104)", - "rgb(127, 96, 174)" - ] - } - ], - "labels": [ - "MPI_Wait", - "MPI_Allreduce", - "MPI_Send", - "MPI_Bcast", - "others", - "Apllication" - ] - } - }, - "hpmData": [], - "balanceData": { + "balanceDataSorted": { "labels": [ "47", "15", @@ -7038,9 +13747,9 @@ { "label": "MPI_Bcast", "fill": false, - "backgroundColor": "rgb(132, 186, 91)", - "borderColor": "rgb(132, 186, 91)", - "pointHoverBackgroundColor": "rgb(152, 206, 111)", + "backgroundColor": "rgb(225, 151, 76)", + "borderColor": "rgb(225, 151, 76)", + "pointHoverBackgroundColor": "rgb(245, 171, 96)", "data": [ 0.13247702471, 0.12865583020000002, @@ -7111,9 +13820,9 @@ { "label": "MPI_Send", "fill": false, - "backgroundColor": "rgb(225, 151, 76)", - "borderColor": "rgb(225, 151, 76)", - "pointHoverBackgroundColor": "rgb(245, 171, 96)", + "backgroundColor": "rgb(132, 186, 91)", + "borderColor": "rgb(132, 186, 91)", + "pointHoverBackgroundColor": "rgb(152, 206, 111)", "data": [ 0.5990204141099998, 0.0014615072400000003, @@ -7184,9 +13893,9 @@ { "label": "MPI_Irecv", "fill": false, - "backgroundColor": "rgb(114, 147, 203)", - "borderColor": "rgb(114, 147, 203)", - "pointHoverBackgroundColor": "rgb(134, 167, 223)", + "backgroundColor": "rgb(128, 133, 133)", + "borderColor": "rgb(128, 133, 133)", + "pointHoverBackgroundColor": "rgb(148, 153, 153)", "data": [ 0.00166559041, 3.2243652739999997, @@ -7257,9 +13966,9 @@ { "label": "MPI_Allreduce", "fill": false, - "backgroundColor": "rgb(211, 94, 96)", - "borderColor": "rgb(211, 94, 96)", - "pointHoverBackgroundColor": "rgb(231, 114, 116)", + "backgroundColor": "rgb(128, 133, 133)", + "borderColor": "rgb(128, 133, 133)", + "pointHoverBackgroundColor": "rgb(148, 153, 153)", "data": [ 3.220890688, 0.5987772141099998, @@ -7330,9 +14039,9 @@ { "label": "MPI_Wait", "fill": false, - "backgroundColor": "rgb(128, 133, 133)", - "borderColor": "rgb(128, 133, 133)", - "pointHoverBackgroundColor": "rgb(148, 153, 153)", + "backgroundColor": "rgb(211, 94, 96)", + "borderColor": "rgb(211, 94, 96)", + "pointHoverBackgroundColor": "rgb(231, 114, 116)", "data": [ 0.43779, 0.39221, @@ -7403,9 +14112,9 @@ { "label": "MPI_Comm_size", "fill": false, - "backgroundColor": "rgb(144, 103, 167)", - "borderColor": "rgb(144, 103, 167)", - "pointHoverBackgroundColor": "rgb(164, 123, 187)", + "backgroundColor": "rgb(83, 81, 84)", + "borderColor": "rgb(83, 81, 84)", + "pointHoverBackgroundColor": "rgb(103, 101, 104)", "data": [ 0, 0.0000019073, @@ -7476,9 +14185,9 @@ { "label": "MPI_Comm_rank", "fill": false, - "backgroundColor": "rgb(171, 104, 87)", - "borderColor": "rgb(171, 104, 87)", - "pointHoverBackgroundColor": "rgb(191, 124, 107)", + "backgroundColor": "rgb(107, 76, 154)", + "borderColor": "rgb(107, 76, 154)", + "pointHoverBackgroundColor": "rgb(127, 96, 174)", "data": [ 0.0000019073, 0.0000042915, @@ -7549,9 +14258,9 @@ { "label": "MPI_Finalize", "fill": false, - "backgroundColor": "rgb(204, 194, 16)", - "borderColor": "rgb(204, 194, 16)", - "pointHoverBackgroundColor": "rgb(224, 214, 36)", + "backgroundColor": "rgb(146, 36, 40)", + "borderColor": "rgb(146, 36, 40)", + "pointHoverBackgroundColor": "rgb(166, 56, 60)", "data": [ 0, 0, @@ -7622,9 +14331,9 @@ { "label": "MPI_Init", "fill": false, - "backgroundColor": "rgb(57, 106, 177)", - "borderColor": "rgb(57, 106, 177)", - "pointHoverBackgroundColor": "rgb(77, 126, 197)", + "backgroundColor": "rgb(114, 147, 203)", + "borderColor": "rgb(114, 147, 203)", + "pointHoverBackgroundColor": "rgb(134, 167, 223)", "data": [ 0, 0, @@ -7695,9 +14404,9 @@ { "label": "MPI_Sendrecv", "fill": false, - "backgroundColor": "rgb(218, 124, 48)", - "borderColor": "rgb(218, 124, 48)", - "pointHoverBackgroundColor": "rgb(238, 144, 68)", + "backgroundColor": "rgb(204, 194, 16)", + "borderColor": "rgb(204, 194, 16)", + "pointHoverBackgroundColor": "rgb(224, 214, 36)", "data": [ 0.0077468809, 0.0409929375, @@ -7768,9 +14477,9 @@ { "label": "MPI_Comm_free", "fill": false, - "backgroundColor": "rgb(62, 150, 81)", - "borderColor": "rgb(62, 150, 81)", - "pointHoverBackgroundColor": "rgb(82, 170, 101)", + "backgroundColor": "rgb(57, 106, 177)", + "borderColor": "rgb(57, 106, 177)", + "pointHoverBackgroundColor": "rgb(77, 126, 197)", "data": [ 0.000014067, 0.00001502, @@ -7841,9 +14550,9 @@ { "label": "MPI_Barrier", "fill": false, - "backgroundColor": "rgb(204, 37, 41)", - "borderColor": "rgb(204, 37, 41)", - "pointHoverBackgroundColor": "rgb(224, 57, 61)", + "backgroundColor": "rgb(148, 139, 61)", + "borderColor": "rgb(148, 139, 61)", + "pointHoverBackgroundColor": "rgb(168, 159, 81)", "data": [ 0.003798, 0.0040522, diff --git a/ipm_raw/pin1008_parsed.json b/ipm_raw/pin1008_parsed.json index 43ef7fd..3684e3a 100644 --- a/ipm_raw/pin1008_parsed.json +++ b/ipm_raw/pin1008_parsed.json @@ -7,6 +7,7 @@ "ntasks": 168, "nhosts": 42, "totalWallTime": 5330.180856, + "cmdline": "../bin/partisn pin1008 ", "env": [ "OMPI_MCA_mpi_paffinity_alone=0", "OMPI_CC=/usr/projects/hpcsoft/toss2.1/common/intel/2013.5.192/composer_xe_2013.5.192/bin/intel64/icc", @@ -948,54 +949,54 @@ }, "mpiCallsByTask": [ { - "nr": "13", - "ttot": 21.314679884239997, + "nr": "0", + "ttot": 18.047536984290012, "mpiCalls": [ + { + "call": "MPI_Send", + "ttot": 3.6041309400000006, + "count": 131726, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Recv", + "ttot": 10.105570400000003, + "count": 131726, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Bcast", - "ttot": 2.8105239348, + "ttot": 0.0052310175, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 3.4229531230000005, + "ttot": 4.3323892090000005, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00046206, + "ttot": 0.00021435, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, - { - "call": "MPI_Send", - "ttot": 4.83015002, - "count": 96866, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Comm_rank", - "ttot": 3.8953e-7, + "ttot": 6.6259e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, - { - "call": "MPI_Recv", - "ttot": 10.25059, - "count": 96866, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Comm_size", - "ttot": 3.5691e-7, + "ttot": 4.052e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" @@ -1003,219 +1004,219 @@ ] }, { - "nr": "167", - "ttot": 21.115782495659996, + "nr": "1", + "ttot": 19.31442026887001, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.3918448281000001, + "ttot": 2.7599684775999993, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.012197495, + "ttot": 4.431866090000001, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00044656, + "ttot": 0.00050354, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Send", - "ttot": 4.44579289, - "count": 96866, + "ttot": 4.280651199999999, + "count": 145194, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_rank", - "ttot": 4.3084e-7, + "ttot": 6.3563e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, + { + "call": "MPI_Recv", + "ttot": 7.84143, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Comm_size", - "ttot": 2.9172e-7, + "ttot": 3.2564e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" - }, - { - "call": "MPI_Recv", - "ttot": 14.2655, - "count": 96866, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" } ] }, { - "nr": "154", - "ttot": 20.010047181860003, + "nr": "2", + "ttot": 18.979203864839995, "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 7.93653, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Bcast", - "ttot": 0.5131013362000005, + "ttot": 2.7580979521, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, - { - "call": "MPI_Recv", - "ttot": 14.012099999999998, - "count": 96866, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Allreduce", - "ttot": 2.0733641769999998, + "ttot": 4.367979538, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00076022, + "ttot": 0.00054828, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Comm_rank", - "ttot": 4.2346e-7, + "ttot": 5.1345e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 3.352e-7, + "ttot": 5.8129e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Send", - "ttot": 3.41072069, - "count": 96866, + "ttot": 3.916047, + "count": 145194, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" } ] }, { - "nr": "158", - "ttot": 19.453167426750003, + "nr": "3", + "ttot": 18.408403839629997, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.42985201690000013, + "ttot": 2.7719112903, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { - "call": "MPI_Send", - "ttot": 4.67673524, + "call": "MPI_Recv", + "ttot": 8.368400000000001, "count": 145194, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Allreduce", - "ttot": 2.4445766129999997, + "ttot": 4.396938985000001, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00060205, + "ttot": 0.00054035, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, + { + "call": "MPI_Send", + "ttot": 2.8706123000000003, + "count": 145194, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Comm_rank", - "ttot": 9.6776e-7, + "ttot": 5.6086e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 5.3909e-7, + "ttot": 3.5347e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" - }, - { - "call": "MPI_Recv", - "ttot": 11.9014, - "count": 145194, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" } ] }, { - "nr": "1", - "ttot": 19.31442026887001, + "nr": "4", + "ttot": 17.17195796300999, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 2.7599684775999993, + "ttot": 2.7638680320000004, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 4.431866090000001, + "ttot": 3.9227497849999997, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00050354, + "ttot": 0.0001115, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Send", - "ttot": 4.280651199999999, + "ttot": 3.32109761, "count": 145194, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_rank", - "ttot": 6.3563e-7, + "ttot": 5.4909e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Recv", - "ttot": 7.84143, + "ttot": 7.164130000000001, "count": 145194, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_size", - "ttot": 3.2564e-7, + "ttot": 4.8692e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" @@ -1223,54 +1224,54 @@ ] }, { - "nr": "111", - "ttot": 19.09628316762, + "nr": "5", + "ttot": 19.08189557458999, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 1.1887887484, + "ttot": 2.774201238999999, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, + { + "call": "MPI_Recv", + "ttot": 7.56007, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Allreduce", - "ttot": 2.453058338, + "ttot": 3.98522018, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00029672, + "ttot": 0.0005732, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, - { - "call": "MPI_Recv", - "ttot": 11.823599999999999, - "count": 145194, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Comm_rank", - "ttot": 5.8387e-7, + "ttot": 5.9952e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 4.4735e-7, + "ttot": 4.0607e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Send", - "ttot": 3.6305383300000003, + "ttot": 4.761829950000001, "count": 145194, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" @@ -1278,109 +1279,109 @@ ] }, { - "nr": "5", - "ttot": 19.08189557458999, + "nr": "6", + "ttot": 18.63371664771999, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 2.774201238999999, + "ttot": 2.7824441052000006, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Recv", - "ttot": 7.56007, + "ttot": 7.70176, "count": 145194, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Allreduce", - "ttot": 3.98522018, + "ttot": 3.762930883, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.0005732, + "ttot": 0.0002852, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, + { + "call": "MPI_Send", + "ttot": 4.38629548, + "count": 145194, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Comm_rank", - "ttot": 5.9952e-7, + "ttot": 4.9954e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 4.0607e-7, + "ttot": 4.7998e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" - }, - { - "call": "MPI_Send", - "ttot": 4.761829950000001, - "count": 145194, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" } ] }, { - "nr": "165", - "ttot": 19.04604354487001, + "nr": "7", + "ttot": 17.953969765540002, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.45597880170000005, + "ttot": 2.8075215321000013, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 1.743978198, + "ttot": 3.929750997, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00062891, + "ttot": 0.00025119, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Send", - "ttot": 4.57115677, + "ttot": 2.80006479, "count": 145194, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, - { - "call": "MPI_Recv", - "ttot": 12.2743, - "count": 145194, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Comm_rank", - "ttot": 4.2346e-7, + "ttot": 7.5169e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, + { + "call": "MPI_Recv", + "ttot": 8.41638, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Comm_size", - "ttot": 4.4171e-7, + "ttot": 5.0475e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" @@ -1388,54 +1389,54 @@ ] }, { - "nr": "2", - "ttot": 18.979203864839995, + "nr": "8", + "ttot": 14.428297557609998, "mpiCalls": [ - { - "call": "MPI_Recv", - "ttot": 7.93653, - "count": 145194, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Bcast", - "ttot": 2.7580979521, + "ttot": 2.774744815499999, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, + { + "call": "MPI_Recv", + "ttot": 7.089049999999999, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Allreduce", - "ttot": 4.367979538, + "ttot": 1.8412574600000002, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00054828, + "ttot": 0.00028848, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Comm_rank", - "ttot": 5.1345e-7, + "ttot": 3.9606e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 5.8129e-7, + "ttot": 4.3605e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Send", - "ttot": 3.916047, + "ttot": 2.72295597, "count": 145194, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" @@ -1443,109 +1444,109 @@ ] }, { - "nr": "94", - "ttot": 18.970107497330005, + "nr": "9", + "ttot": 16.744093048430006, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 1.3366654098999997, + "ttot": 2.857508169100001, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.575919634, + "ttot": 1.849551912, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00048896, + "ttot": 0.00053711, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, + { + "call": "MPI_Recv", + "ttot": 7.76839, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Send", - "ttot": 5.12381244, - "count": 193522, + "ttot": 4.26810508, + "count": 145194, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_rank", - "ttot": 6.3519e-7, + "ttot": 3.6128e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 4.1824e-7, + "ttot": 4.1605e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" - }, - { - "call": "MPI_Recv", - "ttot": 9.933219999999999, - "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" } ] }, { - "nr": "157", - "ttot": 18.937071783300002, + "nr": "10", + "ttot": 16.395229904670003, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.3866621308000001, + "ttot": 2.82264646933, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, - { - "call": "MPI_Recv", - "ttot": 12.1938, - "count": 145194, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Allreduce", - "ttot": 2.2877184230000003, + "ttot": 1.6591590780000003, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00049322, + "ttot": 0.00051689, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, + { + "call": "MPI_Send", + "ttot": 4.10970675, + "count": 145194, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Comm_rank", - "ttot": 5.2995e-7, + "ttot": 3.7607e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { - "call": "MPI_Send", - "ttot": 4.06839716, + "call": "MPI_Recv", + "ttot": 7.8031999999999995, "count": 145194, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_size", - "ttot": 3.1955e-7, + "ttot": 3.4127e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" @@ -1553,109 +1554,109 @@ ] }, { - "nr": "6", - "ttot": 18.63371664771999, + "nr": "11", + "ttot": 15.287180476689997, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 2.7824441052000006, + "ttot": 2.8547103918000007, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Recv", - "ttot": 7.70176, + "ttot": 7.56162, "count": 145194, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Allreduce", - "ttot": 3.762930883, + "ttot": 1.6762449480000001, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.0002852, + "ttot": 0.00050641, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, - { - "call": "MPI_Send", - "ttot": 4.38629548, - "count": 145194, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Comm_rank", - "ttot": 4.9954e-7, + "ttot": 3.4693e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 4.7998e-7, + "ttot": 5.5996e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 3.19409782, + "count": 145194, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" } ] }, { - "nr": "166", - "ttot": 18.6110975783, + "nr": "12", + "ttot": 17.564566492049998, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.45671559999000005, + "ttot": 2.8115808942999987, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.0474667940000004, + "ttot": 3.11787211, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, - { - "call": "MPI_Barrier", - "ttot": 0.00094948, - "count": 2, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" - }, { "call": "MPI_Recv", - "ttot": 11.7212, + "ttot": 9.66355, "count": 145194, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { - "call": "MPI_Comm_rank", - "ttot": 4.5997e-7, + "call": "MPI_Barrier", + "ttot": 0.00024753, "count": 2, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Send", - "ttot": 4.38476499, + "ttot": 1.97131514, "count": 145194, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, + { + "call": "MPI_Comm_rank", + "ttot": 5.6603e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, { "call": "MPI_Comm_size", - "ttot": 2.5434e-7, + "ttot": 2.5172e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" @@ -1663,54 +1664,54 @@ ] }, { - "nr": "30", - "ttot": 18.52629840394999, + "nr": "13", + "ttot": 21.314679884239997, "mpiCalls": [ - { - "call": "MPI_Recv", - "ttot": 8.058200000000001, - "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Bcast", - "ttot": 2.2405158677, + "ttot": 2.8105239348, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 3.732799995, + "ttot": 3.4229531230000005, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00043243, + "ttot": 0.00046206, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Send", - "ttot": 4.4943491799999995, - "count": 193522, + "ttot": 4.83015002, + "count": 96866, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_rank", - "ttot": 5.1605e-7, + "ttot": 3.8953e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, + { + "call": "MPI_Recv", + "ttot": 10.25059, + "count": 96866, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Comm_size", - "ttot": 4.152e-7, + "ttot": 3.5691e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" @@ -1718,109 +1719,109 @@ ] }, { - "nr": "141", - "ttot": 18.510664758270003, + "nr": "14", + "ttot": 17.09295363463, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.6710437797000001, + "ttot": 2.6195088183000004, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, + { + "call": "MPI_Recv", + "ttot": 7.3278099999999995, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Allreduce", - "ttot": 2.6256964329999994, + "ttot": 4.234479059, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00050152, + "ttot": 0.0002579, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, - { - "call": "MPI_Recv", - "ttot": 10.466879999999998, - "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Comm_rank", - "ttot": 6.8125e-7, + "ttot": 4.5952e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 3.2432e-7, + "ttot": 1.7781e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Send", - "ttot": 4.74654202, - "count": 193522, + "ttot": 2.9108972200000003, + "count": 145194, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" } ] }, { - "nr": "137", - "ttot": 18.420003781389997, + "nr": "15", + "ttot": 17.19819658736, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.8240485545999999, + "ttot": 2.6371191628799995, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.4019456019999996, + "ttot": 4.312922755, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00054909, + "ttot": 0.00025157, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, + { + "call": "MPI_Recv", + "ttot": 7.8080099999999995, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Send", - "ttot": 5.22135961, + "ttot": 2.4398924600000003, "count": 193522, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_rank", - "ttot": 6.6088e-7, + "ttot": 4.4168e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, - { - "call": "MPI_Recv", - "ttot": 9.972100000000001, - "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Comm_size", - "ttot": 2.6391e-7, + "ttot": 1.978e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" @@ -1828,54 +1829,54 @@ ] }, { - "nr": "3", - "ttot": 18.408403839629997, + "nr": "16", + "ttot": 16.457413851599995, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 2.7719112903, + "ttot": 2.5498968600999996, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, - { - "call": "MPI_Recv", - "ttot": 8.368400000000001, - "count": 145194, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Allreduce", - "ttot": 4.396938985000001, + "ttot": 3.574078802, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00054035, + "ttot": 0.00029984, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Send", - "ttot": 2.8706123000000003, - "count": 145194, + "ttot": 3.2042373900000003, + "count": 193522, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_rank", - "ttot": 5.6086e-7, + "ttot": 6.7169e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, + { + "call": "MPI_Recv", + "ttot": 7.1289, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Comm_size", - "ttot": 3.5347e-7, + "ttot": 2.8781e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" @@ -1938,109 +1939,109 @@ ] }, { - "nr": "58", - "ttot": 18.31511151997, + "nr": "18", + "ttot": 17.57951267724, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 1.7222241386000006, + "ttot": 2.5469921349999995, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.683772874, + "ttot": 3.654466471, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.0006442, + "ttot": 0.00062136, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, + { + "call": "MPI_Recv", + "ttot": 7.25825, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Send", - "ttot": 4.8130393399999996, + "ttot": 4.1191819, "count": 193522, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_rank", - "ttot": 5.6782e-7, + "ttot": 4.9952e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 3.9955e-7, + "ttot": 3.1172e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" - }, - { - "call": "MPI_Recv", - "ttot": 9.095429999999999, - "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" } ] }, { - "nr": "121", - "ttot": 18.238864872550007, + "nr": "19", + "ttot": 16.638358092000008, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 1.0008582911999995, + "ttot": 2.541040171100001, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, - { - "call": "MPI_Recv", - "ttot": 9.69408, - "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Allreduce", - "ttot": 2.369298057, + "ttot": 3.647999494, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00055521, + "ttot": 0.00060518, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Send", - "ttot": 5.17407246, + "ttot": 3.24284243, "count": 193522, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_rank", - "ttot": 5.5043e-7, + "ttot": 5.0302e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, + { + "call": "MPI_Recv", + "ttot": 7.205870000000001, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Comm_size", - "ttot": 3.0392e-7, + "ttot": 3.1388e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" @@ -2048,109 +2049,109 @@ ] }, { - "nr": "125", - "ttot": 18.20231885857999, + "nr": "20", + "ttot": 16.94676154836, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 1.0180801939999997, + "ttot": 2.615825447700001, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.227454882, + "ttot": 3.4696086990000006, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00049702, + "ttot": 0.0002529, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Send", - "ttot": 3.5709858100000003, - "count": 145194, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "call": "MPI_Recv", + "ttot": 7.083810000000001, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 7.2084e-7, + "ttot": 7.9951e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, - { - "call": "MPI_Recv", - "ttot": 11.3853, - "count": 145194, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Comm_size", - "ttot": 2.3174e-7, + "ttot": 2.1215e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 3.77726349, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" } ] }, { - "nr": "66", - "ttot": 18.154884473979997, + "nr": "21", + "ttot": 17.63369408131999, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 1.6835030576999999, + "ttot": 2.6547830468999982, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.558174449, + "ttot": 3.352332181, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00052282, + "ttot": 0.00026579, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Recv", - "ttot": 8.63744, + "ttot": 6.87462, "count": 193522, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, - { - "call": "MPI_Comm_rank", - "ttot": 0.0000010108, - "count": 2, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" - }, { "call": "MPI_Send", - "ttot": 5.27524267, + "ttot": 4.75169222, "count": 193522, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, + { + "call": "MPI_Comm_rank", + "ttot": 6.0561e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, { "call": "MPI_Comm_size", - "ttot": 4.6648e-7, + "ttot": 2.3781e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" @@ -2158,54 +2159,54 @@ ] }, { - "nr": "159", - "ttot": 18.14115763267, + "nr": "22", + "ttot": 17.871795884420006, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.49941566080000005, + "ttot": 2.642023644299999, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.3354031479999997, + "ttot": 3.2896301480000005, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, - { - "call": "MPI_Send", - "ttot": 2.57625701, - "count": 145194, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Barrier", - "ttot": 0.00028102, + "ttot": 0.00044916, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Recv", - "ttot": 12.7298, - "count": 145194, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "call": "MPI_Send", + "ttot": 4.57624217, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_rank", - "ttot": 5.0258e-7, + "ttot": 3.9823e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, + { + "call": "MPI_Recv", + "ttot": 7.363449999999999, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Comm_size", - "ttot": 2.9129e-7, + "ttot": 3.6389e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" @@ -2213,54 +2214,54 @@ ] }, { - "nr": "81", - "ttot": 18.091641995840007, + "nr": "23", + "ttot": 16.79507049154, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 1.4810998508000004, + "ttot": 2.6699452999, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.1916735490000003, + "ttot": 3.3364834730000004, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00045916, + "ttot": 0.00044479, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Recv", - "ttot": 9.704239999999999, + "ttot": 7.491790000000001, "count": 193522, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 5.9258e-7, + "ttot": 5.4344e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 4.7346e-7, + "ttot": 1.852e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Send", - "ttot": 4.71416837, + "ttot": 3.2964062, "count": 193522, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" @@ -2268,54 +2269,54 @@ ] }, { - "nr": "142", - "ttot": 18.068102993859995, + "nr": "24", + "ttot": 14.704804558990004, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.6676252946000001, + "ttot": 2.596171042299999, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.5206565249999997, + "ttot": 2.2007643439999995, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00060324, + "ttot": 0.00030518, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Recv", - "ttot": 10.60839, + "ttot": 6.9425799999999995, "count": 193522, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Send", - "ttot": 4.27082661, + "ttot": 2.9649831599999996, "count": 193522, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_rank", - "ttot": 8.569e-7, + "ttot": 5.0571e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 4.6736e-7, + "ttot": 3.2698e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" @@ -2323,54 +2324,54 @@ ] }, { - "nr": "0", - "ttot": 18.047536984290012, + "nr": "25", + "ttot": 17.74148190385, "mpiCalls": [ - { - "call": "MPI_Send", - "ttot": 3.6041309400000006, - "count": 131726, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, - { - "call": "MPI_Recv", - "ttot": 10.105570400000003, - "count": 131726, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Bcast", - "ttot": 0.0052310175, + "ttot": 2.6009174658999985, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 4.3323892090000005, + "ttot": 3.223702407, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00021435, + "ttot": 0.00077991, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Comm_rank", - "ttot": 6.6259e-7, + "call": "MPI_Send", + "ttot": 4.1988112399999995, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.4789e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, + { + "call": "MPI_Recv", + "ttot": 7.71727, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Comm_size", - "ttot": 4.052e-7, + "ttot": 3.3306e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" @@ -2378,164 +2379,164 @@ ] }, { - "nr": "83", - "ttot": 18.026528328599994, + "nr": "26", + "ttot": 16.249452629250005, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 1.4369711175400006, + "ttot": 2.576353707099999, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.352624545, + "ttot": 2.109234766, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00033041, + "ttot": 0.00066233, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, - { - "call": "MPI_Send", - "ttot": 3.1310014, - "count": 145194, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Recv", - "ttot": 11.1056, - "count": 145194, + "ttot": 7.02334, + "count": 193522, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 5.7259e-7, + "ttot": 6.1048e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 2.8347e-7, + "ttot": 3.1567e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 4.5398609, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" } ] }, { - "nr": "134", - "ttot": 18.015788497049993, + "nr": "27", + "ttot": 15.13875916282, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.7881740407000002, + "ttot": 2.629075077400001, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.349724679, + "ttot": 2.0561410810000003, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00073961, + "ttot": 0.00065841, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Send", - "ttot": 4.63919926, - "count": 193522, + "ttot": 3.44392384, + "count": 145194, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_rank", - "ttot": 6.5041e-7, + "ttot": 4.77e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, - { - "call": "MPI_Recv", - "ttot": 10.23795, - "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Comm_size", - "ttot": 2.5694e-7, + "ttot": 2.7742e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 7.008959999999999, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" } ] }, { - "nr": "145", - "ttot": 18.00023136647, + "nr": "28", + "ttot": 17.22120754478, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.5964765181999998, + "ttot": 2.2235604261999997, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.501324844, + "ttot": 3.6099995760000003, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00062873, + "ttot": 0.00028208, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, - { - "call": "MPI_Recv", - "ttot": 10.45774, - "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Send", - "ttot": 4.44405984, - "count": 193522, + "ttot": 3.1641449199999996, + "count": 145194, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0000011495, + "ttot": 3.8389e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, + { + "call": "MPI_Recv", + "ttot": 8.22322, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Comm_size", - "ttot": 2.8477e-7, + "ttot": 1.5869e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" @@ -2543,54 +2544,54 @@ ] }, { - "nr": "7", - "ttot": 17.953969765540002, + "nr": "29", + "ttot": 17.55440228085999, "mpiCalls": [ + { + "call": "MPI_Send", + "ttot": 4.20525199, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Bcast", - "ttot": 2.8075215321000013, + "ttot": 2.2381588846000002, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 3.929750997, + "ttot": 3.592004182, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00025119, + "ttot": 0.00080609, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Send", - "ttot": 2.80006479, - "count": 145194, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "call": "MPI_Recv", + "ttot": 7.51818, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 7.5169e-7, + "ttot": 6.6473e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, - { - "call": "MPI_Recv", - "ttot": 8.41638, - "count": 145194, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Comm_size", - "ttot": 5.0475e-7, + "ttot": 4.6953e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" @@ -2598,54 +2599,54 @@ ] }, { - "nr": "146", - "ttot": 17.925245833659996, + "nr": "30", + "ttot": 18.52629840394999, "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 8.058200000000001, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Bcast", - "ttot": 0.5731984180400003, + "ttot": 2.2405158677, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.43084382, + "ttot": 3.732799995, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00032685, + "ttot": 0.00043243, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Send", - "ttot": 4.36813579, + "ttot": 4.4943491799999995, "count": 193522, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_rank", - "ttot": 7.1128e-7, + "ttot": 5.1605e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, - { - "call": "MPI_Recv", - "ttot": 10.55274, - "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Comm_size", - "ttot": 2.4434e-7, + "ttot": 4.152e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" @@ -2653,219 +2654,219 @@ ] }, { - "nr": "109", - "ttot": 17.91977750498, + "nr": "31", + "ttot": 17.008654316999998, "mpiCalls": [ + { + "call": "MPI_Send", + "ttot": 2.9380194399999997, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Bcast", - "ttot": 1.1983541446, + "ttot": 2.2489379250999995, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.38976239, + "ttot": 3.526158955, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00049933, + "ttot": 0.00041726, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, - { - "call": "MPI_Send", - "ttot": 4.7335009900000005, - "count": 193522, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Comm_rank", - "ttot": 3.8302e-7, + "ttot": 4.5213e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, - { - "call": "MPI_Comm_size", - "ttot": 2.6736e-7, - "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" - }, { "call": "MPI_Recv", - "ttot": 9.597660000000001, + "ttot": 8.295119999999999, "count": 193522, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.8477e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" } ] }, { - "nr": "61", - "ttot": 17.90483189494999, + "nr": "32", + "ttot": 16.48297107823, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 1.6973469602000004, + "ttot": 2.1842542762999995, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, + { + "call": "MPI_Send", + "ttot": 3.1480644599999996, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Allreduce", - "ttot": 2.7293904600000003, + "ttot": 3.219084959000001, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00072901, + "ttot": 0.00025613, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Send", - "ttot": 4.62276473, + "call": "MPI_Recv", + "ttot": 7.931309999999999, "count": 193522, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 4.9607e-7, + "ttot": 7.7471e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 2.3868e-7, + "ttot": 4.7822e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" - }, - { - "call": "MPI_Recv", - "ttot": 8.8546, - "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" } ] }, { - "nr": "126", - "ttot": 17.895402634619998, + "nr": "33", + "ttot": 17.784049510670016, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.8340984530000002, + "ttot": 2.156577541599999, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Recv", - "ttot": 11.7324, - "count": 145194, + "ttot": 8.07916, + "count": 193522, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Allreduce", - "ttot": 2.523864556, + "ttot": 3.2131903899999994, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00048815, + "ttot": 0.00078601, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Comm_rank", - "ttot": 5.4998e-7, + "ttot": 6.0952e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, + { + "call": "MPI_Send", + "ttot": 4.33433471, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Comm_size", - "ttot": 3.2564e-7, + "ttot": 2.4955e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" - }, - { - "call": "MPI_Send", - "ttot": 2.8045506, - "count": 145194, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" } ] }, { - "nr": "140", - "ttot": 17.882538237189998, + "nr": "34", + "ttot": 17.480547194360003, "mpiCalls": [ + { + "call": "MPI_Send", + "ttot": 4.10630165, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Bcast", - "ttot": 0.6416569264, + "ttot": 2.1822535729699997, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.6419091600000004, + "ttot": 3.2747764480000003, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00025436, + "ttot": 0.00051418, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, - { - "call": "MPI_Send", - "ttot": 3.40969689, - "count": 145194, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Comm_rank", - "ttot": 5.6821e-7, + "ttot": 7.3735e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Recv", - "ttot": 11.189020000000001, - "count": 145194, + "ttot": 7.9167000000000005, + "count": 193522, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_size", - "ttot": 3.3258e-7, + "ttot": 6.0604e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" @@ -2873,54 +2874,54 @@ ] }, { - "nr": "22", - "ttot": 17.871795884420006, + "nr": "35", + "ttot": 16.8535026365, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 2.642023644299999, + "ttot": 2.2020444938000012, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, + { + "call": "MPI_Send", + "ttot": 3.2156272500000003, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Allreduce", - "ttot": 3.2896301480000005, + "ttot": 3.1770171609999998, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00044916, + "ttot": 0.00055311, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Send", - "ttot": 4.57624217, + "call": "MPI_Recv", + "ttot": 8.25826, "count": 193522, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 3.9823e-7, + "ttot": 4.178e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, - { - "call": "MPI_Recv", - "ttot": 7.363449999999999, - "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Comm_size", - "ttot": 3.6389e-7, + "ttot": 2.039e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" @@ -2928,54 +2929,54 @@ ] }, { - "nr": "110", - "ttot": 17.853846626609997, + "nr": "36", + "ttot": 14.536404268519998, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 1.1606064645, + "ttot": 2.1717002490999993, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, + { + "call": "MPI_Recv", + "ttot": 7.33339, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Allreduce", - "ttot": 2.3344942000000004, + "ttot": 1.5460921520000002, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00047297, + "ttot": 0.00025118, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, - { - "call": "MPI_Send", - "ttot": 4.4279722800000005, - "count": 193522, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, - { - "call": "MPI_Recv", - "ttot": 9.9303, - "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Comm_rank", - "ttot": 4.0127e-7, + "ttot": 4.474e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, + { + "call": "MPI_Send", + "ttot": 3.48496994, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Comm_size", - "ttot": 3.1084e-7, + "ttot": 3.0002e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" @@ -2983,54 +2984,54 @@ ] }, { - "nr": "86", - "ttot": 17.84656268627001, + "nr": "37", + "ttot": 14.874784290080004, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 1.3096710879999998, + "ttot": 2.2760211653999995, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, + { + "call": "MPI_Send", + "ttot": 3.9428763100000004, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Allreduce", - "ttot": 2.6170786470000005, + "ttot": 1.0874039089999998, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.0008559, + "ttot": 0.00075214, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Send", - "ttot": 4.68543632, - "count": 193522, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "call": "MPI_Comm_rank", + "ttot": 5.2915e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Recv", - "ttot": 9.23352, + "ttot": 7.567730000000001, "count": 193522, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, - { - "call": "MPI_Comm_rank", - "ttot": 4.7564e-7, - "count": 2, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" - }, { "call": "MPI_Comm_size", - "ttot": 2.5563e-7, + "ttot": 2.3653e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" @@ -3038,54 +3039,54 @@ ] }, { - "nr": "69", - "ttot": 17.833994322259993, + "nr": "38", + "ttot": 15.227205149210006, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 1.6431850778999997, + "ttot": 2.2475475325499987, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, + { + "call": "MPI_Send", + "ttot": 4.23172842, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Allreduce", - "ttot": 2.18445203, + "ttot": 0.971850271, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00077384, + "ttot": 0.00026812, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Recv", - "ttot": 10.3306, - "count": 145194, + "ttot": 7.775810000000001, + "count": 193522, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 4.4827e-7, + "ttot": 5.4175e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, - { - "call": "MPI_Send", - "ttot": 3.6749827, - "count": 145194, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Comm_size", - "ttot": 2.2609e-7, + "ttot": 2.6391e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" @@ -3093,164 +3094,164 @@ ] }, { - "nr": "155", - "ttot": 17.8307883446, + "nr": "39", + "ttot": 13.895102317589998, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.5140624935000001, + "ttot": 2.2729433965, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { - "call": "MPI_Send", - "ttot": 2.06957236, - "count": 145194, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "call": "MPI_Recv", + "ttot": 6.8734, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Allreduce", - "ttot": 2.333580262, + "ttot": 1.200696235, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00027241, + "ttot": 0.00026199, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Comm_rank", - "ttot": 4.7346e-7, + "ttot": 4.5086e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, + { + "call": "MPI_Send", + "ttot": 3.54780006, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Comm_size", - "ttot": 3.4564e-7, + "ttot": 1.8523e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" - }, - { - "call": "MPI_Recv", - "ttot": 12.913300000000001, - "count": 145194, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" } ] }, { - "nr": "129", - "ttot": 17.821882879079997, + "nr": "40", + "ttot": 15.75954817281, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.7770849245999998, + "ttot": 2.228024699200001, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { - "call": "MPI_Recv", - "ttot": 10.1919, + "call": "MPI_Send", + "ttot": 2.09194487, "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Allreduce", - "ttot": 2.5556079110000005, + "ttot": 2.263381855, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00074014, + "ttot": 0.00028591, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Comm_rank", - "ttot": 4.4522e-7, + "ttot": 6.6255e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 3.1826e-7, + "ttot": 1.7606e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { - "call": "MPI_Send", - "ttot": 4.29654914, + "call": "MPI_Recv", + "ttot": 9.17591, "count": 193522, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" } ] }, { - "nr": "122", - "ttot": 17.80935506378, + "nr": "41", + "ttot": 17.576752983899993, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 1.0170647899999998, + "ttot": 2.1749108967999997, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.1915493390000003, + "ttot": 2.6895262549999996, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00077327, + "ttot": 0.00062475, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, + { + "call": "MPI_Recv", + "ttot": 9.4225, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Send", - "ttot": 5.14077682, - "count": 193522, + "ttot": 3.28919028, + "count": 145194, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_rank", - "ttot": 6.1565e-7, + "ttot": 5.3778e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, - { - "call": "MPI_Recv", - "ttot": 9.45919, - "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Comm_size", - "ttot": 2.2913e-7, + "ttot": 2.6432e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" @@ -3313,109 +3314,109 @@ ] }, { - "nr": "33", - "ttot": 17.784049510670016, + "nr": "43", + "ttot": 16.684996439039992, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 2.156577541599999, + "ttot": 1.8870434857, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { - "call": "MPI_Recv", - "ttot": 8.07916, + "call": "MPI_Send", + "ttot": 2.3538831100000004, "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Allreduce", - "ttot": 3.2131903899999994, + "ttot": 3.592037353, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00078601, + "ttot": 0.00049163, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Comm_rank", - "ttot": 6.0952e-7, + "ttot": 4.8777e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, - { - "call": "MPI_Send", - "ttot": 4.33433471, - "count": 193522, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Comm_size", - "ttot": 2.4955e-7, + "ttot": 3.7257e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 8.85154, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" } ] }, { - "nr": "130", - "ttot": 17.760906938019993, + "nr": "44", + "ttot": 13.934899597919994, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.7913264074, + "ttot": 1.8668471985, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.5395230179999997, + "ttot": 1.1649111759999997, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { - "call": "MPI_Recv", - "ttot": 10.14165, + "call": "MPI_Send", + "ttot": 3.1394872499999997, "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Barrier", - "ttot": 0.00084345, + "ttot": 0.00027342, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Send", - "ttot": 4.28756263, + "call": "MPI_Recv", + "ttot": 7.763380000000001, "count": 193522, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 9.0044e-7, + "ttot": 3.9475e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 5.3218e-7, + "ttot": 1.5867e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" @@ -3423,54 +3424,54 @@ ] }, { - "nr": "62", - "ttot": 17.7596944581, + "nr": "45", + "ttot": 15.329122887650003, "mpiCalls": [ - { - "call": "MPI_Send", - "ttot": 4.790959539999999, - "count": 193522, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Bcast", - "ttot": 1.6247620401999998, + "ttot": 1.8434885410000008, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.7249199940000004, + "ttot": 1.2051183379999997, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, - { - "call": "MPI_Barrier", - "ttot": 0.00041217, - "count": 2, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" - }, { "call": "MPI_Recv", - "ttot": 8.61864, + "ttot": 8.54022, "count": 193522, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, + { + "call": "MPI_Barrier", + "ttot": 0.00049316, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, { "call": "MPI_Comm_rank", - "ttot": 5.1956e-7, + "ttot": 5.1301e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, + { + "call": "MPI_Send", + "ttot": 3.7398020400000003, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Comm_size", - "ttot": 1.9434e-7, + "ttot": 2.9564e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" @@ -3478,164 +3479,164 @@ ] }, { - "nr": "50", - "ttot": 17.746943990020004, + "nr": "46", + "ttot": 15.135465959870002, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 1.8540854671000004, + "ttot": 1.8950826633000009, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, + { + "call": "MPI_Send", + "ttot": 3.7470719499999996, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Allreduce", - "ttot": 2.6407188419999996, + "ttot": 1.239900144, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00075804, + "ttot": 0.00029041, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, - { - "call": "MPI_Send", - "ttot": 4.662500769999999, - "count": 193522, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, - { - "call": "MPI_Recv", - "ttot": 8.58888, - "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Comm_rank", - "ttot": 5.2438e-7, + "ttot": 5.678e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 3.4654e-7, + "ttot": 2.2477e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 8.25312, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" } ] }, { - "nr": "103", - "ttot": 17.74456127684, + "nr": "47", + "ttot": 14.527494572389998, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 1.1561684773499996, + "ttot": 1.8935983763999995, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.583334076, + "ttot": 1.275280823, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00029863, + "ttot": 0.00028323, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Send", - "ttot": 3.27445935, + "ttot": 3.1174615, "count": 193522, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, + { + "call": "MPI_Recv", + "ttot": 8.24087, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Comm_rank", - "ttot": 4.8522e-7, + "ttot": 4.1039e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 2.5827e-7, + "ttot": 2.326e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" - }, - { - "call": "MPI_Recv", - "ttot": 10.7303, - "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" } ] }, { - "nr": "25", - "ttot": 17.74148190385, + "nr": "48", + "ttot": 16.735332734110003, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 2.6009174658999985, + "ttot": 1.8231200584, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 3.223702407, + "ttot": 2.58420554, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00077991, + "ttot": 0.00030332, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Send", - "ttot": 4.1988112399999995, + "call": "MPI_Recv", + "ttot": 9.39444, "count": 193522, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 5.4789e-7, + "ttot": 6.6699e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { - "call": "MPI_Recv", - "ttot": 7.71727, + "call": "MPI_Send", + "ttot": 2.93326247, "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 3.3306e-7, + "ttot": 6.7872e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" @@ -3643,54 +3644,109 @@ ] }, { - "nr": "65", - "ttot": 17.738876354659997, + "nr": "49", + "ttot": 17.571042880689994, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 1.6811581225000003, + "ttot": 1.8504618901999996, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, + { + "call": "MPI_Allreduce", + "ttot": 2.475171007, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, { "call": "MPI_Send", - "ttot": 4.551650070000001, + "ttot": 4.38441822, "count": 193522, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, + { + "call": "MPI_Barrier", + "ttot": 0.00070113, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 4.1175e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.2174e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 8.86029, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + } + ] + }, + { + "nr": "50", + "ttot": 17.746943990020004, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.8540854671000004, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, { "call": "MPI_Allreduce", - "ttot": 2.577346817, + "ttot": 2.6407188419999996, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00051028, + "ttot": 0.00075804, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, + { + "call": "MPI_Send", + "ttot": 4.662500769999999, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Recv", - "ttot": 8.92821, + "ttot": 8.58888, "count": 193522, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 6.8214e-7, + "ttot": 5.2438e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 3.8302e-7, + "ttot": 3.4654e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" @@ -3698,54 +3754,54 @@ ] }, { - "nr": "54", - "ttot": 17.684835917430007, + "nr": "51", + "ttot": 16.984216984170004, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 1.8235801256000004, + "ttot": 1.8676593811, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.4286978809999997, + "ttot": 2.5570702699999996, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00044086, + "ttot": 0.00075127, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Recv", - "ttot": 8.06452, + "ttot": 9.05585, "count": 193522, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 4.5475e-7, + "ttot": 4.1393e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Send", - "ttot": 5.367596420000001, + "ttot": 3.50288538, "count": 193522, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 1.7608e-7, + "ttot": 2.6914e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" @@ -3753,57 +3809,57 @@ ] }, { - "nr": "117", - "ttot": 17.678467294829993, + "nr": "52", + "ttot": 16.74532549075, "mpiCalls": [ - { - "call": "MPI_Recv", - "ttot": 9.699749999999998, - "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Bcast", - "ttot": 0.9621321359, + "ttot": 1.8265636567999994, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.391140912, + "ttot": 2.531519394, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00062972, + "ttot": 0.00028182, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, + { + "call": "MPI_Send", + "ttot": 2.64865994, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Comm_rank", - "ttot": 5.8998e-7, + "ttot": 4.3692e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 2.9695e-7, + "ttot": 2.4303e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { - "call": "MPI_Send", - "ttot": 4.62481364, + "call": "MPI_Recv", + "ttot": 9.738299999999999, "count": 193522, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" } ] }, @@ -3863,384 +3919,384 @@ ] }, { - "nr": "106", - "ttot": 17.6542505319, + "nr": "54", + "ttot": 17.684835917430007, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 1.1224255110999999, + "ttot": 1.8235801256000004, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.415830743, + "ttot": 2.4286978809999997, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.0005727, + "ttot": 0.00044086, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Send", - "ttot": 4.856760749999999, + "call": "MPI_Recv", + "ttot": 8.06452, "count": 193522, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 5.426e-7, + "ttot": 4.5475e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, + { + "call": "MPI_Send", + "ttot": 5.367596420000001, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Comm_size", - "ttot": 2.852e-7, + "ttot": 1.7608e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" - }, - { - "call": "MPI_Recv", - "ttot": 9.25866, - "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" } ] }, { - "nr": "21", - "ttot": 17.63369408131999, + "nr": "55", + "ttot": 15.910026771130001, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 2.6547830468999982, + "ttot": 1.8497967247000004, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 3.352332181, + "ttot": 2.456330463, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00026579, + "ttot": 0.00043736, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, - { - "call": "MPI_Recv", - "ttot": 6.87462, - "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Send", - "ttot": 4.75169222, - "count": 193522, + "ttot": 3.98648129, + "count": 145194, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_rank", - "ttot": 6.0561e-7, + "ttot": 6.3692e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 2.3781e-7, + "ttot": 2.9651e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 7.616980000000001, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" } ] }, { - "nr": "93", - "ttot": 17.612298837530002, + "nr": "56", + "ttot": 16.246856402820004, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 1.2999340349999997, + "ttot": 1.6726760564, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.3941759830000002, + "ttot": 2.957979926, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00036952, + "ttot": 0.00029013, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, + { + "call": "MPI_Send", + "ttot": 3.9420795, + "count": 145194, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Recv", - "ttot": 9.979299999999999, - "count": 193522, + "ttot": 7.673830000000001, + "count": 145194, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 5.4171e-7, + "ttot": 4.1217e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 2.4782e-7, + "ttot": 3.7825e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" - }, - { - "call": "MPI_Send", - "ttot": 3.93851851, - "count": 193522, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" } ] }, { - "nr": "114", - "ttot": 17.59398577521, + "nr": "57", + "ttot": 17.30218943384001, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.9886928808, + "ttot": 1.7227043410999998, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.2967845709999994, + "ttot": 2.6178684880000005, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00028468, + "ttot": 0.00070751, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Recv", - "ttot": 9.54309, + "ttot": 7.98258, "count": 193522, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 5.5648e-7, + "ttot": 4.3954e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, - { - "call": "MPI_Comm_size", - "ttot": 4.0693e-7, - "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" - }, { "call": "MPI_Send", - "ttot": 4.76513268, + "ttot": 4.97832827, "count": 193522, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.852e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" } ] }, { - "nr": "77", - "ttot": 17.588982842280007, + "nr": "58", + "ttot": 18.31511151997, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 1.4823802500000003, + "ttot": 1.7222241386000006, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.388806271, + "ttot": 2.683772874, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, - { - "call": "MPI_Send", - "ttot": 4.31639518, - "count": 193522, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Barrier", - "ttot": 0.00068061, + "ttot": 0.0006442, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Recv", - "ttot": 9.40072, + "call": "MPI_Send", + "ttot": 4.8130393399999996, "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_rank", - "ttot": 3.1303e-7, + "ttot": 5.6782e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 2.1825e-7, + "ttot": 3.9955e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 9.095429999999999, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" } ] }, { - "nr": "87", - "ttot": 17.583433904349995, + "nr": "59", + "ttot": 17.22709582909001, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 1.3355833266, + "ttot": 1.695207043, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.720095933, + "ttot": 2.8241988769999997, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00028949, + "ttot": 0.00064032, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, + { + "call": "MPI_Send", + "ttot": 3.21364837, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Recv", - "ttot": 10.350760000000001, + "ttot": 9.4934, "count": 193522, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 6.3867e-7, + "ttot": 7.5258e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 1.8608e-7, + "ttot": 4.6651e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" - }, - { - "call": "MPI_Send", - "ttot": 3.1767043300000006, - "count": 193522, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" } ] }, { - "nr": "18", - "ttot": 17.57951267724, + "nr": "60", + "ttot": 17.31678739801, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 2.5469921349999995, + "ttot": 1.6899995018, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 3.654466471, + "ttot": 2.8540555279999995, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00062136, + "ttot": 0.00026866, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Recv", - "ttot": 7.25825, + "ttot": 9.7035, "count": 193522, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, - { - "call": "MPI_Send", - "ttot": 4.1191819, - "count": 193522, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Comm_rank", - "ttot": 4.9952e-7, + "ttot": 5.5779e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, + { + "call": "MPI_Send", + "ttot": 3.06896289, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Comm_size", - "ttot": 3.1172e-7, + "ttot": 2.6042e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" @@ -4248,329 +4304,329 @@ ] }, { - "nr": "41", - "ttot": 17.576752983899993, + "nr": "61", + "ttot": 17.90483189494999, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 2.1749108967999997, + "ttot": 1.6973469602000004, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.6895262549999996, + "ttot": 2.7293904600000003, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00062475, + "ttot": 0.00072901, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, - { - "call": "MPI_Recv", - "ttot": 9.4225, - "count": 145194, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Send", - "ttot": 3.28919028, - "count": 145194, + "ttot": 4.62276473, + "count": 193522, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_rank", - "ttot": 5.3778e-7, + "ttot": 4.9607e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 2.6432e-7, + "ttot": 2.3868e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 8.8546, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" } ] }, { - "nr": "49", - "ttot": 17.571042880689994, + "nr": "62", + "ttot": 17.7596944581, "mpiCalls": [ + { + "call": "MPI_Send", + "ttot": 4.790959539999999, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Bcast", - "ttot": 1.8504618901999996, + "ttot": 1.6247620401999998, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.475171007, + "ttot": 2.7249199940000004, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, - { - "call": "MPI_Send", - "ttot": 4.38441822, - "count": 193522, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Barrier", - "ttot": 0.00070113, + "ttot": 0.00041217, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, + { + "call": "MPI_Recv", + "ttot": 8.61864, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Comm_rank", - "ttot": 4.1175e-7, + "ttot": 5.1956e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 2.2174e-7, + "ttot": 1.9434e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" - }, - { - "call": "MPI_Recv", - "ttot": 8.86029, - "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" } ] }, { - "nr": "144", - "ttot": 17.570116649299997, + "nr": "63", + "ttot": 17.428237647549988, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.5978068490999998, + "ttot": 1.6952565773999997, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.6292251949999996, + "ttot": 2.8763587279999996, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.0002847, + "ttot": 0.00039873, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Recv", - "ttot": 10.955929999999999, + "ttot": 8.87369, "count": 193522, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 4.4912e-7, + "ttot": 6.1694e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, - { - "call": "MPI_Comm_size", - "ttot": 3.3608e-7, - "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" - }, { "call": "MPI_Send", - "ttot": 3.38686912, + "ttot": 3.9825325300000003, "count": 193522, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 4.6521e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" } ] }, { - "nr": "95", - "ttot": 17.57000718232, + "nr": "64", + "ttot": 16.60005944315, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 1.3345807929, + "ttot": 1.5947500440000002, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.416903176, + "ttot": 2.4639637039999998, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00015189, + "ttot": 0.000282, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Send", - "ttot": 3.4839705, + "ttot": 2.74076287, "count": 193522, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, - { - "call": "MPI_Recv", - "ttot": 10.3344, - "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Comm_rank", - "ttot": 4.8561e-7, + "ttot": 4.5387e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 3.3781e-7, + "ttot": 3.7128e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 9.8003, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" } ] }, { - "nr": "78", - "ttot": 17.56866493815, + "nr": "65", + "ttot": 17.738876354659997, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 1.4848673826000003, + "ttot": 1.6811581225000003, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { - "call": "MPI_Allreduce", - "ttot": 2.3212025029999994, - "count": 246, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" + "call": "MPI_Send", + "ttot": 4.551650070000001, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.577346817, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00013854, + "ttot": 0.00051028, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Recv", - "ttot": 9.027610000000001, + "ttot": 8.92821, "count": 193522, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 8.0997e-7, + "ttot": 6.8214e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 4.3258e-7, + "ttot": 3.8302e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" - }, - { - "call": "MPI_Send", - "ttot": 4.734845269999999, - "count": 193522, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" } ] }, { - "nr": "12", - "ttot": 17.564566492049998, + "nr": "66", + "ttot": 18.154884473979997, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 2.8115808942999987, + "ttot": 1.6835030576999999, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 3.11787211, + "ttot": 2.558174449, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, - { - "call": "MPI_Recv", - "ttot": 9.66355, - "count": 145194, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Barrier", - "ttot": 0.00024753, + "ttot": 0.00052282, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Send", - "ttot": 1.97131514, - "count": 145194, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "call": "MPI_Recv", + "ttot": 8.63744, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 5.6603e-7, + "ttot": 0.0000010108, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, + { + "call": "MPI_Send", + "ttot": 5.27524267, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Comm_size", - "ttot": 2.5172e-7, + "ttot": 4.6648e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" @@ -4578,109 +4634,109 @@ ] }, { - "nr": "29", - "ttot": 17.55440228085999, + "nr": "67", + "ttot": 16.674705740920004, "mpiCalls": [ - { - "call": "MPI_Send", - "ttot": 4.20525199, - "count": 193522, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Bcast", - "ttot": 2.2381588846000002, + "ttot": 1.6910777988999997, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 3.592004182, + "ttot": 2.406824856, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00080609, + "ttot": 0.00055507, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Recv", - "ttot": 7.51818, + "call": "MPI_Send", + "ttot": 3.6065170799999997, "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_rank", - "ttot": 6.6473e-7, + "ttot": 6.3865e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 4.6953e-7, + "ttot": 2.9737e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 8.969730000000002, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" } ] }, { - "nr": "133", - "ttot": 17.50627222104, + "nr": "68", + "ttot": 16.699083129719998, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.7735374688999997, + "ttot": 1.6342058441000005, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, + { + "call": "MPI_Send", + "ttot": 2.49271297, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Allreduce", - "ttot": 2.327058, + "ttot": 2.5128679930000004, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00061859, + "ttot": 0.00029549, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Recv", - "ttot": 9.96779, + "ttot": 10.059, "count": 193522, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, - { - "call": "MPI_Send", - "ttot": 4.4372669799999995, - "count": 193522, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Comm_rank", - "ttot": 6.639e-7, + "ttot": 6.6088e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 5.1824e-7, + "ttot": 1.7174e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" @@ -4688,54 +4744,54 @@ ] }, { - "nr": "34", - "ttot": 17.480547194360003, + "nr": "69", + "ttot": 17.833994322259993, "mpiCalls": [ - { - "call": "MPI_Send", - "ttot": 4.10630165, - "count": 193522, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Bcast", - "ttot": 2.1822535729699997, + "ttot": 1.6431850778999997, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 3.2747764480000003, + "ttot": 2.18445203, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00051418, + "ttot": 0.00077384, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, + { + "call": "MPI_Recv", + "ttot": 10.3306, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Comm_rank", - "ttot": 7.3735e-7, + "ttot": 4.4827e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { - "call": "MPI_Recv", - "ttot": 7.9167000000000005, - "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "call": "MPI_Send", + "ttot": 3.6749827, + "count": 145194, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 6.0604e-7, + "ttot": 2.2609e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" @@ -4743,274 +4799,274 @@ ] }, { - "nr": "108", - "ttot": 17.46222438509, + "nr": "70", + "ttot": 17.12875561987, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 1.2042325226999993, + "ttot": 1.4660311184000006, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.4601456689999996, + "ttot": 2.424757648, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00025036, + "ttot": 0.00032024, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Recv", - "ttot": 10.9927, - "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "call": "MPI_Send", + "ttot": 3.0555457699999997, + "count": 145194, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_rank", - "ttot": 6.2515e-7, + "ttot": 5.7956e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 3.1824e-7, + "ttot": 2.6391e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { - "call": "MPI_Send", - "ttot": 2.80489489, - "count": 193522, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "call": "MPI_Recv", + "ttot": 10.1821, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" } ] }, { - "nr": "105", - "ttot": 17.462101597600004, + "nr": "71", + "ttot": 16.563097190060002, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 1.1284300878000009, + "ttot": 1.4880768224999996, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, + { + "call": "MPI_Send", + "ttot": 2.4411430000000003, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Allreduce", - "ttot": 2.377098322, + "ttot": 2.6454711879999997, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00054419, + "ttot": 0.00031539, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Recv", - "ttot": 9.89648, + "ttot": 9.98809, "count": 193522, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 5.9564e-7, + "ttot": 5.7304e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 2.0216e-7, + "ttot": 2.1652e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" - }, - { - "call": "MPI_Send", - "ttot": 4.0595482, - "count": 193522, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" } ] }, { - "nr": "82", - "ttot": 17.43382887035001, + "nr": "72", + "ttot": 13.246036326259999, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 1.4759444024899995, + "ttot": 1.500463188999999, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 1.9394502340000002, + "ttot": 0.927964896, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00033092, + "ttot": 0.00031951, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Send", - "ttot": 4.2566823099999995, + "call": "MPI_Recv", + "ttot": 7.39333, "count": 193522, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 5.3823e-7, + "ttot": 5.6041e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 4.6563e-7, + "ttot": 1.7085e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { - "call": "MPI_Recv", - "ttot": 9.761420000000001, + "call": "MPI_Send", + "ttot": 3.423958, "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" } ] }, { - "nr": "153", - "ttot": 17.433162137309996, + "nr": "73", + "ttot": 14.923701449019998, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.6339896879, + "ttot": 1.4779990783999997, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.192245349, + "ttot": 0.9999822949999999, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00039966, + "ttot": 0.00055517, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Recv", - "ttot": 11.41694, - "count": 145194, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "call": "MPI_Send", + "ttot": 4.0115143, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_rank", - "ttot": 4.3042e-7, + "ttot": 4.165e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 4.0999e-7, + "ttot": 1.8912e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { - "call": "MPI_Send", - "ttot": 3.1895866, - "count": 145194, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "call": "MPI_Recv", + "ttot": 8.43365, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" } ] }, { - "nr": "63", - "ttot": 17.428237647549988, + "nr": "74", + "ttot": 15.637504410759995, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 1.6952565773999997, + "ttot": 1.4809949429999996, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, + { + "call": "MPI_Send", + "ttot": 4.73402952, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Allreduce", - "ttot": 2.8763587279999996, + "ttot": 0.916671723, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00039873, + "ttot": 0.0005375, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Recv", - "ttot": 8.87369, + "ttot": 8.505270000000001, "count": 193522, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 6.1694e-7, + "ttot": 5.3173e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, - { - "call": "MPI_Send", - "ttot": 3.9825325300000003, - "count": 193522, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Comm_size", - "ttot": 4.6521e-7, + "ttot": 1.9303e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" @@ -5018,164 +5074,164 @@ ] }, { - "nr": "85", - "ttot": 17.4251048023, + "nr": "75", + "ttot": 14.403159660929996, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 1.3242678026999994, + "ttot": 1.49688234464, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.6265929670000006, + "ttot": 1.024556865, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.0006666, + "ttot": 0.00053184, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Send", - "ttot": 4.63036668, + "call": "MPI_Recv", + "ttot": 8.35867, "count": 193522, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 6.0043e-7, + "ttot": 4.8173e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 1.5217e-7, + "ttot": 2.2956e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { - "call": "MPI_Recv", - "ttot": 8.84321, + "call": "MPI_Send", + "ttot": 3.5225178999999995, "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" } ] }, { - "nr": "147", - "ttot": 17.419594503489993, + "nr": "76", + "ttot": 16.31562939258, "mpiCalls": [ - { - "call": "MPI_Send", - "ttot": 3.43113349, - "count": 193522, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Bcast", - "ttot": 0.6087198676000002, + "ttot": 1.4875429961999997, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.5059826819999995, + "ttot": 2.034016969, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.0004776, + "ttot": 0.00029333, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Recv", - "ttot": 10.873280000000001, + "call": "MPI_Send", + "ttot": 2.58637543, "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_rank", - "ttot": 6.2346e-7, + "ttot": 4.1217e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 2.4043e-7, + "ttot": 2.5521e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 10.2074, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" } ] }, { - "nr": "101", - "ttot": 17.386399830509994, + "nr": "77", + "ttot": 17.588982842280007, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 1.1505474958999995, + "ttot": 1.4823802500000003, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.163525412, + "ttot": 2.388806271, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, - { - "call": "MPI_Barrier", - "ttot": 0.0006453, - "count": 2, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" - }, { "call": "MPI_Send", - "ttot": 4.71088082, + "ttot": 4.31639518, "count": 193522, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, + { + "call": "MPI_Barrier", + "ttot": 0.00068061, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, { "call": "MPI_Recv", - "ttot": 9.3608, + "ttot": 9.40072, "count": 193522, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 5.3478e-7, + "ttot": 3.1303e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 2.6783e-7, + "ttot": 2.1825e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" @@ -5183,329 +5239,329 @@ ] }, { - "nr": "60", - "ttot": 17.31678739801, + "nr": "78", + "ttot": 17.56866493815, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 1.6899995018, + "ttot": 1.4848673826000003, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.8540555279999995, + "ttot": 2.3212025029999994, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00026866, + "ttot": 0.00013854, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Recv", - "ttot": 9.7035, + "ttot": 9.027610000000001, "count": 193522, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 5.5779e-7, + "ttot": 8.0997e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, - { - "call": "MPI_Send", - "ttot": 3.06896289, - "count": 193522, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Comm_size", - "ttot": 2.6042e-7, + "ttot": 4.3258e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 4.734845269999999, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" } ] }, { - "nr": "136", - "ttot": 17.315286584029998, + "nr": "79", + "ttot": 16.2169691343, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.7817104709, + "ttot": 1.511837515800001, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.414609624, + "ttot": 2.056341132, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00024554, + "ttot": 0.00017855, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, - { - "call": "MPI_Recv", - "ttot": 11.2711, - "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Send", - "ttot": 2.84761992, + "ttot": 3.97615114, "count": 193522, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_rank", - "ttot": 7.0391e-7, + "ttot": 5.3868e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 3.2522e-7, + "ttot": 2.5782e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 8.67246, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" } ] }, { - "nr": "135", - "ttot": 17.307751200560006, + "nr": "80", + "ttot": 16.74303985333, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.7871311750000002, + "ttot": 1.4824166543, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.278860063, + "ttot": 2.2913027529999996, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, - { - "call": "MPI_Recv", - "ttot": 11.2006, - "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Barrier", - "ttot": 0.00043708, + "ttot": 0.00027773, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Comm_rank", - "ttot": 7.9909e-7, - "count": 2, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "call": "MPI_Send", + "ttot": 3.0182409800000003, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { - "call": "MPI_Comm_size", - "ttot": 2.7347e-7, + "call": "MPI_Recv", + "ttot": 9.950800000000001, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0000012065, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 5.2953e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" - }, - { - "call": "MPI_Send", - "ttot": 3.0407218099999995, - "count": 193522, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" } ] }, { - "nr": "57", - "ttot": 17.30218943384001, + "nr": "81", + "ttot": 18.091641995840007, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 1.7227043410999998, + "ttot": 1.4810998508000004, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.6178684880000005, + "ttot": 2.1916735490000003, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00070751, + "ttot": 0.00045916, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Recv", - "ttot": 7.98258, + "ttot": 9.704239999999999, "count": 193522, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 4.3954e-7, + "ttot": 5.9258e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, - { - "call": "MPI_Send", - "ttot": 4.97832827, - "count": 193522, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Comm_size", - "ttot": 3.852e-7, + "ttot": 4.7346e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 4.71416837, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" } ] }, { - "nr": "118", - "ttot": 17.27745370613, + "nr": "82", + "ttot": 17.43382887035001, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.9371061011, + "ttot": 1.4759444024899995, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, - { - "call": "MPI_Recv", - "ttot": 9.92065, - "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Allreduce", - "ttot": 2.182933619, + "ttot": 1.9394502340000002, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00083163, + "ttot": 0.00033092, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Send", - "ttot": 4.2359315, + "ttot": 4.2566823099999995, "count": 193522, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_rank", - "ttot": 6.1822e-7, + "ttot": 5.3823e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 2.3781e-7, + "ttot": 4.6563e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 9.761420000000001, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" } ] }, { - "nr": "104", - "ttot": 17.252326076330004, + "nr": "83", + "ttot": 18.026528328599994, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 1.1415805390000004, + "ttot": 1.4369711175400006, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.3612119000000003, + "ttot": 2.352624545, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00024668, + "ttot": 0.00033041, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Send", - "ttot": 3.23888566, - "count": 193522, + "ttot": 3.1310014, + "count": 145194, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Recv", - "ttot": 10.5104, - "count": 193522, + "ttot": 11.1056, + "count": 145194, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 7.8474e-7, + "ttot": 5.7259e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 5.1259e-7, + "ttot": 2.8347e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" @@ -5513,164 +5569,164 @@ ] }, { - "nr": "102", - "ttot": 17.251770598860002, + "nr": "84", + "ttot": 17.03565106151, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 1.1552908245000002, + "ttot": 1.3056555572000006, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.1137631899999993, + "ttot": 2.8545338900000004, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00077976, + "ttot": 0.00028593, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Recv", - "ttot": 9.65127, - "count": 193522, + "ttot": 8.58126, + "count": 145194, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 8.3045e-7, + "ttot": 5.7172e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 2.2391e-7, + "ttot": 2.6259e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Send", - "ttot": 4.3306657699999995, - "count": 193522, + "ttot": 4.29391485, + "count": 145194, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" } ] }, { - "nr": "59", - "ttot": 17.22709582909001, + "nr": "85", + "ttot": 17.4251048023, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 1.695207043, + "ttot": 1.3242678026999994, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.8241988769999997, + "ttot": 2.6265929670000006, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00064032, + "ttot": 0.0006666, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Send", - "ttot": 3.21364837, + "ttot": 4.63036668, "count": 193522, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, - { - "call": "MPI_Recv", - "ttot": 9.4934, - "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Comm_rank", - "ttot": 7.5258e-7, + "ttot": 6.0043e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 4.6651e-7, + "ttot": 1.5217e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 8.84321, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" } ] }, { - "nr": "28", - "ttot": 17.22120754478, + "nr": "86", + "ttot": 17.84656268627001, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 2.2235604261999997, + "ttot": 1.3096710879999998, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 3.6099995760000003, + "ttot": 2.6170786470000005, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00028208, + "ttot": 0.0008559, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Send", - "ttot": 3.1641449199999996, - "count": 145194, + "ttot": 4.68543632, + "count": 193522, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, + { + "call": "MPI_Recv", + "ttot": 9.23352, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Comm_rank", - "ttot": 3.8389e-7, + "ttot": 4.7564e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, - { - "call": "MPI_Recv", - "ttot": 8.22322, - "count": 145194, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Comm_size", - "ttot": 1.5869e-7, + "ttot": 2.5563e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" @@ -5678,164 +5734,164 @@ ] }, { - "nr": "15", - "ttot": 17.19819658736, + "nr": "87", + "ttot": 17.583433904349995, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 2.6371191628799995, + "ttot": 1.3355833266, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 4.312922755, + "ttot": 2.720095933, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00025157, + "ttot": 0.00028949, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Recv", - "ttot": 7.8080099999999995, + "ttot": 10.350760000000001, "count": 193522, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, - { - "call": "MPI_Send", - "ttot": 2.4398924600000003, - "count": 193522, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Comm_rank", - "ttot": 4.4168e-7, + "ttot": 6.3867e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 1.978e-7, + "ttot": 1.8608e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 3.1767043300000006, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" } ] }, { - "nr": "132", - "ttot": 17.190458953249998, + "nr": "88", + "ttot": 14.055976450840005, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.7641518575000003, + "ttot": 1.3397994366, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.5367700509999995, + "ttot": 0.718011153, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, - { - "call": "MPI_Recv", - "ttot": 10.16822, - "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Barrier", - "ttot": 0.00025502, + "ttot": 0.00027712, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, + { + "call": "MPI_Send", + "ttot": 3.08640772, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Comm_rank", - "ttot": 4.8694e-7, + "ttot": 6.03e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 2.1781e-7, + "ttot": 4.1824e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { - "call": "MPI_Send", - "ttot": 3.7210613200000004, + "call": "MPI_Recv", + "ttot": 8.911480000000001, "count": 193522, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" } ] }, { - "nr": "4", - "ttot": 17.17195796300999, + "nr": "89", + "ttot": 15.776314605759996, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 2.7638680320000004, + "ttot": 1.3391668224000002, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 3.9227497849999997, + "ttot": 0.873106086, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.0001115, + "ttot": 0.00043966, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Send", - "ttot": 3.32109761, - "count": 145194, + "ttot": 3.87982117, + "count": 193522, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, + { + "call": "MPI_Recv", + "ttot": 9.68378, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Comm_rank", - "ttot": 5.4909e-7, + "ttot": 6.4215e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, - { - "call": "MPI_Recv", - "ttot": 7.164130000000001, - "count": 145194, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Comm_size", - "ttot": 4.8692e-7, + "ttot": 2.2521e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" @@ -5843,54 +5899,54 @@ ] }, { - "nr": "120", - "ttot": 17.16952317349, + "nr": "90", + "ttot": 15.79177575027, "mpiCalls": [ - { - "call": "MPI_Recv", - "ttot": 10.9397, - "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Bcast", - "ttot": 1.0195271891000008, + "ttot": 1.3051209590999997, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.3143703270000002, + "ttot": 1.054528946, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00024842, + "ttot": 0.00064977, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, + { + "call": "MPI_Recv", + "ttot": 9.26509, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Comm_rank", - "ttot": 5.9739e-7, + "ttot": 5.7867e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 4.7e-7, + "ttot": 3.665e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Send", - "ttot": 2.8956761699999998, + "ttot": 4.16638513, "count": 193522, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" @@ -5898,109 +5954,109 @@ ] }, { - "nr": "115", - "ttot": 17.156938635749995, + "nr": "91", + "ttot": 13.540468053470002, "mpiCalls": [ - { - "call": "MPI_Recv", - "ttot": 9.72247, - "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Bcast", - "ttot": 0.96237356789, + "ttot": 1.2909121593700001, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.639733074, + "ttot": 0.912442805, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00044367, + "ttot": 0.0001616, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Send", - "ttot": 3.83191726, + "ttot": 3.34664071, "count": 193522, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_rank", - "ttot": 7.0952e-7, + "ttot": 4.9781e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 3.5434e-7, + "ttot": 2.8129e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 7.990310000000001, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" } ] }, { - "nr": "119", - "ttot": 17.148072496850002, + "nr": "92", + "ttot": 16.80069826155, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.9877308416600001, + "ttot": 1.2927655939000002, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.33218653, + "ttot": 2.384670759, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00041519, + "ttot": 0.00027806, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Send", - "ttot": 2.94333892, + "ttot": 2.56275299, "count": 193522, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, - { - "call": "MPI_Comm_rank", - "ttot": 7.3259e-7, - "count": 2, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" - }, { "call": "MPI_Recv", - "ttot": 10.8844, + "ttot": 10.56023, "count": 193522, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, + { + "call": "MPI_Comm_rank", + "ttot": 6.0604e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, { "call": "MPI_Comm_size", - "ttot": 2.826e-7, + "ttot": 2.5261e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" @@ -6008,164 +6064,164 @@ ] }, { - "nr": "70", - "ttot": 17.12875561987, + "nr": "93", + "ttot": 17.612298837530002, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 1.4660311184000006, + "ttot": 1.2999340349999997, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.424757648, + "ttot": 2.3941759830000002, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00032024, + "ttot": 0.00036952, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Send", - "ttot": 3.0555457699999997, - "count": 145194, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "call": "MPI_Recv", + "ttot": 9.979299999999999, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 5.7956e-7, + "ttot": 5.4171e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 2.6391e-7, + "ttot": 2.4782e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { - "call": "MPI_Recv", - "ttot": 10.1821, - "count": 145194, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "call": "MPI_Send", + "ttot": 3.93851851, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" } ] }, { - "nr": "14", - "ttot": 17.09295363463, + "nr": "94", + "ttot": 18.970107497330005, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 2.6195088183000004, + "ttot": 1.3366654098999997, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, - { - "call": "MPI_Recv", - "ttot": 7.3278099999999995, - "count": 145194, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Allreduce", - "ttot": 4.234479059, + "ttot": 2.575919634, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.0002579, + "ttot": 0.00048896, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, + { + "call": "MPI_Send", + "ttot": 5.12381244, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Comm_rank", - "ttot": 4.5952e-7, + "ttot": 6.3519e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 1.7781e-7, + "ttot": 4.1824e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { - "call": "MPI_Send", - "ttot": 2.9108972200000003, - "count": 145194, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "call": "MPI_Recv", + "ttot": 9.933219999999999, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" } ] }, { - "nr": "162", - "ttot": 17.077759444890003, + "nr": "95", + "ttot": 17.57000718232, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.45105617579999985, + "ttot": 1.3345807929, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 0.703138653, + "ttot": 2.416903176, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, - { - "call": "MPI_Send", - "ttot": 4.50194959, - "count": 145194, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Barrier", - "ttot": 0.0009844, + "ttot": 0.00015189, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, + { + "call": "MPI_Send", + "ttot": 3.4839705, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Recv", - "ttot": 11.420630000000001, - "count": 145194, + "ttot": 10.3344, + "count": 193522, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 4.3782e-7, + "ttot": 4.8561e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 1.8827e-7, + "ttot": 3.3781e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" @@ -6173,165 +6229,220 @@ ] }, { - "nr": "113", - "ttot": 17.071769068, + "nr": "96", + "ttot": 14.011757796400005, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.9887458439000001, + "ttot": 1.2819912451000002, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.2667965049999994, + "ttot": 0.602427613, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00059312, + "ttot": 0.00029453, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, - { - "call": "MPI_Send", - "ttot": 3.93661264, - "count": 193522, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Recv", - "ttot": 9.87902, + "ttot": 9.36871, "count": 193522, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 5.7781e-7, + "ttot": 6.2263e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 3.8129e-7, + "ttot": 3.9567e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 2.7583333899999998, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" } ] }, { - "nr": "138", - "ttot": 17.045095462339997, + "nr": "97", + "ttot": 15.610129544309995, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.7952570614000001, + "ttot": 1.3369742827000002, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.066048104, + "ttot": 0.6659070619999999, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00068893, + "ttot": 0.00076004, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Recv", - "ttot": 9.58165, - "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "call": "MPI_Send", + "ttot": 2.5265872, + "count": 145194, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_rank", - "ttot": 7.7477e-7, + "ttot": 5.5741e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 5.0217e-7, + "ttot": 4.022e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, + { + "call": "MPI_Recv", + "ttot": 11.0799, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + } + ] + }, + { + "nr": "98", + "ttot": 14.62418750266, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.2007880318999997, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 1.070742409, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00083852, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, { "call": "MPI_Send", - "ttot": 4.60145009, - "count": 193522, + "ttot": 2.90593743, + "count": 145194, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Recv", + "ttot": 9.44588, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 7.2915e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.8261e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" } ] }, { - "nr": "84", - "ttot": 17.03565106151, + "nr": "99", + "ttot": 13.746178151540004, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 1.3056555572000006, + "ttot": 1.1987213295000003, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.8545338900000004, + "ttot": 0.876223942, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00028593, + "ttot": 0.00032138, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Recv", - "ttot": 8.58126, - "count": 145194, + "ttot": 8.43851, + "count": 193522, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 5.7172e-7, + "ttot": 7.1742e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 2.6259e-7, + "ttot": 3.6262e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Send", - "ttot": 4.29391485, - "count": 145194, + "ttot": 3.23240042, + "count": 193522, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" } @@ -6393,54 +6504,54 @@ ] }, { - "nr": "31", - "ttot": 17.008654316999998, + "nr": "101", + "ttot": 17.386399830509994, "mpiCalls": [ - { - "call": "MPI_Send", - "ttot": 2.9380194399999997, - "count": 193522, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Bcast", - "ttot": 2.2489379250999995, + "ttot": 1.1505474958999995, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 3.526158955, + "ttot": 2.163525412, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00041726, + "ttot": 0.0006453, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Comm_rank", - "ttot": 4.5213e-7, - "count": 2, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "call": "MPI_Send", + "ttot": 4.71088082, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Recv", - "ttot": 8.295119999999999, + "ttot": 9.3608, "count": 193522, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, + { + "call": "MPI_Comm_rank", + "ttot": 5.3478e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, { "call": "MPI_Comm_size", - "ttot": 2.8477e-7, + "ttot": 2.6783e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" @@ -6448,549 +6559,494 @@ ] }, { - "nr": "51", - "ttot": 16.984216984170004, + "nr": "102", + "ttot": 17.251770598860002, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 1.8676593811, + "ttot": 1.1552908245000002, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.5570702699999996, + "ttot": 2.1137631899999993, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00075127, + "ttot": 0.00077976, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Recv", - "ttot": 9.05585, + "ttot": 9.65127, "count": 193522, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 4.1393e-7, + "ttot": 8.3045e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, - { - "call": "MPI_Send", - "ttot": 3.50288538, - "count": 193522, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Comm_size", - "ttot": 2.6914e-7, + "ttot": 2.2391e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 4.3306657699999995, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" } ] }, { - "nr": "143", - "ttot": 16.981316398720004, + "nr": "103", + "ttot": 17.74456127684, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.6537454886999998, + "ttot": 1.1561684773499996, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.502062144, + "ttot": 2.583334076, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00029187, + "ttot": 0.00029863, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Send", - "ttot": 3.1017357399999996, + "ttot": 3.27445935, "count": 193522, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_rank", - "ttot": 7.5692e-7, + "ttot": 4.8522e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, - { - "call": "MPI_Recv", - "ttot": 10.723480000000002, - "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Comm_size", - "ttot": 3.991e-7, + "ttot": 2.5827e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 10.7303, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" } ] }, { - "nr": "164", - "ttot": 16.968675607830008, + "nr": "104", + "ttot": 17.252326076330004, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.4369632419999999, + "ttot": 1.1415805390000004, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 1.6947072150000002, + "ttot": 2.3612119000000003, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, + { + "call": "MPI_Barrier", + "ttot": 0.00024668, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, { "call": "MPI_Send", - "ttot": 2.28074272, - "count": 145194, + "ttot": 3.23888566, + "count": 193522, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { - "call": "MPI_Barrier", - "ttot": 0.00026171, - "count": 2, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "call": "MPI_Recv", + "ttot": 10.5104, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 4.578e-7, + "ttot": 7.8474e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 2.6303e-7, + "ttot": 5.1259e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" - }, - { - "call": "MPI_Recv", - "ttot": 12.556, - "count": 145194, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" } ] }, { - "nr": "139", - "ttot": 16.958888740109998, + "nr": "105", + "ttot": 17.462101597600004, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.8190649991, + "ttot": 1.1284300878000009, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.273594051, + "ttot": 2.377098322, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00028114, + "ttot": 0.00054419, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Send", - "ttot": 4.48711753, - "count": 145194, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "call": "MPI_Recv", + "ttot": 9.89648, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 6.761e-7, + "ttot": 5.9564e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 3.4391e-7, + "ttot": 2.0216e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { - "call": "MPI_Recv", - "ttot": 9.37883, - "count": 145194, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "call": "MPI_Send", + "ttot": 4.0595482, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" } ] }, { - "nr": "156", - "ttot": 16.95664716282, + "nr": "106", + "ttot": 17.6542505319, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.43279392290000007, + "ttot": 1.1224255110999999, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, - { - "call": "MPI_Send", - "ttot": 2.57886215, - "count": 145194, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Allreduce", - "ttot": 2.2981412700000003, + "ttot": 2.415830743, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00024873, + "ttot": 0.0005727, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Recv", - "ttot": 11.6466, - "count": 145194, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "call": "MPI_Send", + "ttot": 4.856760749999999, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_rank", - "ttot": 7.7864e-7, + "ttot": 5.426e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 3.1128e-7, + "ttot": 2.852e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 9.25866, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" } ] }, { - "nr": "20", - "ttot": 16.94676154836, + "nr": "107", + "ttot": 16.598892082779997, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 2.615825447700001, + "ttot": 1.1626409952, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 3.4696086990000006, + "ttot": 2.3385264250000004, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.0002529, + "ttot": 0.00028961, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, - { - "call": "MPI_Recv", - "ttot": 7.083810000000001, - "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, - { - "call": "MPI_Comm_rank", - "ttot": 7.9951e-7, - "count": 2, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" - }, - { - "call": "MPI_Comm_size", - "ttot": 2.1215e-7, - "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" - }, { "call": "MPI_Send", - "ttot": 3.77726349, + "ttot": 3.75525414, "count": 193522, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" - } - ] - }, - { - "nr": "123", - "ttot": 16.937117320530003, - "mpiCalls": [ - { - "call": "MPI_Bcast", - "ttot": 1.0080701116200004, - "count": 474, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Recv", - "ttot": 9.92014, + "ttot": 9.342179999999999, "count": 193522, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, - { - "call": "MPI_Allreduce", - "ttot": 2.157093205, - "count": 246, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" - }, - { - "call": "MPI_Barrier", - "ttot": 0.00027574, - "count": 2, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" - }, { "call": "MPI_Comm_rank", - "ttot": 7.3478e-7, + "ttot": 5.9433e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 5.0913e-7, + "ttot": 3.1825e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" - }, - { - "call": "MPI_Send", - "ttot": 3.85153702, - "count": 193522, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" } ] }, { - "nr": "35", - "ttot": 16.8535026365, + "nr": "108", + "ttot": 17.46222438509, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 2.2020444938000012, + "ttot": 1.2042325226999993, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, - { - "call": "MPI_Send", - "ttot": 3.2156272500000003, - "count": 193522, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Allreduce", - "ttot": 3.1770171609999998, + "ttot": 2.4601456689999996, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00055311, + "ttot": 0.00025036, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Recv", - "ttot": 8.25826, + "ttot": 10.9927, "count": 193522, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 4.178e-7, + "ttot": 6.2515e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 2.039e-7, + "ttot": 3.1824e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 2.80489489, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" } ] }, { - "nr": "161", - "ttot": 16.836685367930002, + "nr": "109", + "ttot": 17.91977750498, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.4607912049999999, + "ttot": 1.1983541446, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 0.623286939, + "ttot": 2.38976239, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, - { - "call": "MPI_Send", - "ttot": 4.56188034, - "count": 145194, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Barrier", - "ttot": 0.00073598, + "ttot": 0.00049933, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, + { + "call": "MPI_Send", + "ttot": 4.7335009900000005, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Comm_rank", - "ttot": 6.4175e-7, + "ttot": 3.8302e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 2.6218e-7, + "ttot": 2.6736e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Recv", - "ttot": 11.189990000000002, - "count": 145194, + "ttot": 9.597660000000001, + "count": 193522, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" } ] }, { - "nr": "92", - "ttot": 16.80069826155, + "nr": "110", + "ttot": 17.853846626609997, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 1.2927655939000002, + "ttot": 1.1606064645, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.384670759, + "ttot": 2.3344942000000004, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00027806, + "ttot": 0.00047297, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Send", - "ttot": 2.56275299, + "ttot": 4.4279722800000005, "count": 193522, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Recv", - "ttot": 10.56023, + "ttot": 9.9303, "count": 193522, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 6.0604e-7, + "ttot": 4.0127e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 2.5261e-7, + "ttot": 3.1084e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" @@ -6998,164 +7054,164 @@ ] }, { - "nr": "23", - "ttot": 16.79507049154, + "nr": "111", + "ttot": 19.09628316762, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 2.6699452999, + "ttot": 1.1887887484, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 3.3364834730000004, + "ttot": 2.453058338, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00044479, + "ttot": 0.00029672, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Recv", - "ttot": 7.491790000000001, - "count": 193522, + "ttot": 11.823599999999999, + "count": 145194, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 5.4344e-7, + "ttot": 5.8387e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 1.852e-7, + "ttot": 4.4735e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Send", - "ttot": 3.2964062, - "count": 193522, + "ttot": 3.6305383300000003, + "count": 145194, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" } ] }, { - "nr": "52", - "ttot": 16.74532549075, + "nr": "112", + "ttot": 16.601526754760002, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 1.8265636567999994, + "ttot": 0.9590499412, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.531519394, + "ttot": 2.2984326509999997, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00028182, + "ttot": 0.0002609, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Send", - "ttot": 2.64865994, - "count": 193522, + "ttot": 2.95484217, + "count": 145194, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_rank", - "ttot": 4.3692e-7, + "ttot": 6.8388e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 2.4303e-7, + "ttot": 4.0868e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Recv", - "ttot": 9.738299999999999, - "count": 193522, + "ttot": 10.38894, + "count": 145194, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" } ] }, { - "nr": "9", - "ttot": 16.744093048430006, + "nr": "113", + "ttot": 17.071769068, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 2.857508169100001, + "ttot": 0.9887458439000001, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 1.849551912, + "ttot": 2.2667965049999994, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00053711, + "ttot": 0.00059312, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, - { - "call": "MPI_Recv", - "ttot": 7.76839, - "count": 145194, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Send", - "ttot": 4.26810508, - "count": 145194, + "ttot": 3.93661264, + "count": 193522, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, + { + "call": "MPI_Recv", + "ttot": 9.87902, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Comm_rank", - "ttot": 3.6128e-7, + "ttot": 5.7781e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 4.1605e-7, + "ttot": 3.8129e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" @@ -7163,109 +7219,109 @@ ] }, { - "nr": "80", - "ttot": 16.74303985333, + "nr": "114", + "ttot": 17.59398577521, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 1.4824166543, + "ttot": 0.9886928808, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.2913027529999996, + "ttot": 2.2967845709999994, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00027773, + "ttot": 0.00028468, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, - { - "call": "MPI_Send", - "ttot": 3.0182409800000003, - "count": 193522, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Recv", - "ttot": 9.950800000000001, + "ttot": 9.54309, "count": 193522, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 0.0000012065, + "ttot": 5.5648e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 5.2953e-7, + "ttot": 4.0693e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 4.76513268, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" } ] }, { - "nr": "48", - "ttot": 16.735332734110003, + "nr": "115", + "ttot": 17.156938635749995, "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 9.72247, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Bcast", - "ttot": 1.8231200584, + "ttot": 0.96237356789, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.58420554, + "ttot": 2.639733074, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00030332, + "ttot": 0.00044367, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Recv", - "ttot": 9.39444, + "call": "MPI_Send", + "ttot": 3.83191726, "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_rank", - "ttot": 6.6699e-7, + "ttot": 7.0952e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, - { - "call": "MPI_Send", - "ttot": 2.93326247, - "count": 193522, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Comm_size", - "ttot": 6.7872e-7, + "ttot": 3.5434e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" @@ -7273,54 +7329,54 @@ ] }, { - "nr": "128", - "ttot": 16.729458014859993, + "nr": "116", + "ttot": 16.443871760390003, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.7760931506, + "ttot": 0.9910277539999998, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.541365316, + "ttot": 2.383855236, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00027158, + "ttot": 0.00026839, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Send", - "ttot": 2.97623725, + "ttot": 3.26806959, "count": 193522, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, - { - "call": "MPI_Comm_rank", - "ttot": 4.3913e-7, - "count": 2, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" - }, { "call": "MPI_Recv", - "ttot": 10.435490000000001, + "ttot": 9.800650000000001, "count": 193522, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, + { + "call": "MPI_Comm_rank", + "ttot": 5.1693e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, { "call": "MPI_Comm_size", - "ttot": 2.7913e-7, + "ttot": 2.7346e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" @@ -7328,109 +7384,109 @@ ] }, { - "nr": "131", - "ttot": 16.72666947734, + "nr": "117", + "ttot": 17.678467294829993, "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 9.699749999999998, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Bcast", - "ttot": 0.7970375332, + "ttot": 0.9621321359, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.4958636450000005, + "ttot": 2.391140912, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00042359, + "ttot": 0.00062972, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, - { - "call": "MPI_Send", - "ttot": 3.2484538400000003, - "count": 193522, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Comm_rank", - "ttot": 6.0175e-7, + "ttot": 5.8998e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, - { - "call": "MPI_Recv", - "ttot": 10.184890000000001, - "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Comm_size", - "ttot": 2.6739e-7, + "ttot": 2.9695e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 4.62481364, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" } ] }, { - "nr": "68", - "ttot": 16.699083129719998, + "nr": "118", + "ttot": 17.27745370613, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 1.6342058441000005, + "ttot": 0.9371061011, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { - "call": "MPI_Send", - "ttot": 2.49271297, + "call": "MPI_Recv", + "ttot": 9.92065, "count": 193522, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Allreduce", - "ttot": 2.5128679930000004, + "ttot": 2.182933619, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00029549, + "ttot": 0.00083163, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Recv", - "ttot": 10.059, + "call": "MPI_Send", + "ttot": 4.2359315, "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_rank", - "ttot": 6.6088e-7, + "ttot": 6.1822e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 1.7174e-7, + "ttot": 2.3781e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" @@ -7438,164 +7494,164 @@ ] }, { - "nr": "43", - "ttot": 16.684996439039992, + "nr": "119", + "ttot": 17.148072496850002, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 1.8870434857, + "ttot": 0.9877308416600001, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, - { - "call": "MPI_Send", - "ttot": 2.3538831100000004, - "count": 193522, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Allreduce", - "ttot": 3.592037353, + "ttot": 2.33218653, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00049163, + "ttot": 0.00041519, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, + { + "call": "MPI_Send", + "ttot": 2.94333892, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Comm_rank", - "ttot": 4.8777e-7, + "ttot": 7.3259e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, - { - "call": "MPI_Comm_size", - "ttot": 3.7257e-7, - "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" - }, { "call": "MPI_Recv", - "ttot": 8.85154, + "ttot": 10.8844, "count": 193522, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.826e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" } ] }, { - "nr": "67", - "ttot": 16.674705740920004, + "nr": "120", + "ttot": 17.16952317349, "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 10.9397, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Bcast", - "ttot": 1.6910777988999997, + "ttot": 1.0195271891000008, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.406824856, + "ttot": 2.3143703270000002, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00055507, + "ttot": 0.00024842, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, - { - "call": "MPI_Send", - "ttot": 3.6065170799999997, - "count": 193522, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Comm_rank", - "ttot": 6.3865e-7, + "ttot": 5.9739e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 2.9737e-7, + "ttot": 4.7e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { - "call": "MPI_Recv", - "ttot": 8.969730000000002, + "call": "MPI_Send", + "ttot": 2.8956761699999998, "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" } ] }, { - "nr": "19", - "ttot": 16.638358092000008, + "nr": "121", + "ttot": 18.238864872550007, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 2.541040171100001, + "ttot": 1.0008582911999995, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, + { + "call": "MPI_Recv", + "ttot": 9.69408, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Allreduce", - "ttot": 3.647999494, + "ttot": 2.369298057, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00060518, + "ttot": 0.00055521, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Send", - "ttot": 3.24284243, + "ttot": 5.17407246, "count": 193522, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_rank", - "ttot": 5.0302e-7, + "ttot": 5.5043e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, - { - "call": "MPI_Recv", - "ttot": 7.205870000000001, - "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Comm_size", - "ttot": 3.1388e-7, + "ttot": 3.0392e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" @@ -7603,164 +7659,164 @@ ] }, { - "nr": "112", - "ttot": 16.601526754760002, + "nr": "122", + "ttot": 17.80935506378, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.9590499412, + "ttot": 1.0170647899999998, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.2984326509999997, + "ttot": 2.1915493390000003, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.0002609, + "ttot": 0.00077327, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Send", - "ttot": 2.95484217, - "count": 145194, + "ttot": 5.14077682, + "count": 193522, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_rank", - "ttot": 6.8388e-7, + "ttot": 6.1565e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, + { + "call": "MPI_Recv", + "ttot": 9.45919, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Comm_size", - "ttot": 4.0868e-7, + "ttot": 2.2913e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" - }, - { - "call": "MPI_Recv", - "ttot": 10.38894, - "count": 145194, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" } ] }, { - "nr": "64", - "ttot": 16.60005944315, + "nr": "123", + "ttot": 16.937117320530003, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 1.5947500440000002, + "ttot": 1.0080701116200004, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, + { + "call": "MPI_Recv", + "ttot": 9.92014, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Allreduce", - "ttot": 2.4639637039999998, + "ttot": 2.157093205, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.000282, + "ttot": 0.00027574, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, - { - "call": "MPI_Send", - "ttot": 2.74076287, - "count": 193522, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Comm_rank", - "ttot": 4.5387e-7, + "ttot": 7.3478e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 3.7128e-7, + "ttot": 5.0913e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { - "call": "MPI_Recv", - "ttot": 9.8003, + "call": "MPI_Send", + "ttot": 3.85153702, "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" } ] }, { - "nr": "107", - "ttot": 16.598892082779997, + "nr": "124", + "ttot": 16.235148235569994, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 1.1626409952, + "ttot": 1.0153530182000003, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, + { + "call": "MPI_Recv", + "ttot": 11.0777, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Allreduce", - "ttot": 2.3385264250000004, + "ttot": 1.757179737, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00028961, + "ttot": 0.00025408, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Send", - "ttot": 3.75525414, + "ttot": 2.3846601899999995, "count": 193522, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, - { - "call": "MPI_Recv", - "ttot": 9.342179999999999, - "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Comm_rank", - "ttot": 5.9433e-7, + "ttot": 8.03e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 3.1825e-7, + "ttot": 4.0737e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" @@ -7768,54 +7824,54 @@ ] }, { - "nr": "71", - "ttot": 16.563097190060002, + "nr": "125", + "ttot": 18.20231885857999, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 1.4880768224999996, + "ttot": 1.0180801939999997, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, - { - "call": "MPI_Send", - "ttot": 2.4411430000000003, - "count": 193522, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Allreduce", - "ttot": 2.6454711879999997, + "ttot": 2.227454882, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00031539, + "ttot": 0.00049702, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Recv", - "ttot": 9.98809, - "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "call": "MPI_Send", + "ttot": 3.5709858100000003, + "count": 145194, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_rank", - "ttot": 5.7304e-7, + "ttot": 7.2084e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, + { + "call": "MPI_Recv", + "ttot": 11.3853, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Comm_size", - "ttot": 2.1652e-7, + "ttot": 2.3174e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" @@ -7823,109 +7879,109 @@ ] }, { - "nr": "152", - "ttot": 16.516564684739997, + "nr": "126", + "ttot": 17.895402634619998, "mpiCalls": [ - { - "call": "MPI_Send", - "ttot": 2.41939011, - "count": 193522, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Bcast", - "ttot": 0.6351202307000001, + "ttot": 0.8340984530000002, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, + { + "call": "MPI_Recv", + "ttot": 11.7324, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Allreduce", - "ttot": 1.8029135580000002, + "ttot": 2.523864556, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00023986, + "ttot": 0.00048815, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Comm_rank", - "ttot": 5.8084e-7, + "ttot": 5.4998e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, - { - "call": "MPI_Recv", - "ttot": 11.6589, - "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Comm_size", - "ttot": 3.452e-7, + "ttot": 3.2564e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 2.8045506, + "count": 145194, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" } ] }, { - "nr": "32", - "ttot": 16.48297107823, + "nr": "127", + "ttot": 16.396508367700005, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 2.1842542762999995, + "ttot": 0.8086451060000001, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, - { - "call": "MPI_Send", - "ttot": 3.1480644599999996, - "count": 193522, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Allreduce", - "ttot": 3.219084959000001, + "ttot": 2.15727832, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, - { - "call": "MPI_Barrier", - "ttot": 0.00025613, - "count": 2, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" - }, { "call": "MPI_Recv", - "ttot": 7.931309999999999, + "ttot": 10.640139999999999, "count": 193522, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { - "call": "MPI_Comm_rank", - "ttot": 7.7471e-7, - "count": 2, + "call": "MPI_Barrier", + "ttot": 0.0002955, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 2.79014858, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.4779e-7, + "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 4.7822e-7, + "ttot": 2.1391e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" @@ -7933,54 +7989,54 @@ ] }, { - "nr": "16", - "ttot": 16.457413851599995, + "nr": "128", + "ttot": 16.729458014859993, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 2.5498968600999996, + "ttot": 0.7760931506, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 3.574078802, + "ttot": 2.541365316, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00029984, + "ttot": 0.00027158, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Send", - "ttot": 3.2042373900000003, + "ttot": 2.97623725, "count": 193522, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_rank", - "ttot": 6.7169e-7, + "ttot": 4.3913e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Recv", - "ttot": 7.1289, + "ttot": 10.435490000000001, "count": 193522, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_size", - "ttot": 2.8781e-7, + "ttot": 2.7913e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" @@ -7988,109 +8044,109 @@ ] }, { - "nr": "116", - "ttot": 16.443871760390003, + "nr": "129", + "ttot": 17.821882879079997, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.9910277539999998, + "ttot": 0.7770849245999998, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, + { + "call": "MPI_Recv", + "ttot": 10.1919, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Allreduce", - "ttot": 2.383855236, + "ttot": 2.5556079110000005, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00026839, + "ttot": 0.00074014, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, - { - "call": "MPI_Send", - "ttot": 3.26806959, - "count": 193522, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, - { - "call": "MPI_Recv", - "ttot": 9.800650000000001, - "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Comm_rank", - "ttot": 5.1693e-7, + "ttot": 4.4522e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 2.7346e-7, + "ttot": 3.1826e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 4.29654914, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" } ] }, { - "nr": "127", - "ttot": 16.396508367700005, + "nr": "130", + "ttot": 17.760906938019993, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.8086451060000001, + "ttot": 0.7913264074, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.15727832, + "ttot": 2.5395230179999997, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Recv", - "ttot": 10.640139999999999, + "ttot": 10.14165, "count": 193522, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Barrier", - "ttot": 0.0002955, + "ttot": 0.00084345, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Send", - "ttot": 2.79014858, + "ttot": 4.28756263, "count": 193522, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_rank", - "ttot": 6.4779e-7, + "ttot": 9.0044e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 2.1391e-7, + "ttot": 5.3218e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" @@ -8098,54 +8154,54 @@ ] }, { - "nr": "10", - "ttot": 16.395229904670003, + "nr": "131", + "ttot": 16.72666947734, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 2.82264646933, + "ttot": 0.7970375332, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 1.6591590780000003, + "ttot": 2.4958636450000005, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00051689, + "ttot": 0.00042359, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Send", - "ttot": 4.10970675, - "count": 145194, + "ttot": 3.2484538400000003, + "count": 193522, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_rank", - "ttot": 3.7607e-7, + "ttot": 6.0175e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Recv", - "ttot": 7.8031999999999995, - "count": 145194, + "ttot": 10.184890000000001, + "count": 193522, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_size", - "ttot": 3.4127e-7, + "ttot": 2.6739e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" @@ -8153,164 +8209,164 @@ ] }, { - "nr": "76", - "ttot": 16.31562939258, + "nr": "132", + "ttot": 17.190458953249998, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 1.4875429961999997, + "ttot": 0.7641518575000003, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.034016969, + "ttot": 2.5367700509999995, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, + { + "call": "MPI_Recv", + "ttot": 10.16822, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Barrier", - "ttot": 0.00029333, + "ttot": 0.00025502, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, - { - "call": "MPI_Send", - "ttot": 2.58637543, - "count": 193522, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Comm_rank", - "ttot": 4.1217e-7, + "ttot": 4.8694e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 2.5521e-7, + "ttot": 2.1781e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { - "call": "MPI_Recv", - "ttot": 10.2074, + "call": "MPI_Send", + "ttot": 3.7210613200000004, "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" } ] }, { - "nr": "26", - "ttot": 16.249452629250005, + "nr": "133", + "ttot": 17.50627222104, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 2.576353707099999, + "ttot": 0.7735374688999997, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.109234766, + "ttot": 2.327058, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00066233, + "ttot": 0.00061859, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Recv", - "ttot": 7.02334, + "ttot": 9.96779, "count": 193522, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, + { + "call": "MPI_Send", + "ttot": 4.4372669799999995, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Comm_rank", - "ttot": 6.1048e-7, + "ttot": 6.639e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 3.1567e-7, + "ttot": 5.1824e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" - }, - { - "call": "MPI_Send", - "ttot": 4.5398609, - "count": 193522, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" } ] }, { - "nr": "56", - "ttot": 16.246856402820004, + "nr": "134", + "ttot": 18.015788497049993, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 1.6726760564, + "ttot": 0.7881740407000002, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.957979926, + "ttot": 2.349724679, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00029013, + "ttot": 0.00073961, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Send", - "ttot": 3.9420795, - "count": 145194, + "ttot": 4.63919926, + "count": 193522, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, - { - "call": "MPI_Recv", - "ttot": 7.673830000000001, - "count": 145194, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Comm_rank", - "ttot": 4.1217e-7, + "ttot": 6.5041e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, + { + "call": "MPI_Recv", + "ttot": 10.23795, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Comm_size", - "ttot": 3.7825e-7, + "ttot": 2.5694e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" @@ -8318,219 +8374,219 @@ ] }, { - "nr": "124", - "ttot": 16.235148235569994, + "nr": "135", + "ttot": 17.307751200560006, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 1.0153530182000003, + "ttot": 0.7871311750000002, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, - { - "call": "MPI_Recv", - "ttot": 11.0777, - "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Allreduce", - "ttot": 1.757179737, + "ttot": 2.278860063, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, + { + "call": "MPI_Recv", + "ttot": 11.2006, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Barrier", - "ttot": 0.00025408, + "ttot": 0.00043708, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, - { - "call": "MPI_Send", - "ttot": 2.3846601899999995, - "count": 193522, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Comm_rank", - "ttot": 8.03e-7, + "ttot": 7.9909e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 4.0737e-7, + "ttot": 2.7347e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" - } - ] - }, - { - "nr": "79", - "ttot": 16.2169691343, + }, + { + "call": "MPI_Send", + "ttot": 3.0407218099999995, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + } + ] + }, + { + "nr": "136", + "ttot": 17.315286584029998, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 1.511837515800001, + "ttot": 0.7817104709, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.056341132, + "ttot": 2.414609624, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00017855, + "ttot": 0.00024554, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, + { + "call": "MPI_Recv", + "ttot": 11.2711, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Send", - "ttot": 3.97615114, + "ttot": 2.84761992, "count": 193522, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_rank", - "ttot": 5.3868e-7, + "ttot": 7.0391e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 2.5782e-7, + "ttot": 3.2522e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" - }, - { - "call": "MPI_Recv", - "ttot": 8.67246, - "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" } ] }, { - "nr": "55", - "ttot": 15.910026771130001, + "nr": "137", + "ttot": 18.420003781389997, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 1.8497967247000004, + "ttot": 0.8240485545999999, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.456330463, + "ttot": 2.4019456019999996, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00043736, + "ttot": 0.00054909, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Send", - "ttot": 3.98648129, - "count": 145194, + "ttot": 5.22135961, + "count": 193522, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_rank", - "ttot": 6.3692e-7, + "ttot": 6.6088e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, + { + "call": "MPI_Recv", + "ttot": 9.972100000000001, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Comm_size", - "ttot": 2.9651e-7, + "ttot": 2.6391e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" - }, - { - "call": "MPI_Recv", - "ttot": 7.616980000000001, - "count": 145194, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" } ] }, { - "nr": "90", - "ttot": 15.79177575027, + "nr": "138", + "ttot": 17.045095462339997, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 1.3051209590999997, + "ttot": 0.7952570614000001, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 1.054528946, + "ttot": 2.066048104, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00064977, + "ttot": 0.00068893, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Recv", - "ttot": 9.26509, + "ttot": 9.58165, "count": 193522, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 5.7867e-7, + "ttot": 7.7477e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 3.665e-7, + "ttot": 5.0217e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Send", - "ttot": 4.16638513, + "ttot": 4.60145009, "count": 193522, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" @@ -8538,384 +8594,384 @@ ] }, { - "nr": "89", - "ttot": 15.776314605759996, + "nr": "139", + "ttot": 16.958888740109998, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 1.3391668224000002, + "ttot": 0.8190649991, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 0.873106086, + "ttot": 2.273594051, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00043966, + "ttot": 0.00028114, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Send", - "ttot": 3.87982117, - "count": 193522, + "ttot": 4.48711753, + "count": 145194, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, - { - "call": "MPI_Recv", - "ttot": 9.68378, - "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Comm_rank", - "ttot": 6.4215e-7, + "ttot": 6.761e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 2.2521e-7, + "ttot": 3.4391e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 9.37883, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" } ] }, { - "nr": "40", - "ttot": 15.75954817281, + "nr": "140", + "ttot": 17.882538237189998, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 2.228024699200001, + "ttot": 0.6416569264, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, - { - "call": "MPI_Send", - "ttot": 2.09194487, - "count": 193522, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Allreduce", - "ttot": 2.263381855, + "ttot": 2.6419091600000004, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00028591, + "ttot": 0.00025436, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, + { + "call": "MPI_Send", + "ttot": 3.40969689, + "count": 145194, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Comm_rank", - "ttot": 6.6255e-7, + "ttot": 5.6821e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, + { + "call": "MPI_Recv", + "ttot": 11.189020000000001, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Comm_size", - "ttot": 1.7606e-7, + "ttot": 3.3258e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" - }, - { - "call": "MPI_Recv", - "ttot": 9.17591, - "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" } ] }, { - "nr": "74", - "ttot": 15.637504410759995, + "nr": "141", + "ttot": 18.510664758270003, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 1.4809949429999996, + "ttot": 0.6710437797000001, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, - { - "call": "MPI_Send", - "ttot": 4.73402952, - "count": 193522, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Allreduce", - "ttot": 0.916671723, + "ttot": 2.6256964329999994, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.0005375, + "ttot": 0.00050152, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Recv", - "ttot": 8.505270000000001, + "ttot": 10.466879999999998, "count": 193522, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 5.3173e-7, + "ttot": 6.8125e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 1.9303e-7, + "ttot": 3.2432e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 4.74654202, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" } ] }, { - "nr": "97", - "ttot": 15.610129544309995, + "nr": "142", + "ttot": 18.068102993859995, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 1.3369742827000002, + "ttot": 0.6676252946000001, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 0.6659070619999999, + "ttot": 2.5206565249999997, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00076004, + "ttot": 0.00060324, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, + { + "call": "MPI_Recv", + "ttot": 10.60839, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Send", - "ttot": 2.5265872, - "count": 145194, + "ttot": 4.27082661, + "count": 193522, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_rank", - "ttot": 5.5741e-7, + "ttot": 8.569e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 4.022e-7, + "ttot": 4.6736e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" - }, - { - "call": "MPI_Recv", - "ttot": 11.0799, - "count": 145194, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" } ] }, { - "nr": "45", - "ttot": 15.329122887650003, + "nr": "143", + "ttot": 16.981316398720004, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 1.8434885410000008, + "ttot": 0.6537454886999998, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 1.2051183379999997, + "ttot": 2.502062144, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, - { - "call": "MPI_Recv", - "ttot": 8.54022, - "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Barrier", - "ttot": 0.00049316, + "ttot": 0.00029187, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, - { - "call": "MPI_Comm_rank", - "ttot": 5.1301e-7, - "count": 2, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" - }, { "call": "MPI_Send", - "ttot": 3.7398020400000003, + "ttot": 3.1017357399999996, "count": 193522, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { - "call": "MPI_Comm_size", - "ttot": 2.9564e-7, - "count": 1, + "call": "MPI_Comm_rank", + "ttot": 7.5692e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Recv", + "ttot": 10.723480000000002, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.991e-7, + "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" } ] }, { - "nr": "11", - "ttot": 15.287180476689997, + "nr": "144", + "ttot": 17.570116649299997, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 2.8547103918000007, + "ttot": 0.5978068490999998, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, - { - "call": "MPI_Recv", - "ttot": 7.56162, - "count": 145194, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Allreduce", - "ttot": 1.6762449480000001, + "ttot": 2.6292251949999996, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00050641, + "ttot": 0.0002847, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, + { + "call": "MPI_Recv", + "ttot": 10.955929999999999, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Comm_rank", - "ttot": 3.4693e-7, + "ttot": 4.4912e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 5.5996e-7, + "ttot": 3.3608e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Send", - "ttot": 3.19409782, - "count": 145194, + "ttot": 3.38686912, + "count": 193522, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" } ] }, { - "nr": "38", - "ttot": 15.227205149210006, + "nr": "145", + "ttot": 18.00023136647, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 2.2475475325499987, + "ttot": 0.5964765181999998, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, - { - "call": "MPI_Send", - "ttot": 4.23172842, - "count": 193522, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Allreduce", - "ttot": 0.971850271, + "ttot": 2.501324844, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00026812, + "ttot": 0.00062873, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Recv", - "ttot": 7.775810000000001, + "ttot": 10.45774, "count": 193522, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, + { + "call": "MPI_Send", + "ttot": 4.44405984, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Comm_rank", - "ttot": 5.4175e-7, + "ttot": 0.0000011495, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 2.6391e-7, + "ttot": 2.8477e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" @@ -8923,54 +8979,54 @@ ] }, { - "nr": "150", - "ttot": 15.19760822544, + "nr": "146", + "ttot": 17.925245833659996, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.663483865, + "ttot": 0.5731984180400003, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, - { - "call": "MPI_Send", - "ttot": 4.480335080000001, - "count": 193522, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Allreduce", - "ttot": 0.602392493, + "ttot": 2.43084382, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00097605, + "ttot": 0.00032685, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Recv", - "ttot": 9.45042, + "call": "MPI_Send", + "ttot": 4.36813579, "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_rank", - "ttot": 4.8438e-7, + "ttot": 7.1128e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, + { + "call": "MPI_Recv", + "ttot": 10.55274, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Comm_size", - "ttot": 2.5306e-7, + "ttot": 2.4434e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" @@ -8978,112 +9034,112 @@ ] }, { - "nr": "27", - "ttot": 15.13875916282, + "nr": "147", + "ttot": 17.419594503489993, "mpiCalls": [ + { + "call": "MPI_Send", + "ttot": 3.43113349, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Bcast", - "ttot": 2.629075077400001, + "ttot": 0.6087198676000002, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 2.0561410810000003, + "ttot": 2.5059826819999995, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00065841, + "ttot": 0.0004776, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Send", - "ttot": 3.44392384, - "count": 145194, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "call": "MPI_Recv", + "ttot": 10.873280000000001, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 4.77e-7, + "ttot": 6.2346e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 2.7742e-7, + "ttot": 2.4043e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" - }, - { - "call": "MPI_Recv", - "ttot": 7.008959999999999, - "count": 145194, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" } ] }, { - "nr": "46", - "ttot": 15.135465959870002, + "nr": "148", + "ttot": 14.33447746179, "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 9.46365, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Bcast", - "ttot": 1.8950826633000009, + "ttot": 0.6665227194000002, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, - { - "call": "MPI_Send", - "ttot": 3.7470719499999996, - "count": 193522, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Allreduce", - "ttot": 1.239900144, + "ttot": 0.711847378, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00029041, + "ttot": 0.00026982, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, + { + "call": "MPI_Send", + "ttot": 3.4921868099999998, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Comm_rank", - "ttot": 5.678e-7, + "ttot": 5.4916e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 2.2477e-7, + "ttot": 1.8523e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" - }, - { - "call": "MPI_Recv", - "ttot": 8.25312, - "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" } ] }, @@ -9143,109 +9199,109 @@ ] }, { - "nr": "73", - "ttot": 14.923701449019998, + "nr": "150", + "ttot": 15.19760822544, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 1.4779990783999997, + "ttot": 0.663483865, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, + { + "call": "MPI_Send", + "ttot": 4.480335080000001, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Allreduce", - "ttot": 0.9999822949999999, + "ttot": 0.602392493, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00055517, + "ttot": 0.00097605, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Send", - "ttot": 4.0115143, + "call": "MPI_Recv", + "ttot": 9.45042, "count": 193522, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 4.165e-7, + "ttot": 4.8438e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 1.8912e-7, + "ttot": 2.5306e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" - }, - { - "call": "MPI_Recv", - "ttot": 8.43365, - "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" } ] }, { - "nr": "37", - "ttot": 14.874784290080004, + "nr": "151", + "ttot": 14.085027504779998, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 2.2760211653999995, + "ttot": 0.6769123992, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { - "call": "MPI_Send", - "ttot": 3.9428763100000004, + "call": "MPI_Recv", + "ttot": 9.28911, "count": 193522, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Allreduce", - "ttot": 1.0874039089999998, + "ttot": 0.46353483599999995, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00075214, + "ttot": 0.00044969, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Comm_rank", - "ttot": 5.2915e-7, + "ttot": 4.6915e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { - "call": "MPI_Recv", - "ttot": 7.567730000000001, + "call": "MPI_Send", + "ttot": 3.65501993, "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 2.3653e-7, + "ttot": 1.8043e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" @@ -9253,109 +9309,54 @@ ] }, { - "nr": "24", - "ttot": 14.704804558990004, + "nr": "152", + "ttot": 16.516564684739997, "mpiCalls": [ - { - "call": "MPI_Bcast", - "ttot": 2.596171042299999, - "count": 474, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" - }, - { - "call": "MPI_Allreduce", - "ttot": 2.2007643439999995, - "count": 246, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" - }, - { - "call": "MPI_Barrier", - "ttot": 0.00030518, - "count": 2, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" - }, - { - "call": "MPI_Recv", - "ttot": 6.9425799999999995, - "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Send", - "ttot": 2.9649831599999996, + "ttot": 2.41939011, "count": 193522, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, - { - "call": "MPI_Comm_rank", - "ttot": 5.0571e-7, - "count": 2, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" - }, - { - "call": "MPI_Comm_size", - "ttot": 3.2698e-7, - "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" - } - ] - }, - { - "nr": "163", - "ttot": 14.64007895763, - "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.4660156632999999, + "ttot": 0.6351202307000001, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 0.600845663, + "ttot": 1.8029135580000002, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, - { - "call": "MPI_Recv", - "ttot": 10.5143, - "count": 145194, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Barrier", - "ttot": 0.00044898, + "ttot": 0.00023986, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Comm_rank", - "ttot": 5.0219e-7, + "ttot": 5.8084e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { - "call": "MPI_Send", - "ttot": 3.0584679799999996, - "count": 145194, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "call": "MPI_Recv", + "ttot": 11.6589, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_size", - "ttot": 1.6914e-7, + "ttot": 3.452e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" @@ -9363,219 +9364,219 @@ ] }, { - "nr": "98", - "ttot": 14.62418750266, + "nr": "153", + "ttot": 17.433162137309996, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 1.2007880318999997, + "ttot": 0.6339896879, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 1.070742409, + "ttot": 2.192245349, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00083852, + "ttot": 0.00039966, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, - { - "call": "MPI_Send", - "ttot": 2.90593743, - "count": 145194, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Recv", - "ttot": 9.44588, + "ttot": 11.41694, "count": 145194, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 7.2915e-7, + "ttot": 4.3042e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 3.8261e-7, + "ttot": 4.0999e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 3.1895866, + "count": 145194, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" } ] }, { - "nr": "160", - "ttot": 14.55536251809, + "nr": "154", + "ttot": 20.010047181860003, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.4837346678000002, + "ttot": 0.5131013362000005, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, + { + "call": "MPI_Recv", + "ttot": 14.012099999999998, + "count": 96866, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Allreduce", - "ttot": 0.588236722, + "ttot": 2.0733641769999998, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, - { - "call": "MPI_Recv", - "ttot": 10.386700000000001, - "count": 145194, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Barrier", - "ttot": 0.00026604, + "ttot": 0.00076022, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Comm_rank", - "ttot": 4.5002e-7, + "ttot": 4.2346e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, - { - "call": "MPI_Send", - "ttot": 3.09642443, - "count": 145194, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Comm_size", - "ttot": 2.0827e-7, + "ttot": 3.352e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 3.41072069, + "count": 96866, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" } ] }, { - "nr": "36", - "ttot": 14.536404268519998, + "nr": "155", + "ttot": 17.8307883446, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 2.1717002490999993, + "ttot": 0.5140624935000001, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { - "call": "MPI_Recv", - "ttot": 7.33339, - "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "call": "MPI_Send", + "ttot": 2.06957236, + "count": 145194, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Allreduce", - "ttot": 1.5460921520000002, + "ttot": 2.333580262, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00025118, + "ttot": 0.00027241, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Comm_rank", - "ttot": 4.474e-7, + "ttot": 4.7346e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, - { - "call": "MPI_Send", - "ttot": 3.48496994, - "count": 193522, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Comm_size", - "ttot": 3.0002e-7, + "ttot": 3.4564e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 12.913300000000001, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" } ] }, { - "nr": "47", - "ttot": 14.527494572389998, + "nr": "156", + "ttot": 16.95664716282, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 1.8935983763999995, + "ttot": 0.43279392290000007, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, + { + "call": "MPI_Send", + "ttot": 2.57886215, + "count": 145194, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Allreduce", - "ttot": 1.275280823, + "ttot": 2.2981412700000003, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00028323, + "ttot": 0.00024873, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, - { - "call": "MPI_Send", - "ttot": 3.1174615, - "count": 193522, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Recv", - "ttot": 8.24087, - "count": 193522, + "ttot": 11.6466, + "count": 145194, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 4.1039e-7, + "ttot": 7.7864e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 2.326e-7, + "ttot": 3.1128e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" @@ -9583,164 +9584,164 @@ ] }, { - "nr": "8", - "ttot": 14.428297557609998, + "nr": "157", + "ttot": 18.937071783300002, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 2.774744815499999, + "ttot": 0.3866621308000001, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Recv", - "ttot": 7.089049999999999, + "ttot": 12.1938, "count": 145194, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Allreduce", - "ttot": 1.8412574600000002, + "ttot": 2.2877184230000003, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00028848, + "ttot": 0.00049322, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Comm_rank", - "ttot": 3.9606e-7, + "ttot": 5.2995e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, - { - "call": "MPI_Comm_size", - "ttot": 4.3605e-7, - "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" - }, { "call": "MPI_Send", - "ttot": 2.72295597, + "ttot": 4.06839716, "count": 145194, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" - } - ] - }, - { - "nr": "75", - "ttot": 14.403159660929996, + }, + { + "call": "MPI_Comm_size", + "ttot": 3.1955e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "158", + "ttot": 19.453167426750003, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 1.49688234464, + "ttot": 0.42985201690000013, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, + { + "call": "MPI_Send", + "ttot": 4.67673524, + "count": 145194, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Allreduce", - "ttot": 1.024556865, + "ttot": 2.4445766129999997, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00053184, + "ttot": 0.00060205, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, - { - "call": "MPI_Recv", - "ttot": 8.35867, - "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Comm_rank", - "ttot": 4.8173e-7, + "ttot": 9.6776e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 2.2956e-7, + "ttot": 5.3909e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { - "call": "MPI_Send", - "ttot": 3.5225178999999995, - "count": 193522, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "call": "MPI_Recv", + "ttot": 11.9014, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" } ] }, { - "nr": "148", - "ttot": 14.33447746179, + "nr": "159", + "ttot": 18.14115763267, "mpiCalls": [ - { - "call": "MPI_Recv", - "ttot": 9.46365, - "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Bcast", - "ttot": 0.6665227194000002, + "ttot": 0.49941566080000005, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 0.711847378, + "ttot": 2.3354031479999997, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, + { + "call": "MPI_Send", + "ttot": 2.57625701, + "count": 145194, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Barrier", - "ttot": 0.00026982, + "ttot": 0.00028102, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Send", - "ttot": 3.4921868099999998, - "count": 193522, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "call": "MPI_Recv", + "ttot": 12.7298, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 5.4916e-7, + "ttot": 5.0258e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 1.8523e-7, + "ttot": 2.9129e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" @@ -9748,54 +9749,54 @@ ] }, { - "nr": "151", - "ttot": 14.085027504779998, + "nr": "160", + "ttot": 14.55536251809, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 0.6769123992, + "ttot": 0.4837346678000002, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, - { - "call": "MPI_Recv", - "ttot": 9.28911, - "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Allreduce", - "ttot": 0.46353483599999995, + "ttot": 0.588236722, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, + { + "call": "MPI_Recv", + "ttot": 10.386700000000001, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Barrier", - "ttot": 0.00044969, + "ttot": 0.00026604, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Comm_rank", - "ttot": 4.6915e-7, + "ttot": 4.5002e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Send", - "ttot": 3.65501993, - "count": 193522, + "ttot": 3.09642443, + "count": 145194, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 1.8043e-7, + "ttot": 2.0827e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" @@ -9803,164 +9804,164 @@ ] }, { - "nr": "88", - "ttot": 14.055976450840005, + "nr": "161", + "ttot": 16.836685367930002, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 1.3397994366, + "ttot": 0.4607912049999999, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 0.718011153, + "ttot": 0.623286939, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, + { + "call": "MPI_Send", + "ttot": 4.56188034, + "count": 145194, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Barrier", - "ttot": 0.00027712, + "ttot": 0.00073598, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, - { - "call": "MPI_Send", - "ttot": 3.08640772, - "count": 193522, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Comm_rank", - "ttot": 6.03e-7, + "ttot": 6.4175e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 4.1824e-7, + "ttot": 2.6218e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Recv", - "ttot": 8.911480000000001, - "count": 193522, + "ttot": 11.189990000000002, + "count": 145194, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" } ] }, { - "nr": "96", - "ttot": 14.011757796400005, + "nr": "162", + "ttot": 17.077759444890003, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 1.2819912451000002, + "ttot": 0.45105617579999985, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 0.602427613, + "ttot": 0.703138653, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, + { + "call": "MPI_Send", + "ttot": 4.50194959, + "count": 145194, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Barrier", - "ttot": 0.00029453, + "ttot": 0.0009844, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Recv", - "ttot": 9.36871, - "count": 193522, + "ttot": 11.420630000000001, + "count": 145194, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 6.2263e-7, + "ttot": 4.3782e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 3.9567e-7, + "ttot": 1.8827e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" - }, - { - "call": "MPI_Send", - "ttot": 2.7583333899999998, - "count": 193522, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" } ] }, { - "nr": "44", - "ttot": 13.934899597919994, + "nr": "163", + "ttot": 14.64007895763, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 1.8668471985, + "ttot": 0.4660156632999999, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 1.1649111759999997, + "ttot": 0.600845663, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { - "call": "MPI_Send", - "ttot": 3.1394872499999997, - "count": 193522, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "call": "MPI_Recv", + "ttot": 10.5143, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Barrier", - "ttot": 0.00027342, + "ttot": 0.00044898, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, - { - "call": "MPI_Recv", - "ttot": 7.763380000000001, - "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Comm_rank", - "ttot": 3.9475e-7, + "ttot": 5.0219e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, + { + "call": "MPI_Send", + "ttot": 3.0584679799999996, + "count": 145194, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Comm_size", - "ttot": 1.5867e-7, + "ttot": 1.6914e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" @@ -9968,240 +9969,9482 @@ ] }, { - "nr": "39", - "ttot": 13.895102317589998, + "nr": "164", + "ttot": 16.968675607830008, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 2.2729433965, + "ttot": 0.4369632419999999, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, - { - "call": "MPI_Recv", - "ttot": 6.8734, - "count": 193522, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Allreduce", - "ttot": 1.200696235, + "ttot": 1.6947072150000002, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, + { + "call": "MPI_Send", + "ttot": 2.28074272, + "count": 145194, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Barrier", - "ttot": 0.00026199, + "ttot": 0.00026171, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Comm_rank", - "ttot": 4.5086e-7, + "ttot": 4.578e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, - { - "call": "MPI_Send", - "ttot": 3.54780006, - "count": 193522, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Comm_size", - "ttot": 1.8523e-7, + "ttot": 2.6303e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" - } + }, + { + "call": "MPI_Recv", + "ttot": 12.556, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + } ] }, { - "nr": "99", - "ttot": 13.746178151540004, + "nr": "165", + "ttot": 19.04604354487001, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 1.1987213295000003, + "ttot": 0.45597880170000005, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 0.876223942, + "ttot": 1.743978198, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00032138, + "ttot": 0.00062891, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, + { + "call": "MPI_Send", + "ttot": 4.57115677, + "count": 145194, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Recv", - "ttot": 8.43851, - "count": 193522, + "ttot": 12.2743, + "count": 145194, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 7.1742e-7, + "ttot": 4.2346e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 3.6262e-7, + "ttot": 4.4171e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "166", + "ttot": 18.6110975783, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.45671559999000005, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.0474667940000004, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00094948, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 11.7212, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 4.5997e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Send", - "ttot": 3.23240042, - "count": 193522, + "ttot": 4.38476499, + "count": 145194, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.5434e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" } ] }, { - "nr": "91", - "ttot": 13.540468053470002, + "nr": "167", + "ttot": 21.115782495659996, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 1.2909121593700001, + "ttot": 0.3918448281000001, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 0.912442805, + "ttot": 2.012197495, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.0001616, + "ttot": 0.00044656, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Send", - "ttot": 3.34664071, - "count": 193522, + "ttot": 4.44579289, + "count": 96866, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_rank", - "ttot": 4.9781e-7, + "ttot": 4.3084e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 2.8129e-7, + "ttot": 2.9172e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Recv", - "ttot": 7.990310000000001, - "count": 193522, + "ttot": 14.2655, + "count": 96866, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + } + ] + } + ], + "mpiCallsByTaskSorted": [ + { + "nr": "13", + "ttot": 21.314679884239997, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 2.8105239348, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 3.4229531230000005, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00046206, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 4.83015002, + "count": 96866, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 3.8953e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Recv", + "ttot": 10.25059, + "count": 96866, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.5691e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" } ] }, { - "nr": "72", - "ttot": 13.246036326259999, + "nr": "167", + "ttot": 21.115782495659996, "mpiCalls": [ { "call": "MPI_Bcast", - "ttot": 1.500463188999999, + "ttot": 0.3918448281000001, "count": 474, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" }, { "call": "MPI_Allreduce", - "ttot": 0.927964896, + "ttot": 2.012197495, "count": 246, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00031951, + "ttot": 0.00044656, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, + { + "call": "MPI_Send", + "ttot": 4.44579289, + "count": 96866, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 4.3084e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.9172e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, { "call": "MPI_Recv", - "ttot": 7.39333, - "count": 193522, + "ttot": 14.2655, + "count": 96866, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + } + ] + }, + { + "nr": "154", + "ttot": 20.010047181860003, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.5131013362000005, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Recv", + "ttot": 14.012099999999998, + "count": 96866, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, + { + "call": "MPI_Allreduce", + "ttot": 2.0733641769999998, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00076022, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, { "call": "MPI_Comm_rank", - "ttot": 5.6041e-7, + "ttot": 4.2346e-7, "count": 2, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 1.7085e-7, + "ttot": 3.352e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Send", - "ttot": 3.423958, - "count": 193522, + "ttot": 3.41072069, + "count": 96866, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" } ] - } - ] - }, - "mpiPies": { - "mpiPercent": { - "datasets": [ - { - "data": ["55.44", "21.94", "13.90", "8.71", "0.00"], - "backgroundColor": [ - "rgb(114, 147, 203)", - "rgb(211, 94, 96)", - "rgb(225, 151, 76)", - "rgb(171, 104, 87)", - "rgb(204, 194, 16)" - ], - "hoverBackgroundColor": [ + }, + { + "nr": "158", + "ttot": 19.453167426750003, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.42985201690000013, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Send", + "ttot": 4.67673524, + "count": 145194, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.4445766129999997, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00060205, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 9.6776e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 5.3909e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 11.9014, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + } + ] + }, + { + "nr": "1", + "ttot": 19.31442026887001, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 2.7599684775999993, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 4.431866090000001, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00050354, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 4.280651199999999, + "count": 145194, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.3563e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Recv", + "ttot": 7.84143, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.2564e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "111", + "ttot": 19.09628316762, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.1887887484, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.453058338, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00029672, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 11.823599999999999, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.8387e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 4.4735e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 3.6305383300000003, + "count": 145194, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + } + ] + }, + { + "nr": "5", + "ttot": 19.08189557458999, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 2.774201238999999, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Recv", + "ttot": 7.56007, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Allreduce", + "ttot": 3.98522018, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0005732, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.9952e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 4.0607e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 4.761829950000001, + "count": 145194, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + } + ] + }, + { + "nr": "165", + "ttot": 19.04604354487001, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.45597880170000005, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 1.743978198, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00062891, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 4.57115677, + "count": 145194, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Recv", + "ttot": 12.2743, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 4.2346e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 4.4171e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "2", + "ttot": 18.979203864839995, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 7.93653, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 2.7580979521, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 4.367979538, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00054828, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.1345e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 5.8129e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 3.916047, + "count": 145194, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + } + ] + }, + { + "nr": "94", + "ttot": 18.970107497330005, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.3366654098999997, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.575919634, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00048896, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 5.12381244, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.3519e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 4.1824e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 9.933219999999999, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + } + ] + }, + { + "nr": "157", + "ttot": 18.937071783300002, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.3866621308000001, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Recv", + "ttot": 12.1938, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.2877184230000003, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00049322, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.2995e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 4.06839716, + "count": 145194, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.1955e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "6", + "ttot": 18.63371664771999, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 2.7824441052000006, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Recv", + "ttot": 7.70176, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Allreduce", + "ttot": 3.762930883, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0002852, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 4.38629548, + "count": 145194, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 4.9954e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 4.7998e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "166", + "ttot": 18.6110975783, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.45671559999000005, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.0474667940000004, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00094948, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 11.7212, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 4.5997e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 4.38476499, + "count": 145194, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.5434e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "30", + "ttot": 18.52629840394999, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 8.058200000000001, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 2.2405158677, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 3.732799995, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00043243, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 4.4943491799999995, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.1605e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 4.152e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "141", + "ttot": 18.510664758270003, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.6710437797000001, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.6256964329999994, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00050152, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 10.466879999999998, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.8125e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.2432e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 4.74654202, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + } + ] + }, + { + "nr": "137", + "ttot": 18.420003781389997, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.8240485545999999, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.4019456019999996, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00054909, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 5.22135961, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.6088e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Recv", + "ttot": 9.972100000000001, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.6391e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "3", + "ttot": 18.408403839629997, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 2.7719112903, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Recv", + "ttot": 8.368400000000001, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Allreduce", + "ttot": 4.396938985000001, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00054035, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 2.8706123000000003, + "count": 145194, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.6086e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.5347e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "17", + "ttot": 18.393212132059993, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 2.5479818429, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 3.729283444, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Recv", + "ttot": 7.30854, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00082382, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 4.1736e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.778e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 4.80658223, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + } + ] + }, + { + "nr": "58", + "ttot": 18.31511151997, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.7222241386000006, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.683772874, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0006442, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 4.8130393399999996, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.6782e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.9955e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 9.095429999999999, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + } + ] + }, + { + "nr": "121", + "ttot": 18.238864872550007, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.0008582911999995, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Recv", + "ttot": 9.69408, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.369298057, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00055521, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 5.17407246, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.5043e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.0392e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "125", + "ttot": 18.20231885857999, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.0180801939999997, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.227454882, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00049702, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 3.5709858100000003, + "count": 145194, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 7.2084e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Recv", + "ttot": 11.3853, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.3174e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "66", + "ttot": 18.154884473979997, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.6835030576999999, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.558174449, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00052282, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 8.63744, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0000010108, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 5.27524267, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 4.6648e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "159", + "ttot": 18.14115763267, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.49941566080000005, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.3354031479999997, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 2.57625701, + "count": 145194, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00028102, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 12.7298, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.0258e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.9129e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "81", + "ttot": 18.091641995840007, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.4810998508000004, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.1916735490000003, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00045916, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 9.704239999999999, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.9258e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 4.7346e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 4.71416837, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + } + ] + }, + { + "nr": "142", + "ttot": 18.068102993859995, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.6676252946000001, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.5206565249999997, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00060324, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 10.60839, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Send", + "ttot": 4.27082661, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 8.569e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 4.6736e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "0", + "ttot": 18.047536984290012, + "mpiCalls": [ + { + "call": "MPI_Send", + "ttot": 3.6041309400000006, + "count": 131726, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Recv", + "ttot": 10.105570400000003, + "count": 131726, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.0052310175, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 4.3323892090000005, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00021435, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.6259e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 4.052e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "83", + "ttot": 18.026528328599994, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.4369711175400006, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.352624545, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00033041, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 3.1310014, + "count": 145194, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Recv", + "ttot": 11.1056, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.7259e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.8347e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "134", + "ttot": 18.015788497049993, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.7881740407000002, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.349724679, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00073961, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 4.63919926, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.5041e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Recv", + "ttot": 10.23795, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.5694e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "145", + "ttot": 18.00023136647, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.5964765181999998, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.501324844, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00062873, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 10.45774, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Send", + "ttot": 4.44405984, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0000011495, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.8477e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "7", + "ttot": 17.953969765540002, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 2.8075215321000013, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 3.929750997, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00025119, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 2.80006479, + "count": 145194, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 7.5169e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Recv", + "ttot": 8.41638, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 5.0475e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "146", + "ttot": 17.925245833659996, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.5731984180400003, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.43084382, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00032685, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 4.36813579, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 7.1128e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Recv", + "ttot": 10.55274, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.4434e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "109", + "ttot": 17.91977750498, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.1983541446, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.38976239, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00049933, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 4.7335009900000005, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 3.8302e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.6736e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 9.597660000000001, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + } + ] + }, + { + "nr": "61", + "ttot": 17.90483189494999, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.6973469602000004, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.7293904600000003, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00072901, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 4.62276473, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 4.9607e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.3868e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 8.8546, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + } + ] + }, + { + "nr": "126", + "ttot": 17.895402634619998, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.8340984530000002, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Recv", + "ttot": 11.7324, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.523864556, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00048815, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.4998e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.2564e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 2.8045506, + "count": 145194, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + } + ] + }, + { + "nr": "140", + "ttot": 17.882538237189998, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.6416569264, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.6419091600000004, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00025436, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 3.40969689, + "count": 145194, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.6821e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Recv", + "ttot": 11.189020000000001, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.3258e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "22", + "ttot": 17.871795884420006, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 2.642023644299999, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 3.2896301480000005, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00044916, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 4.57624217, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 3.9823e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Recv", + "ttot": 7.363449999999999, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.6389e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "110", + "ttot": 17.853846626609997, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.1606064645, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.3344942000000004, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00047297, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 4.4279722800000005, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Recv", + "ttot": 9.9303, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 4.0127e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.1084e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "86", + "ttot": 17.84656268627001, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.3096710879999998, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.6170786470000005, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0008559, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 4.68543632, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Recv", + "ttot": 9.23352, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 4.7564e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.5563e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "69", + "ttot": 17.833994322259993, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.6431850778999997, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.18445203, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00077384, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 10.3306, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 4.4827e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 3.6749827, + "count": 145194, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.2609e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "155", + "ttot": 17.8307883446, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.5140624935000001, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Send", + "ttot": 2.06957236, + "count": 145194, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.333580262, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00027241, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 4.7346e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.4564e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 12.913300000000001, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + } + ] + }, + { + "nr": "129", + "ttot": 17.821882879079997, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.7770849245999998, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Recv", + "ttot": 10.1919, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.5556079110000005, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00074014, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 4.4522e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.1826e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 4.29654914, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + } + ] + }, + { + "nr": "122", + "ttot": 17.80935506378, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.0170647899999998, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.1915493390000003, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00077327, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 5.14077682, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.1565e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Recv", + "ttot": 9.45919, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.2913e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "42", + "ttot": 17.800460029590013, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.8437670309999994, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Recv", + "ttot": 9.319899999999999, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Allreduce", + "ttot": 3.6240317029999995, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00051036, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.0169e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 3.01225023, + "count": 145194, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.039e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "33", + "ttot": 17.784049510670016, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 2.156577541599999, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Recv", + "ttot": 8.07916, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Allreduce", + "ttot": 3.2131903899999994, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00078601, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.0952e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 4.33433471, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.4955e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "130", + "ttot": 17.760906938019993, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.7913264074, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.5395230179999997, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Recv", + "ttot": 10.14165, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00084345, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 4.28756263, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 9.0044e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 5.3218e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "62", + "ttot": 17.7596944581, + "mpiCalls": [ + { + "call": "MPI_Send", + "ttot": 4.790959539999999, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Bcast", + "ttot": 1.6247620401999998, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.7249199940000004, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00041217, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 8.61864, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.1956e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 1.9434e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "50", + "ttot": 17.746943990020004, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.8540854671000004, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.6407188419999996, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00075804, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 4.662500769999999, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Recv", + "ttot": 8.58888, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.2438e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.4654e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "103", + "ttot": 17.74456127684, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.1561684773499996, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.583334076, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00029863, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 3.27445935, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 4.8522e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.5827e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 10.7303, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + } + ] + }, + { + "nr": "25", + "ttot": 17.74148190385, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 2.6009174658999985, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 3.223702407, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00077991, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 4.1988112399999995, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.4789e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Recv", + "ttot": 7.71727, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.3306e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "65", + "ttot": 17.738876354659997, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.6811581225000003, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Send", + "ttot": 4.551650070000001, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.577346817, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00051028, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 8.92821, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.8214e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.8302e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "54", + "ttot": 17.684835917430007, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.8235801256000004, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.4286978809999997, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00044086, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 8.06452, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 4.5475e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 5.367596420000001, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 1.7608e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "117", + "ttot": 17.678467294829993, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 9.699749999999998, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.9621321359, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.391140912, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00062972, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.8998e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.9695e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 4.62481364, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + } + ] + }, + { + "nr": "53", + "ttot": 17.673791336679997, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.8538901124999996, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.5177564689999996, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00083644, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 4.736507420000001, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Recv", + "ttot": 8.5648, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.8605e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.0913e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "106", + "ttot": 17.6542505319, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.1224255110999999, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.415830743, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0005727, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 4.856760749999999, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.426e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.852e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 9.25866, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + } + ] + }, + { + "nr": "21", + "ttot": 17.63369408131999, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 2.6547830468999982, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 3.352332181, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00026579, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 6.87462, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Send", + "ttot": 4.75169222, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.0561e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.3781e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "93", + "ttot": 17.612298837530002, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.2999340349999997, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.3941759830000002, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00036952, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 9.979299999999999, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.4171e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.4782e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 3.93851851, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + } + ] + }, + { + "nr": "114", + "ttot": 17.59398577521, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.9886928808, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.2967845709999994, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00028468, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 9.54309, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.5648e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 4.0693e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 4.76513268, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + } + ] + }, + { + "nr": "77", + "ttot": 17.588982842280007, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.4823802500000003, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.388806271, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 4.31639518, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00068061, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 9.40072, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 3.1303e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.1825e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "87", + "ttot": 17.583433904349995, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.3355833266, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.720095933, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00028949, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 10.350760000000001, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.3867e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 1.8608e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 3.1767043300000006, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + } + ] + }, + { + "nr": "18", + "ttot": 17.57951267724, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 2.5469921349999995, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 3.654466471, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00062136, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 7.25825, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Send", + "ttot": 4.1191819, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 4.9952e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.1172e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "41", + "ttot": 17.576752983899993, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 2.1749108967999997, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.6895262549999996, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00062475, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 9.4225, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Send", + "ttot": 3.28919028, + "count": 145194, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.3778e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.6432e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "49", + "ttot": 17.571042880689994, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.8504618901999996, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.475171007, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 4.38441822, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00070113, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 4.1175e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.2174e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 8.86029, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + } + ] + }, + { + "nr": "144", + "ttot": 17.570116649299997, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.5978068490999998, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.6292251949999996, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0002847, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 10.955929999999999, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 4.4912e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.3608e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 3.38686912, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + } + ] + }, + { + "nr": "95", + "ttot": 17.57000718232, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.3345807929, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.416903176, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00015189, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 3.4839705, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Recv", + "ttot": 10.3344, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 4.8561e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.3781e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "78", + "ttot": 17.56866493815, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.4848673826000003, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.3212025029999994, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00013854, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 9.027610000000001, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 8.0997e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 4.3258e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 4.734845269999999, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + } + ] + }, + { + "nr": "12", + "ttot": 17.564566492049998, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 2.8115808942999987, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 3.11787211, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Recv", + "ttot": 9.66355, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00024753, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 1.97131514, + "count": 145194, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.6603e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.5172e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "29", + "ttot": 17.55440228085999, + "mpiCalls": [ + { + "call": "MPI_Send", + "ttot": 4.20525199, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Bcast", + "ttot": 2.2381588846000002, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 3.592004182, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00080609, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 7.51818, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.6473e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 4.6953e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "133", + "ttot": 17.50627222104, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.7735374688999997, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.327058, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00061859, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 9.96779, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Send", + "ttot": 4.4372669799999995, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.639e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 5.1824e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "34", + "ttot": 17.480547194360003, + "mpiCalls": [ + { + "call": "MPI_Send", + "ttot": 4.10630165, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Bcast", + "ttot": 2.1822535729699997, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 3.2747764480000003, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00051418, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 7.3735e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Recv", + "ttot": 7.9167000000000005, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 6.0604e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "108", + "ttot": 17.46222438509, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.2042325226999993, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.4601456689999996, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00025036, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 10.9927, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.2515e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.1824e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 2.80489489, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + } + ] + }, + { + "nr": "105", + "ttot": 17.462101597600004, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.1284300878000009, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.377098322, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00054419, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 9.89648, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.9564e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.0216e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 4.0595482, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + } + ] + }, + { + "nr": "82", + "ttot": 17.43382887035001, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.4759444024899995, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 1.9394502340000002, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00033092, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 4.2566823099999995, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.3823e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 4.6563e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 9.761420000000001, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + } + ] + }, + { + "nr": "153", + "ttot": 17.433162137309996, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.6339896879, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.192245349, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00039966, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 11.41694, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 4.3042e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 4.0999e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 3.1895866, + "count": 145194, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + } + ] + }, + { + "nr": "63", + "ttot": 17.428237647549988, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.6952565773999997, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.8763587279999996, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00039873, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 8.87369, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.1694e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 3.9825325300000003, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 4.6521e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "85", + "ttot": 17.4251048023, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.3242678026999994, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.6265929670000006, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0006666, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 4.63036668, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.0043e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 1.5217e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 8.84321, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + } + ] + }, + { + "nr": "147", + "ttot": 17.419594503489993, + "mpiCalls": [ + { + "call": "MPI_Send", + "ttot": 3.43113349, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.6087198676000002, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.5059826819999995, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0004776, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 10.873280000000001, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.2346e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.4043e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "101", + "ttot": 17.386399830509994, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.1505474958999995, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.163525412, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0006453, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 4.71088082, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Recv", + "ttot": 9.3608, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.3478e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.6783e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "60", + "ttot": 17.31678739801, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.6899995018, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.8540555279999995, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00026866, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 9.7035, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.5779e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 3.06896289, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.6042e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "136", + "ttot": 17.315286584029998, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.7817104709, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.414609624, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00024554, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 11.2711, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Send", + "ttot": 2.84761992, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 7.0391e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.2522e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "135", + "ttot": 17.307751200560006, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.7871311750000002, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.278860063, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Recv", + "ttot": 11.2006, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00043708, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 7.9909e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.7347e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 3.0407218099999995, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + } + ] + }, + { + "nr": "57", + "ttot": 17.30218943384001, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.7227043410999998, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.6178684880000005, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00070751, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 7.98258, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 4.3954e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 4.97832827, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.852e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "118", + "ttot": 17.27745370613, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.9371061011, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Recv", + "ttot": 9.92065, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.182933619, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00083163, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 4.2359315, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.1822e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.3781e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "104", + "ttot": 17.252326076330004, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.1415805390000004, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.3612119000000003, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00024668, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 3.23888566, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Recv", + "ttot": 10.5104, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 7.8474e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 5.1259e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "102", + "ttot": 17.251770598860002, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.1552908245000002, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.1137631899999993, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00077976, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 9.65127, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 8.3045e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.2391e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 4.3306657699999995, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + } + ] + }, + { + "nr": "59", + "ttot": 17.22709582909001, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.695207043, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.8241988769999997, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00064032, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 3.21364837, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Recv", + "ttot": 9.4934, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 7.5258e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 4.6651e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "28", + "ttot": 17.22120754478, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 2.2235604261999997, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 3.6099995760000003, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00028208, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 3.1641449199999996, + "count": 145194, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 3.8389e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Recv", + "ttot": 8.22322, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 1.5869e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "15", + "ttot": 17.19819658736, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 2.6371191628799995, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 4.312922755, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00025157, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 7.8080099999999995, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Send", + "ttot": 2.4398924600000003, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 4.4168e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 1.978e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "132", + "ttot": 17.190458953249998, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.7641518575000003, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.5367700509999995, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Recv", + "ttot": 10.16822, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00025502, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 4.8694e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.1781e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 3.7210613200000004, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + } + ] + }, + { + "nr": "4", + "ttot": 17.17195796300999, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 2.7638680320000004, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 3.9227497849999997, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0001115, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 3.32109761, + "count": 145194, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.4909e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Recv", + "ttot": 7.164130000000001, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 4.8692e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "120", + "ttot": 17.16952317349, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 10.9397, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 1.0195271891000008, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.3143703270000002, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00024842, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.9739e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 4.7e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 2.8956761699999998, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + } + ] + }, + { + "nr": "115", + "ttot": 17.156938635749995, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 9.72247, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.96237356789, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.639733074, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00044367, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 3.83191726, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 7.0952e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.5434e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "119", + "ttot": 17.148072496850002, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.9877308416600001, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.33218653, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00041519, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 2.94333892, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 7.3259e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Recv", + "ttot": 10.8844, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.826e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "70", + "ttot": 17.12875561987, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.4660311184000006, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.424757648, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00032024, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 3.0555457699999997, + "count": 145194, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.7956e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.6391e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 10.1821, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + } + ] + }, + { + "nr": "14", + "ttot": 17.09295363463, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 2.6195088183000004, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Recv", + "ttot": 7.3278099999999995, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Allreduce", + "ttot": 4.234479059, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0002579, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 4.5952e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 1.7781e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 2.9108972200000003, + "count": 145194, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + } + ] + }, + { + "nr": "162", + "ttot": 17.077759444890003, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.45105617579999985, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.703138653, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 4.50194959, + "count": 145194, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0009844, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 11.420630000000001, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 4.3782e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 1.8827e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "113", + "ttot": 17.071769068, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.9887458439000001, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.2667965049999994, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00059312, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 3.93661264, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Recv", + "ttot": 9.87902, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.7781e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.8129e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "138", + "ttot": 17.045095462339997, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.7952570614000001, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.066048104, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00068893, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 9.58165, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 7.7477e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 5.0217e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 4.60145009, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + } + ] + }, + { + "nr": "84", + "ttot": 17.03565106151, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.3056555572000006, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.8545338900000004, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00028593, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 8.58126, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.7172e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.6259e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 4.29391485, + "count": 145194, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + } + ] + }, + { + "nr": "100", + "ttot": 17.026312025150002, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.1632367739000005, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.648201576, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00027395, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 3.3165284699999997, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.248e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 6.3045e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 9.898069999999999, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + } + ] + }, + { + "nr": "31", + "ttot": 17.008654316999998, + "mpiCalls": [ + { + "call": "MPI_Send", + "ttot": 2.9380194399999997, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Bcast", + "ttot": 2.2489379250999995, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 3.526158955, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00041726, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 4.5213e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Recv", + "ttot": 8.295119999999999, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.8477e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "51", + "ttot": 16.984216984170004, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.8676593811, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.5570702699999996, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00075127, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 9.05585, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 4.1393e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 3.50288538, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.6914e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "143", + "ttot": 16.981316398720004, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.6537454886999998, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.502062144, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00029187, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 3.1017357399999996, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 7.5692e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Recv", + "ttot": 10.723480000000002, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.991e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "164", + "ttot": 16.968675607830008, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.4369632419999999, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 1.6947072150000002, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 2.28074272, + "count": 145194, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00026171, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 4.578e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.6303e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 12.556, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + } + ] + }, + { + "nr": "139", + "ttot": 16.958888740109998, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.8190649991, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.273594051, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00028114, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 4.48711753, + "count": 145194, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.761e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.4391e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 9.37883, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + } + ] + }, + { + "nr": "156", + "ttot": 16.95664716282, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.43279392290000007, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Send", + "ttot": 2.57886215, + "count": 145194, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.2981412700000003, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00024873, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 11.6466, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 7.7864e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.1128e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "20", + "ttot": 16.94676154836, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 2.615825447700001, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 3.4696086990000006, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0002529, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 7.083810000000001, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 7.9951e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.1215e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 3.77726349, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + } + ] + }, + { + "nr": "123", + "ttot": 16.937117320530003, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.0080701116200004, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Recv", + "ttot": 9.92014, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.157093205, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00027574, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 7.3478e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 5.0913e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 3.85153702, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + } + ] + }, + { + "nr": "35", + "ttot": 16.8535026365, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 2.2020444938000012, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Send", + "ttot": 3.2156272500000003, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 3.1770171609999998, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00055311, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 8.25826, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 4.178e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.039e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "161", + "ttot": 16.836685367930002, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.4607912049999999, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.623286939, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 4.56188034, + "count": 145194, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00073598, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.4175e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.6218e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 11.189990000000002, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + } + ] + }, + { + "nr": "92", + "ttot": 16.80069826155, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.2927655939000002, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.384670759, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00027806, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 2.56275299, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Recv", + "ttot": 10.56023, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.0604e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.5261e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "23", + "ttot": 16.79507049154, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 2.6699452999, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 3.3364834730000004, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00044479, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 7.491790000000001, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.4344e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 1.852e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 3.2964062, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + } + ] + }, + { + "nr": "52", + "ttot": 16.74532549075, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.8265636567999994, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.531519394, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00028182, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 2.64865994, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 4.3692e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.4303e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 9.738299999999999, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + } + ] + }, + { + "nr": "9", + "ttot": 16.744093048430006, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 2.857508169100001, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 1.849551912, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00053711, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 7.76839, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Send", + "ttot": 4.26810508, + "count": 145194, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 3.6128e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 4.1605e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "80", + "ttot": 16.74303985333, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.4824166543, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.2913027529999996, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00027773, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 3.0182409800000003, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Recv", + "ttot": 9.950800000000001, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.0000012065, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 5.2953e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "48", + "ttot": 16.735332734110003, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.8231200584, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.58420554, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00030332, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 9.39444, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.6699e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 2.93326247, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 6.7872e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "128", + "ttot": 16.729458014859993, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.7760931506, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.541365316, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00027158, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 2.97623725, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 4.3913e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Recv", + "ttot": 10.435490000000001, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.7913e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "131", + "ttot": 16.72666947734, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.7970375332, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.4958636450000005, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00042359, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 3.2484538400000003, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.0175e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Recv", + "ttot": 10.184890000000001, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.6739e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "68", + "ttot": 16.699083129719998, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.6342058441000005, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Send", + "ttot": 2.49271297, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.5128679930000004, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00029549, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 10.059, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.6088e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 1.7174e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "43", + "ttot": 16.684996439039992, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.8870434857, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Send", + "ttot": 2.3538831100000004, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 3.592037353, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00049163, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 4.8777e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.7257e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 8.85154, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + } + ] + }, + { + "nr": "67", + "ttot": 16.674705740920004, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.6910777988999997, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.406824856, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00055507, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 3.6065170799999997, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.3865e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.9737e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 8.969730000000002, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + } + ] + }, + { + "nr": "19", + "ttot": 16.638358092000008, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 2.541040171100001, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 3.647999494, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00060518, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 3.24284243, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.0302e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Recv", + "ttot": 7.205870000000001, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.1388e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "112", + "ttot": 16.601526754760002, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.9590499412, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.2984326509999997, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0002609, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 2.95484217, + "count": 145194, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.8388e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 4.0868e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 10.38894, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + } + ] + }, + { + "nr": "64", + "ttot": 16.60005944315, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.5947500440000002, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.4639637039999998, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.000282, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 2.74076287, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 4.5387e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.7128e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 9.8003, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + } + ] + }, + { + "nr": "107", + "ttot": 16.598892082779997, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.1626409952, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.3385264250000004, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00028961, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 3.75525414, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Recv", + "ttot": 9.342179999999999, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.9433e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.1825e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "71", + "ttot": 16.563097190060002, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.4880768224999996, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Send", + "ttot": 2.4411430000000003, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.6454711879999997, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00031539, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 9.98809, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.7304e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.1652e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "152", + "ttot": 16.516564684739997, + "mpiCalls": [ + { + "call": "MPI_Send", + "ttot": 2.41939011, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.6351202307000001, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 1.8029135580000002, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00023986, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.8084e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Recv", + "ttot": 11.6589, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.452e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "32", + "ttot": 16.48297107823, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 2.1842542762999995, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Send", + "ttot": 3.1480644599999996, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 3.219084959000001, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00025613, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 7.931309999999999, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 7.7471e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 4.7822e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "16", + "ttot": 16.457413851599995, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 2.5498968600999996, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 3.574078802, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00029984, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 3.2042373900000003, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.7169e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Recv", + "ttot": 7.1289, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.8781e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "116", + "ttot": 16.443871760390003, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.9910277539999998, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.383855236, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00026839, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 3.26806959, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Recv", + "ttot": 9.800650000000001, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.1693e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.7346e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "127", + "ttot": 16.396508367700005, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.8086451060000001, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.15727832, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Recv", + "ttot": 10.640139999999999, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0002955, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 2.79014858, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.4779e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.1391e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "10", + "ttot": 16.395229904670003, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 2.82264646933, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 1.6591590780000003, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00051689, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 4.10970675, + "count": 145194, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 3.7607e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Recv", + "ttot": 7.8031999999999995, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.4127e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "76", + "ttot": 16.31562939258, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.4875429961999997, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.034016969, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00029333, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 2.58637543, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 4.1217e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.5521e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 10.2074, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + } + ] + }, + { + "nr": "26", + "ttot": 16.249452629250005, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 2.576353707099999, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.109234766, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00066233, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 7.02334, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.1048e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.1567e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 4.5398609, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + } + ] + }, + { + "nr": "56", + "ttot": 16.246856402820004, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.6726760564, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.957979926, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00029013, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 3.9420795, + "count": 145194, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Recv", + "ttot": 7.673830000000001, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 4.1217e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.7825e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "124", + "ttot": 16.235148235569994, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.0153530182000003, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Recv", + "ttot": 11.0777, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Allreduce", + "ttot": 1.757179737, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00025408, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 2.3846601899999995, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 8.03e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 4.0737e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "79", + "ttot": 16.2169691343, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.511837515800001, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.056341132, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00017855, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 3.97615114, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.3868e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.5782e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 8.67246, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + } + ] + }, + { + "nr": "55", + "ttot": 15.910026771130001, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.8497967247000004, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.456330463, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00043736, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 3.98648129, + "count": 145194, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.3692e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.9651e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 7.616980000000001, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + } + ] + }, + { + "nr": "90", + "ttot": 15.79177575027, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.3051209590999997, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 1.054528946, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00064977, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 9.26509, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.7867e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.665e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 4.16638513, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + } + ] + }, + { + "nr": "89", + "ttot": 15.776314605759996, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.3391668224000002, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.873106086, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00043966, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 3.87982117, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Recv", + "ttot": 9.68378, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.4215e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.2521e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "40", + "ttot": 15.75954817281, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 2.228024699200001, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Send", + "ttot": 2.09194487, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.263381855, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00028591, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.6255e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 1.7606e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 9.17591, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + } + ] + }, + { + "nr": "74", + "ttot": 15.637504410759995, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.4809949429999996, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Send", + "ttot": 4.73402952, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.916671723, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0005375, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 8.505270000000001, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.3173e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 1.9303e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "97", + "ttot": 15.610129544309995, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.3369742827000002, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.6659070619999999, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00076004, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 2.5265872, + "count": 145194, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.5741e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 4.022e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 11.0799, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + } + ] + }, + { + "nr": "45", + "ttot": 15.329122887650003, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.8434885410000008, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 1.2051183379999997, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Recv", + "ttot": 8.54022, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00049316, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.1301e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 3.7398020400000003, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.9564e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "11", + "ttot": 15.287180476689997, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 2.8547103918000007, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Recv", + "ttot": 7.56162, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Allreduce", + "ttot": 1.6762449480000001, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00050641, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 3.4693e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 5.5996e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 3.19409782, + "count": 145194, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + } + ] + }, + { + "nr": "38", + "ttot": 15.227205149210006, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 2.2475475325499987, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Send", + "ttot": 4.23172842, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.971850271, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00026812, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 7.775810000000001, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.4175e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.6391e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "150", + "ttot": 15.19760822544, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.663483865, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Send", + "ttot": 4.480335080000001, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.602392493, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00097605, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 9.45042, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 4.8438e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.5306e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "27", + "ttot": 15.13875916282, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 2.629075077400001, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.0561410810000003, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00065841, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 3.44392384, + "count": 145194, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 4.77e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.7742e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 7.008959999999999, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + } + ] + }, + { + "nr": "46", + "ttot": 15.135465959870002, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.8950826633000009, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Send", + "ttot": 3.7470719499999996, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 1.239900144, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00029041, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.678e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.2477e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 8.25312, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + } + ] + }, + { + "nr": "149", + "ttot": 15.009128679510006, + "mpiCalls": [ + { + "call": "MPI_Send", + "ttot": 4.05561155, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.6025374388000001, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.497303132, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00063581, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 4.6697e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Recv", + "ttot": 9.85304, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.8174e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "73", + "ttot": 14.923701449019998, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.4779990783999997, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.9999822949999999, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00055517, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 4.0115143, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 4.165e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 1.8912e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 8.43365, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + } + ] + }, + { + "nr": "37", + "ttot": 14.874784290080004, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 2.2760211653999995, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Send", + "ttot": 3.9428763100000004, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 1.0874039089999998, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00075214, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.2915e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Recv", + "ttot": 7.567730000000001, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.3653e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "24", + "ttot": 14.704804558990004, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 2.596171042299999, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.2007643439999995, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00030518, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 6.9425799999999995, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Send", + "ttot": 2.9649831599999996, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.0571e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.2698e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "163", + "ttot": 14.64007895763, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.4660156632999999, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.600845663, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Recv", + "ttot": 10.5143, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00044898, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.0219e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 3.0584679799999996, + "count": 145194, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 1.6914e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "98", + "ttot": 14.62418750266, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.2007880318999997, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 1.070742409, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00083852, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 2.90593743, + "count": 145194, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Recv", + "ttot": 9.44588, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 7.2915e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.8261e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "160", + "ttot": 14.55536251809, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.4837346678000002, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.588236722, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Recv", + "ttot": 10.386700000000001, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00026604, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 4.5002e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 3.09642443, + "count": 145194, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.0827e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "36", + "ttot": 14.536404268519998, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 2.1717002490999993, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Recv", + "ttot": 7.33339, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Allreduce", + "ttot": 1.5460921520000002, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00025118, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 4.474e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 3.48496994, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.0002e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "47", + "ttot": 14.527494572389998, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.8935983763999995, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 1.275280823, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00028323, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 3.1174615, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Recv", + "ttot": 8.24087, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 4.1039e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.326e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "8", + "ttot": 14.428297557609998, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 2.774744815499999, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Recv", + "ttot": 7.089049999999999, + "count": 145194, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Allreduce", + "ttot": 1.8412574600000002, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00028848, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 3.9606e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 4.3605e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 2.72295597, + "count": 145194, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + } + ] + }, + { + "nr": "75", + "ttot": 14.403159660929996, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.49688234464, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 1.024556865, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00053184, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 8.35867, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 4.8173e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.2956e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 3.5225178999999995, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + } + ] + }, + { + "nr": "148", + "ttot": 14.33447746179, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 9.46365, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.6665227194000002, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.711847378, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00026982, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 3.4921868099999998, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.4916e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 1.8523e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "151", + "ttot": 14.085027504779998, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 0.6769123992, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Recv", + "ttot": 9.28911, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.46353483599999995, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00044969, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 4.6915e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 3.65501993, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 1.8043e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "88", + "ttot": 14.055976450840005, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.3397994366, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.718011153, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00027712, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 3.08640772, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.03e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 4.1824e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 8.911480000000001, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + } + ] + }, + { + "nr": "96", + "ttot": 14.011757796400005, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.2819912451000002, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.602427613, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00029453, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 9.36871, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.2263e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.9567e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 2.7583333899999998, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + } + ] + }, + { + "nr": "44", + "ttot": 13.934899597919994, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.8668471985, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 1.1649111759999997, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 3.1394872499999997, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00027342, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 7.763380000000001, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 3.9475e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 1.5867e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "39", + "ttot": 13.895102317589998, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 2.2729433965, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Recv", + "ttot": 6.8734, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Allreduce", + "ttot": 1.200696235, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00026199, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 4.5086e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 3.54780006, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 1.8523e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + } + ] + }, + { + "nr": "99", + "ttot": 13.746178151540004, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.1987213295000003, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.876223942, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00032138, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 8.43851, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 7.1742e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.6262e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 3.23240042, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + } + ] + }, + { + "nr": "91", + "ttot": 13.540468053470002, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.2909121593700001, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.912442805, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0001616, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 3.34664071, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 4.9781e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.8129e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 7.990310000000001, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + } + ] + }, + { + "nr": "72", + "ttot": 13.246036326259999, + "mpiCalls": [ + { + "call": "MPI_Bcast", + "ttot": 1.500463188999999, + "count": 474, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.927964896, + "count": 246, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00031951, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 7.39333, + "count": 193522, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.6041e-7, + "count": 2, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 1.7085e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 3.423958, + "count": 193522, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + } + ] + } + ] + }, + "mpiPies": { + "mpiPercent": { + "datasets": [ + { + "data": ["55.44", "21.94", "13.90", "8.71", "0.00"], + "backgroundColor": [ + "rgb(114, 147, 203)", + "rgb(211, 94, 96)", + "rgb(225, 151, 76)", + "rgb(171, 104, 87)", + "rgb(204, 194, 16)" + ], + "hoverBackgroundColor": [ "rgb(134, 167, 223)", "rgb(231, 114, 116)", "rgb(245, 171, 96)", @@ -10244,37 +19487,1450 @@ ] } }, - "hpmData": [ - { - "name": "PAPI_TOT_INS", - "counter": 13954324000707, - "min": 71111664206, - "max": 94659353391, - "ncalls": 168 - }, - { - "name": "PAPI_FP_OPS", - "counter": 1862675165534, - "min": 11018463401, - "max": 11188400383, - "ncalls": 168 - }, - { - "name": "PAPI_L2_TCM", - "counter": 9207135413, - "min": 44676600, - "max": 111693292, - "ncalls": 168 - }, - { - "name": "(null)", - "counter": 0, - "min": 0, - "max": 0, - "ncalls": 168 - } - ], - "balanceData": { + "hpmData": [ + { + "name": "PAPI_TOT_INS", + "counter": 13954324000707, + "min": 71111664206, + "max": 94659353391, + "ncalls": 168 + }, + { + "name": "PAPI_FP_OPS", + "counter": 1862675165534, + "min": 11018463401, + "max": 11188400383, + "ncalls": 168 + }, + { + "name": "PAPI_L2_TCM", + "counter": 9207135413, + "min": 44676600, + "max": 111693292, + "ncalls": 168 + }, + { + "name": "(null)", + "counter": 0, + "min": 0, + "max": 0, + "ncalls": 168 + } + ], + "balanceData": { + "labels": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15", + "16", + "17", + "18", + "19", + "20", + "21", + "22", + "23", + "24", + "25", + "26", + "27", + "28", + "29", + "30", + "31", + "32", + "33", + "34", + "35", + "36", + "37", + "38", + "39", + "40", + "41", + "42", + "43", + "44", + "45", + "46", + "47", + "48", + "49", + "50", + "51", + "52", + "53", + "54", + "55", + "56", + "57", + "58", + "59", + "60", + "61", + "62", + "63", + "64", + "65", + "66", + "67", + "68", + "69", + "70", + "71", + "72", + "73", + "74", + "75", + "76", + "77", + "78", + "79", + "80", + "81", + "82", + "83", + "84", + "85", + "86", + "87", + "88", + "89", + "90", + "91", + "92", + "93", + "94", + "95", + "96", + "97", + "98", + "99", + "100", + "101", + "102", + "103", + "104", + "105", + "106", + "107", + "108", + "109", + "110", + "111", + "112", + "113", + "114", + "115", + "116", + "117", + "118", + "119", + "120", + "121", + "122", + "123", + "124", + "125", + "126", + "127", + "128", + "129", + "130", + "131", + "132", + "133", + "134", + "135", + "136", + "137", + "138", + "139", + "140", + "141", + "142", + "143", + "144", + "145", + "146", + "147", + "148", + "149", + "150", + "151", + "152", + "153", + "154", + "155", + "156", + "157", + "158", + "159", + "160", + "161", + "162", + "163", + "164", + "165", + "166", + "167" + ], + "datasets": [ + { + "label": "MPI_Send", + "fill": false, + "backgroundColor": "rgb(211, 94, 96)", + "borderColor": "rgb(211, 94, 96)", + "pointHoverBackgroundColor": "rgb(231, 114, 116)", + "data": [ + 3.6041309400000006, + 2.7599684775999993, + 7.93653, + 2.7719112903, + 2.7638680320000004, + 2.774201238999999, + 2.7824441052000006, + 2.8075215321000013, + 2.774744815499999, + 2.857508169100001, + 2.82264646933, + 2.8547103918000007, + 2.8115808942999987, + 2.8105239348, + 2.6195088183000004, + 2.6371191628799995, + 2.5498968600999996, + 2.5479818429, + 2.5469921349999995, + 2.541040171100001, + 2.615825447700001, + 2.6547830468999982, + 2.642023644299999, + 2.6699452999, + 2.596171042299999, + 2.6009174658999985, + 2.576353707099999, + 2.629075077400001, + 2.2235604261999997, + 4.20525199, + 8.058200000000001, + 2.9380194399999997, + 2.1842542762999995, + 2.156577541599999, + 4.10630165, + 2.2020444938000012, + 2.1717002490999993, + 2.2760211653999995, + 2.2475475325499987, + 2.2729433965, + 2.228024699200001, + 2.1749108967999997, + 1.8437670309999994, + 1.8870434857, + 1.8668471985, + 1.8434885410000008, + 1.8950826633000009, + 1.8935983763999995, + 1.8231200584, + 1.8504618901999996, + 1.8540854671000004, + 1.8676593811, + 1.8265636567999994, + 1.8538901124999996, + 1.8235801256000004, + 1.8497967247000004, + 1.6726760564, + 1.7227043410999998, + 1.7222241386000006, + 1.695207043, + 1.6899995018, + 1.6973469602000004, + 4.790959539999999, + 1.6952565773999997, + 1.5947500440000002, + 1.6811581225000003, + 1.6835030576999999, + 1.6910777988999997, + 1.6342058441000005, + 1.6431850778999997, + 1.4660311184000006, + 1.4880768224999996, + 1.500463188999999, + 1.4779990783999997, + 1.4809949429999996, + 1.49688234464, + 1.4875429961999997, + 1.4823802500000003, + 1.4848673826000003, + 1.511837515800001, + 1.4824166543, + 1.4810998508000004, + 1.4759444024899995, + 1.4369711175400006, + 1.3056555572000006, + 1.3242678026999994, + 1.3096710879999998, + 1.3355833266, + 1.3397994366, + 1.3391668224000002, + 1.3051209590999997, + 1.2909121593700001, + 1.2927655939000002, + 1.2999340349999997, + 1.3366654098999997, + 1.3345807929, + 1.2819912451000002, + 1.3369742827000002, + 1.2007880318999997, + 1.1987213295000003, + 1.1632367739000005, + 1.1505474958999995, + 1.1552908245000002, + 1.1561684773499996, + 1.1415805390000004, + 1.1284300878000009, + 1.1224255110999999, + 1.1626409952, + 1.2042325226999993, + 1.1983541446, + 1.1606064645, + 1.1887887484, + 0.9590499412, + 0.9887458439000001, + 0.9886928808, + 9.72247, + 0.9910277539999998, + 9.699749999999998, + 0.9371061011, + 0.9877308416600001, + 10.9397, + 1.0008582911999995, + 1.0170647899999998, + 1.0080701116200004, + 1.0153530182000003, + 1.0180801939999997, + 0.8340984530000002, + 0.8086451060000001, + 0.7760931506, + 0.7770849245999998, + 0.7913264074, + 0.7970375332, + 0.7641518575000003, + 0.7735374688999997, + 0.7881740407000002, + 0.7871311750000002, + 0.7817104709, + 0.8240485545999999, + 0.7952570614000001, + 0.8190649991, + 0.6416569264, + 0.6710437797000001, + 0.6676252946000001, + 0.6537454886999998, + 0.5978068490999998, + 0.5964765181999998, + 0.5731984180400003, + 3.43113349, + 9.46365, + 4.05561155, + 0.663483865, + 0.6769123992, + 2.41939011, + 0.6339896879, + 0.5131013362000005, + 0.5140624935000001, + 0.43279392290000007, + 0.3866621308000001, + 0.42985201690000013, + 0.49941566080000005, + 0.4837346678000002, + 0.4607912049999999, + 0.45105617579999985, + 0.4660156632999999, + 0.4369632419999999, + 0.45597880170000005, + 0.45671559999000005, + 0.3918448281000001 + ] + }, + { + "label": "MPI_Recv", + "fill": false, + "backgroundColor": "rgb(114, 147, 203)", + "borderColor": "rgb(114, 147, 203)", + "pointHoverBackgroundColor": "rgb(134, 167, 223)", + "data": [ + 10.105570400000003, + 4.431866090000001, + 2.7580979521, + 8.368400000000001, + 3.9227497849999997, + 7.56007, + 7.70176, + 3.929750997, + 7.089049999999999, + 1.849551912, + 1.6591590780000003, + 7.56162, + 3.11787211, + 3.4229531230000005, + 7.3278099999999995, + 4.312922755, + 3.574078802, + 3.729283444, + 3.654466471, + 3.647999494, + 3.4696086990000006, + 3.352332181, + 3.2896301480000005, + 3.3364834730000004, + 2.2007643439999995, + 3.223702407, + 2.109234766, + 2.0561410810000003, + 3.6099995760000003, + 2.2381588846000002, + 2.2405158677, + 2.2489379250999995, + 3.1480644599999996, + 8.07916, + 2.1822535729699997, + 3.2156272500000003, + 7.33339, + 3.9428763100000004, + 4.23172842, + 6.8734, + 2.09194487, + 2.6895262549999996, + 9.319899999999999, + 2.3538831100000004, + 1.1649111759999997, + 1.2051183379999997, + 3.7470719499999996, + 1.275280823, + 2.58420554, + 2.475171007, + 2.6407188419999996, + 2.5570702699999996, + 2.531519394, + 2.5177564689999996, + 2.4286978809999997, + 2.456330463, + 2.957979926, + 2.6178684880000005, + 2.683772874, + 2.8241988769999997, + 2.8540555279999995, + 2.7293904600000003, + 1.6247620401999998, + 2.8763587279999996, + 2.4639637039999998, + 4.551650070000001, + 2.558174449, + 2.406824856, + 2.49271297, + 2.18445203, + 2.424757648, + 2.4411430000000003, + 0.927964896, + 0.9999822949999999, + 4.73402952, + 1.024556865, + 2.034016969, + 2.388806271, + 2.3212025029999994, + 2.056341132, + 2.2913027529999996, + 2.1916735490000003, + 1.9394502340000002, + 2.352624545, + 2.8545338900000004, + 2.6265929670000006, + 2.6170786470000005, + 2.720095933, + 0.718011153, + 0.873106086, + 1.054528946, + 0.912442805, + 2.384670759, + 2.3941759830000002, + 2.575919634, + 2.416903176, + 0.602427613, + 0.6659070619999999, + 1.070742409, + 0.876223942, + 2.648201576, + 2.163525412, + 2.1137631899999993, + 2.583334076, + 2.3612119000000003, + 2.377098322, + 2.415830743, + 2.3385264250000004, + 2.4601456689999996, + 2.38976239, + 2.3344942000000004, + 2.453058338, + 2.2984326509999997, + 2.2667965049999994, + 2.2967845709999994, + 0.96237356789, + 2.383855236, + 0.9621321359, + 9.92065, + 2.33218653, + 1.0195271891000008, + 9.69408, + 2.1915493390000003, + 9.92014, + 11.0777, + 2.227454882, + 11.7324, + 2.15727832, + 2.541365316, + 10.1919, + 2.5395230179999997, + 2.4958636450000005, + 2.5367700509999995, + 2.327058, + 2.349724679, + 2.278860063, + 2.414609624, + 2.4019456019999996, + 2.066048104, + 2.273594051, + 2.6419091600000004, + 2.6256964329999994, + 2.5206565249999997, + 2.502062144, + 2.6292251949999996, + 2.501324844, + 2.43084382, + 0.6087198676000002, + 0.6665227194000002, + 0.6025374388000001, + 4.480335080000001, + 9.28911, + 0.6351202307000001, + 2.192245349, + 14.012099999999998, + 2.06957236, + 2.57886215, + 12.1938, + 4.67673524, + 2.3354031479999997, + 0.588236722, + 0.623286939, + 0.703138653, + 0.600845663, + 1.6947072150000002, + 1.743978198, + 2.0474667940000004, + 2.012197495 + ] + }, + { + "label": "MPI_Bcast", + "fill": false, + "backgroundColor": "rgb(171, 104, 87)", + "borderColor": "rgb(171, 104, 87)", + "pointHoverBackgroundColor": "rgb(191, 124, 107)", + "data": [ + 0.0052310175, + 0.00050354, + 4.367979538, + 4.396938985000001, + 0.0001115, + 3.98522018, + 3.762930883, + 0.00025119, + 1.8412574600000002, + 0.00053711, + 0.00051689, + 1.6762449480000001, + 9.66355, + 0.00046206, + 4.234479059, + 0.00025157, + 0.00029984, + 7.30854, + 0.00062136, + 0.00060518, + 0.0002529, + 0.00026579, + 0.00044916, + 0.00044479, + 0.00030518, + 0.00077991, + 0.00066233, + 0.00065841, + 0.00028208, + 3.592004182, + 3.732799995, + 3.526158955, + 3.219084959000001, + 3.2131903899999994, + 3.2747764480000003, + 3.1770171609999998, + 1.5460921520000002, + 1.0874039089999998, + 0.971850271, + 1.200696235, + 2.263381855, + 0.00062475, + 3.6240317029999995, + 3.592037353, + 3.1394872499999997, + 8.54022, + 1.239900144, + 0.00028323, + 0.00030332, + 4.38441822, + 0.00075804, + 0.00075127, + 0.00028182, + 0.00083644, + 0.00044086, + 0.00043736, + 0.00029013, + 0.00070751, + 0.0006442, + 0.00064032, + 0.00026866, + 0.00072901, + 2.7249199940000004, + 0.00039873, + 0.000282, + 2.577346817, + 0.00052282, + 0.00055507, + 2.5128679930000004, + 0.00077384, + 0.00032024, + 2.6454711879999997, + 0.00031951, + 0.00055517, + 0.916671723, + 0.00053184, + 0.00029333, + 4.31639518, + 0.00013854, + 0.00017855, + 0.00027773, + 0.00045916, + 0.00033092, + 0.00033041, + 0.00028593, + 0.0006666, + 0.0008559, + 0.00028949, + 0.00027712, + 0.00043966, + 0.00064977, + 0.0001616, + 0.00027806, + 0.00036952, + 0.00048896, + 0.00015189, + 0.00029453, + 0.00076004, + 0.00083852, + 0.00032138, + 0.00027395, + 0.0006453, + 0.00077976, + 0.00029863, + 0.00024668, + 0.00054419, + 0.0005727, + 0.00028961, + 0.00025036, + 0.00049933, + 0.00047297, + 0.00029672, + 0.0002609, + 0.00059312, + 0.00028468, + 2.639733074, + 0.00026839, + 2.391140912, + 2.182933619, + 0.00041519, + 2.3143703270000002, + 2.369298057, + 0.00077327, + 2.157093205, + 1.757179737, + 0.00049702, + 2.523864556, + 10.640139999999999, + 0.00027158, + 2.5556079110000005, + 10.14165, + 0.00042359, + 10.16822, + 0.00061859, + 0.00073961, + 11.2006, + 0.00024554, + 0.00054909, + 0.00068893, + 0.00028114, + 0.00025436, + 0.00050152, + 0.00060324, + 0.00029187, + 0.0002847, + 0.00062873, + 0.00032685, + 2.5059826819999995, + 0.711847378, + 0.497303132, + 0.602392493, + 0.46353483599999995, + 1.8029135580000002, + 0.00039966, + 2.0733641769999998, + 2.333580262, + 2.2981412700000003, + 2.2877184230000003, + 2.4445766129999997, + 2.57625701, + 10.386700000000001, + 4.56188034, + 4.50194959, + 10.5143, + 2.28074272, + 0.00062891, + 0.00094948, + 0.00044656 + ] + }, + { + "label": "MPI_Allreduce", + "fill": false, + "backgroundColor": "rgb(225, 151, 76)", + "borderColor": "rgb(225, 151, 76)", + "pointHoverBackgroundColor": "rgb(245, 171, 96)", + "data": [ + 4.3323892090000005, + 4.280651199999999, + 0.00054828, + 0.00054035, + 3.32109761, + 0.0005732, + 0.0002852, + 2.80006479, + 0.00028848, + 7.76839, + 4.10970675, + 0.00050641, + 0.00024753, + 4.83015002, + 0.0002579, + 7.8080099999999995, + 3.2042373900000003, + 0.00082382, + 7.25825, + 3.24284243, + 7.083810000000001, + 6.87462, + 4.57624217, + 7.491790000000001, + 6.9425799999999995, + 4.1988112399999995, + 7.02334, + 3.44392384, + 3.1641449199999996, + 0.00080609, + 0.00043243, + 0.00041726, + 0.00025613, + 0.00078601, + 0.00051418, + 0.00055311, + 0.00025118, + 0.00075214, + 0.00026812, + 0.00026199, + 0.00028591, + 9.4225, + 0.00051036, + 0.00049163, + 0.00027342, + 0.00049316, + 0.00029041, + 3.1174615, + 9.39444, + 0.00070113, + 4.662500769999999, + 9.05585, + 2.64865994, + 4.736507420000001, + 8.06452, + 3.98648129, + 3.9420795, + 7.98258, + 4.8130393399999996, + 3.21364837, + 9.7035, + 4.62276473, + 0.00041217, + 8.87369, + 2.74076287, + 0.00051028, + 8.63744, + 3.6065170799999997, + 0.00029549, + 10.3306, + 3.0555457699999997, + 0.00031539, + 7.39333, + 4.0115143, + 0.0005375, + 8.35867, + 2.58637543, + 0.00068061, + 9.027610000000001, + 3.97615114, + 3.0182409800000003, + 9.704239999999999, + 4.2566823099999995, + 3.1310014, + 8.58126, + 4.63036668, + 4.68543632, + 10.350760000000001, + 3.08640772, + 3.87982117, + 9.26509, + 3.34664071, + 2.56275299, + 9.979299999999999, + 5.12381244, + 3.4839705, + 9.36871, + 2.5265872, + 2.90593743, + 8.43851, + 3.3165284699999997, + 4.71088082, + 9.65127, + 3.27445935, + 3.23888566, + 9.89648, + 4.856760749999999, + 3.75525414, + 10.9927, + 4.7335009900000005, + 4.4279722800000005, + 11.823599999999999, + 2.95484217, + 3.93661264, + 9.54309, + 0.00044367, + 3.26806959, + 0.00062972, + 0.00083163, + 2.94333892, + 0.00024842, + 0.00055521, + 5.14077682, + 0.00027574, + 0.00025408, + 3.5709858100000003, + 0.00048815, + 0.0002955, + 2.97623725, + 0.00074014, + 0.00084345, + 3.2484538400000003, + 0.00025502, + 9.96779, + 4.63919926, + 0.00043708, + 11.2711, + 5.22135961, + 9.58165, + 4.48711753, + 3.40969689, + 10.466879999999998, + 10.60839, + 3.1017357399999996, + 10.955929999999999, + 10.45774, + 4.36813579, + 0.0004776, + 0.00026982, + 0.00063581, + 0.00097605, + 0.00044969, + 0.00023986, + 11.41694, + 0.00076022, + 0.00027241, + 0.00024873, + 0.00049322, + 0.00060205, + 0.00028102, + 0.00026604, + 0.00073598, + 0.0009844, + 0.00044898, + 0.00026171, + 4.57115677, + 11.7212, + 4.44579289 + ] + }, + { + "label": "MPI_Barrier", + "fill": false, + "backgroundColor": "rgb(132, 186, 91)", + "borderColor": "rgb(132, 186, 91)", + "pointHoverBackgroundColor": "rgb(152, 206, 111)", + "data": [ + 0.00021435, + 6.3563e-7, + 5.1345e-7, + 2.8706123000000003, + 5.4909e-7, + 5.9952e-7, + 4.38629548, + 7.5169e-7, + 3.9606e-7, + 4.26810508, + 3.7607e-7, + 3.4693e-7, + 1.97131514, + 3.8953e-7, + 4.5952e-7, + 2.4398924600000003, + 6.7169e-7, + 4.1736e-7, + 4.1191819, + 5.0302e-7, + 7.9951e-7, + 4.75169222, + 3.9823e-7, + 5.4344e-7, + 2.9649831599999996, + 5.4789e-7, + 6.1048e-7, + 4.77e-7, + 3.8389e-7, + 7.51818, + 4.4943491799999995, + 4.5213e-7, + 7.931309999999999, + 6.0952e-7, + 7.3735e-7, + 8.25826, + 4.474e-7, + 5.2915e-7, + 7.775810000000001, + 4.5086e-7, + 6.6255e-7, + 3.28919028, + 5.0169e-7, + 4.8777e-7, + 7.763380000000001, + 5.1301e-7, + 5.678e-7, + 8.24087, + 6.6699e-7, + 4.1175e-7, + 8.58888, + 4.1393e-7, + 4.3692e-7, + 8.5648, + 4.5475e-7, + 6.3692e-7, + 7.673830000000001, + 4.3954e-7, + 5.6782e-7, + 9.4934, + 5.5779e-7, + 4.9607e-7, + 8.61864, + 6.1694e-7, + 4.5387e-7, + 8.92821, + 0.0000010108, + 6.3865e-7, + 10.059, + 4.4827e-7, + 5.7956e-7, + 9.98809, + 5.6041e-7, + 4.165e-7, + 8.505270000000001, + 4.8173e-7, + 4.1217e-7, + 9.40072, + 8.0997e-7, + 5.3868e-7, + 9.950800000000001, + 5.9258e-7, + 5.3823e-7, + 11.1056, + 5.7172e-7, + 6.0043e-7, + 9.23352, + 6.3867e-7, + 6.03e-7, + 9.68378, + 5.7867e-7, + 4.9781e-7, + 10.56023, + 5.4171e-7, + 6.3519e-7, + 10.3344, + 6.2263e-7, + 5.5741e-7, + 9.44588, + 7.1742e-7, + 6.248e-7, + 9.3608, + 8.3045e-7, + 4.8522e-7, + 10.5104, + 5.9564e-7, + 5.426e-7, + 9.342179999999999, + 6.2515e-7, + 3.8302e-7, + 9.9303, + 5.8387e-7, + 6.8388e-7, + 9.87902, + 5.5648e-7, + 3.83191726, + 9.800650000000001, + 5.8998e-7, + 4.2359315, + 7.3259e-7, + 5.9739e-7, + 5.17407246, + 6.1565e-7, + 7.3478e-7, + 2.3846601899999995, + 7.2084e-7, + 5.4998e-7, + 2.79014858, + 4.3913e-7, + 4.4522e-7, + 4.28756263, + 6.0175e-7, + 4.8694e-7, + 4.4372669799999995, + 6.5041e-7, + 7.9909e-7, + 2.84761992, + 6.6088e-7, + 7.7477e-7, + 6.761e-7, + 5.6821e-7, + 6.8125e-7, + 4.27082661, + 7.5692e-7, + 4.4912e-7, + 4.44405984, + 7.1128e-7, + 10.873280000000001, + 3.4921868099999998, + 4.6697e-7, + 9.45042, + 4.6915e-7, + 5.8084e-7, + 4.3042e-7, + 4.2346e-7, + 4.7346e-7, + 11.6466, + 5.2995e-7, + 9.6776e-7, + 12.7298, + 4.5002e-7, + 6.4175e-7, + 11.420630000000001, + 5.0219e-7, + 4.578e-7, + 12.2743, + 4.5997e-7, + 4.3084e-7 + ] + }, + { + "label": "MPI_Comm_rank", + "fill": false, + "backgroundColor": "rgb(128, 133, 133)", + "borderColor": "rgb(128, 133, 133)", + "pointHoverBackgroundColor": "rgb(148, 153, 153)", + "data": [ + 6.6259e-7, + 7.84143, + 5.8129e-7, + 5.6086e-7, + 7.164130000000001, + 4.0607e-7, + 4.9954e-7, + 8.41638, + 4.3605e-7, + 3.6128e-7, + 7.8031999999999995, + 5.5996e-7, + 5.6603e-7, + 10.25059, + 1.7781e-7, + 4.4168e-7, + 7.1289, + 3.778e-7, + 4.9952e-7, + 7.205870000000001, + 2.1215e-7, + 6.0561e-7, + 7.363449999999999, + 1.852e-7, + 5.0571e-7, + 7.71727, + 3.1567e-7, + 2.7742e-7, + 8.22322, + 6.6473e-7, + 5.1605e-7, + 8.295119999999999, + 7.7471e-7, + 4.33433471, + 7.9167000000000005, + 4.178e-7, + 3.48496994, + 7.567730000000001, + 5.4175e-7, + 3.54780006, + 1.7606e-7, + 5.3778e-7, + 3.01225023, + 3.7257e-7, + 3.9475e-7, + 3.7398020400000003, + 2.2477e-7, + 4.1039e-7, + 2.93326247, + 2.2174e-7, + 5.2438e-7, + 3.50288538, + 2.4303e-7, + 6.8605e-7, + 5.367596420000001, + 2.9651e-7, + 4.1217e-7, + 4.97832827, + 3.9955e-7, + 7.5258e-7, + 3.06896289, + 2.3868e-7, + 5.1956e-7, + 3.9825325300000003, + 3.7128e-7, + 6.8214e-7, + 5.27524267, + 2.9737e-7, + 6.6088e-7, + 3.6749827, + 2.6391e-7, + 5.7304e-7, + 1.7085e-7, + 1.8912e-7, + 5.3173e-7, + 2.2956e-7, + 2.5521e-7, + 3.1303e-7, + 4.3258e-7, + 2.5782e-7, + 0.0000012065, + 4.7346e-7, + 4.6563e-7, + 5.7259e-7, + 2.6259e-7, + 1.5217e-7, + 4.7564e-7, + 1.8608e-7, + 4.1824e-7, + 6.4215e-7, + 3.665e-7, + 2.8129e-7, + 6.0604e-7, + 2.4782e-7, + 4.1824e-7, + 4.8561e-7, + 3.9567e-7, + 4.022e-7, + 7.2915e-7, + 3.6262e-7, + 6.3045e-7, + 5.3478e-7, + 2.2391e-7, + 2.5827e-7, + 7.8474e-7, + 2.0216e-7, + 2.852e-7, + 5.9433e-7, + 3.1824e-7, + 2.6736e-7, + 4.0127e-7, + 4.4735e-7, + 4.0868e-7, + 5.7781e-7, + 4.0693e-7, + 7.0952e-7, + 5.1693e-7, + 2.9695e-7, + 6.1822e-7, + 10.8844, + 4.7e-7, + 5.5043e-7, + 9.45919, + 5.0913e-7, + 8.03e-7, + 11.3853, + 3.2564e-7, + 6.4779e-7, + 10.435490000000001, + 3.1826e-7, + 9.0044e-7, + 10.184890000000001, + 2.1781e-7, + 6.639e-7, + 10.23795, + 2.7347e-7, + 7.0391e-7, + 9.972100000000001, + 5.0217e-7, + 3.4391e-7, + 11.189020000000001, + 3.2432e-7, + 8.569e-7, + 10.723480000000002, + 3.3608e-7, + 0.0000011495, + 10.55274, + 6.2346e-7, + 5.4916e-7, + 9.85304, + 4.8438e-7, + 3.65501993, + 11.6589, + 4.0999e-7, + 3.352e-7, + 3.4564e-7, + 7.7864e-7, + 4.06839716, + 5.3909e-7, + 5.0258e-7, + 3.09642443, + 2.6218e-7, + 4.3782e-7, + 3.0584679799999996, + 2.6303e-7, + 4.2346e-7, + 4.38476499, + 2.9172e-7 + ] + }, + { + "label": "MPI_Comm_size", + "fill": false, + "backgroundColor": "rgb(144, 103, 167)", + "borderColor": "rgb(144, 103, 167)", + "pointHoverBackgroundColor": "rgb(164, 123, 187)", + "data": [ + 4.052e-7, + 3.2564e-7, + 3.916047, + 3.5347e-7, + 4.8692e-7, + 4.761829950000001, + 4.7998e-7, + 5.0475e-7, + 2.72295597, + 4.1605e-7, + 3.4127e-7, + 3.19409782, + 2.5172e-7, + 3.5691e-7, + 2.9108972200000003, + 1.978e-7, + 2.8781e-7, + 4.80658223, + 3.1172e-7, + 3.1388e-7, + 3.77726349, + 2.3781e-7, + 3.6389e-7, + 3.2964062, + 3.2698e-7, + 3.3306e-7, + 4.5398609, + 7.008959999999999, + 1.5869e-7, + 4.6953e-7, + 4.152e-7, + 2.8477e-7, + 4.7822e-7, + 2.4955e-7, + 6.0604e-7, + 2.039e-7, + 3.0002e-7, + 2.3653e-7, + 2.6391e-7, + 1.8523e-7, + 9.17591, + 2.6432e-7, + 2.039e-7, + 8.85154, + 1.5867e-7, + 2.9564e-7, + 8.25312, + 2.326e-7, + 6.7872e-7, + 8.86029, + 3.4654e-7, + 2.6914e-7, + 9.738299999999999, + 2.0913e-7, + 1.7608e-7, + 7.616980000000001, + 3.7825e-7, + 3.852e-7, + 9.095429999999999, + 4.6651e-7, + 2.6042e-7, + 8.8546, + 1.9434e-7, + 4.6521e-7, + 9.8003, + 3.8302e-7, + 4.6648e-7, + 8.969730000000002, + 1.7174e-7, + 2.2609e-7, + 10.1821, + 2.1652e-7, + 3.423958, + 8.43365, + 1.9303e-7, + 3.5225178999999995, + 10.2074, + 2.1825e-7, + 4.734845269999999, + 8.67246, + 5.2953e-7, + 4.71416837, + 9.761420000000001, + 2.8347e-7, + 4.29391485, + 8.84321, + 2.5563e-7, + 3.1767043300000006, + 8.911480000000001, + 2.2521e-7, + 4.16638513, + 7.990310000000001, + 2.5261e-7, + 3.93851851, + 9.933219999999999, + 3.3781e-7, + 2.7583333899999998, + 11.0799, + 3.8261e-7, + 3.23240042, + 9.898069999999999, + 2.6783e-7, + 4.3306657699999995, + 10.7303, + 5.1259e-7, + 4.0595482, + 9.25866, + 3.1825e-7, + 2.80489489, + 9.597660000000001, + 3.1084e-7, + 3.6305383300000003, + 10.38894, + 3.8129e-7, + 4.76513268, + 3.5434e-7, + 2.7346e-7, + 4.62481364, + 2.3781e-7, + 2.826e-7, + 2.8956761699999998, + 3.0392e-7, + 2.2913e-7, + 3.85153702, + 4.0737e-7, + 2.3174e-7, + 2.8045506, + 2.1391e-7, + 2.7913e-7, + 4.29654914, + 5.3218e-7, + 2.6739e-7, + 3.7210613200000004, + 5.1824e-7, + 2.5694e-7, + 3.0407218099999995, + 3.2522e-7, + 2.6391e-7, + 4.60145009, + 9.37883, + 3.3258e-7, + 4.74654202, + 4.6736e-7, + 3.991e-7, + 3.38686912, + 2.8477e-7, + 2.4434e-7, + 2.4043e-7, + 1.8523e-7, + 2.8174e-7, + 2.5306e-7, + 1.8043e-7, + 3.452e-7, + 3.1895866, + 3.41072069, + 12.913300000000001, + 3.1128e-7, + 3.1955e-7, + 11.9014, + 2.9129e-7, + 2.0827e-7, + 11.189990000000002, + 1.8827e-7, + 1.6914e-7, + 12.556, + 4.4171e-7, + 2.5434e-7, + 14.2655 + ] + } + ] + }, + "balanceDataSorted": { "labels": [ "13", "167", diff --git a/ipm_raw/sin1008_parsed.json b/ipm_raw/sin1008_parsed.json index 0af4bbb..be47a44 100644 --- a/ipm_raw/sin1008_parsed.json +++ b/ipm_raw/sin1008_parsed.json @@ -7,6 +7,7 @@ "ntasks": 168, "nhosts": 42, "totalWallTime": 8018.148767999999, + "cmdline": "../bin/snap sin1008 sin1008.out ", "env": [ "OMPI_MCA_mpi_paffinity_alone=0", "OMPI_CC=/usr/projects/hpcsoft/toss2.1/common/intel/2013.5.192/composer_xe_2013.5.192/bin/intel64/icc", @@ -560,54 +561,54 @@ }, "mpiCallsByTask": [ { - "nr": "64", - "ttot": 40.72801923133, + "nr": "0", + "ttot": 35.296470437109996, "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 21.890538384, + "count": 126948, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Allreduce", - "ttot": 1.197284, + "ttot": 3.3136606000000004, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00042909, + "ttot": 0.00036717, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Send", - "ttot": 18.86193, - "count": 253056, + "ttot": 10.091769999999999, + "count": 126528, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_rank", - "ttot": 7.5863e-7, + "ttot": 6.1913e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 4.817e-7, + "ttot": 6.4998e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, - { - "call": "MPI_Recv", - "ttot": 20.0115, - "count": 253056, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Bcast", - "ttot": 0.656874901, + "ttot": 0.000133014, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -615,54 +616,54 @@ ] }, { - "nr": "62", - "ttot": 39.79766144159, + "nr": "1", + "ttot": 34.725057167121996, "mpiCalls": [ { "call": "MPI_Allreduce", - "ttot": 1.2958349999999998, + "ttot": 3.234537, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00057933, + "ttot": 0.00068561, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Send", - "ttot": 18.621480000000002, - "count": 253056, + "ttot": 11.536629999999999, + "count": 189792, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, - { - "call": "MPI_Recv", - "ttot": 19.222, - "count": 253056, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Comm_rank", - "ttot": 0.00000119998, + "ttot": 5.53472e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, + { + "call": "MPI_Recv", + "ttot": 19.3021, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Comm_size", - "ttot": 2.9261e-7, + "ttot": 3.6565e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.657765619, + "ttot": 0.6511036379999999, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -670,54 +671,54 @@ ] }, { - "nr": "65", - "ttot": 39.64370926046001, + "nr": "2", + "ttot": 35.855588650477, "mpiCalls": [ { "call": "MPI_Allreduce", - "ttot": 1.1295600000000001, + "ttot": 3.270632, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.0007339, + "ttot": 0.00048222, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, - { - "call": "MPI_Send", - "ttot": 18.301119999999997, - "count": 253056, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Recv", - "ttot": 19.5557, - "count": 253056, + "ttot": 19.9393, + "count": 189792, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 6.2863e-7, + "ttot": 9.247569999999999e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 4.0083e-7, + "ttot": 5.9172e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, + { + "call": "MPI_Send", + "ttot": 11.9883, + "count": 189792, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Bcast", - "ttot": 0.6565943310000001, + "ttot": 0.656872914, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -725,54 +726,54 @@ ] }, { - "nr": "104", - "ttot": 39.25852508754, + "nr": "3", + "ttot": 35.92050791261399, "mpiCalls": [ { "call": "MPI_Allreduce", - "ttot": 0.97889, + "ttot": 3.208319, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00032564, + "ttot": 0.00046421, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, + { + "call": "MPI_Recv", + "ttot": 20.4326, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Send", - "ttot": 17.97911, - "count": 253056, + "ttot": 11.62226, + "count": 189792, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_rank", - "ttot": 8.4427e-7, + "ttot": 6.93924e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, - { - "call": "MPI_Recv", - "ttot": 19.6434, - "count": 253056, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Comm_size", - "ttot": 3.1127e-7, + "ttot": 4.7869e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.6567982920000001, + "ttot": 0.6568635300000001, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -780,54 +781,54 @@ ] }, { - "nr": "60", - "ttot": 38.83962814172101, + "nr": "4", + "ttot": 30.741820180239998, "mpiCalls": [ { "call": "MPI_Comm_rank", - "ttot": 5.10001e-7, + "ttot": 6.187e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 1.3961759999999999, + "ttot": 2.9228104000000004, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00033585, + "ttot": 0.000085015, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, + { + "call": "MPI_Send", + "ttot": 10.35025, + "count": 189792, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Recv", - "ttot": 20.5853, - "count": 253056, + "ttot": 16.814700000000002, + "count": 189792, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_size", - "ttot": 4.1172e-7, + "ttot": 4.5654e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, - { - "call": "MPI_Send", - "ttot": 16.20053, - "count": 253056, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Bcast", - "ttot": 0.6572853700000001, + "ttot": 0.65397369, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -835,54 +836,54 @@ ] }, { - "nr": "66", - "ttot": 38.69881164807, + "nr": "5", + "ttot": 32.06317538264, "mpiCalls": [ - { - "call": "MPI_Comm_rank", - "ttot": 6.3428e-7, - "count": 4, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" - }, { "call": "MPI_Allreduce", - "ttot": 1.099414, + "ttot": 2.8720523, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00065235, + "ttot": 0.00067057, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Recv", - "ttot": 22.7328, - "count": 253056, + "ttot": 17.1937, + "count": 189792, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, + { + "call": "MPI_Comm_rank", + "ttot": 6.221999999999999e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, { "call": "MPI_Comm_size", - "ttot": 4.6779e-7, + "ttot": 5.0044e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Send", - "ttot": 14.20964, - "count": 253056, + "ttot": 11.34264, + "count": 189792, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Bcast", - "ttot": 0.656304196, + "ttot": 0.6541113900000001, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -890,54 +891,54 @@ ] }, { - "nr": "105", - "ttot": 38.667020802878994, + "nr": "6", + "ttot": 33.06507577696, "mpiCalls": [ - { - "call": "MPI_Recv", - "ttot": 18.542, - "count": 253056, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, - { - "call": "MPI_Comm_rank", - "ttot": 5.934089999999999e-7, - "count": 4, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" - }, { "call": "MPI_Allreduce", - "ttot": 0.911125, + "ttot": 2.8183042, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00046579, + "ttot": 0.00038811, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Comm_size", - "ttot": 5.9647e-7, - "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" + "call": "MPI_Recv", + "ttot": 17.1773, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Send", - "ttot": 18.5563, - "count": 253056, + "ttot": 12.41479, + "count": 189792, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, + { + "call": "MPI_Comm_rank", + "ttot": 5.9435e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.0261e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, { "call": "MPI_Bcast", - "ttot": 0.657128823, + "ttot": 0.65429257, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -945,54 +946,54 @@ ] }, { - "nr": "63", - "ttot": 38.633645866840006, + "nr": "7", + "ttot": 36.12870932957, "mpiCalls": [ { "call": "MPI_Comm_rank", - "ttot": 5.7737e-7, + "ttot": 6.534799999999999e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 1.136386, + "ttot": 2.929862, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00059333, + "ttot": 0.00036469, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, + { + "call": "MPI_Send", + "ttot": 13.24723, + "count": 189792, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Recv", - "ttot": 18.6284, - "count": 253056, + "ttot": 19.2952, + "count": 189792, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_size", - "ttot": 2.8347e-7, + "ttot": 3.3609e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, - { - "call": "MPI_Send", - "ttot": 18.212429999999998, - "count": 253056, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Bcast", - "ttot": 0.655835676, + "ttot": 0.65605165, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -1000,54 +1001,54 @@ ] }, { - "nr": "61", - "ttot": 38.33088070312001, + "nr": "8", + "ttot": 24.840179401472, "mpiCalls": [ + { + "call": "MPI_Send", + "ttot": 9.2573, + "count": 189792, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Allreduce", - "ttot": 1.2627490000000001, + "ttot": 2.5650394000000003, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00094077, + "ttot": 0.00039233, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Send", - "ttot": 17.116509999999998, - "count": 253056, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "call": "MPI_Recv", + "ttot": 12.3647, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 0.00000518204, + "ttot": 5.52112e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 3.6608e-7, + "ttot": 3.6736e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, - { - "call": "MPI_Recv", - "ttot": 19.2947, - "count": 253056, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Bcast", - "ttot": 0.655975385, + "ttot": 0.652746752, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -1055,54 +1056,54 @@ ] }, { - "nr": "67", - "ttot": 38.132511184429994, + "nr": "9", + "ttot": 28.961937120400002, "mpiCalls": [ { "call": "MPI_Allreduce", - "ttot": 1.067193, + "ttot": 2.5049261, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00063217, + "ttot": 0.00063345, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, + { + "call": "MPI_Recv", + "ttot": 13.0674, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Send", - "ttot": 14.74154, - "count": 253056, + "ttot": 12.7363, + "count": 189792, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_rank", - "ttot": 6.721e-7, + "ttot": 8.0297e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 5.2733e-7, + "ttot": 4.9343e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, - { - "call": "MPI_Recv", - "ttot": 21.6665, - "count": 253056, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Bcast", - "ttot": 0.656644815, + "ttot": 0.6526762740000001, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -1110,54 +1111,54 @@ ] }, { - "nr": "80", - "ttot": 37.946931274941996, + "nr": "10", + "ttot": 27.316664589089996, "mpiCalls": [ + { + "call": "MPI_Send", + "ttot": 11.98198, + "count": 189792, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Comm_rank", - "ttot": 6.95562e-7, + "ttot": 6.3647e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 1.029619, + "ttot": 2.4534445, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.0003049, + "ttot": 0.00052324, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, - { - "call": "MPI_Send", - "ttot": 15.643550000000001, - "count": 253056, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Recv", - "ttot": 20.616699999999998, - "count": 253056, + "ttot": 12.228100000000001, + "count": 189792, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_size", - "ttot": 3.5258e-7, + "ttot": 4.1562e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.6567563268, + "ttot": 0.6526157969999999, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -1165,54 +1166,54 @@ ] }, { - "nr": "134", - "ttot": 37.695410270396, + "nr": "11", + "ttot": 26.22384551982, "mpiCalls": [ { "call": "MPI_Send", - "ttot": 15.877369999999999, - "count": 253056, + "ttot": 10.49761, + "count": 189792, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Allreduce", - "ttot": 0.760051, + "ttot": 2.4219849, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.000872, + "ttot": 0.00049271, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, + { + "call": "MPI_Recv", + "ttot": 12.651299999999999, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Comm_rank", - "ttot": 7.70416e-7, + "ttot": 8.256e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, - { - "call": "MPI_Recv", - "ttot": 20.39985, - "count": 253056, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Comm_size", - "ttot": 3.6998e-7, + "ttot": 3.8822e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.65726613, + "ttot": 0.652456696, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -1220,54 +1221,54 @@ ] }, { - "nr": "107", - "ttot": 37.640968691078, + "nr": "12", + "ttot": 29.250660243869994, "mpiCalls": [ { "call": "MPI_Allreduce", - "ttot": 0.7267308, + "ttot": 2.4248206999999997, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00044765, + "ttot": 0.0003824, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, + { + "call": "MPI_Recv", + "ttot": 16.639400000000002, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Send", - "ttot": 17.48666, - "count": 253056, + "ttot": 9.53392, + "count": 189792, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_rank", - "ttot": 8.864279999999999e-7, + "ttot": 6.4779e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, - { - "call": "MPI_Recv", - "ttot": 18.7716, - "count": 253056, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Comm_size", - "ttot": 5.6865e-7, + "ttot": 2.7608e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.6555287860000001, + "ttot": 0.65213622, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -1275,54 +1276,54 @@ ] }, { - "nr": "148", - "ttot": 37.518957977069, + "nr": "13", + "ttot": 33.619169512819, "mpiCalls": [ + { + "call": "MPI_Send", + "ttot": 9.88437, + "count": 126528, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.07789e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, { "call": "MPI_Allreduce", - "ttot": 0.6427, + "ttot": 2.3777448, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00032031, + "ttot": 0.00066732, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Recv", - "ttot": 21.05886, - "count": 253056, + "ttot": 20.7028, + "count": 126528, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, - { - "call": "MPI_Comm_rank", - "ttot": 7.426089999999999e-7, - "count": 4, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" - }, - { - "call": "MPI_Send", - "ttot": 15.16007, - "count": 253056, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Comm_size", - "ttot": 4.4046e-7, + "ttot": 4.1303e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.657006484, + "ttot": 0.653586372, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -1330,54 +1331,54 @@ ] }, { - "nr": "150", - "ttot": 37.459177337419995, + "nr": "14", + "ttot": 29.488137238203, "mpiCalls": [ { - "call": "MPI_Comm_rank", - "ttot": 7.8393e-7, - "count": 4, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "call": "MPI_Send", + "ttot": 8.08203, + "count": 189792, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Allreduce", - "ttot": 0.575936, + "ttot": 2.075279, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.0011637, + "ttot": 0.00050123, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, - { - "call": "MPI_Send", - "ttot": 14.98688, - "count": 253056, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Recv", - "ttot": 21.2379, - "count": 253056, + "ttot": 18.677590000000002, + "count": 189792, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, + { + "call": "MPI_Comm_rank", + "ttot": 5.85613e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, { "call": "MPI_Comm_size", - "ttot": 3.1349e-7, + "ttot": 3.7259e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.6572965399999999, + "ttot": 0.65273605, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -1385,54 +1386,54 @@ ] }, { - "nr": "106", - "ttot": 37.42742733189999, + "nr": "15", + "ttot": 30.771275732565, "mpiCalls": [ - { - "call": "MPI_Allreduce", - "ttot": 0.768979, - "count": 71, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" - }, { "call": "MPI_Recv", - "ttot": 17.7824, + "ttot": 17.665779999999998, "count": 253056, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, + { + "call": "MPI_Allreduce", + "ttot": 1.9747186, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, { "call": "MPI_Barrier", - "ttot": 0.0008583, + "ttot": 0.00049955, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, - { - "call": "MPI_Send", - "ttot": 18.21964, - "count": 253056, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Comm_rank", - "ttot": 6.4081e-7, + "ttot": 5.31735e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, + { + "call": "MPI_Send", + "ttot": 10.47843, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Comm_size", - "ttot": 3.6909e-7, + "ttot": 2.7783e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.655549022, + "ttot": 0.651846773, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -1440,54 +1441,54 @@ ] }, { - "nr": "19", - "ttot": 37.39449608736, + "nr": "16", + "ttot": 35.03246009422999, "mpiCalls": [ { "call": "MPI_Send", - "ttot": 14.97953, + "ttot": 12.90232, "count": 253056, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Allreduce", - "ttot": 2.027057, + "ttot": 2.1075132, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00062267, + "ttot": 0.00040097, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Comm_rank", - "ttot": 8.4521e-7, + "ttot": 6.4868e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Recv", - "ttot": 19.73022, + "ttot": 19.366909999999997, "count": 253056, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_size", - "ttot": 5.2215e-7, + "ttot": 3.3955e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.65706505, + "ttot": 0.655314936, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -1495,54 +1496,54 @@ ] }, { - "nr": "128", - "ttot": 37.37039987649601, + "nr": "17", + "ttot": 36.170811260189005, "mpiCalls": [ { "call": "MPI_Send", - "ttot": 16.03452, + "ttot": 13.137739999999999, "count": 253056, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Allreduce", - "ttot": 1.034277, + "ttot": 2.146522, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00041771, + "ttot": 0.00086389, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, - { - "call": "MPI_Comm_rank", - "ttot": 6.13876e-7, - "count": 4, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" - }, { "call": "MPI_Recv", - "ttot": 19.64568, + "ttot": 20.2287, "count": 253056, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, + { + "call": "MPI_Comm_rank", + "ttot": 5.17809e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, { "call": "MPI_Comm_size", - "ttot": 4.1562e-7, + "ttot": 3.4738e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.655504137, + "ttot": 0.656984505, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -1550,109 +1551,54 @@ ] }, { - "nr": "149", - "ttot": 37.195689837260005, + "nr": "18", + "ttot": 35.30379154123201, "mpiCalls": [ - { - "call": "MPI_Allreduce", - "ttot": 0.646332, - "count": 71, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" - }, - { - "call": "MPI_Send", - "ttot": 14.884830000000001, - "count": 253056, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, - { - "call": "MPI_Barrier", - "ttot": 0.00067051, - "count": 2, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" - }, { "call": "MPI_Comm_rank", - "ttot": 7.6612e-7, + "ttot": 5.44322e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, - { - "call": "MPI_Comm_size", - "ttot": 3.9914e-7, - "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" - }, { "call": "MPI_Recv", - "ttot": 21.00644, + "ttot": 20.74618, "count": 253056, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, - { - "call": "MPI_Bcast", - "ttot": 0.657416162, - "count": 10, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" - } - ] - }, - { - "nr": "159", - "ttot": 37.17304893617999, - "mpiCalls": [ { "call": "MPI_Allreduce", - "ttot": 0.809231, + "ttot": 1.9903485, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00065031, + "ttot": 0.00061757, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Send", - "ttot": 13.677189999999998, - "count": 189792, + "ttot": 11.91147, + "count": 253056, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, - { - "call": "MPI_Recv", - "ttot": 22.0289, - "count": 189792, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, - { - "call": "MPI_Comm_rank", - "ttot": 8.472999999999999e-7, - "count": 4, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" - }, { "call": "MPI_Comm_size", - "ttot": 4.7388e-7, + "ttot": 2.7391e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.657076305, + "ttot": 0.655174653, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -1660,54 +1606,54 @@ ] }, { - "nr": "110", - "ttot": 37.1123184921, + "nr": "19", + "ttot": 37.39449608736, "mpiCalls": [ + { + "call": "MPI_Send", + "ttot": 14.97953, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Allreduce", - "ttot": 0.7054750000000001, + "ttot": 2.027057, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.0006072, + "ttot": 0.00062267, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, - { - "call": "MPI_Send", - "ttot": 15.2996, - "count": 253056, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Comm_rank", - "ttot": 0.00000104612, + "ttot": 8.4521e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Recv", - "ttot": 20.4494, + "ttot": 19.73022, "count": 253056, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_size", - "ttot": 7.4698e-7, + "ttot": 5.2215e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.6572344990000001, + "ttot": 0.65706505, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -1715,54 +1661,54 @@ ] }, { - "nr": "162", - "ttot": 37.08148220349, + "nr": "20", + "ttot": 27.38664781955, "mpiCalls": [ - { - "call": "MPI_Send", - "ttot": 14.56548, - "count": 189792, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Allreduce", - "ttot": 0.629005, + "ttot": 1.5949525, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, + { + "call": "MPI_Send", + "ttot": 11.29334, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Barrier", - "ttot": 0.00090964, + "ttot": 0.00037983, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Recv", - "ttot": 21.2294, - "count": 189792, + "ttot": 13.845759999999999, + "count": 253056, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 8.9122e-7, + "ttot": 5.7652e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 8.0427e-7, + "ttot": 3.0303e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.656685868, + "ttot": 0.65221461, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -1770,54 +1716,54 @@ ] }, { - "nr": "52", - "ttot": 36.84036883601, + "nr": "21", + "ttot": 27.13753487437, "mpiCalls": [ { "call": "MPI_Comm_rank", - "ttot": 6.8743e-7, + "ttot": 6.739e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, + { + "call": "MPI_Recv", + "ttot": 12.78227, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Allreduce", - "ttot": 1.026635, + "ttot": 1.5522327, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00037665, + "ttot": 0.00084617, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Send", - "ttot": 14.612660000000002, + "ttot": 12.149829999999998, "count": 253056, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 3.5958e-7, + "ttot": 3.5347e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, - { - "call": "MPI_Recv", - "ttot": 20.5451, - "count": 253056, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Bcast", - "ttot": 0.655596139, + "ttot": 0.652354977, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -1825,109 +1771,54 @@ ] }, { - "nr": "156", - "ttot": 36.833862926167996, + "nr": "22", + "ttot": 31.17472474038, "mpiCalls": [ + { + "call": "MPI_Send", + "ttot": 13.466350000000002, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Allreduce", - "ttot": 0.937169, + "ttot": 1.5321559, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00030693, + "ttot": 0.00071306, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, - { - "call": "MPI_Send", - "ttot": 15.148089999999998, - "count": 189792, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, - { - "call": "MPI_Recv", - "ttot": 20.0922, - "count": 189792, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Comm_rank", - "ttot": 6.11268e-7, + "ttot": 5.4912e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 2.539e-7, + "ttot": 2.2826e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, - { - "call": "MPI_Bcast", - "ttot": 0.656096131, - "count": 10, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" - } - ] - }, - { - "nr": "51", - "ttot": 36.550032899443, - "mpiCalls": [ - { - "call": "MPI_Allreduce", - "ttot": 1.079872, - "count": 71, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" - }, - { - "call": "MPI_Barrier", - "ttot": 0.0006018, - "count": 2, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" - }, { "call": "MPI_Recv", - "ttot": 20.6325, + "ttot": 15.523340000000001, "count": 253056, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, - { - "call": "MPI_Comm_rank", - "ttot": 5.564829999999999e-7, - "count": 4, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" - }, - { - "call": "MPI_Send", - "ttot": 14.182159999999998, - "count": 253056, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, - { - "call": "MPI_Comm_size", - "ttot": 2.7736e-7, - "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" - }, { "call": "MPI_Bcast", - "ttot": 0.6548982656, + "ttot": 0.652165003, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -1935,54 +1826,54 @@ ] }, { - "nr": "157", - "ttot": 36.401604602167005, + "nr": "23", + "ttot": 28.601872105213005, "mpiCalls": [ { "call": "MPI_Allreduce", - "ttot": 0.801302, + "ttot": 1.4699453999999998, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, + { + "call": "MPI_Send", + "ttot": 13.13002, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Barrier", - "ttot": 0.00058587, + "ttot": 0.00070023, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Recv", - "ttot": 20.0197, - "count": 189792, + "ttot": 13.34911, + "count": 253056, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 7.21277e-7, + "ttot": 6.23043e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, - { - "call": "MPI_Send", - "ttot": 14.92472, - "count": 189792, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Comm_size", - "ttot": 2.8389e-7, + "ttot": 2.6217e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.655295727, + "ttot": 0.65209559, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -1990,54 +1881,54 @@ ] }, { - "nr": "130", - "ttot": 36.283174141903004, + "nr": "24", + "ttot": 27.508776617753995, "mpiCalls": [ - { - "call": "MPI_Recv", - "ttot": 20.11612, - "count": 253056, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Comm_rank", - "ttot": 5.25193e-7, + "ttot": 8.70824e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 0.8976060000000001, + "ttot": 1.3867216999999998, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, + { + "call": "MPI_Recv", + "ttot": 12.7864, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Barrier", - "ttot": 0.00086342, + "ttot": 0.00041662, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Send", - "ttot": 14.613150000000001, + "ttot": 12.682879999999999, "count": 253056, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 3.8171e-7, + "ttot": 5.1693e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.655433815, + "ttot": 0.6523569100000001, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -2045,36 +1936,36 @@ ] }, { - "nr": "158", - "ttot": 36.276396912131, + "nr": "25", + "ttot": 27.232633244416, "mpiCalls": [ { - "call": "MPI_Comm_rank", - "ttot": 5.11671e-7, - "count": 4, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "call": "MPI_Send", + "ttot": 12.835249999999998, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Allreduce", - "ttot": 0.736773, + "ttot": 1.3440624, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00075731, + "ttot": 0.00071287, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Send", - "ttot": 14.27229, - "count": 189792, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "call": "MPI_Comm_rank", + "ttot": 5.59956e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", @@ -2085,14 +1976,14 @@ }, { "call": "MPI_Recv", - "ttot": 20.6111, - "count": 189792, + "ttot": 12.40026, + "count": 253056, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Bcast", - "ttot": 0.6554757769999999, + "ttot": 0.6523471009999999, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -2100,54 +1991,54 @@ ] }, { - "nr": "53", - "ttot": 36.238347241156, + "nr": "26", + "ttot": 27.396048750829998, "mpiCalls": [ - { - "call": "MPI_Send", - "ttot": 12.983509999999999, - "count": 253056, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Allreduce", - "ttot": 0.976793, + "ttot": 1.3181621, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00084677, + "ttot": 0.00068828, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, + { + "call": "MPI_Send", + "ttot": 11.81771, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Recv", - "ttot": 21.6218, + "ttot": 13.60689, "count": 253056, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 6.252460000000001e-7, + "ttot": 8.551599999999999e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 3.1391e-7, + "ttot": 5.7867e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.6553965319999999, + "ttot": 0.6525969370000001, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -2155,54 +2046,54 @@ ] }, { - "nr": "151", - "ttot": 36.187900942346, + "nr": "27", + "ttot": 23.636978638074996, "mpiCalls": [ + { + "call": "MPI_Comm_rank", + "ttot": 6.16915e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, { "call": "MPI_Allreduce", - "ttot": 0.48983, + "ttot": 1.2792537, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, + { + "call": "MPI_Recv", + "ttot": 13.2691, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Barrier", - "ttot": 0.00080364, + "ttot": 0.00073765, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, - { - "call": "MPI_Comm_rank", - "ttot": 5.89156e-7, - "count": 4, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" - }, - { - "call": "MPI_Recv", - "ttot": 20.92474, - "count": 253056, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Send", - "ttot": 14.116700000000002, - "count": 253056, + "ttot": 8.43526, + "count": 189792, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 3.9219e-7, + "ttot": 2.2216e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.655826321, + "ttot": 0.652626449, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -2210,54 +2101,109 @@ ] }, { - "nr": "17", - "ttot": 36.170811260189005, + "nr": "28", + "ttot": 32.16452096645, "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 1.716844, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, { "call": "MPI_Send", - "ttot": 13.137739999999999, - "count": 253056, + "ttot": 9.752220000000001, + "count": 189792, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, + { + "call": "MPI_Barrier", + "ttot": 0.0003283, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.5691e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.2954e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 20.03974, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.65538768, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "29", + "ttot": 35.66609903206, + "mpiCalls": [ { "call": "MPI_Allreduce", - "ttot": 2.146522, + "ttot": 1.700506, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00086389, + "ttot": 0.00094798, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Recv", - "ttot": 20.2287, + "call": "MPI_Send", + "ttot": 12.57833, "count": 253056, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_rank", - "ttot": 5.17809e-7, + "ttot": 8.0864e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, + { + "call": "MPI_Recv", + "ttot": 20.7288, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Comm_size", - "ttot": 3.4738e-7, + "ttot": 2.8042e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.656984505, + "ttot": 0.657513963, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -2265,54 +2211,54 @@ ] }, { - "nr": "7", - "ttot": 36.12870932957, + "nr": "30", + "ttot": 34.801513772175994, "mpiCalls": [ - { - "call": "MPI_Comm_rank", - "ttot": 6.534799999999999e-7, - "count": 4, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" - }, { "call": "MPI_Allreduce", - "ttot": 2.929862, + "ttot": 1.523032, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00036469, + "ttot": 0.00066677, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, - { - "call": "MPI_Send", - "ttot": 13.24723, - "count": 189792, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Recv", - "ttot": 19.2952, - "count": 189792, + "ttot": 19.83212, + "count": 253056, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, + { + "call": "MPI_Comm_rank", + "ttot": 6.74756e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 12.789950000000001, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Comm_size", - "ttot": 3.3609e-7, + "ttot": 2.6042e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.65605165, + "ttot": 0.655744067, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -2320,54 +2266,54 @@ ] }, { - "nr": "146", - "ttot": 36.102074990292, + "nr": "31", + "ttot": 33.90102300466, "mpiCalls": [ { "call": "MPI_Allreduce", - "ttot": 0.692274, + "ttot": 1.4446970000000001, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Send", - "ttot": 13.98256, + "ttot": 12.53753, "count": 253056, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Barrier", - "ttot": 0.00081338, + "ttot": 0.00067031, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Comm_rank", - "ttot": 5.58652e-7, + "ttot": 8.921200000000001e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 3.8084e-7, + "ttot": 5.9954e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Recv", - "ttot": 20.77093, + "ttot": 19.2627, "count": 253056, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Bcast", - "ttot": 0.6554966708000001, + "ttot": 0.6554242029999999, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -2375,54 +2321,54 @@ ] }, { - "nr": "129", - "ttot": 36.072382286749, + "nr": "32", + "ttot": 24.978433854370003, "mpiCalls": [ { - "call": "MPI_Send", - "ttot": 15.14948, - "count": 253056, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "call": "MPI_Comm_rank", + "ttot": 9.3906e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 0.9824120000000001, + "ttot": 1.1742278, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.0006951, + "ttot": 0.00041877, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, + { + "call": "MPI_Send", + "ttot": 10.47548, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Recv", - "ttot": 19.28432, + "ttot": 12.676000000000002, "count": 253056, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, - { - "call": "MPI_Comm_rank", - "ttot": 6.93879e-7, - "count": 4, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" - }, { "call": "MPI_Comm_size", - "ttot": 5.6387e-7, + "ttot": 5.5431e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.655473929, + "ttot": 0.6523057910000001, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -2430,54 +2376,54 @@ ] }, { - "nr": "48", - "ttot": 36.056581240309, + "nr": "33", + "ttot": 27.72681261123, "mpiCalls": [ { "call": "MPI_Allreduce", - "ttot": 1.1089282999999999, + "ttot": 1.1288069, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00033416, + "ttot": 0.00072907, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Recv", - "ttot": 17.9841, + "ttot": 13.4539, "count": 253056, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 5.99089e-7, + "ttot": 7.4126e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Send", - "ttot": 16.30958, + "ttot": 12.491, "count": 253056, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 4.3302e-7, + "ttot": 3.4997e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.6536377482000001, + "ttot": 0.65237555, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -2485,54 +2431,54 @@ ] }, { - "nr": "147", - "ttot": 35.969963347249, + "nr": "34", + "ttot": 27.82455066207, "mpiCalls": [ - { - "call": "MPI_Comm_rank", - "ttot": 7.34289e-7, - "count": 4, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" - }, { "call": "MPI_Allreduce", - "ttot": 0.625113, + "ttot": 1.1058137000000001, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00081184, + "ttot": 0.00056055, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Send", - "ttot": 13.88831, + "ttot": 13.07666, "count": 253056, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { - "call": "MPI_Recv", - "ttot": 20.800710000000002, - "count": 253056, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "call": "MPI_Comm_rank", + "ttot": 6.904e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 3.9606e-7, + "ttot": 3.8867e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, + { + "call": "MPI_Recv", + "ttot": 12.988869999999999, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Bcast", - "ttot": 0.6550173769, + "ttot": 0.652645333, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -2540,54 +2486,54 @@ ] }, { - "nr": "3", - "ttot": 35.92050791261399, - "mpiCalls": [ + "nr": "35", + "ttot": 27.294206107756, + "mpiCalls": [ + { + "call": "MPI_Comm_rank", + "ttot": 5.96486e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, { "call": "MPI_Allreduce", - "ttot": 3.208319, + "ttot": 1.053582, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00046421, + "ttot": 0.00054706, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, - { - "call": "MPI_Recv", - "ttot": 20.4326, - "count": 189792, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Send", - "ttot": 11.62226, - "count": 189792, + "ttot": 12.39037, + "count": 253056, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { - "call": "MPI_Comm_rank", - "ttot": 6.93924e-7, - "count": 4, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "call": "MPI_Recv", + "ttot": 13.197300000000002, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_size", - "ttot": 4.7869e-7, + "ttot": 2.8127e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.6568635300000001, + "ttot": 0.65240617, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -2595,54 +2541,54 @@ ] }, { - "nr": "2", - "ttot": 35.855588650477, + "nr": "36", + "ttot": 27.03596940318, "mpiCalls": [ { "call": "MPI_Allreduce", - "ttot": 3.270632, + "ttot": 0.9507437, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00048222, + "ttot": 0.00037927, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Recv", - "ttot": 19.9393, - "count": 189792, + "ttot": 12.569019999999998, + "count": 253056, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 9.247569999999999e-7, + "ttot": 7.3691e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, + { + "call": "MPI_Send", + "ttot": 12.86339, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Comm_size", - "ttot": 5.9172e-7, + "ttot": 3.9127e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, - { - "call": "MPI_Send", - "ttot": 11.9883, - "count": 189792, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Bcast", - "ttot": 0.656872914, + "ttot": 0.652435305, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -2650,54 +2596,54 @@ ] }, { - "nr": "76", - "ttot": 35.829659667935005, + "nr": "37", + "ttot": 28.734707068196002, "mpiCalls": [ { "call": "MPI_Allreduce", - "ttot": 1.0424388, + "ttot": 0.9034745000000001, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00028688, + "ttot": 0.00084595, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Send", - "ttot": 14.34331, + "ttot": 13.83035, "count": 253056, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_rank", - "ttot": 6.06945e-7, + "ttot": 6.79526e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 3.2999e-7, + "ttot": 3.7867e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Recv", - "ttot": 19.7885, + "ttot": 13.3475, "count": 253056, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Bcast", - "ttot": 0.655123051, + "ttot": 0.65253556, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -2705,54 +2651,54 @@ ] }, { - "nr": "131", - "ttot": 35.73553218439, + "nr": "38", + "ttot": 29.115996460679003, "mpiCalls": [ { - "call": "MPI_Send", - "ttot": 13.92418, - "count": 253056, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "call": "MPI_Comm_rank", + "ttot": 6.97349e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 0.887814, + "ttot": 0.8811813, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00072281, + "ttot": 0.00046908, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Comm_rank", - "ttot": 5.6777e-7, - "count": 4, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "call": "MPI_Send", + "ttot": 13.69998, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Recv", - "ttot": 20.26925, + "ttot": 13.88196, "count": 253056, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_size", - "ttot": 3.9562e-7, + "ttot": 3.4433e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.653564411, + "ttot": 0.652405039, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -2760,54 +2706,54 @@ ] }, { - "nr": "160", - "ttot": 35.70621885125801, + "nr": "39", + "ttot": 24.307002226719998, "mpiCalls": [ { "call": "MPI_Allreduce", - "ttot": 0.582158, + "ttot": 0.8454048, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00039439, + "ttot": 0.00047998, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, - { - "call": "MPI_Recv", - "ttot": 22.1723, - "count": 189792, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Comm_rank", - "ttot": 4.5384799999999995e-7, + "ttot": 8.755900000000001e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, + { + "call": "MPI_Recv", + "ttot": 12.643500000000001, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Send", - "ttot": 12.296389999999999, - "count": 189792, + "ttot": 10.16477, + "count": 253056, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 3.1041e-7, + "ttot": 5.8213e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.654975697, + "ttot": 0.652845989, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -2815,54 +2761,54 @@ ] }, { - "nr": "29", - "ttot": 35.66609903206, + "nr": "40", + "ttot": 33.682125858927, "mpiCalls": [ { "call": "MPI_Allreduce", - "ttot": 1.700506, + "ttot": 0.88086, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00094798, + "ttot": 0.00039722, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Send", - "ttot": 12.57833, + "ttot": 11.524429999999999, "count": 253056, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_rank", - "ttot": 8.0864e-7, + "ttot": 5.24767e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, - { - "call": "MPI_Recv", - "ttot": 20.7288, - "count": 253056, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Comm_size", - "ttot": 2.8042e-7, + "ttot": 2.2216e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, + { + "call": "MPI_Recv", + "ttot": 20.62262, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Bcast", - "ttot": 0.657513963, + "ttot": 0.6538178920000001, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -2870,54 +2816,54 @@ ] }, { - "nr": "81", - "ttot": 35.652112367558, + "nr": "41", + "ttot": 31.353383897762, "mpiCalls": [ + { + "call": "MPI_Comm_rank", + "ttot": 5.41722e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, { "call": "MPI_Allreduce", - "ttot": 0.8844273, + "ttot": 0.883792, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00063755, + "ttot": 0.00038297, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, - { - "call": "MPI_Comm_rank", - "ttot": 5.40808e-7, - "count": 4, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" - }, { "call": "MPI_Recv", - "ttot": 21.158900000000003, - "count": 253056, + "ttot": 20.1794, + "count": 189792, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_size", - "ttot": 3.1605e-7, + "ttot": 2.6304e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Send", - "ttot": 12.952999999999998, - "count": 253056, + "ttot": 9.63601, + "count": 189792, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Bcast", - "ttot": 0.6551466606999999, + "ttot": 0.6537981230000001, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -2925,54 +2871,54 @@ ] }, { - "nr": "87", - "ttot": 35.650719565500005, + "nr": "42", + "ttot": 29.535980657456996, "mpiCalls": [ { "call": "MPI_Allreduce", - "ttot": 1.195405, + "ttot": 1.4703968, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00065003, + "ttot": 0.00050463, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Recv", - "ttot": 19.984299999999998, - "count": 253056, + "ttot": 17.843899999999998, + "count": 189792, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 7.369099999999999e-7, + "ttot": 7.48677e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, + { + "call": "MPI_Send", + "ttot": 9.56733, + "count": 189792, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Comm_size", - "ttot": 3.5259e-7, + "ttot": 3.3478e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, - { - "call": "MPI_Send", - "ttot": 13.81416596, - "count": 253086, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Bcast", - "ttot": 0.656197486, + "ttot": 0.653848144, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -2980,54 +2926,54 @@ ] }, { - "nr": "44", - "ttot": 35.51072034471, + "nr": "43", + "ttot": 33.779267758212, "mpiCalls": [ - { - "call": "MPI_Send", - "ttot": 13.49973, - "count": 253056, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Allreduce", - "ttot": 1.5505563, + "ttot": 1.3774937999999999, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00035953, + "ttot": 0.00048464, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Recv", - "ttot": 19.80278, + "call": "MPI_Send", + "ttot": 12.60342, "count": 253056, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_rank", - "ttot": 5.2217e-7, + "ttot": 5.40862e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 2.5654e-7, + "ttot": 5.3435e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, + { + "call": "MPI_Recv", + "ttot": 19.14433, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Bcast", - "ttot": 0.657293736, + "ttot": 0.653538243, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -3035,54 +2981,54 @@ ] }, { - "nr": "144", - "ttot": 35.3791729521, + "nr": "44", + "ttot": 35.51072034471, "mpiCalls": [ { - "call": "MPI_Comm_rank", - "ttot": 7.095299999999999e-7, - "count": 4, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "call": "MPI_Send", + "ttot": 13.49973, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Allreduce", - "ttot": 0.73115, + "ttot": 1.5505563, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00031539, + "ttot": 0.00035953, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, - { - "call": "MPI_Send", - "ttot": 13.373649999999998, - "count": 253056, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Recv", - "ttot": 20.61962, + "ttot": 19.80278, "count": 253056, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, + { + "call": "MPI_Comm_rank", + "ttot": 5.2217e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, { "call": "MPI_Comm_size", - "ttot": 2.9607e-7, + "ttot": 2.5654e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.6544365565, + "ttot": 0.657293736, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -3090,109 +3036,54 @@ ] }, { - "nr": "49", - "ttot": 35.366515265556004, + "nr": "45", + "ttot": 32.84471206592, "mpiCalls": [ - { - "call": "MPI_Comm_rank", - "ttot": 5.52576e-7, - "count": 4, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" - }, { "call": "MPI_Allreduce", - "ttot": 1.078401, + "ttot": 1.325412, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00060571, + "ttot": 0.00064493, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, - { - "call": "MPI_Send", - "ttot": 14.60139, - "count": 253056, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, - { - "call": "MPI_Comm_size", - "ttot": 3.5128e-7, - "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" - }, { "call": "MPI_Recv", - "ttot": 19.034, + "ttot": 18.573700000000002, "count": 253056, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, - { - "call": "MPI_Bcast", - "ttot": 0.6521176517, - "count": 10, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" - } - ] - }, - { - "nr": "161", - "ttot": 35.321074858797004, - "mpiCalls": [ { "call": "MPI_Comm_rank", - "ttot": 6.21687e-7, + "ttot": 5.674000000000001e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, - { - "call": "MPI_Allreduce", - "ttot": 0.5121272, - "count": 71, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" - }, - { - "call": "MPI_Barrier", - "ttot": 0.00086066, - "count": 2, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" - }, { "call": "MPI_Send", - "ttot": 13.307870000000001, - "count": 189792, + "ttot": 12.290670000000002, + "count": 253056, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 3.7911e-7, + "ttot": 2.9652e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, - { - "call": "MPI_Recv", - "ttot": 20.845599999999997, - "count": 189792, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Bcast", - "ttot": 0.6546159979999999, + "ttot": 0.6542842720000001, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -3200,54 +3091,54 @@ ] }, { - "nr": "18", - "ttot": 35.30379154123201, + "nr": "46", + "ttot": 31.262578140370003, "mpiCalls": [ { "call": "MPI_Comm_rank", - "ttot": 5.44322e-7, + "ttot": 5.6957e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, - { - "call": "MPI_Recv", - "ttot": 20.74618, - "count": 253056, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Allreduce", - "ttot": 1.9903485, + "ttot": 1.2562622, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00061757, + "ttot": 0.00045072, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Send", - "ttot": 11.91147, + "ttot": 12.01875, "count": 253056, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 2.7391e-7, + "ttot": 3.748e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, + { + "call": "MPI_Recv", + "ttot": 17.3341, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Bcast", - "ttot": 0.655174653, + "ttot": 0.6530142760000001, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -3255,54 +3146,54 @@ ] }, { - "nr": "0", - "ttot": 35.296470437109996, + "nr": "47", + "ttot": 34.77645190417801, "mpiCalls": [ { - "call": "MPI_Recv", - "ttot": 21.890538384, - "count": 126948, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "call": "MPI_Send", + "ttot": 16.03783, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Allreduce", - "ttot": 3.3136606000000004, + "ttot": 1.2234861000000001, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00036717, + "ttot": 0.00048487, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Send", - "ttot": 10.091769999999999, - "count": 126528, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "call": "MPI_Recv", + "ttot": 16.8602, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 6.1913e-7, + "ttot": 4.97818e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 6.4998e-7, + "ttot": 3.3436e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.000133014, + "ttot": 0.654450102, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -3310,54 +3201,54 @@ ] }, { - "nr": "16", - "ttot": 35.03246009422999, + "nr": "48", + "ttot": 36.056581240309, "mpiCalls": [ - { - "call": "MPI_Send", - "ttot": 12.90232, - "count": 253056, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Allreduce", - "ttot": 2.1075132, + "ttot": 1.1089282999999999, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00040097, + "ttot": 0.00033416, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, + { + "call": "MPI_Recv", + "ttot": 17.9841, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Comm_rank", - "ttot": 6.4868e-7, + "ttot": 5.99089e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { - "call": "MPI_Recv", - "ttot": 19.366909999999997, + "call": "MPI_Send", + "ttot": 16.30958, "count": 253056, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 3.3955e-7, + "ttot": 4.3302e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.655314936, + "ttot": 0.6536377482000001, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -3365,54 +3256,54 @@ ] }, { - "nr": "83", - "ttot": 35.023718188446, + "nr": "49", + "ttot": 35.366515265556004, "mpiCalls": [ { "call": "MPI_Comm_rank", - "ttot": 6.556060000000001e-7, + "ttot": 5.52576e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 0.945858, + "ttot": 1.078401, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00064235, + "ttot": 0.00060571, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Send", - "ttot": 10.98793, - "count": 189792, + "ttot": 14.60139, + "count": 253056, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, - { - "call": "MPI_Recv", - "ttot": 22.432399999999998, - "count": 189792, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Comm_size", - "ttot": 3.0824e-7, + "ttot": 3.5128e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, + { + "call": "MPI_Recv", + "ttot": 19.034, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Bcast", - "ttot": 0.6568868746000001, + "ttot": 0.6521176517, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -3420,54 +3311,109 @@ ] }, { - "nr": "145", - "ttot": 34.962791845111006, + "nr": "50", + "ttot": 33.77368182027, "mpiCalls": [ + { + "call": "MPI_Send", + "ttot": 13.9438, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Allreduce", - "ttot": 0.692067, + "ttot": 1.0299281, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, + { + "call": "MPI_Barrier", + "ttot": 0.00063464, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, { "call": "MPI_Recv", - "ttot": 20.384490000000003, + "ttot": 18.147, "count": 253056, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, + { + "call": "MPI_Comm_rank", + "ttot": 6.0214e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.0693e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.6523181711999999, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "51", + "ttot": 36.550032899443, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 1.079872, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, { "call": "MPI_Barrier", - "ttot": 0.0006309, + "ttot": 0.0006018, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, + { + "call": "MPI_Recv", + "ttot": 20.6325, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Comm_rank", - "ttot": 5.056209999999999e-7, + "ttot": 5.564829999999999e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Send", - "ttot": 13.23095, + "ttot": 14.182159999999998, "count": 253056, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 3.7649e-7, + "ttot": 2.7736e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.654653063, + "ttot": 0.6548982656, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -3475,54 +3421,54 @@ ] }, { - "nr": "108", - "ttot": 34.934121999009, + "nr": "52", + "ttot": 36.84036883601, "mpiCalls": [ - { - "call": "MPI_Recv", - "ttot": 15.968700000000002, - "count": 253056, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Comm_rank", - "ttot": 5.23069e-7, + "ttot": 6.8743e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 0.5475214, + "ttot": 1.026635, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00032543, + "ttot": 0.00037665, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, + { + "call": "MPI_Send", + "ttot": 14.612660000000002, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Comm_size", - "ttot": 4.9394e-7, + "ttot": 3.5958e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { - "call": "MPI_Send", - "ttot": 17.76342, + "call": "MPI_Recv", + "ttot": 20.5451, "count": 253056, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Bcast", - "ttot": 0.6541541519999999, + "ttot": 0.655596139, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -3530,54 +3476,54 @@ ] }, { - "nr": "30", - "ttot": 34.801513772175994, + "nr": "53", + "ttot": 36.238347241156, "mpiCalls": [ + { + "call": "MPI_Send", + "ttot": 12.983509999999999, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Allreduce", - "ttot": 1.523032, + "ttot": 0.976793, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00066677, + "ttot": 0.00084677, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Recv", - "ttot": 19.83212, + "ttot": 21.6218, "count": 253056, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 6.74756e-7, + "ttot": 6.252460000000001e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, - { - "call": "MPI_Send", - "ttot": 12.789950000000001, - "count": 253056, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Comm_size", - "ttot": 2.6042e-7, + "ttot": 3.1391e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.655744067, + "ttot": 0.6553965319999999, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -3585,54 +3531,54 @@ ] }, { - "nr": "47", - "ttot": 34.77645190417801, + "nr": "54", + "ttot": 33.711382476846, "mpiCalls": [ - { - "call": "MPI_Send", - "ttot": 16.03783, - "count": 253056, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Allreduce", - "ttot": 1.2234861000000001, + "ttot": 0.9092335, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00048487, + "ttot": 0.00065134, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Recv", - "ttot": 16.8602, + "ttot": 19.9061, "count": 253056, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 4.97818e-7, + "ttot": 6.756559999999999e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 3.3436e-7, + "ttot": 4.4219e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, + { + "call": "MPI_Send", + "ttot": 12.240579999999998, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Bcast", - "ttot": 0.654450102, + "ttot": 0.654816519, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -3640,54 +3586,54 @@ ] }, { - "nr": "1", - "ttot": 34.725057167121996, + "nr": "55", + "ttot": 31.701860095250993, "mpiCalls": [ + { + "call": "MPI_Comm_rank", + "ttot": 5.97861e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, { "call": "MPI_Allreduce", - "ttot": 3.234537, + "ttot": 0.8586891000000001, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00068561, + "ttot": 0.00065345, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Send", - "ttot": 11.536629999999999, + "ttot": 10.3431, "count": 189792, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { - "call": "MPI_Comm_rank", - "ttot": 5.53472e-7, - "count": 4, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "call": "MPI_Comm_size", + "ttot": 3.0739e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Recv", - "ttot": 19.3021, + "ttot": 19.8447, "count": 189792, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, - { - "call": "MPI_Comm_size", - "ttot": 3.6565e-7, - "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" - }, { "call": "MPI_Bcast", - "ttot": 0.6511036379999999, + "ttot": 0.65471664, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -3695,54 +3641,54 @@ ] }, { - "nr": "82", - "ttot": 34.344621817036995, + "nr": "56", + "ttot": 33.49481920957, "mpiCalls": [ { "call": "MPI_Allreduce", - "ttot": 0.8726829, + "ttot": 1.6721089999999998, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, + { + "call": "MPI_Send", + "ttot": 10.69922, + "count": 189792, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Barrier", - "ttot": 0.00078057, + "ttot": 0.00038936, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Send", - "ttot": 12.264420000000001, - "count": 253056, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "call": "MPI_Recv", + "ttot": 20.4663, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 7.77757e-7, + "ttot": 0.00000106514, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 4.6518e-7, + "ttot": 6.2343e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, - { - "call": "MPI_Recv", - "ttot": 20.551299999999998, - "count": 253056, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Bcast", - "ttot": 0.6554371041, + "ttot": 0.656799161, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -3750,54 +3696,54 @@ ] }, { - "nr": "96", - "ttot": 34.327945824210005, + "nr": "57", + "ttot": 31.638049747533998, "mpiCalls": [ - { - "call": "MPI_Recv", - "ttot": 20.69259, - "count": 253056, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Allreduce", - "ttot": 0.654729, + "ttot": 1.3890614000000001, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00041154, + "ttot": 0.00052823, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, + { + "call": "MPI_Recv", + "ttot": 17.6954, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Comm_rank", - "ttot": 5.9344e-7, + "ttot": 5.74734e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 2.8477e-7, + "ttot": 3.278e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Send", - "ttot": 12.32550751, - "count": 253086, + "ttot": 11.89895, + "count": 253056, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Bcast", - "ttot": 0.654706896, + "ttot": 0.654109215, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -3805,109 +3751,54 @@ ] }, { - "nr": "86", - "ttot": 34.229874414231, + "nr": "58", + "ttot": 32.973926670379996, "mpiCalls": [ { "call": "MPI_Allreduce", - "ttot": 1.172458, + "ttot": 1.3399130000000001, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.0010119, + "ttot": 0.00067342, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Send", - "ttot": 12.300366279999999, - "count": 253086, + "ttot": 12.71717, + "count": 253056, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, - { - "call": "MPI_Recv", - "ttot": 20.101, - "count": 253056, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Comm_rank", - "ttot": 5.24301e-7, + "ttot": 7.460299999999999e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 2.8693e-7, + "ttot": 4.0735e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, - { - "call": "MPI_Bcast", - "ttot": 0.655037423, - "count": 10, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" - } - ] - }, - { - "nr": "99", - "ttot": 33.990763111837, - "mpiCalls": [ { "call": "MPI_Recv", - "ttot": 20.205650000000002, + "ttot": 18.2619, "count": 253056, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, - { - "call": "MPI_Allreduce", - "ttot": 1.154931, - "count": 71, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" - }, - { - "call": "MPI_Barrier", - "ttot": 0.0007445, - "count": 2, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" - }, - { - "call": "MPI_Comm_rank", - "ttot": 5.11267e-7, - "count": 4, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" - }, - { - "call": "MPI_Comm_size", - "ttot": 5.5257e-7, - "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" - }, - { - "call": "MPI_Send", - "ttot": 11.97393, - "count": 253056, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Bcast", - "ttot": 0.655506548, + "ttot": 0.654269097, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -3970,109 +3861,54 @@ ] }, { - "nr": "31", - "ttot": 33.90102300466, + "nr": "60", + "ttot": 38.83962814172101, "mpiCalls": [ - { - "call": "MPI_Allreduce", - "ttot": 1.4446970000000001, - "count": 71, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" - }, - { - "call": "MPI_Send", - "ttot": 12.53753, - "count": 253056, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, - { - "call": "MPI_Barrier", - "ttot": 0.00067031, - "count": 2, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" - }, { "call": "MPI_Comm_rank", - "ttot": 8.921200000000001e-7, + "ttot": 5.10001e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, - { - "call": "MPI_Comm_size", - "ttot": 5.9954e-7, - "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" - }, - { - "call": "MPI_Recv", - "ttot": 19.2627, - "count": 253056, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, - { - "call": "MPI_Bcast", - "ttot": 0.6554242029999999, - "count": 10, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" - } - ] - }, - { - "nr": "78", - "ttot": 33.84367456234, - "mpiCalls": [ { "call": "MPI_Allreduce", - "ttot": 0.8585775000000001, + "ttot": 1.3961759999999999, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00049324, + "ttot": 0.00033585, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Recv", - "ttot": 16.8321, + "ttot": 20.5853, "count": 253056, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, - { - "call": "MPI_Comm_rank", - "ttot": 6.325699999999999e-7, - "count": 4, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" - }, { "call": "MPI_Comm_size", - "ttot": 2.6477e-7, + "ttot": 4.1172e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Send", - "ttot": 15.498260000000002, + "ttot": 16.20053, "count": 253056, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Bcast", - "ttot": 0.654242925, + "ttot": 0.6572853700000001, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -4080,54 +3916,54 @@ ] }, { - "nr": "43", - "ttot": 33.779267758212, + "nr": "61", + "ttot": 38.33088070312001, "mpiCalls": [ { "call": "MPI_Allreduce", - "ttot": 1.3774937999999999, + "ttot": 1.2627490000000001, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00048464, + "ttot": 0.00094077, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Send", - "ttot": 12.60342, + "ttot": 17.116509999999998, "count": 253056, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_rank", - "ttot": 5.40862e-7, + "ttot": 0.00000518204, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 5.3435e-7, + "ttot": 3.6608e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Recv", - "ttot": 19.14433, + "ttot": 19.2947, "count": 253056, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Bcast", - "ttot": 0.653538243, + "ttot": 0.655975385, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -4135,54 +3971,54 @@ ] }, { - "nr": "50", - "ttot": 33.77368182027, + "nr": "62", + "ttot": 39.79766144159, "mpiCalls": [ - { - "call": "MPI_Send", - "ttot": 13.9438, - "count": 253056, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Allreduce", - "ttot": 1.0299281, + "ttot": 1.2958349999999998, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00063464, + "ttot": 0.00057933, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, + { + "call": "MPI_Send", + "ttot": 18.621480000000002, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Recv", - "ttot": 18.147, + "ttot": 19.222, "count": 253056, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 6.0214e-7, + "ttot": 0.00000119998, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 3.0693e-7, + "ttot": 2.9261e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.6523181711999999, + "ttot": 0.657765619, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -4190,54 +4026,54 @@ ] }, { - "nr": "54", - "ttot": 33.711382476846, + "nr": "63", + "ttot": 38.633645866840006, "mpiCalls": [ + { + "call": "MPI_Comm_rank", + "ttot": 5.7737e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, { "call": "MPI_Allreduce", - "ttot": 0.9092335, + "ttot": 1.136386, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00065134, + "ttot": 0.00059333, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Recv", - "ttot": 19.9061, + "ttot": 18.6284, "count": 253056, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, - { - "call": "MPI_Comm_rank", - "ttot": 6.756559999999999e-7, - "count": 4, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" - }, { "call": "MPI_Comm_size", - "ttot": 4.4219e-7, + "ttot": 2.8347e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Send", - "ttot": 12.240579999999998, + "ttot": 18.212429999999998, "count": 253056, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Bcast", - "ttot": 0.654816519, + "ttot": 0.655835676, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -4245,54 +4081,54 @@ ] }, { - "nr": "40", - "ttot": 33.682125858927, + "nr": "64", + "ttot": 40.72801923133, "mpiCalls": [ { "call": "MPI_Allreduce", - "ttot": 0.88086, + "ttot": 1.197284, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00039722, + "ttot": 0.00042909, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Send", - "ttot": 11.524429999999999, + "ttot": 18.86193, "count": 253056, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_rank", - "ttot": 5.24767e-7, + "ttot": 7.5863e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 2.2216e-7, + "ttot": 4.817e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Recv", - "ttot": 20.62262, + "ttot": 20.0115, "count": 253056, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Bcast", - "ttot": 0.6538178920000001, + "ttot": 0.656874901, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -4300,54 +4136,54 @@ ] }, { - "nr": "13", - "ttot": 33.619169512819, + "nr": "65", + "ttot": 39.64370926046001, "mpiCalls": [ - { - "call": "MPI_Send", - "ttot": 9.88437, - "count": 126528, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, - { - "call": "MPI_Comm_rank", - "ttot": 6.07789e-7, - "count": 4, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" - }, { "call": "MPI_Allreduce", - "ttot": 2.3777448, + "ttot": 1.1295600000000001, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00066732, + "ttot": 0.0007339, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, + { + "call": "MPI_Send", + "ttot": 18.301119999999997, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Recv", - "ttot": 20.7028, - "count": 126528, + "ttot": 19.5557, + "count": 253056, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, + { + "call": "MPI_Comm_rank", + "ttot": 6.2863e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, { "call": "MPI_Comm_size", - "ttot": 4.1303e-7, + "ttot": 4.0083e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.653586372, + "ttot": 0.6565943310000001, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -4355,54 +4191,54 @@ ] }, { - "nr": "56", - "ttot": 33.49481920957, + "nr": "66", + "ttot": 38.69881164807, "mpiCalls": [ + { + "call": "MPI_Comm_rank", + "ttot": 6.3428e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, { "call": "MPI_Allreduce", - "ttot": 1.6721089999999998, + "ttot": 1.099414, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, - { - "call": "MPI_Send", - "ttot": 10.69922, - "count": 189792, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Barrier", - "ttot": 0.00038936, + "ttot": 0.00065235, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Recv", - "ttot": 20.4663, - "count": 189792, + "ttot": 22.7328, + "count": 253056, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, - { - "call": "MPI_Comm_rank", - "ttot": 0.00000106514, - "count": 4, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" - }, { "call": "MPI_Comm_size", - "ttot": 6.2343e-7, + "ttot": 4.6779e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, + { + "call": "MPI_Send", + "ttot": 14.20964, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Bcast", - "ttot": 0.656799161, + "ttot": 0.656304196, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -4410,54 +4246,54 @@ ] }, { - "nr": "85", - "ttot": 33.425026227058, + "nr": "67", + "ttot": 38.132511184429994, "mpiCalls": [ { "call": "MPI_Allreduce", - "ttot": 1.2287050000000002, + "ttot": 1.067193, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00061912, + "ttot": 0.00063217, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Send", - "ttot": 11.78868329, - "count": 253086, + "ttot": 14.74154, + "count": 253056, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_rank", - "ttot": 5.07358e-7, + "ttot": 6.721e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 5.217e-7, + "ttot": 5.2733e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Recv", - "ttot": 19.7521, + "ttot": 21.6665, "count": 253056, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Bcast", - "ttot": 0.654917788, + "ttot": 0.656644815, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -4465,54 +4301,54 @@ ] }, { - "nr": "109", - "ttot": 33.421951900632, + "nr": "68", + "ttot": 33.107017258668996, "mpiCalls": [ { "call": "MPI_Allreduce", - "ttot": 0.497232, + "ttot": 0.8565187, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, - { - "call": "MPI_Recv", - "ttot": 17.869, - "count": 253056, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Barrier", - "ttot": 0.00047402, + "ttot": 0.00020414, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Send", - "ttot": 14.40053, + "ttot": 12.683789999999998, "count": 253056, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, + { + "call": "MPI_Recv", + "ttot": 18.912, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Comm_rank", - "ttot": 6.48272e-7, + "ttot": 6.16939e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 6.2436e-7, + "ttot": 3.3173e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.6547146079999999, + "ttot": 0.65450347, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -4520,54 +4356,54 @@ ] }, { - "nr": "163", - "ttot": 33.11895193015, + "nr": "69", + "ttot": 29.883682022564003, "mpiCalls": [ + { + "call": "MPI_Comm_rank", + "ttot": 5.347539999999999e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, { "call": "MPI_Allreduce", - "ttot": 0.40321039999999997, + "ttot": 0.8046005, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.0008842, + "ttot": 0.00071761, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Recv", - "ttot": 20.2089, + "ttot": 18.2367, "count": 189792, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, - { - "call": "MPI_Comm_rank", - "ttot": 7.5603e-7, - "count": 4, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" - }, { "call": "MPI_Comm_size", - "ttot": 5.7212e-7, + "ttot": 2.6781e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Send", - "ttot": 11.85238, + "ttot": 10.187110000000002, "count": 189792, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Bcast", - "ttot": 0.653576002, + "ttot": 0.6545531099999999, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -4575,54 +4411,54 @@ ] }, { - "nr": "68", - "ttot": 33.107017258668996, + "nr": "70", + "ttot": 31.99259665735, "mpiCalls": [ { "call": "MPI_Allreduce", - "ttot": 0.8565187, + "ttot": 1.5693365, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00020414, + "ttot": 0.0005257, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Send", - "ttot": 12.683789999999998, - "count": 253056, + "ttot": 10.69043, + "count": 189792, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, - { - "call": "MPI_Recv", - "ttot": 18.912, - "count": 253056, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Comm_rank", - "ttot": 6.16939e-7, + "ttot": 8.6649e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 3.3173e-7, + "ttot": 3.1086e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, + { + "call": "MPI_Recv", + "ttot": 19.07515, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Bcast", - "ttot": 0.65450347, + "ttot": 0.6571532800000001, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -4630,54 +4466,54 @@ ] }, { - "nr": "77", - "ttot": 33.070687374242, + "nr": "71", + "ttot": 31.300135214300003, "mpiCalls": [ - { - "call": "MPI_Comm_rank", - "ttot": 5.63462e-7, - "count": 4, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" - }, { "call": "MPI_Allreduce", - "ttot": 0.9022268, + "ttot": 1.2642734, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00077687, + "ttot": 0.00051738, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Send", - "ttot": 15.02203, + "ttot": 12.094949999999999, "count": 253056, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, + { + "call": "MPI_Comm_rank", + "ttot": 5.5083e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, { "call": "MPI_Recv", - "ttot": 16.4916, + "ttot": 17.28608, "count": 253056, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_size", - "ttot": 3.0478e-7, + "ttot": 3.3347e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.654052836, + "ttot": 0.6543135499999999, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -4685,54 +4521,54 @@ ] }, { - "nr": "6", - "ttot": 33.06507577696, + "nr": "72", + "ttot": 26.44250960745, "mpiCalls": [ { "call": "MPI_Allreduce", - "ttot": 2.8183042, + "ttot": 1.0510842, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00038811, + "ttot": 0.00032687, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Recv", - "ttot": 17.1773, - "count": 189792, + "ttot": 14.1067, + "count": 253056, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, - { - "call": "MPI_Send", - "ttot": 12.41479, - "count": 189792, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Comm_rank", - "ttot": 5.9435e-7, + "ttot": 5.5213e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 3.0261e-7, + "ttot": 3.3432e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, + { + "call": "MPI_Send", + "ttot": 10.63185, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Bcast", - "ttot": 0.65429257, + "ttot": 0.652547651, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -4740,54 +4576,54 @@ ] }, { - "nr": "84", - "ttot": 33.015647562734, + "nr": "73", + "ttot": 28.50012411524, "mpiCalls": [ { "call": "MPI_Allreduce", - "ttot": 1.432574, + "ttot": 0.9836877, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00036103, + "ttot": 0.00057791, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Recv", - "ttot": 20.4587, - "count": 189792, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "call": "MPI_Send", + "ttot": 12.885449999999999, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_rank", - "ttot": 5.760639999999999e-7, + "ttot": 7.203900000000001e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 3.8867e-7, + "ttot": 2.8085e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { - "call": "MPI_Send", - "ttot": 10.46783349, - "count": 189822, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "call": "MPI_Recv", + "ttot": 13.977800000000002, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Bcast", - "ttot": 0.656178078, + "ttot": 0.652607504, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -4795,54 +4631,54 @@ ] }, { - "nr": "142", - "ttot": 32.991879500477, + "nr": "74", + "ttot": 28.092044619853997, "mpiCalls": [ + { + "call": "MPI_Comm_rank", + "ttot": 5.20834e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, { "call": "MPI_Allreduce", - "ttot": 0.8383098, + "ttot": 0.9402022999999999, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, - { - "call": "MPI_Recv", - "ttot": 17.707629999999998, - "count": 253056, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Barrier", - "ttot": 0.00078635, + "ttot": 0.00063347, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, - { - "call": "MPI_Comm_rank", - "ttot": 6.852170000000001e-7, - "count": 4, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" - }, { "call": "MPI_Send", - "ttot": 13.790790000000001, + "ttot": 13.80689, "count": 253056, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, + { + "call": "MPI_Recv", + "ttot": 12.69125, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Comm_size", - "ttot": 3.7826e-7, + "ttot": 2.2302e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.654362287, + "ttot": 0.653068106, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -4850,54 +4686,54 @@ ] }, { - "nr": "79", - "ttot": 32.984049417159994, + "nr": "75", + "ttot": 24.655280467678004, "mpiCalls": [ { "call": "MPI_Allreduce", - "ttot": 0.8206049999999999, + "ttot": 0.8915462, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00049979, + "ttot": 0.00061513, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Send", - "ttot": 13.054559999999999, + "call": "MPI_Recv", + "ttot": 13.4937, "count": 253056, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 8.803799999999999e-7, + "ttot": 6.712479999999999e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 1.8478e-7, + "ttot": 6.7343e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { - "call": "MPI_Recv", - "ttot": 18.4545, + "call": "MPI_Send", + "ttot": 9.61795, "count": 253056, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Bcast", - "ttot": 0.653883562, + "ttot": 0.651467793, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -4905,54 +4741,54 @@ ] }, { - "nr": "58", - "ttot": 32.973926670379996, + "nr": "76", + "ttot": 35.829659667935005, "mpiCalls": [ { "call": "MPI_Allreduce", - "ttot": 1.3399130000000001, + "ttot": 1.0424388, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00067342, + "ttot": 0.00028688, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Send", - "ttot": 12.71717, + "ttot": 14.34331, "count": 253056, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_rank", - "ttot": 7.460299999999999e-7, + "ttot": 6.06945e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 4.0735e-7, + "ttot": 3.2999e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Recv", - "ttot": 18.2619, + "ttot": 19.7885, "count": 253056, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Bcast", - "ttot": 0.654269097, + "ttot": 0.655123051, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -4960,54 +4796,54 @@ ] }, { - "nr": "45", - "ttot": 32.84471206592, + "nr": "77", + "ttot": 33.070687374242, "mpiCalls": [ + { + "call": "MPI_Comm_rank", + "ttot": 5.63462e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, { "call": "MPI_Allreduce", - "ttot": 1.325412, + "ttot": 0.9022268, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00064493, + "ttot": 0.00077687, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, - { - "call": "MPI_Recv", - "ttot": 18.573700000000002, - "count": 253056, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, - { - "call": "MPI_Comm_rank", - "ttot": 5.674000000000001e-7, - "count": 4, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" - }, { "call": "MPI_Send", - "ttot": 12.290670000000002, + "ttot": 15.02203, "count": 253056, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, + { + "call": "MPI_Recv", + "ttot": 16.4916, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Comm_size", - "ttot": 2.9652e-7, + "ttot": 3.0478e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.6542842720000001, + "ttot": 0.654052836, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -5015,54 +4851,54 @@ ] }, { - "nr": "115", - "ttot": 32.779394783240996, + "nr": "78", + "ttot": 33.84367456234, "mpiCalls": [ { "call": "MPI_Allreduce", - "ttot": 0.9448369, + "ttot": 0.8585775000000001, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00067771, + "ttot": 0.00049324, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Recv", - "ttot": 17.51353, + "ttot": 16.8321, "count": 253056, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, - { - "call": "MPI_Send", - "ttot": 13.66618, - "count": 253056, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Comm_rank", - "ttot": 6.75171e-7, + "ttot": 6.325699999999999e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 4.1607e-7, + "ttot": 2.6477e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, + { + "call": "MPI_Send", + "ttot": 15.498260000000002, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Bcast", - "ttot": 0.654169082, + "ttot": 0.654242925, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -5070,54 +4906,54 @@ ] }, { - "nr": "97", - "ttot": 32.740609009881005, + "nr": "79", + "ttot": 32.984049417159994, "mpiCalls": [ - { - "call": "MPI_Comm_rank", - "ttot": 8.803909999999999e-7, - "count": 4, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" - }, { "call": "MPI_Allreduce", - "ttot": 0.607836, + "ttot": 0.8206049999999999, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00066028, + "ttot": 0.00049979, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Send", - "ttot": 11.12094503, - "count": 189822, + "ttot": 13.054559999999999, + "count": 253056, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { - "call": "MPI_Comm_size", - "ttot": 7.3649e-7, - "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" - }, + "call": "MPI_Comm_rank", + "ttot": 8.803799999999999e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 1.8478e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, { "call": "MPI_Recv", - "ttot": 20.3563, - "count": 189792, + "ttot": 18.4545, + "count": 253056, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Bcast", - "ttot": 0.654866083, + "ttot": 0.653883562, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -5125,54 +4961,54 @@ ] }, { - "nr": "98", - "ttot": 32.46674585795, + "nr": "80", + "ttot": 37.946931274941996, "mpiCalls": [ + { + "call": "MPI_Comm_rank", + "ttot": 6.95562e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, { "call": "MPI_Allreduce", - "ttot": 1.371395, + "ttot": 1.029619, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00089294, + "ttot": 0.0003049, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Send", - "ttot": 10.745510000000001, - "count": 189792, + "ttot": 15.643550000000001, + "count": 253056, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Recv", - "ttot": 19.69233, - "count": 189792, + "ttot": 20.616699999999998, + "count": 253056, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, - { - "call": "MPI_Comm_rank", - "ttot": 9.9779e-7, - "count": 4, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" - }, { "call": "MPI_Comm_size", - "ttot": 9.4516e-7, + "ttot": 3.5258e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.6566159749999999, + "ttot": 0.6567563268, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -5180,54 +5016,54 @@ ] }, { - "nr": "133", - "ttot": 32.318433626936, + "nr": "81", + "ttot": 35.652112367558, "mpiCalls": [ - { - "call": "MPI_Recv", - "ttot": 16.57655, - "count": 253056, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, - { - "call": "MPI_Comm_rank", - "ttot": 5.45646e-7, - "count": 4, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" - }, { "call": "MPI_Allreduce", - "ttot": 0.5892212, + "ttot": 0.8844273, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00051517, + "ttot": 0.00063755, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Send", - "ttot": 14.49765, + "call": "MPI_Comm_rank", + "ttot": 5.40808e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Recv", + "ttot": 21.158900000000003, "count": 253056, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_size", - "ttot": 2.3129e-7, + "ttot": 3.1605e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, + { + "call": "MPI_Send", + "ttot": 12.952999999999998, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Bcast", - "ttot": 0.65449648, + "ttot": 0.6551466606999999, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -5235,54 +5071,54 @@ ] }, { - "nr": "140", - "ttot": 32.28608528593, + "nr": "82", + "ttot": 34.344621817036995, "mpiCalls": [ - { - "call": "MPI_Send", - "ttot": 9.69379, - "count": 189792, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Allreduce", - "ttot": 1.1782924000000001, + "ttot": 0.8726829, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00022953, + "ttot": 0.00078057, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, + { + "call": "MPI_Send", + "ttot": 12.264420000000001, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Comm_rank", - "ttot": 7.9783e-7, + "ttot": 7.77757e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 5.761e-7, + "ttot": 4.6518e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Recv", - "ttot": 20.7563, - "count": 189792, + "ttot": 20.551299999999998, + "count": 253056, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Bcast", - "ttot": 0.657471982, + "ttot": 0.6554371041, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -5290,54 +5126,54 @@ ] }, { - "nr": "112", - "ttot": 32.22634869582999, + "nr": "83", + "ttot": 35.023718188446, "mpiCalls": [ + { + "call": "MPI_Comm_rank", + "ttot": 6.556060000000001e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, { "call": "MPI_Allreduce", - "ttot": 1.2961960000000001, + "ttot": 0.945858, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00033287, + "ttot": 0.00064235, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, - { - "call": "MPI_Recv", - "ttot": 19.76083, - "count": 189792, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Send", - "ttot": 10.51187, + "ttot": 10.98793, "count": 189792, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { - "call": "MPI_Comm_rank", - "ttot": 7.2518e-7, - "count": 4, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "call": "MPI_Recv", + "ttot": 22.432399999999998, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_size", - "ttot": 3.2215e-7, + "ttot": 3.0824e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.6571187785, + "ttot": 0.6568868746000001, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -5345,54 +5181,54 @@ ] }, { - "nr": "28", - "ttot": 32.16452096645, + "nr": "84", + "ttot": 33.015647562734, "mpiCalls": [ { "call": "MPI_Allreduce", - "ttot": 1.716844, + "ttot": 1.432574, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, - { - "call": "MPI_Send", - "ttot": 9.752220000000001, - "count": 189792, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Barrier", - "ttot": 0.0003283, + "ttot": 0.00036103, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, + { + "call": "MPI_Recv", + "ttot": 20.4587, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Comm_rank", - "ttot": 6.5691e-7, + "ttot": 5.760639999999999e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 3.2954e-7, + "ttot": 3.8867e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { - "call": "MPI_Recv", - "ttot": 20.03974, - "count": 189792, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "call": "MPI_Send", + "ttot": 10.46783349, + "count": 189822, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Bcast", - "ttot": 0.65538768, + "ttot": 0.656178078, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -5400,54 +5236,54 @@ ] }, { - "nr": "132", - "ttot": 32.135776188665005, + "nr": "85", + "ttot": 33.425026227058, "mpiCalls": [ - { - "call": "MPI_Send", - "ttot": 13.153580000000002, - "count": 253056, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Allreduce", - "ttot": 0.6397844, + "ttot": 1.2287050000000002, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00020251, + "ttot": 0.00061912, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Recv", - "ttot": 17.68818, - "count": 253056, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "call": "MPI_Send", + "ttot": 11.78868329, + "count": 253086, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_rank", - "ttot": 4.96515e-7, + "ttot": 5.07358e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 3.6215e-7, + "ttot": 5.217e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, + { + "call": "MPI_Recv", + "ttot": 19.7521, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Bcast", - "ttot": 0.65402842, + "ttot": 0.654917788, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -5455,109 +5291,54 @@ ] }, { - "nr": "5", - "ttot": 32.06317538264, + "nr": "86", + "ttot": 34.229874414231, "mpiCalls": [ { "call": "MPI_Allreduce", - "ttot": 2.8720523, + "ttot": 1.172458, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00067057, + "ttot": 0.0010119, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, - { - "call": "MPI_Recv", - "ttot": 17.1937, - "count": 189792, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, - { - "call": "MPI_Comm_rank", - "ttot": 6.221999999999999e-7, - "count": 4, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" - }, - { - "call": "MPI_Comm_size", - "ttot": 5.0044e-7, - "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" - }, { "call": "MPI_Send", - "ttot": 11.34264, - "count": 189792, + "ttot": 12.300366279999999, + "count": 253086, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { - "call": "MPI_Bcast", - "ttot": 0.6541113900000001, - "count": 10, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" - } - ] - }, - { - "nr": "70", - "ttot": 31.99259665735, - "mpiCalls": [ - { - "call": "MPI_Allreduce", - "ttot": 1.5693365, - "count": 71, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" - }, - { - "call": "MPI_Barrier", - "ttot": 0.0005257, - "count": 2, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" - }, - { - "call": "MPI_Send", - "ttot": 10.69043, - "count": 189792, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "call": "MPI_Recv", + "ttot": 20.101, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 8.6649e-7, + "ttot": 5.24301e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 3.1086e-7, + "ttot": 2.8693e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, - { - "call": "MPI_Recv", - "ttot": 19.07515, - "count": 189792, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Bcast", - "ttot": 0.6571532800000001, + "ttot": 0.655037423, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -5565,54 +5346,54 @@ ] }, { - "nr": "135", - "ttot": 31.923805272550002, + "nr": "87", + "ttot": 35.650719565500005, "mpiCalls": [ - { - "call": "MPI_Send", - "ttot": 13.81422, - "count": 253056, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Allreduce", - "ttot": 0.4903846, + "ttot": 1.195405, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00051339, + "ttot": 0.00065003, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Recv", - "ttot": 16.96461, + "ttot": 19.984299999999998, "count": 253056, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 6.512699999999999e-7, + "ttot": 7.369099999999999e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 4.0128e-7, + "ttot": 3.5259e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, + { + "call": "MPI_Send", + "ttot": 13.81416596, + "count": 253086, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Bcast", - "ttot": 0.6540762299999999, + "ttot": 0.656197486, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -5620,54 +5401,54 @@ ] }, { - "nr": "55", - "ttot": 31.701860095250993, + "nr": "88", + "ttot": 25.304456140722998, "mpiCalls": [ { "call": "MPI_Comm_rank", - "ttot": 5.97861e-7, + "ttot": 4.62573e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 0.8586891000000001, + "ttot": 0.7860210999999999, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00065345, + "ttot": 0.00042393, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Send", - "ttot": 10.3431, - "count": 189792, + "ttot": 10.8882718, + "count": 253086, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 3.0739e-7, + "ttot": 3.1215e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Recv", - "ttot": 19.8447, - "count": 189792, + "ttot": 12.9782, + "count": 253056, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Bcast", - "ttot": 0.65471664, + "ttot": 0.651538536, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -5675,54 +5456,54 @@ ] }, { - "nr": "143", - "ttot": 31.675850522248002, + "nr": "89", + "ttot": 26.610458816262994, "mpiCalls": [ - { - "call": "MPI_Send", - "ttot": 13.51214, - "count": 253056, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Allreduce", - "ttot": 0.7820552000000001, + "ttot": 0.7274068, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00059187, + "ttot": 0.00054438, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, + { + "call": "MPI_Send", + "ttot": 12.985697089999999, + "count": 253086, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Recv", + "ttot": 12.244900000000001, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Comm_rank", - "ttot": 7.495880000000001e-7, + "ttot": 7.06883e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 2.5566e-7, + "ttot": 7.3038e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, - { - "call": "MPI_Recv", - "ttot": 16.72655, - "count": 253056, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Bcast", - "ttot": 0.654512447, + "ttot": 0.651909109, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -5730,54 +5511,54 @@ ] }, { - "nr": "57", - "ttot": 31.638049747533998, + "nr": "90", + "ttot": 28.230415506671005, "mpiCalls": [ { "call": "MPI_Allreduce", - "ttot": 1.3890614000000001, + "ttot": 0.6905237999999999, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00052823, + "ttot": 0.00088869, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Recv", - "ttot": 17.6954, + "ttot": 12.42529, "count": 253056, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 5.74734e-7, + "ttot": 9.482009999999999e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 3.278e-7, + "ttot": 6.3647e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Send", - "ttot": 11.89895, - "count": 253056, + "ttot": 14.46247239, + "count": 253086, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Bcast", - "ttot": 0.654109215, + "ttot": 0.651239042, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -5785,54 +5566,54 @@ ] }, { - "nr": "41", - "ttot": 31.353383897762, + "nr": "91", + "ttot": 27.630838657159, "mpiCalls": [ { "call": "MPI_Comm_rank", - "ttot": 5.41722e-7, + "ttot": 8.290790000000001e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 0.883792, + "ttot": 0.6238636, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00038297, + "ttot": 0.00054308, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Recv", - "ttot": 20.1794, - "count": 189792, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "call": "MPI_Send", + "ttot": 14.00666116, + "count": 253086, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 2.6304e-7, + "ttot": 6.1908e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { - "call": "MPI_Send", - "ttot": 9.63601, - "count": 189792, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "call": "MPI_Recv", + "ttot": 12.3483, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Bcast", - "ttot": 0.6537981230000001, + "ttot": 0.651469369, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -5840,54 +5621,54 @@ ] }, { - "nr": "71", - "ttot": 31.300135214300003, + "nr": "92", + "ttot": 27.42310658231, "mpiCalls": [ { "call": "MPI_Allreduce", - "ttot": 1.2642734, + "ttot": 0.572513, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00051738, + "ttot": 0.00030485, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Send", - "ttot": 12.094949999999999, - "count": 253056, + "ttot": 13.62907256, + "count": 253086, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, - { - "call": "MPI_Comm_rank", - "ttot": 5.5083e-7, - "count": 4, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" - }, { "call": "MPI_Recv", - "ttot": 17.28608, + "ttot": 12.5689, "count": 253056, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, + { + "call": "MPI_Comm_rank", + "ttot": 6.1702e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, { "call": "MPI_Comm_size", - "ttot": 3.3347e-7, + "ttot": 2.9829e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.6543135499999999, + "ttot": 0.652315257, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -5895,54 +5676,54 @@ ] }, { - "nr": "141", - "ttot": 31.271421290542, + "nr": "93", + "ttot": 25.916307565937004, "mpiCalls": [ { "call": "MPI_Allreduce", - "ttot": 0.8599558, + "ttot": 0.50901763, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, - { - "call": "MPI_Send", - "ttot": 12.612860000000001, - "count": 253056, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Barrier", - "ttot": 0.00050255, + "ttot": 0.00046185, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, - { - "call": "MPI_Comm_rank", - "ttot": 6.700120000000001e-7, - "count": 4, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" - }, { "call": "MPI_Recv", - "ttot": 17.143900000000002, + "ttot": 11.01528, "count": 253056, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, + { + "call": "MPI_Comm_rank", + "ttot": 4.99607e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, { "call": "MPI_Comm_size", - "ttot": 3.7653e-7, + "ttot": 4.0133e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, + { + "call": "MPI_Send", + "ttot": 13.739511839999999, + "count": 253086, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Bcast", - "ttot": 0.654201894, + "ttot": 0.6520353449999999, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -5950,54 +5731,54 @@ ] }, { - "nr": "46", - "ttot": 31.262578140370003, + "nr": "94", + "ttot": 27.666750484636, "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 12.96815, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Comm_rank", - "ttot": 5.6957e-7, + "ttot": 5.21756e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 1.2562622, + "ttot": 0.4964294, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00045072, + "ttot": 0.0006406, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Send", - "ttot": 12.01875, - "count": 253056, + "ttot": 13.549734149999999, + "count": 253086, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 3.748e-7, + "ttot": 2.8088e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, - { - "call": "MPI_Recv", - "ttot": 17.3341, - "count": 253056, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Bcast", - "ttot": 0.6530142760000001, + "ttot": 0.6517955320000001, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -6005,54 +5786,54 @@ ] }, { - "nr": "22", - "ttot": 31.17472474038, + "nr": "95", + "ttot": 23.314194205916, "mpiCalls": [ - { - "call": "MPI_Send", - "ttot": 13.466350000000002, - "count": 253056, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Allreduce", - "ttot": 1.5321559, + "ttot": 0.4586103, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00071306, + "ttot": 0.00048789, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, + { + "call": "MPI_Send", + "ttot": 10.75110975, + "count": 253086, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Recv", + "ttot": 11.452000000000002, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Comm_rank", - "ttot": 5.4912e-7, + "ttot": 4.60026e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 2.2826e-7, + "ttot": 3.5089e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, - { - "call": "MPI_Recv", - "ttot": 15.523340000000001, - "count": 253056, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Bcast", - "ttot": 0.652165003, + "ttot": 0.6519854549999999, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -6060,54 +5841,54 @@ ] }, { - "nr": "114", - "ttot": 30.87997731881, + "nr": "96", + "ttot": 34.327945824210005, "mpiCalls": [ - { - "call": "MPI_Allreduce", - "ttot": 0.9793874, - "count": 71, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" - }, { "call": "MPI_Recv", - "ttot": 17.4217, + "ttot": 20.69259, "count": 253056, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, + { + "call": "MPI_Allreduce", + "ttot": 0.654729, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, { "call": "MPI_Barrier", - "ttot": 0.00085945, + "ttot": 0.00041154, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Comm_rank", - "ttot": 7.629800000000001e-7, + "ttot": 5.9344e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 4.8213e-7, + "ttot": 2.8477e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Send", - "ttot": 11.82399, - "count": 253056, + "ttot": 12.32550751, + "count": 253086, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Bcast", - "ttot": 0.6540392237, + "ttot": 0.654706896, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -6115,54 +5896,54 @@ ] }, { - "nr": "15", - "ttot": 30.771275732565, + "nr": "97", + "ttot": 32.740609009881005, "mpiCalls": [ { - "call": "MPI_Recv", - "ttot": 17.665779999999998, - "count": 253056, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "call": "MPI_Comm_rank", + "ttot": 8.803909999999999e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 1.9747186, + "ttot": 0.607836, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00049955, + "ttot": 0.00066028, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, - { - "call": "MPI_Comm_rank", - "ttot": 5.31735e-7, - "count": 4, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" - }, { "call": "MPI_Send", - "ttot": 10.47843, - "count": 253056, + "ttot": 11.12094503, + "count": 189822, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 2.7783e-7, + "ttot": 7.3649e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, + { + "call": "MPI_Recv", + "ttot": 20.3563, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Bcast", - "ttot": 0.651846773, + "ttot": 0.654866083, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -6170,54 +5951,54 @@ ] }, { - "nr": "4", - "ttot": 30.741820180239998, + "nr": "98", + "ttot": 32.46674585795, "mpiCalls": [ - { - "call": "MPI_Comm_rank", - "ttot": 6.187e-7, - "count": 4, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" - }, { "call": "MPI_Allreduce", - "ttot": 2.9228104000000004, + "ttot": 1.371395, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.000085015, + "ttot": 0.00089294, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Send", - "ttot": 10.35025, + "ttot": 10.745510000000001, "count": 189792, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Recv", - "ttot": 16.814700000000002, + "ttot": 19.69233, "count": 189792, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, + { + "call": "MPI_Comm_rank", + "ttot": 9.9779e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, { "call": "MPI_Comm_size", - "ttot": 4.5654e-7, + "ttot": 9.4516e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.65397369, + "ttot": 0.6566159749999999, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -6225,54 +6006,54 @@ ] }, { - "nr": "113", - "ttot": 30.660515086216, + "nr": "99", + "ttot": 33.990763111837, "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 20.205650000000002, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Allreduce", - "ttot": 1.0298393, + "ttot": 1.154931, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00062555, + "ttot": 0.0007445, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, - { - "call": "MPI_Send", - "ttot": 11.492220000000001, - "count": 253056, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Comm_rank", - "ttot": 7.021259999999999e-7, + "ttot": 5.11267e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, - { - "call": "MPI_Recv", - "ttot": 17.48359, - "count": 253056, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Comm_size", - "ttot": 5.8909e-7, + "ttot": 5.5257e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, + { + "call": "MPI_Send", + "ttot": 11.97393, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Bcast", - "ttot": 0.654238945, + "ttot": 0.655506548, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -6280,109 +6061,54 @@ ] }, { - "nr": "111", - "ttot": 29.933756182946002, + "nr": "100", + "ttot": 25.830788247252002, "mpiCalls": [ { "call": "MPI_Recv", - "ttot": 18.424, - "count": 189792, + "ttot": 13.792620000000001, + "count": 253056, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, - { - "call": "MPI_Comm_rank", - "ttot": 9.11766e-7, - "count": 4, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" - }, { "call": "MPI_Allreduce", - "ttot": 0.44067009999999995, + "ttot": 0.8523387, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.0005096, + "ttot": 0.00035288, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, - { - "call": "MPI_Comm_size", - "ttot": 6.1218e-7, - "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" - }, { "call": "MPI_Send", - "ttot": 10.41388, - "count": 189792, + "ttot": 10.53291, + "count": 253056, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, - { - "call": "MPI_Bcast", - "ttot": 0.654694959, - "count": 10, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" - } - ] - }, - { - "nr": "69", - "ttot": 29.883682022564003, - "mpiCalls": [ { "call": "MPI_Comm_rank", - "ttot": 5.347539999999999e-7, + "ttot": 5.80392e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, - { - "call": "MPI_Allreduce", - "ttot": 0.8046005, - "count": 71, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" - }, - { - "call": "MPI_Barrier", - "ttot": 0.00071761, - "count": 2, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" - }, - { - "call": "MPI_Recv", - "ttot": 18.2367, - "count": 189792, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Comm_size", - "ttot": 2.6781e-7, + "ttot": 3.2086e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, - { - "call": "MPI_Send", - "ttot": 10.187110000000002, - "count": 189792, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Bcast", - "ttot": 0.6545531099999999, + "ttot": 0.6525657659999999, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -6390,54 +6116,54 @@ ] }, { - "nr": "122", - "ttot": 29.55741415787, + "nr": "101", + "ttot": 26.475780030467998, "mpiCalls": [ - { - "call": "MPI_Comm_rank", - "ttot": 6.9788e-7, - "count": 4, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" - }, { "call": "MPI_Allreduce", - "ttot": 0.35865, + "ttot": 0.79440705, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00086312, + "ttot": 0.00065611, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Send", - "ttot": 13.745909999999999, + "ttot": 11.74388, "count": 253056, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, + { + "call": "MPI_Comm_rank", + "ttot": 6.25178e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, { "call": "MPI_Recv", - "ttot": 14.799700000000001, + "ttot": 13.284199999999998, "count": 253056, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_size", - "ttot": 4.5699e-7, + "ttot": 3.1129e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.652289883, + "ttot": 0.652635934, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -6445,54 +6171,54 @@ ] }, { - "nr": "42", - "ttot": 29.535980657456996, + "nr": "102", + "ttot": 28.72930390116, "mpiCalls": [ - { - "call": "MPI_Allreduce", - "ttot": 1.4703968, - "count": 71, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" - }, - { - "call": "MPI_Barrier", - "ttot": 0.00050463, - "count": 2, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" - }, { "call": "MPI_Recv", - "ttot": 17.843899999999998, - "count": 189792, + "ttot": 13.7112, + "count": 253056, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 7.48677e-7, + "ttot": 6.6214e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { - "call": "MPI_Send", - "ttot": 9.56733, - "count": 189792, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "call": "MPI_Allreduce", + "ttot": 0.7317729, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0010031, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Comm_size", - "ttot": 3.3478e-7, + "ttot": 3.7302e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, + { + "call": "MPI_Send", + "ttot": 13.63265, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Bcast", - "ttot": 0.653848144, + "ttot": 0.652676866, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -6500,54 +6226,54 @@ ] }, { - "nr": "14", - "ttot": 29.488137238203, + "nr": "103", + "ttot": 27.65813435714, "mpiCalls": [ { - "call": "MPI_Send", - "ttot": 8.08203, - "count": 189792, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "call": "MPI_Recv", + "ttot": 13.9766, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Allreduce", - "ttot": 2.075279, + "ttot": 0.7102217, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00050123, + "ttot": 0.00066534, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Recv", - "ttot": 18.677590000000002, - "count": 189792, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "call": "MPI_Send", + "ttot": 12.3179, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_rank", - "ttot": 5.85613e-7, + "ttot": 6.6517e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 3.7259e-7, + "ttot": 4.9997e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.65273605, + "ttot": 0.6527461520000001, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -6555,54 +6281,54 @@ ] }, { - "nr": "12", - "ttot": 29.250660243869994, + "nr": "104", + "ttot": 39.25852508754, "mpiCalls": [ { "call": "MPI_Allreduce", - "ttot": 2.4248206999999997, + "ttot": 0.97889, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.0003824, + "ttot": 0.00032564, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, - { - "call": "MPI_Recv", - "ttot": 16.639400000000002, - "count": 189792, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Send", - "ttot": 9.53392, - "count": 189792, + "ttot": 17.97911, + "count": 253056, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_rank", - "ttot": 6.4779e-7, + "ttot": 8.4427e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, + { + "call": "MPI_Recv", + "ttot": 19.6434, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Comm_size", - "ttot": 2.7608e-7, + "ttot": 3.1127e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.65213622, + "ttot": 0.6567982920000001, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -6610,54 +6336,54 @@ ] }, { - "nr": "38", - "ttot": 29.115996460679003, + "nr": "105", + "ttot": 38.667020802878994, "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 18.542, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Comm_rank", - "ttot": 6.97349e-7, + "ttot": 5.934089999999999e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 0.8811813, + "ttot": 0.911125, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00046908, + "ttot": 0.00046579, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, + { + "call": "MPI_Comm_size", + "ttot": 5.9647e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, { "call": "MPI_Send", - "ttot": 13.69998, + "ttot": 18.5563, "count": 253056, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, - { - "call": "MPI_Recv", - "ttot": 13.88196, - "count": 253056, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, - { - "call": "MPI_Comm_size", - "ttot": 3.4433e-7, - "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" - }, { "call": "MPI_Bcast", - "ttot": 0.652405039, + "ttot": 0.657128823, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -6665,54 +6391,54 @@ ] }, { - "nr": "9", - "ttot": 28.961937120400002, + "nr": "106", + "ttot": 37.42742733189999, "mpiCalls": [ { "call": "MPI_Allreduce", - "ttot": 2.5049261, + "ttot": 0.768979, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, + { + "call": "MPI_Recv", + "ttot": 17.7824, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Barrier", - "ttot": 0.00063345, + "ttot": 0.0008583, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, - { - "call": "MPI_Recv", - "ttot": 13.0674, - "count": 189792, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Send", - "ttot": 12.7363, - "count": 189792, + "ttot": 18.21964, + "count": 253056, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_rank", - "ttot": 8.0297e-7, + "ttot": 6.4081e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 4.9343e-7, + "ttot": 3.6909e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.6526762740000001, + "ttot": 0.655549022, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -6720,54 +6446,109 @@ ] }, { - "nr": "120", - "ttot": 28.915493426502003, + "nr": "107", + "ttot": 37.640968691078, "mpiCalls": [ { "call": "MPI_Allreduce", - "ttot": 0.4529218, + "ttot": 0.7267308, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00034115, + "ttot": 0.00044765, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, + { + "call": "MPI_Send", + "ttot": 17.48666, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 8.864279999999999e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, { "call": "MPI_Recv", - "ttot": 13.62023, + "ttot": 18.7716, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 5.6865e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.6555287860000001, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "108", + "ttot": 34.934121999009, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 15.968700000000002, "count": 253056, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 7.56132e-7, + "ttot": 5.23069e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, + { + "call": "MPI_Allreduce", + "ttot": 0.5475214, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00032543, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, { "call": "MPI_Comm_size", - "ttot": 3.6437e-7, + "ttot": 4.9394e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Send", - "ttot": 14.18995, + "ttot": 17.76342, "count": 253056, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Bcast", - "ttot": 0.652049356, + "ttot": 0.6541541519999999, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -6775,54 +6556,109 @@ ] }, { - "nr": "37", - "ttot": 28.734707068196002, + "nr": "109", + "ttot": 33.421951900632, "mpiCalls": [ { "call": "MPI_Allreduce", - "ttot": 0.9034745000000001, + "ttot": 0.497232, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, + { + "call": "MPI_Recv", + "ttot": 17.869, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Barrier", - "ttot": 0.00084595, + "ttot": 0.00047402, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Send", - "ttot": 13.83035, + "ttot": 14.40053, "count": 253056, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_rank", - "ttot": 6.79526e-7, + "ttot": 6.48272e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 3.7867e-7, + "ttot": 6.2436e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, + { + "call": "MPI_Bcast", + "ttot": 0.6547146079999999, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "110", + "ttot": 37.1123184921, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 0.7054750000000001, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0006072, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 15.2996, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.00000104612, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, { "call": "MPI_Recv", - "ttot": 13.3475, + "ttot": 20.4494, "count": 253056, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, + { + "call": "MPI_Comm_size", + "ttot": 7.4698e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, { "call": "MPI_Bcast", - "ttot": 0.65253556, + "ttot": 0.6572344990000001, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -6830,54 +6666,54 @@ ] }, { - "nr": "102", - "ttot": 28.72930390116, + "nr": "111", + "ttot": 29.933756182946002, "mpiCalls": [ { "call": "MPI_Recv", - "ttot": 13.7112, - "count": 253056, + "ttot": 18.424, + "count": 189792, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 6.6214e-7, + "ttot": 9.11766e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 0.7317729, + "ttot": 0.44067009999999995, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.0010031, + "ttot": 0.0005096, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Comm_size", - "ttot": 3.7302e-7, + "ttot": 6.1218e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Send", - "ttot": 13.63265, - "count": 253056, + "ttot": 10.41388, + "count": 189792, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Bcast", - "ttot": 0.652676866, + "ttot": 0.654694959, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -6885,54 +6721,54 @@ ] }, { - "nr": "121", - "ttot": 28.72451932095001, + "nr": "112", + "ttot": 32.22634869582999, "mpiCalls": [ { "call": "MPI_Allreduce", - "ttot": 0.39306789999999997, + "ttot": 1.2961960000000001, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00052049, + "ttot": 0.00033287, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Recv", - "ttot": 13.244510000000002, - "count": 253056, + "ttot": 19.76083, + "count": 189792, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Send", - "ttot": 14.43413, - "count": 253056, + "ttot": 10.51187, + "count": 189792, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_rank", - "ttot": 7.578800000000001e-7, + "ttot": 7.2518e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 5.3307e-7, + "ttot": 3.2215e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.65228964, + "ttot": 0.6571187785, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -6940,54 +6776,54 @@ ] }, { - "nr": "23", - "ttot": 28.601872105213005, + "nr": "113", + "ttot": 30.660515086216, "mpiCalls": [ { "call": "MPI_Allreduce", - "ttot": 1.4699453999999998, + "ttot": 1.0298393, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, - { - "call": "MPI_Send", - "ttot": 13.13002, - "count": 253056, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Barrier", - "ttot": 0.00070023, + "ttot": 0.00062555, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Recv", - "ttot": 13.34911, + "call": "MPI_Send", + "ttot": 11.492220000000001, "count": 253056, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_rank", - "ttot": 6.23043e-7, + "ttot": 7.021259999999999e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, + { + "call": "MPI_Recv", + "ttot": 17.48359, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Comm_size", - "ttot": 2.6217e-7, + "ttot": 5.8909e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.65209559, + "ttot": 0.654238945, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -6995,109 +6831,54 @@ ] }, { - "nr": "73", - "ttot": 28.50012411524, + "nr": "114", + "ttot": 30.87997731881, "mpiCalls": [ { "call": "MPI_Allreduce", - "ttot": 0.9836877, + "ttot": 0.9793874, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, + { + "call": "MPI_Recv", + "ttot": 17.4217, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Barrier", - "ttot": 0.00057791, + "ttot": 0.00085945, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, - { - "call": "MPI_Send", - "ttot": 12.885449999999999, - "count": 253056, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Comm_rank", - "ttot": 7.203900000000001e-7, + "ttot": 7.629800000000001e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 2.8085e-7, + "ttot": 4.8213e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, - { - "call": "MPI_Recv", - "ttot": 13.977800000000002, - "count": 253056, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, - { - "call": "MPI_Bcast", - "ttot": 0.652607504, - "count": 10, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" - } - ] - }, - { - "nr": "167", - "ttot": 28.456664220841994, - "mpiCalls": [ - { - "call": "MPI_Comm_rank", - "ttot": 4.93472e-7, - "count": 4, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" - }, - { - "call": "MPI_Allreduce", - "ttot": 0.0950011, - "count": 71, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" - }, - { - "call": "MPI_Barrier", - "ttot": 0.00083547, - "count": 2, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" - }, { "call": "MPI_Send", - "ttot": 9.6183, - "count": 126528, + "ttot": 11.82399, + "count": 253056, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, - { - "call": "MPI_Comm_size", - "ttot": 2.5737e-7, - "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" - }, - { - "call": "MPI_Recv", - "ttot": 18.0898, - "count": 126528, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Bcast", - "ttot": 0.6527269, + "ttot": 0.6540392237, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -7105,54 +6886,54 @@ ] }, { - "nr": "90", - "ttot": 28.230415506671005, + "nr": "115", + "ttot": 32.779394783240996, "mpiCalls": [ { "call": "MPI_Allreduce", - "ttot": 0.6905237999999999, + "ttot": 0.9448369, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00088869, + "ttot": 0.00067771, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Recv", - "ttot": 12.42529, + "ttot": 17.51353, "count": 253056, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, + { + "call": "MPI_Send", + "ttot": 13.66618, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Comm_rank", - "ttot": 9.482009999999999e-7, + "ttot": 6.75171e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 6.3647e-7, + "ttot": 4.1607e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, - { - "call": "MPI_Send", - "ttot": 14.46247239, - "count": 253086, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Bcast", - "ttot": 0.651239042, + "ttot": 0.654169082, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -7160,54 +6941,54 @@ ] }, { - "nr": "74", - "ttot": 28.092044619853997, + "nr": "116", + "ttot": 24.984242905102004, "mpiCalls": [ { "call": "MPI_Comm_rank", - "ttot": 5.20834e-7, + "ttot": 5.17382e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 0.9402022999999999, + "ttot": 0.6520372, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00063347, + "ttot": 0.00029796, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Send", - "ttot": 13.80689, + "ttot": 11.00043, "count": 253056, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Recv", - "ttot": 12.69125, + "ttot": 12.6786, "count": 253056, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_size", - "ttot": 2.2302e-7, + "ttot": 3.9172e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.653068106, + "ttot": 0.652876836, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -7215,54 +6996,54 @@ ] }, { - "nr": "123", - "ttot": 28.071878746762003, + "nr": "117", + "ttot": 26.975534179565003, "mpiCalls": [ - { - "call": "MPI_Send", - "ttot": 13.25433, - "count": 253056, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Allreduce", - "ttot": 0.3252364, + "ttot": 0.6147639, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, - { - "call": "MPI_Barrier", - "ttot": 0.00048125, - "count": 2, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" - }, { "call": "MPI_Recv", - "ttot": 13.8396, + "ttot": 12.5, "count": 253056, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, + { + "call": "MPI_Barrier", + "ttot": 0.00065244, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, { "call": "MPI_Comm_rank", - "ttot": 6.70902e-7, + "ttot": 6.951849999999999e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 6.2786e-7, + "ttot": 4.2738e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, + { + "call": "MPI_Send", + "ttot": 13.20758, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Bcast", - "ttot": 0.6522297979999999, + "ttot": 0.652536717, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -7270,54 +7051,54 @@ ] }, { - "nr": "137", - "ttot": 27.848862940669996, + "nr": "118", + "ttot": 27.666390418055002, "mpiCalls": [ - { - "call": "MPI_Send", - "ttot": 13.182490000000001, - "count": 253056, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Allreduce", - "ttot": 0.23468640000000002, + "ttot": 0.581964, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.0005673, + "ttot": 0.0010281, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, + { + "call": "MPI_Recv", + "ttot": 12.083680000000001, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Send", + "ttot": 14.34711, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Comm_rank", - "ttot": 6.1866e-7, + "ttot": 5.15605e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 5.2301e-7, + "ttot": 4.5345e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, - { - "call": "MPI_Recv", - "ttot": 13.77829, - "count": 253056, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Bcast", - "ttot": 0.652828099, + "ttot": 0.6526073490000001, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -7325,54 +7106,54 @@ ] }, { - "nr": "34", - "ttot": 27.82455066207, + "nr": "119", + "ttot": 27.290745633527, "mpiCalls": [ + { + "call": "MPI_Comm_rank", + "ttot": 5.91727e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, { "call": "MPI_Allreduce", - "ttot": 1.1058137000000001, + "ttot": 0.5275987, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00056055, + "ttot": 0.00063847, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Send", - "ttot": 13.07666, + "ttot": 13.16359, "count": 253056, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { - "call": "MPI_Comm_rank", - "ttot": 6.904e-7, - "count": 4, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "call": "MPI_Recv", + "ttot": 12.946299999999999, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_size", - "ttot": 3.8867e-7, + "ttot": 6.278e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, - { - "call": "MPI_Recv", - "ttot": 12.988869999999999, - "count": 253056, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Bcast", - "ttot": 0.652645333, + "ttot": 0.652617244, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -7380,54 +7161,54 @@ ] }, { - "nr": "33", - "ttot": 27.72681261123, + "nr": "120", + "ttot": 28.915493426502003, "mpiCalls": [ { "call": "MPI_Allreduce", - "ttot": 1.1288069, + "ttot": 0.4529218, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00072907, + "ttot": 0.00034115, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Recv", - "ttot": 13.4539, + "ttot": 13.62023, "count": 253056, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 7.4126e-7, + "ttot": 7.56132e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, - { - "call": "MPI_Send", - "ttot": 12.491, - "count": 253056, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Comm_size", - "ttot": 3.4997e-7, + "ttot": 3.6437e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, + { + "call": "MPI_Send", + "ttot": 14.18995, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Bcast", - "ttot": 0.65237555, + "ttot": 0.652049356, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -7435,54 +7216,54 @@ ] }, { - "nr": "94", - "ttot": 27.666750484636, + "nr": "121", + "ttot": 28.72451932095001, "mpiCalls": [ - { - "call": "MPI_Recv", - "ttot": 12.96815, - "count": 253056, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, - { - "call": "MPI_Comm_rank", - "ttot": 5.21756e-7, - "count": 4, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" - }, { "call": "MPI_Allreduce", - "ttot": 0.4964294, + "ttot": 0.39306789999999997, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.0006406, + "ttot": 0.00052049, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, + { + "call": "MPI_Recv", + "ttot": 13.244510000000002, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Send", - "ttot": 13.549734149999999, - "count": 253086, + "ttot": 14.43413, + "count": 253056, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, + { + "call": "MPI_Comm_rank", + "ttot": 7.578800000000001e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, { "call": "MPI_Comm_size", - "ttot": 2.8088e-7, + "ttot": 5.3307e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.6517955320000001, + "ttot": 0.65228964, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -7490,54 +7271,54 @@ ] }, { - "nr": "118", - "ttot": 27.666390418055002, + "nr": "122", + "ttot": 29.55741415787, "mpiCalls": [ + { + "call": "MPI_Comm_rank", + "ttot": 6.9788e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, { "call": "MPI_Allreduce", - "ttot": 0.581964, + "ttot": 0.35865, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.0010281, + "ttot": 0.00086312, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, - { - "call": "MPI_Recv", - "ttot": 12.083680000000001, - "count": 253056, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Send", - "ttot": 14.34711, + "ttot": 13.745909999999999, "count": 253056, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { - "call": "MPI_Comm_rank", - "ttot": 5.15605e-7, - "count": 4, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "call": "MPI_Recv", + "ttot": 14.799700000000001, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_size", - "ttot": 4.5345e-7, + "ttot": 4.5699e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.6526073490000001, + "ttot": 0.652289883, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -7545,54 +7326,54 @@ ] }, { - "nr": "103", - "ttot": 27.65813435714, + "nr": "123", + "ttot": 28.071878746762003, "mpiCalls": [ { - "call": "MPI_Recv", - "ttot": 13.9766, + "call": "MPI_Send", + "ttot": 13.25433, "count": 253056, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Allreduce", - "ttot": 0.7102217, + "ttot": 0.3252364, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00066534, + "ttot": 0.00048125, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Send", - "ttot": 12.3179, + "call": "MPI_Recv", + "ttot": 13.8396, "count": 253056, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 6.6517e-7, + "ttot": 6.70902e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 4.9997e-7, + "ttot": 6.2786e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.6527461520000001, + "ttot": 0.6522297979999999, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -7600,54 +7381,54 @@ ] }, { - "nr": "91", - "ttot": 27.630838657159, + "nr": "124", + "ttot": 26.827663003248002, "mpiCalls": [ - { - "call": "MPI_Comm_rank", - "ttot": 8.290790000000001e-7, - "count": 4, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" - }, { "call": "MPI_Allreduce", - "ttot": 0.6238636, + "ttot": 0.31557650000000004, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00054308, + "ttot": 0.00028938, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, + { + "call": "MPI_Recv", + "ttot": 13.24752, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Send", - "ttot": 14.00666116, - "count": 253086, + "ttot": 12.61081, + "count": 253056, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, + { + "call": "MPI_Comm_rank", + "ttot": 6.48218e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, { "call": "MPI_Comm_size", - "ttot": 6.1908e-7, + "ttot": 3.1303e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, - { - "call": "MPI_Recv", - "ttot": 12.3483, - "count": 253056, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Bcast", - "ttot": 0.651469369, + "ttot": 0.653466162, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -7655,54 +7436,54 @@ ] }, { - "nr": "136", - "ttot": 27.6168687979, + "nr": "125", + "ttot": 21.01923364136, "mpiCalls": [ { - "call": "MPI_Recv", - "ttot": 14.502500000000001, - "count": 253056, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "call": "MPI_Send", + "ttot": 8.36989, + "count": 189792, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_rank", - "ttot": 7.4692e-7, + "ttot": 6.0561e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 0.2802768, + "ttot": 0.2704312, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00034283, + "ttot": 0.00047549, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Send", - "ttot": 12.18121, - "count": 253056, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "call": "MPI_Recv", + "ttot": 11.7251, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_size", - "ttot": 3.2998e-7, + "ttot": 4.8475e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.652538091, + "ttot": 0.6533358610000001, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -7710,54 +7491,54 @@ ] }, { - "nr": "24", - "ttot": 27.508776617753995, + "nr": "126", + "ttot": 22.06919976546, "mpiCalls": [ { - "call": "MPI_Comm_rank", - "ttot": 8.70824e-7, - "count": 4, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "call": "MPI_Send", + "ttot": 7.774260000000001, + "count": 189792, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Allreduce", - "ttot": 1.3867216999999998, + "ttot": 0.8825954, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, - { - "call": "MPI_Recv", - "ttot": 12.7864, - "count": 253056, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Barrier", - "ttot": 0.00041662, + "ttot": 0.00060741, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Send", - "ttot": 12.682879999999999, - "count": 253056, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "call": "MPI_Recv", + "ttot": 12.758600000000001, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 7.582100000000001e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 5.1693e-7, + "ttot": 3.2825e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.6523569100000001, + "ttot": 0.653135869, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -7765,54 +7546,54 @@ ] }, { - "nr": "92", - "ttot": 27.42310658231, + "nr": "127", + "ttot": 24.108856680213005, "mpiCalls": [ { "call": "MPI_Allreduce", - "ttot": 0.572513, + "ttot": 0.8091551, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00030485, + "ttot": 0.00047414, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, - { - "call": "MPI_Send", - "ttot": 13.62907256, - "count": 253086, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Recv", - "ttot": 12.5689, + "ttot": 12.2036, "count": 253056, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, + { + "call": "MPI_Send", + "ttot": 10.442710000000002, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Comm_rank", - "ttot": 6.1702e-7, + "ttot": 6.09083e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 2.9829e-7, + "ttot": 6.5213e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.652315257, + "ttot": 0.652916179, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -7820,54 +7601,54 @@ ] }, { - "nr": "26", - "ttot": 27.396048750829998, + "nr": "128", + "ttot": 37.37039987649601, "mpiCalls": [ + { + "call": "MPI_Send", + "ttot": 16.03452, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Allreduce", - "ttot": 1.3181621, + "ttot": 1.034277, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00068828, + "ttot": 0.00041771, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Send", - "ttot": 11.81771, - "count": 253056, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "call": "MPI_Comm_rank", + "ttot": 6.13876e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Recv", - "ttot": 13.60689, + "ttot": 19.64568, "count": 253056, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, - { - "call": "MPI_Comm_rank", - "ttot": 8.551599999999999e-7, - "count": 4, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" - }, { "call": "MPI_Comm_size", - "ttot": 5.7867e-7, + "ttot": 4.1562e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.6525969370000001, + "ttot": 0.655504137, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -7875,54 +7656,54 @@ ] }, { - "nr": "20", - "ttot": 27.38664781955, + "nr": "129", + "ttot": 36.072382286749, "mpiCalls": [ - { - "call": "MPI_Allreduce", - "ttot": 1.5949525, - "count": 71, - "color": "rgb(225, 151, 76)", - "hoverColor": "rgb(245, 171, 96)" - }, { "call": "MPI_Send", - "ttot": 11.29334, + "ttot": 15.14948, "count": 253056, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, + { + "call": "MPI_Allreduce", + "ttot": 0.9824120000000001, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, { "call": "MPI_Barrier", - "ttot": 0.00037983, + "ttot": 0.0006951, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Recv", - "ttot": 13.845759999999999, + "ttot": 19.28432, "count": 253056, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 5.7652e-7, + "ttot": 6.93879e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 3.0303e-7, + "ttot": 5.6387e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.65221461, + "ttot": 0.655473929, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -7930,54 +7711,54 @@ ] }, { - "nr": "10", - "ttot": 27.316664589089996, + "nr": "130", + "ttot": 36.283174141903004, "mpiCalls": [ { - "call": "MPI_Send", - "ttot": 11.98198, - "count": 189792, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "call": "MPI_Recv", + "ttot": 20.11612, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 6.3647e-7, + "ttot": 5.25193e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 2.4534445, + "ttot": 0.8976060000000001, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00052324, + "ttot": 0.00086342, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Recv", - "ttot": 12.228100000000001, - "count": 189792, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "call": "MPI_Send", + "ttot": 14.613150000000001, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 4.1562e-7, + "ttot": 3.8171e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.6526157969999999, + "ttot": 0.655433815, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -7985,54 +7766,54 @@ ] }, { - "nr": "154", - "ttot": 27.316290549478005, + "nr": "131", + "ttot": 35.73553218439, "mpiCalls": [ + { + "call": "MPI_Send", + "ttot": 13.92418, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Allreduce", - "ttot": 0.7677209, + "ttot": 0.887814, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00084984, + "ttot": 0.00072281, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, - { - "call": "MPI_Recv", - "ttot": 17.5229, - "count": 126528, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Comm_rank", - "ttot": 5.58638e-7, + "ttot": 5.6777e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, + { + "call": "MPI_Recv", + "ttot": 20.26925, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Comm_size", - "ttot": 4.4084e-7, + "ttot": 3.9562e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, - { - "call": "MPI_Send", - "ttot": 8.37241, - "count": 126528, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Bcast", - "ttot": 0.6524088100000001, + "ttot": 0.653564411, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -8040,54 +7821,54 @@ ] }, { - "nr": "35", - "ttot": 27.294206107756, + "nr": "132", + "ttot": 32.135776188665005, "mpiCalls": [ { - "call": "MPI_Comm_rank", - "ttot": 5.96486e-7, - "count": 4, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "call": "MPI_Send", + "ttot": 13.153580000000002, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Allreduce", - "ttot": 1.053582, + "ttot": 0.6397844, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00054706, + "ttot": 0.00020251, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, - { - "call": "MPI_Send", - "ttot": 12.39037, - "count": 253056, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Recv", - "ttot": 13.197300000000002, + "ttot": 17.68818, "count": 253056, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, + { + "call": "MPI_Comm_rank", + "ttot": 4.96515e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, { "call": "MPI_Comm_size", - "ttot": 2.8127e-7, + "ttot": 3.6215e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.65240617, + "ttot": 0.65402842, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -8095,54 +7876,54 @@ ] }, { - "nr": "119", - "ttot": 27.290745633527, + "nr": "133", + "ttot": 32.318433626936, "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 16.57655, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Comm_rank", - "ttot": 5.91727e-7, + "ttot": 5.45646e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 0.5275987, + "ttot": 0.5892212, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00063847, + "ttot": 0.00051517, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Send", - "ttot": 13.16359, + "ttot": 14.49765, "count": 253056, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, - { - "call": "MPI_Recv", - "ttot": 12.946299999999999, - "count": 253056, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Comm_size", - "ttot": 6.278e-7, + "ttot": 2.3129e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.652617244, + "ttot": 0.65449648, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -8150,54 +7931,54 @@ ] }, { - "nr": "25", - "ttot": 27.232633244416, + "nr": "134", + "ttot": 37.695410270396, "mpiCalls": [ { "call": "MPI_Send", - "ttot": 12.835249999999998, + "ttot": 15.877369999999999, "count": 253056, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Allreduce", - "ttot": 1.3440624, + "ttot": 0.760051, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00071287, + "ttot": 0.000872, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Comm_rank", - "ttot": 5.59956e-7, + "ttot": 7.70416e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, - { - "call": "MPI_Comm_size", - "ttot": 3.1346e-7, - "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" - }, { "call": "MPI_Recv", - "ttot": 12.40026, + "ttot": 20.39985, "count": 253056, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, + { + "call": "MPI_Comm_size", + "ttot": 3.6998e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, { "call": "MPI_Bcast", - "ttot": 0.6523471009999999, + "ttot": 0.65726613, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -8205,54 +7986,54 @@ ] }, { - "nr": "21", - "ttot": 27.13753487437, + "nr": "135", + "ttot": 31.923805272550002, "mpiCalls": [ { - "call": "MPI_Comm_rank", - "ttot": 6.739e-7, - "count": 4, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" - }, - { - "call": "MPI_Recv", - "ttot": 12.78227, + "call": "MPI_Send", + "ttot": 13.81422, "count": 253056, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Allreduce", - "ttot": 1.5522327, + "ttot": 0.4903846, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00084617, + "ttot": 0.00051339, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Send", - "ttot": 12.149829999999998, + "call": "MPI_Recv", + "ttot": 16.96461, "count": 253056, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.512699999999999e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 3.5347e-7, + "ttot": 4.0128e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.652354977, + "ttot": 0.6540762299999999, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -8260,54 +8041,54 @@ ] }, { - "nr": "155", - "ttot": 27.114734248490002, + "nr": "136", + "ttot": 27.6168687979, "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 14.502500000000001, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 7.4692e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, { "call": "MPI_Allreduce", - "ttot": 0.6732346, + "ttot": 0.2802768, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00062917, + "ttot": 0.00034283, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Send", - "ttot": 9.2579, - "count": 189792, + "ttot": 12.18121, + "count": 253056, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, - { - "call": "MPI_Comm_rank", - "ttot": 8.3037e-7, - "count": 4, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" - }, { "call": "MPI_Comm_size", - "ttot": 6.2212e-7, + "ttot": 3.2998e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, - { - "call": "MPI_Recv", - "ttot": 16.5305, - "count": 189792, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Bcast", - "ttot": 0.652469026, + "ttot": 0.652538091, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -8315,54 +8096,54 @@ ] }, { - "nr": "36", - "ttot": 27.03596940318, + "nr": "137", + "ttot": 27.848862940669996, "mpiCalls": [ + { + "call": "MPI_Send", + "ttot": 13.182490000000001, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Allreduce", - "ttot": 0.9507437, + "ttot": 0.23468640000000002, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00037927, + "ttot": 0.0005673, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, - { - "call": "MPI_Recv", - "ttot": 12.569019999999998, - "count": 253056, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Comm_rank", - "ttot": 7.3691e-7, + "ttot": 6.1866e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, - { - "call": "MPI_Send", - "ttot": 12.86339, - "count": 253056, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Comm_size", - "ttot": 3.9127e-7, + "ttot": 5.2301e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, + { + "call": "MPI_Recv", + "ttot": 13.77829, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Bcast", - "ttot": 0.652435305, + "ttot": 0.652828099, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -8425,54 +8206,54 @@ ] }, { - "nr": "117", - "ttot": 26.975534179565003, + "nr": "139", + "ttot": 22.613326084429996, "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 13.78, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.8736e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, { "call": "MPI_Allreduce", - "ttot": 0.6147639, + "ttot": 0.1739483, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, - { - "call": "MPI_Recv", - "ttot": 12.5, - "count": 253056, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Barrier", - "ttot": 0.00065244, + "ttot": 0.00064849, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Comm_rank", - "ttot": 6.951849999999999e-7, - "count": 4, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" + "call": "MPI_Send", + "ttot": 8.006039999999999, + "count": 189792, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 4.2738e-7, + "ttot": 3.0607e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, - { - "call": "MPI_Send", - "ttot": 13.20758, - "count": 253056, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Bcast", - "ttot": 0.652536717, + "ttot": 0.6526884009999999, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -8480,109 +8261,109 @@ ] }, { - "nr": "124", - "ttot": 26.827663003248002, + "nr": "140", + "ttot": 32.28608528593, "mpiCalls": [ + { + "call": "MPI_Send", + "ttot": 9.69379, + "count": 189792, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Allreduce", - "ttot": 0.31557650000000004, + "ttot": 1.1782924000000001, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00028938, + "ttot": 0.00022953, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, - { - "call": "MPI_Recv", - "ttot": 13.24752, - "count": 253056, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, - { - "call": "MPI_Send", - "ttot": 12.61081, - "count": 253056, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Comm_rank", - "ttot": 6.48218e-7, + "ttot": 7.9783e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 3.1303e-7, + "ttot": 5.761e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { - "call": "MPI_Bcast", - "ttot": 0.653466162, - "count": 10, + "call": "MPI_Recv", + "ttot": 20.7563, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.657471982, + "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" } ] }, { - "nr": "164", - "ttot": 26.773434621051, + "nr": "141", + "ttot": 31.271421290542, "mpiCalls": [ - { - "call": "MPI_Comm_rank", - "ttot": 6.26471e-7, - "count": 4, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" - }, { "call": "MPI_Allreduce", - "ttot": 0.2062754, + "ttot": 0.8599558, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, + { + "call": "MPI_Send", + "ttot": 12.612860000000001, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Barrier", - "ttot": 0.00033236, + "ttot": 0.00050255, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Send", - "ttot": 11.36059, - "count": 189792, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "call": "MPI_Comm_rank", + "ttot": 6.700120000000001e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Recv", + "ttot": 17.143900000000002, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_size", - "ttot": 3.1258e-7, + "ttot": 3.7653e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, - { - "call": "MPI_Recv", - "ttot": 14.5535, - "count": 189792, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Bcast", - "ttot": 0.652735922, + "ttot": 0.654201894, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -8590,54 +8371,54 @@ ] }, { - "nr": "166", - "ttot": 26.624431974384002, + "nr": "142", + "ttot": 32.991879500477, "mpiCalls": [ { "call": "MPI_Allreduce", - "ttot": 0.1251617, + "ttot": 0.8383098, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, + { + "call": "MPI_Recv", + "ttot": 17.707629999999998, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Barrier", - "ttot": 0.0011024, + "ttot": 0.00078635, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, - { - "call": "MPI_Recv", - "ttot": 15.0078, - "count": 189792, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Comm_rank", - "ttot": 7.89084e-7, + "ttot": 6.852170000000001e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, + { + "call": "MPI_Send", + "ttot": 13.790790000000001, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Comm_size", - "ttot": 7.543e-7, + "ttot": 3.7826e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, - { - "call": "MPI_Send", - "ttot": 10.83786, - "count": 189792, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Bcast", - "ttot": 0.652506331, + "ttot": 0.654362287, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -8645,54 +8426,54 @@ ] }, { - "nr": "89", - "ttot": 26.610458816262994, + "nr": "143", + "ttot": 31.675850522248002, "mpiCalls": [ + { + "call": "MPI_Send", + "ttot": 13.51214, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Allreduce", - "ttot": 0.7274068, + "ttot": 0.7820552000000001, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00054438, + "ttot": 0.00059187, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, - { - "call": "MPI_Send", - "ttot": 12.985697089999999, - "count": 253086, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, - { - "call": "MPI_Recv", - "ttot": 12.244900000000001, - "count": 253056, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Comm_rank", - "ttot": 7.06883e-7, + "ttot": 7.495880000000001e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 7.3038e-7, + "ttot": 2.5566e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, + { + "call": "MPI_Recv", + "ttot": 16.72655, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Bcast", - "ttot": 0.651909109, + "ttot": 0.654512447, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -8700,54 +8481,54 @@ ] }, { - "nr": "165", - "ttot": 26.577393979206, + "nr": "144", + "ttot": 35.3791729521, "mpiCalls": [ { - "call": "MPI_Send", - "ttot": 12.39125, - "count": 189792, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "call": "MPI_Comm_rank", + "ttot": 7.095299999999999e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 0.1475675, + "ttot": 0.73115, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00075919, + "ttot": 0.00031539, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, + { + "call": "MPI_Send", + "ttot": 13.373649999999998, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Recv", - "ttot": 13.3854, - "count": 189792, + "ttot": 20.61962, + "count": 253056, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, - { - "call": "MPI_Comm_rank", - "ttot": 6.14326e-7, - "count": 4, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" - }, { "call": "MPI_Comm_size", - "ttot": 3.8388e-7, + "ttot": 2.9607e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.652416291, + "ttot": 0.6544365565, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -8755,54 +8536,54 @@ ] }, { - "nr": "101", - "ttot": 26.475780030467998, + "nr": "145", + "ttot": 34.962791845111006, "mpiCalls": [ { "call": "MPI_Allreduce", - "ttot": 0.79440705, + "ttot": 0.692067, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, + { + "call": "MPI_Recv", + "ttot": 20.384490000000003, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Barrier", - "ttot": 0.00065611, + "ttot": 0.0006309, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, - { - "call": "MPI_Send", - "ttot": 11.74388, - "count": 253056, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Comm_rank", - "ttot": 6.25178e-7, + "ttot": 5.056209999999999e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { - "call": "MPI_Recv", - "ttot": 13.284199999999998, + "call": "MPI_Send", + "ttot": 13.23095, "count": 253056, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 3.1129e-7, + "ttot": 3.7649e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.652635934, + "ttot": 0.654653063, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -8810,54 +8591,54 @@ ] }, { - "nr": "72", - "ttot": 26.44250960745, + "nr": "146", + "ttot": 36.102074990292, "mpiCalls": [ { "call": "MPI_Allreduce", - "ttot": 1.0510842, + "ttot": 0.692274, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, + { + "call": "MPI_Send", + "ttot": 13.98256, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Barrier", - "ttot": 0.00032687, + "ttot": 0.00081338, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, - { - "call": "MPI_Recv", - "ttot": 14.1067, - "count": 253056, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Comm_rank", - "ttot": 5.5213e-7, + "ttot": 5.58652e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 3.3432e-7, + "ttot": 3.8084e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { - "call": "MPI_Send", - "ttot": 10.63185, + "call": "MPI_Recv", + "ttot": 20.77093, "count": 253056, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Bcast", - "ttot": 0.652547651, + "ttot": 0.6554966708000001, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -8865,54 +8646,54 @@ ] }, { - "nr": "11", - "ttot": 26.22384551982, + "nr": "147", + "ttot": 35.969963347249, "mpiCalls": [ { - "call": "MPI_Send", - "ttot": 10.49761, - "count": 189792, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "call": "MPI_Comm_rank", + "ttot": 7.34289e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 2.4219849, + "ttot": 0.625113, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00049271, + "ttot": 0.00081184, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, + { + "call": "MPI_Send", + "ttot": 13.88831, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Recv", - "ttot": 12.651299999999999, - "count": 189792, + "ttot": 20.800710000000002, + "count": 253056, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, - { - "call": "MPI_Comm_rank", - "ttot": 8.256e-7, - "count": 4, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" - }, { "call": "MPI_Comm_size", - "ttot": 3.8822e-7, + "ttot": 3.9606e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.652456696, + "ttot": 0.6550173769, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -8920,54 +8701,54 @@ ] }, { - "nr": "93", - "ttot": 25.916307565937004, + "nr": "148", + "ttot": 37.518957977069, "mpiCalls": [ { "call": "MPI_Allreduce", - "ttot": 0.50901763, + "ttot": 0.6427, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00046185, + "ttot": 0.00032031, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Recv", - "ttot": 11.01528, + "ttot": 21.05886, "count": 253056, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 4.99607e-7, + "ttot": 7.426089999999999e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, + { + "call": "MPI_Send", + "ttot": 15.16007, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Comm_size", - "ttot": 4.0133e-7, + "ttot": 4.4046e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, - { - "call": "MPI_Send", - "ttot": 13.739511839999999, - "count": 253086, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Bcast", - "ttot": 0.6520353449999999, + "ttot": 0.657006484, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -8975,54 +8756,54 @@ ] }, { - "nr": "100", - "ttot": 25.830788247252002, + "nr": "149", + "ttot": 37.195689837260005, "mpiCalls": [ - { - "call": "MPI_Recv", - "ttot": 13.792620000000001, - "count": 253056, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Allreduce", - "ttot": 0.8523387, + "ttot": 0.646332, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, - { - "call": "MPI_Barrier", - "ttot": 0.00035288, - "count": 2, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" - }, { "call": "MPI_Send", - "ttot": 10.53291, + "ttot": 14.884830000000001, "count": 253056, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, + { + "call": "MPI_Barrier", + "ttot": 0.00067051, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, { "call": "MPI_Comm_rank", - "ttot": 5.80392e-7, + "ttot": 7.6612e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 3.2086e-7, + "ttot": 3.9914e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, + { + "call": "MPI_Recv", + "ttot": 21.00644, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Bcast", - "ttot": 0.6525657659999999, + "ttot": 0.657416162, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -9030,54 +8811,54 @@ ] }, { - "nr": "88", - "ttot": 25.304456140722998, + "nr": "150", + "ttot": 37.459177337419995, "mpiCalls": [ { "call": "MPI_Comm_rank", - "ttot": 4.62573e-7, + "ttot": 7.8393e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 0.7860210999999999, + "ttot": 0.575936, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00042393, + "ttot": 0.0011637, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Send", - "ttot": 10.8882718, - "count": 253086, + "ttot": 14.98688, + "count": 253056, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, - { - "call": "MPI_Comm_size", - "ttot": 3.1215e-7, - "count": 1, - "color": "rgb(144, 103, 167)", - "hoverColor": "rgb(164, 123, 187)" - }, { "call": "MPI_Recv", - "ttot": 12.9782, + "ttot": 21.2379, "count": 253056, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, + { + "call": "MPI_Comm_size", + "ttot": 3.1349e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, { "call": "MPI_Bcast", - "ttot": 0.651538536, + "ttot": 0.6572965399999999, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -9085,54 +8866,54 @@ ] }, { - "nr": "116", - "ttot": 24.984242905102004, + "nr": "151", + "ttot": 36.187900942346, "mpiCalls": [ - { - "call": "MPI_Comm_rank", - "ttot": 5.17382e-7, - "count": 4, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" - }, { "call": "MPI_Allreduce", - "ttot": 0.6520372, + "ttot": 0.48983, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00029796, + "ttot": 0.00080364, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Send", - "ttot": 11.00043, - "count": 253056, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "call": "MPI_Comm_rank", + "ttot": 5.89156e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Recv", - "ttot": 12.6786, + "ttot": 20.92474, "count": 253056, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, + { + "call": "MPI_Send", + "ttot": 14.116700000000002, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Comm_size", - "ttot": 3.9172e-7, + "ttot": 3.9219e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.652876836, + "ttot": 0.655826321, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -9140,54 +8921,54 @@ ] }, { - "nr": "32", - "ttot": 24.978433854370003, + "nr": "152", + "ttot": 23.468476524655998, "mpiCalls": [ - { - "call": "MPI_Comm_rank", - "ttot": 9.3906e-7, - "count": 4, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" - }, { "call": "MPI_Allreduce", - "ttot": 1.1742278, + "ttot": 0.17502050000000002, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00041877, + "ttot": 0.00034648, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Send", - "ttot": 10.47548, + "ttot": 8.44987, "count": 253056, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { - "call": "MPI_Recv", - "ttot": 12.676000000000002, - "count": 253056, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "call": "MPI_Comm_rank", + "ttot": 5.308259999999999e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 5.5431e-7, + "ttot": 4.6083e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, + { + "call": "MPI_Recv", + "ttot": 14.1919, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Bcast", - "ttot": 0.6523057910000001, + "ttot": 0.651338553, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -9195,54 +8976,54 @@ ] }, { - "nr": "8", - "ttot": 24.840179401472, + "nr": "153", + "ttot": 23.47463305555, "mpiCalls": [ { - "call": "MPI_Send", - "ttot": 9.2573, - "count": 189792, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "call": "MPI_Comm_rank", + "ttot": 7.8648e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 2.5650394000000003, + "ttot": 0.1387021, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00039233, + "ttot": 0.00067125, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Recv", - "ttot": 12.3647, + "ttot": 14.655899999999999, "count": 189792, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, - { - "call": "MPI_Comm_rank", - "ttot": 5.52112e-7, - "count": 4, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" - }, { "call": "MPI_Comm_size", - "ttot": 3.6736e-7, + "ttot": 3.0607e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, + { + "call": "MPI_Send", + "ttot": 8.0266, + "count": 189792, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Bcast", - "ttot": 0.652746752, + "ttot": 0.6527586129999999, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -9250,54 +9031,54 @@ ] }, { - "nr": "75", - "ttot": 24.655280467678004, + "nr": "154", + "ttot": 27.316290549478005, "mpiCalls": [ { "call": "MPI_Allreduce", - "ttot": 0.8915462, + "ttot": 0.7677209, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00061513, + "ttot": 0.00084984, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Recv", - "ttot": 13.4937, - "count": 253056, + "ttot": 17.5229, + "count": 126528, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 6.712479999999999e-7, + "ttot": 5.58638e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 6.7343e-7, + "ttot": 4.4084e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Send", - "ttot": 9.61795, - "count": 253056, + "ttot": 8.37241, + "count": 126528, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Bcast", - "ttot": 0.651467793, + "ttot": 0.6524088100000001, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -9305,54 +9086,54 @@ ] }, { - "nr": "39", - "ttot": 24.307002226719998, + "nr": "155", + "ttot": 27.114734248490002, "mpiCalls": [ { "call": "MPI_Allreduce", - "ttot": 0.8454048, + "ttot": 0.6732346, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00047998, + "ttot": 0.00062917, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, + { + "call": "MPI_Send", + "ttot": 9.2579, + "count": 189792, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Comm_rank", - "ttot": 8.755900000000001e-7, + "ttot": 8.3037e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, - { - "call": "MPI_Recv", - "ttot": 12.643500000000001, - "count": 253056, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, - { - "call": "MPI_Send", - "ttot": 10.16477, - "count": 253056, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Comm_size", - "ttot": 5.8213e-7, + "ttot": 6.2212e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, + { + "call": "MPI_Recv", + "ttot": 16.5305, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Bcast", - "ttot": 0.652845989, + "ttot": 0.652469026, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -9360,54 +9141,54 @@ ] }, { - "nr": "127", - "ttot": 24.108856680213005, + "nr": "156", + "ttot": 36.833862926167996, "mpiCalls": [ { "call": "MPI_Allreduce", - "ttot": 0.8091551, + "ttot": 0.937169, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00047414, + "ttot": 0.00030693, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, - { - "call": "MPI_Recv", - "ttot": 12.2036, - "count": 253056, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Send", - "ttot": 10.442710000000002, - "count": 253056, + "ttot": 15.148089999999998, + "count": 189792, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, + { + "call": "MPI_Recv", + "ttot": 20.0922, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Comm_rank", - "ttot": 6.09083e-7, + "ttot": 6.11268e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 6.5213e-7, + "ttot": 2.539e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.652916179, + "ttot": 0.656096131, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -9415,54 +9196,54 @@ ] }, { - "nr": "27", - "ttot": 23.636978638074996, + "nr": "157", + "ttot": 36.401604602167005, "mpiCalls": [ - { - "call": "MPI_Comm_rank", - "ttot": 6.16915e-7, - "count": 4, - "color": "rgb(128, 133, 133)", - "hoverColor": "rgb(148, 153, 153)" - }, { "call": "MPI_Allreduce", - "ttot": 1.2792537, + "ttot": 0.801302, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, + { + "call": "MPI_Barrier", + "ttot": 0.00058587, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, { "call": "MPI_Recv", - "ttot": 13.2691, + "ttot": 20.0197, "count": 189792, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { - "call": "MPI_Barrier", - "ttot": 0.00073765, - "count": 2, - "color": "rgb(132, 186, 91)", - "hoverColor": "rgb(152, 206, 111)" + "call": "MPI_Comm_rank", + "ttot": 7.21277e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Send", - "ttot": 8.43526, + "ttot": 14.92472, "count": 189792, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 2.2216e-7, + "ttot": 2.8389e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.652626449, + "ttot": 0.655295727, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -9470,54 +9251,54 @@ ] }, { - "nr": "153", - "ttot": 23.47463305555, + "nr": "158", + "ttot": 36.276396912131, "mpiCalls": [ { "call": "MPI_Comm_rank", - "ttot": 7.8648e-7, + "ttot": 5.11671e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 0.1387021, + "ttot": 0.736773, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00067125, + "ttot": 0.00075731, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { - "call": "MPI_Recv", - "ttot": 14.655899999999999, + "call": "MPI_Send", + "ttot": 14.27229, "count": 189792, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 3.0607e-7, + "ttot": 3.1346e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { - "call": "MPI_Send", - "ttot": 8.0266, + "call": "MPI_Recv", + "ttot": 20.6111, "count": 189792, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Bcast", - "ttot": 0.6527586129999999, + "ttot": 0.6554757769999999, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -9525,54 +9306,54 @@ ] }, { - "nr": "152", - "ttot": 23.468476524655998, + "nr": "159", + "ttot": 37.17304893617999, "mpiCalls": [ { "call": "MPI_Allreduce", - "ttot": 0.17502050000000002, + "ttot": 0.809231, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00034648, + "ttot": 0.00065031, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Send", - "ttot": 8.44987, - "count": 253056, + "ttot": 13.677189999999998, + "count": 189792, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, + { + "call": "MPI_Recv", + "ttot": 22.0289, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, { "call": "MPI_Comm_rank", - "ttot": 5.308259999999999e-7, + "ttot": 8.472999999999999e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 4.6083e-7, + "ttot": 4.7388e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, - { - "call": "MPI_Recv", - "ttot": 14.1919, - "count": 253056, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Bcast", - "ttot": 0.651338553, + "ttot": 0.657076305, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -9580,54 +9361,54 @@ ] }, { - "nr": "95", - "ttot": 23.314194205916, + "nr": "160", + "ttot": 35.70621885125801, "mpiCalls": [ { "call": "MPI_Allreduce", - "ttot": 0.4586103, + "ttot": 0.582158, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00048789, + "ttot": 0.00039439, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, - { - "call": "MPI_Send", - "ttot": 10.75110975, - "count": 253086, - "color": "rgb(211, 94, 96)", - "hoverColor": "rgb(231, 114, 116)" - }, { "call": "MPI_Recv", - "ttot": 11.452000000000002, - "count": 253056, + "ttot": 22.1723, + "count": 189792, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 4.60026e-7, + "ttot": 4.5384799999999995e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, + { + "call": "MPI_Send", + "ttot": 12.296389999999999, + "count": 189792, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, { "call": "MPI_Comm_size", - "ttot": 3.5089e-7, + "ttot": 3.1041e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.6519854549999999, + "ttot": 0.654975697, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -9635,109 +9416,109 @@ ] }, { - "nr": "139", - "ttot": 22.613326084429996, + "nr": "161", + "ttot": 35.321074858797004, "mpiCalls": [ - { - "call": "MPI_Recv", - "ttot": 13.78, - "count": 189792, - "color": "rgb(114, 147, 203)", - "hoverColor": "rgb(134, 167, 223)" - }, { "call": "MPI_Comm_rank", - "ttot": 5.8736e-7, + "ttot": 6.21687e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 0.1739483, + "ttot": 0.5121272, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00064849, + "ttot": 0.00086066, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Send", - "ttot": 8.006039999999999, + "ttot": 13.307870000000001, "count": 189792, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Comm_size", - "ttot": 3.0607e-7, + "ttot": 3.7911e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { - "call": "MPI_Bcast", - "ttot": 0.6526884009999999, - "count": 10, - "color": "rgb(171, 104, 87)", - "hoverColor": "rgb(191, 124, 107)" + "call": "MPI_Recv", + "ttot": 20.845599999999997, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.6546159979999999, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" } ] }, { - "nr": "126", - "ttot": 22.06919976546, + "nr": "162", + "ttot": 37.08148220349, "mpiCalls": [ { "call": "MPI_Send", - "ttot": 7.774260000000001, + "ttot": 14.56548, "count": 189792, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, { "call": "MPI_Allreduce", - "ttot": 0.8825954, + "ttot": 0.629005, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00060741, + "ttot": 0.00090964, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, { "call": "MPI_Recv", - "ttot": 12.758600000000001, + "ttot": 21.2294, "count": 189792, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, { "call": "MPI_Comm_rank", - "ttot": 7.582100000000001e-7, + "ttot": 8.9122e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Comm_size", - "ttot": 3.2825e-7, + "ttot": 8.0427e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.653135869, + "ttot": 0.656685868, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" @@ -9745,148 +9526,11023 @@ ] }, { - "nr": "125", - "ttot": 21.01923364136, + "nr": "163", + "ttot": 33.11895193015, "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 0.40321039999999997, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0008842, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 20.2089, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 7.5603e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 5.7212e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, { "call": "MPI_Send", - "ttot": 8.36989, + "ttot": 11.85238, "count": 189792, "color": "rgb(211, 94, 96)", "hoverColor": "rgb(231, 114, 116)" }, + { + "call": "MPI_Bcast", + "ttot": 0.653576002, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "164", + "ttot": 26.773434621051, + "mpiCalls": [ { "call": "MPI_Comm_rank", - "ttot": 6.0561e-7, + "ttot": 6.26471e-7, "count": 4, "color": "rgb(128, 133, 133)", "hoverColor": "rgb(148, 153, 153)" }, { "call": "MPI_Allreduce", - "ttot": 0.2704312, + "ttot": 0.2062754, "count": 71, "color": "rgb(225, 151, 76)", "hoverColor": "rgb(245, 171, 96)" }, { "call": "MPI_Barrier", - "ttot": 0.00047549, + "ttot": 0.00033236, "count": 2, "color": "rgb(132, 186, 91)", "hoverColor": "rgb(152, 206, 111)" }, + { + "call": "MPI_Send", + "ttot": 11.36059, + "count": 189792, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.1258e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, { "call": "MPI_Recv", - "ttot": 11.7251, + "ttot": 14.5535, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.652735922, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "165", + "ttot": 26.577393979206, + "mpiCalls": [ + { + "call": "MPI_Send", + "ttot": 12.39125, + "count": 189792, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.1475675, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00075919, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 13.3854, "count": 189792, "color": "rgb(114, 147, 203)", "hoverColor": "rgb(134, 167, 223)" }, + { + "call": "MPI_Comm_rank", + "ttot": 6.14326e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, { "call": "MPI_Comm_size", - "ttot": 4.8475e-7, + "ttot": 3.8388e-7, "count": 1, "color": "rgb(144, 103, 167)", "hoverColor": "rgb(164, 123, 187)" }, { "call": "MPI_Bcast", - "ttot": 0.6533358610000001, + "ttot": 0.652416291, "count": 10, "color": "rgb(171, 104, 87)", "hoverColor": "rgb(191, 124, 107)" } ] - } - ] - }, - "mpiPies": { - "mpiPercent": { - "datasets": [ - { - "data": ["54.30", "40.23", "3.42", "2.04", "0.00"], - "backgroundColor": [ - "rgb(114, 147, 203)", - "rgb(211, 94, 96)", - "rgb(225, 151, 76)", - "rgb(171, 104, 87)", - "rgb(204, 194, 16)" - ], - "hoverBackgroundColor": [ - "rgb(134, 167, 223)", - "rgb(231, 114, 116)", - "rgb(245, 171, 96)", - "rgb(191, 124, 107)", - "rgb(224, 214, 36)" - ] - } - ], - "labels": ["MPI_Recv", "MPI_Send", "MPI_Allreduce", "MPI_Bcast", "others"] - }, - "mpiWall": { - "datasets": [ - { - "data": ["36.20", "26.82", "2.28", "1.36", "0.00", "33.33"], - "backgroundColor": [ - "rgb(114, 147, 203)", - "rgb(211, 94, 96)", - "rgb(225, 151, 76)", - "rgb(171, 104, 87)", - "rgb(204, 194, 16)", - "rgb(57, 106, 177)" - ], - "hoverBackgroundColor": [ - "rgb(134, 167, 223)", - "rgb(231, 114, 116)", - "rgb(245, 171, 96)", - "rgb(191, 124, 107)", - "rgb(224, 214, 36)", - "rgb(77, 126, 197)" - ] - } - ], - "labels": [ - "MPI_Recv", - "MPI_Send", - "MPI_Allreduce", - "MPI_Bcast", - "others", - "Apllication" - ] - } - }, - "hpmData": [ - { - "name": "PAPI_TOT_INS", - "counter": 19495679027190, - "min": 88731136600, - "max": 141588905622, - "ncalls": 168 - }, - { - "name": "PAPI_FP_OPS", - "counter": 2814895509963, - "min": 16529749537, - "max": 17317366481, - "ncalls": 168 - }, - { - "name": "PAPI_L2_TCM", - "counter": 14217628688, - "min": 62824968, - "max": 192815485, - "ncalls": 168 - }, - { - "name": "(null)", - "counter": 0, - "min": 0, - "max": 0, - "ncalls": 168 - } - ], - "balanceData": { + }, + { + "nr": "166", + "ttot": 26.624431974384002, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 0.1251617, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0011024, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 15.0078, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 7.89084e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 7.543e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 10.83786, + "count": 189792, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.652506331, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "167", + "ttot": 28.456664220841994, + "mpiCalls": [ + { + "call": "MPI_Comm_rank", + "ttot": 4.93472e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.0950011, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00083547, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 9.6183, + "count": 126528, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.5737e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 18.0898, + "count": 126528, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.6527269, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + } + ], + "mpiCallsByTaskSorted": [ + { + "nr": "64", + "ttot": 40.72801923133, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 1.197284, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00042909, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 18.86193, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 7.5863e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 4.817e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 20.0115, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.656874901, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "62", + "ttot": 39.79766144159, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 1.2958349999999998, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00057933, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 18.621480000000002, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Recv", + "ttot": 19.222, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.00000119998, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.9261e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.657765619, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "65", + "ttot": 39.64370926046001, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 1.1295600000000001, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0007339, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 18.301119999999997, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Recv", + "ttot": 19.5557, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.2863e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 4.0083e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.6565943310000001, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "104", + "ttot": 39.25852508754, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 0.97889, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00032564, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 17.97911, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 8.4427e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Recv", + "ttot": 19.6434, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.1127e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.6567982920000001, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "60", + "ttot": 38.83962814172101, + "mpiCalls": [ + { + "call": "MPI_Comm_rank", + "ttot": 5.10001e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 1.3961759999999999, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00033585, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 20.5853, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 4.1172e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 16.20053, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.6572853700000001, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "66", + "ttot": 38.69881164807, + "mpiCalls": [ + { + "call": "MPI_Comm_rank", + "ttot": 6.3428e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 1.099414, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00065235, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 22.7328, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 4.6779e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 14.20964, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.656304196, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "105", + "ttot": 38.667020802878994, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 18.542, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.934089999999999e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.911125, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00046579, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Comm_size", + "ttot": 5.9647e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 18.5563, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.657128823, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "63", + "ttot": 38.633645866840006, + "mpiCalls": [ + { + "call": "MPI_Comm_rank", + "ttot": 5.7737e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 1.136386, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00059333, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 18.6284, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.8347e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 18.212429999999998, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.655835676, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "61", + "ttot": 38.33088070312001, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 1.2627490000000001, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00094077, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 17.116509999999998, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.00000518204, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.6608e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 19.2947, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.655975385, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "67", + "ttot": 38.132511184429994, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 1.067193, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00063217, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 14.74154, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.721e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 5.2733e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 21.6665, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.656644815, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "80", + "ttot": 37.946931274941996, + "mpiCalls": [ + { + "call": "MPI_Comm_rank", + "ttot": 6.95562e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 1.029619, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0003049, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 15.643550000000001, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Recv", + "ttot": 20.616699999999998, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.5258e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.6567563268, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "134", + "ttot": 37.695410270396, + "mpiCalls": [ + { + "call": "MPI_Send", + "ttot": 15.877369999999999, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.760051, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.000872, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 7.70416e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Recv", + "ttot": 20.39985, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.6998e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.65726613, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "107", + "ttot": 37.640968691078, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 0.7267308, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00044765, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 17.48666, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 8.864279999999999e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Recv", + "ttot": 18.7716, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 5.6865e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.6555287860000001, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "148", + "ttot": 37.518957977069, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 0.6427, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00032031, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 21.05886, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 7.426089999999999e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 15.16007, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 4.4046e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.657006484, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "150", + "ttot": 37.459177337419995, + "mpiCalls": [ + { + "call": "MPI_Comm_rank", + "ttot": 7.8393e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.575936, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0011637, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 14.98688, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Recv", + "ttot": 21.2379, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.1349e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.6572965399999999, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "106", + "ttot": 37.42742733189999, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 0.768979, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Recv", + "ttot": 17.7824, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0008583, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 18.21964, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.4081e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.6909e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.655549022, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "19", + "ttot": 37.39449608736, + "mpiCalls": [ + { + "call": "MPI_Send", + "ttot": 14.97953, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.027057, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00062267, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 8.4521e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Recv", + "ttot": 19.73022, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 5.2215e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.65706505, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "128", + "ttot": 37.37039987649601, + "mpiCalls": [ + { + "call": "MPI_Send", + "ttot": 16.03452, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 1.034277, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00041771, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.13876e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Recv", + "ttot": 19.64568, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 4.1562e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.655504137, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "149", + "ttot": 37.195689837260005, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 0.646332, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 14.884830000000001, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00067051, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 7.6612e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.9914e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 21.00644, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.657416162, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "159", + "ttot": 37.17304893617999, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 0.809231, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00065031, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 13.677189999999998, + "count": 189792, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Recv", + "ttot": 22.0289, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 8.472999999999999e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 4.7388e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.657076305, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "110", + "ttot": 37.1123184921, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 0.7054750000000001, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0006072, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 15.2996, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.00000104612, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Recv", + "ttot": 20.4494, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 7.4698e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.6572344990000001, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "162", + "ttot": 37.08148220349, + "mpiCalls": [ + { + "call": "MPI_Send", + "ttot": 14.56548, + "count": 189792, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.629005, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00090964, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 21.2294, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 8.9122e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 8.0427e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.656685868, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "52", + "ttot": 36.84036883601, + "mpiCalls": [ + { + "call": "MPI_Comm_rank", + "ttot": 6.8743e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 1.026635, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00037665, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 14.612660000000002, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.5958e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 20.5451, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.655596139, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "156", + "ttot": 36.833862926167996, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 0.937169, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00030693, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 15.148089999999998, + "count": 189792, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Recv", + "ttot": 20.0922, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.11268e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.539e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.656096131, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "51", + "ttot": 36.550032899443, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 1.079872, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0006018, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 20.6325, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.564829999999999e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 14.182159999999998, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.7736e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.6548982656, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "157", + "ttot": 36.401604602167005, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 0.801302, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00058587, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 20.0197, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 7.21277e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 14.92472, + "count": 189792, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.8389e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.655295727, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "130", + "ttot": 36.283174141903004, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 20.11612, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.25193e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.8976060000000001, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00086342, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 14.613150000000001, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.8171e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.655433815, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "158", + "ttot": 36.276396912131, + "mpiCalls": [ + { + "call": "MPI_Comm_rank", + "ttot": 5.11671e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.736773, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00075731, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 14.27229, + "count": 189792, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.1346e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 20.6111, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.6554757769999999, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "53", + "ttot": 36.238347241156, + "mpiCalls": [ + { + "call": "MPI_Send", + "ttot": 12.983509999999999, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.976793, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00084677, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 21.6218, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.252460000000001e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.1391e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.6553965319999999, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "151", + "ttot": 36.187900942346, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 0.48983, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00080364, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.89156e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Recv", + "ttot": 20.92474, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Send", + "ttot": 14.116700000000002, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.9219e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.655826321, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "17", + "ttot": 36.170811260189005, + "mpiCalls": [ + { + "call": "MPI_Send", + "ttot": 13.137739999999999, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.146522, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00086389, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 20.2287, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.17809e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.4738e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.656984505, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "7", + "ttot": 36.12870932957, + "mpiCalls": [ + { + "call": "MPI_Comm_rank", + "ttot": 6.534799999999999e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.929862, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00036469, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 13.24723, + "count": 189792, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Recv", + "ttot": 19.2952, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.3609e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.65605165, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "146", + "ttot": 36.102074990292, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 0.692274, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 13.98256, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00081338, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.58652e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.8084e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 20.77093, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.6554966708000001, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "129", + "ttot": 36.072382286749, + "mpiCalls": [ + { + "call": "MPI_Send", + "ttot": 15.14948, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.9824120000000001, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0006951, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 19.28432, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.93879e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 5.6387e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.655473929, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "48", + "ttot": 36.056581240309, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 1.1089282999999999, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00033416, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 17.9841, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.99089e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 16.30958, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 4.3302e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.6536377482000001, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "147", + "ttot": 35.969963347249, + "mpiCalls": [ + { + "call": "MPI_Comm_rank", + "ttot": 7.34289e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.625113, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00081184, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 13.88831, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Recv", + "ttot": 20.800710000000002, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.9606e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.6550173769, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "3", + "ttot": 35.92050791261399, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 3.208319, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00046421, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 20.4326, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Send", + "ttot": 11.62226, + "count": 189792, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.93924e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 4.7869e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.6568635300000001, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "2", + "ttot": 35.855588650477, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 3.270632, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00048222, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 19.9393, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 9.247569999999999e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 5.9172e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 11.9883, + "count": 189792, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.656872914, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "76", + "ttot": 35.829659667935005, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 1.0424388, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00028688, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 14.34331, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.06945e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.2999e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 19.7885, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.655123051, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "131", + "ttot": 35.73553218439, + "mpiCalls": [ + { + "call": "MPI_Send", + "ttot": 13.92418, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.887814, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00072281, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.6777e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Recv", + "ttot": 20.26925, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.9562e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.653564411, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "160", + "ttot": 35.70621885125801, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 0.582158, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00039439, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 22.1723, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 4.5384799999999995e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 12.296389999999999, + "count": 189792, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.1041e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.654975697, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "29", + "ttot": 35.66609903206, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 1.700506, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00094798, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 12.57833, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 8.0864e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Recv", + "ttot": 20.7288, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.8042e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.657513963, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "81", + "ttot": 35.652112367558, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 0.8844273, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00063755, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.40808e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Recv", + "ttot": 21.158900000000003, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.1605e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 12.952999999999998, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.6551466606999999, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "87", + "ttot": 35.650719565500005, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 1.195405, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00065003, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 19.984299999999998, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 7.369099999999999e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.5259e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 13.81416596, + "count": 253086, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.656197486, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "44", + "ttot": 35.51072034471, + "mpiCalls": [ + { + "call": "MPI_Send", + "ttot": 13.49973, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 1.5505563, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00035953, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 19.80278, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.2217e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.5654e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.657293736, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "144", + "ttot": 35.3791729521, + "mpiCalls": [ + { + "call": "MPI_Comm_rank", + "ttot": 7.095299999999999e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.73115, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00031539, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 13.373649999999998, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Recv", + "ttot": 20.61962, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.9607e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.6544365565, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "49", + "ttot": 35.366515265556004, + "mpiCalls": [ + { + "call": "MPI_Comm_rank", + "ttot": 5.52576e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 1.078401, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00060571, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 14.60139, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.5128e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 19.034, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.6521176517, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "161", + "ttot": 35.321074858797004, + "mpiCalls": [ + { + "call": "MPI_Comm_rank", + "ttot": 6.21687e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.5121272, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00086066, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 13.307870000000001, + "count": 189792, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.7911e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 20.845599999999997, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.6546159979999999, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "18", + "ttot": 35.30379154123201, + "mpiCalls": [ + { + "call": "MPI_Comm_rank", + "ttot": 5.44322e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Recv", + "ttot": 20.74618, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Allreduce", + "ttot": 1.9903485, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00061757, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 11.91147, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.7391e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.655174653, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "0", + "ttot": 35.296470437109996, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 21.890538384, + "count": 126948, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Allreduce", + "ttot": 3.3136606000000004, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00036717, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 10.091769999999999, + "count": 126528, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.1913e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 6.4998e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.000133014, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "16", + "ttot": 35.03246009422999, + "mpiCalls": [ + { + "call": "MPI_Send", + "ttot": 12.90232, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.1075132, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00040097, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.4868e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Recv", + "ttot": 19.366909999999997, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.3955e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.655314936, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "83", + "ttot": 35.023718188446, + "mpiCalls": [ + { + "call": "MPI_Comm_rank", + "ttot": 6.556060000000001e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.945858, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00064235, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 10.98793, + "count": 189792, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Recv", + "ttot": 22.432399999999998, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.0824e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.6568868746000001, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "145", + "ttot": 34.962791845111006, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 0.692067, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Recv", + "ttot": 20.384490000000003, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0006309, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.056209999999999e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 13.23095, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.7649e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.654653063, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "108", + "ttot": 34.934121999009, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 15.968700000000002, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.23069e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.5475214, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00032543, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Comm_size", + "ttot": 4.9394e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 17.76342, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.6541541519999999, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "30", + "ttot": 34.801513772175994, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 1.523032, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00066677, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 19.83212, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.74756e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 12.789950000000001, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.6042e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.655744067, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "47", + "ttot": 34.77645190417801, + "mpiCalls": [ + { + "call": "MPI_Send", + "ttot": 16.03783, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 1.2234861000000001, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00048487, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 16.8602, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 4.97818e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.3436e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.654450102, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "1", + "ttot": 34.725057167121996, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 3.234537, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00068561, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 11.536629999999999, + "count": 189792, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.53472e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Recv", + "ttot": 19.3021, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.6565e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.6511036379999999, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "82", + "ttot": 34.344621817036995, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 0.8726829, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00078057, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 12.264420000000001, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 7.77757e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 4.6518e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 20.551299999999998, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.6554371041, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "96", + "ttot": 34.327945824210005, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 20.69259, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.654729, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00041154, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.9344e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.8477e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 12.32550751, + "count": 253086, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.654706896, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "86", + "ttot": 34.229874414231, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 1.172458, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0010119, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 12.300366279999999, + "count": 253086, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Recv", + "ttot": 20.101, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.24301e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.8693e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.655037423, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "99", + "ttot": 33.990763111837, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 20.205650000000002, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Allreduce", + "ttot": 1.154931, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0007445, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.11267e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 5.5257e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 11.97393, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.655506548, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "59", + "ttot": 33.98537016289, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 1.2931818, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 14.31775, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00069436, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 17.7198, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.1648e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.4041e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.653943046, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "31", + "ttot": 33.90102300466, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 1.4446970000000001, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 12.53753, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00067031, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 8.921200000000001e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 5.9954e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 19.2627, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.6554242029999999, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "78", + "ttot": 33.84367456234, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 0.8585775000000001, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00049324, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 16.8321, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.325699999999999e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.6477e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 15.498260000000002, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.654242925, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "43", + "ttot": 33.779267758212, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 1.3774937999999999, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00048464, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 12.60342, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.40862e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 5.3435e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 19.14433, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.653538243, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "50", + "ttot": 33.77368182027, + "mpiCalls": [ + { + "call": "MPI_Send", + "ttot": 13.9438, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 1.0299281, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00063464, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 18.147, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.0214e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.0693e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.6523181711999999, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "54", + "ttot": 33.711382476846, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 0.9092335, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00065134, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 19.9061, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.756559999999999e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 4.4219e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 12.240579999999998, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.654816519, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "40", + "ttot": 33.682125858927, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 0.88086, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00039722, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 11.524429999999999, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.24767e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.2216e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 20.62262, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.6538178920000001, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "13", + "ttot": 33.619169512819, + "mpiCalls": [ + { + "call": "MPI_Send", + "ttot": 9.88437, + "count": 126528, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.07789e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.3777448, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00066732, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 20.7028, + "count": 126528, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 4.1303e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.653586372, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "56", + "ttot": 33.49481920957, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 1.6721089999999998, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 10.69922, + "count": 189792, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00038936, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 20.4663, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 0.00000106514, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 6.2343e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.656799161, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "85", + "ttot": 33.425026227058, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 1.2287050000000002, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00061912, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 11.78868329, + "count": 253086, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.07358e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 5.217e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 19.7521, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.654917788, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "109", + "ttot": 33.421951900632, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 0.497232, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Recv", + "ttot": 17.869, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00047402, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 14.40053, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.48272e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 6.2436e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.6547146079999999, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "163", + "ttot": 33.11895193015, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 0.40321039999999997, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0008842, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 20.2089, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 7.5603e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 5.7212e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 11.85238, + "count": 189792, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.653576002, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "68", + "ttot": 33.107017258668996, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 0.8565187, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00020414, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 12.683789999999998, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Recv", + "ttot": 18.912, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.16939e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.3173e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.65450347, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "77", + "ttot": 33.070687374242, + "mpiCalls": [ + { + "call": "MPI_Comm_rank", + "ttot": 5.63462e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.9022268, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00077687, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 15.02203, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Recv", + "ttot": 16.4916, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.0478e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.654052836, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "6", + "ttot": 33.06507577696, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 2.8183042, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00038811, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 17.1773, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Send", + "ttot": 12.41479, + "count": 189792, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.9435e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.0261e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.65429257, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "84", + "ttot": 33.015647562734, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 1.432574, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00036103, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 20.4587, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.760639999999999e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.8867e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 10.46783349, + "count": 189822, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.656178078, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "142", + "ttot": 32.991879500477, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 0.8383098, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Recv", + "ttot": 17.707629999999998, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00078635, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.852170000000001e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 13.790790000000001, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.7826e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.654362287, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "79", + "ttot": 32.984049417159994, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 0.8206049999999999, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00049979, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 13.054559999999999, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 8.803799999999999e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 1.8478e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 18.4545, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.653883562, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "58", + "ttot": 32.973926670379996, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 1.3399130000000001, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00067342, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 12.71717, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 7.460299999999999e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 4.0735e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 18.2619, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.654269097, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "45", + "ttot": 32.84471206592, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 1.325412, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00064493, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 18.573700000000002, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.674000000000001e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 12.290670000000002, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.9652e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.6542842720000001, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "115", + "ttot": 32.779394783240996, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 0.9448369, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00067771, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 17.51353, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Send", + "ttot": 13.66618, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.75171e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 4.1607e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.654169082, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "97", + "ttot": 32.740609009881005, + "mpiCalls": [ + { + "call": "MPI_Comm_rank", + "ttot": 8.803909999999999e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.607836, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00066028, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 11.12094503, + "count": 189822, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 7.3649e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 20.3563, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.654866083, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "98", + "ttot": 32.46674585795, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 1.371395, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00089294, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 10.745510000000001, + "count": 189792, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Recv", + "ttot": 19.69233, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 9.9779e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 9.4516e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.6566159749999999, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "133", + "ttot": 32.318433626936, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 16.57655, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.45646e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.5892212, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00051517, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 14.49765, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.3129e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.65449648, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "140", + "ttot": 32.28608528593, + "mpiCalls": [ + { + "call": "MPI_Send", + "ttot": 9.69379, + "count": 189792, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 1.1782924000000001, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00022953, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 7.9783e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 5.761e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 20.7563, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.657471982, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "112", + "ttot": 32.22634869582999, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 1.2961960000000001, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00033287, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 19.76083, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Send", + "ttot": 10.51187, + "count": 189792, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 7.2518e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.2215e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.6571187785, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "28", + "ttot": 32.16452096645, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 1.716844, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 9.752220000000001, + "count": 189792, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0003283, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.5691e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.2954e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 20.03974, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.65538768, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "132", + "ttot": 32.135776188665005, + "mpiCalls": [ + { + "call": "MPI_Send", + "ttot": 13.153580000000002, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.6397844, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00020251, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 17.68818, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 4.96515e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.6215e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.65402842, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "5", + "ttot": 32.06317538264, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 2.8720523, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00067057, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 17.1937, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.221999999999999e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 5.0044e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 11.34264, + "count": 189792, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.6541113900000001, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "70", + "ttot": 31.99259665735, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 1.5693365, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0005257, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 10.69043, + "count": 189792, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 8.6649e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.1086e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 19.07515, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.6571532800000001, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "135", + "ttot": 31.923805272550002, + "mpiCalls": [ + { + "call": "MPI_Send", + "ttot": 13.81422, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.4903846, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00051339, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 16.96461, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.512699999999999e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 4.0128e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.6540762299999999, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "55", + "ttot": 31.701860095250993, + "mpiCalls": [ + { + "call": "MPI_Comm_rank", + "ttot": 5.97861e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.8586891000000001, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00065345, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 10.3431, + "count": 189792, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.0739e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 19.8447, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.65471664, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "143", + "ttot": 31.675850522248002, + "mpiCalls": [ + { + "call": "MPI_Send", + "ttot": 13.51214, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.7820552000000001, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00059187, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 7.495880000000001e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.5566e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 16.72655, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.654512447, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "57", + "ttot": 31.638049747533998, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 1.3890614000000001, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00052823, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 17.6954, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.74734e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.278e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 11.89895, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.654109215, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "41", + "ttot": 31.353383897762, + "mpiCalls": [ + { + "call": "MPI_Comm_rank", + "ttot": 5.41722e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.883792, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00038297, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 20.1794, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.6304e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 9.63601, + "count": 189792, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.6537981230000001, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "71", + "ttot": 31.300135214300003, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 1.2642734, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00051738, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 12.094949999999999, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.5083e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Recv", + "ttot": 17.28608, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.3347e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.6543135499999999, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "141", + "ttot": 31.271421290542, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 0.8599558, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 12.612860000000001, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00050255, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.700120000000001e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Recv", + "ttot": 17.143900000000002, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.7653e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.654201894, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "46", + "ttot": 31.262578140370003, + "mpiCalls": [ + { + "call": "MPI_Comm_rank", + "ttot": 5.6957e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 1.2562622, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00045072, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 12.01875, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.748e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 17.3341, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.6530142760000001, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "22", + "ttot": 31.17472474038, + "mpiCalls": [ + { + "call": "MPI_Send", + "ttot": 13.466350000000002, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 1.5321559, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00071306, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.4912e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.2826e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 15.523340000000001, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.652165003, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "114", + "ttot": 30.87997731881, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 0.9793874, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Recv", + "ttot": 17.4217, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00085945, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 7.629800000000001e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 4.8213e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 11.82399, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.6540392237, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "15", + "ttot": 30.771275732565, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 17.665779999999998, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Allreduce", + "ttot": 1.9747186, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00049955, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.31735e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 10.47843, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.7783e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.651846773, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "4", + "ttot": 30.741820180239998, + "mpiCalls": [ + { + "call": "MPI_Comm_rank", + "ttot": 6.187e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.9228104000000004, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.000085015, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 10.35025, + "count": 189792, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Recv", + "ttot": 16.814700000000002, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 4.5654e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.65397369, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "113", + "ttot": 30.660515086216, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 1.0298393, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00062555, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 11.492220000000001, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 7.021259999999999e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Recv", + "ttot": 17.48359, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 5.8909e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.654238945, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "111", + "ttot": 29.933756182946002, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 18.424, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 9.11766e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.44067009999999995, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0005096, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Comm_size", + "ttot": 6.1218e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 10.41388, + "count": 189792, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.654694959, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "69", + "ttot": 29.883682022564003, + "mpiCalls": [ + { + "call": "MPI_Comm_rank", + "ttot": 5.347539999999999e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.8046005, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00071761, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 18.2367, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.6781e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 10.187110000000002, + "count": 189792, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.6545531099999999, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "122", + "ttot": 29.55741415787, + "mpiCalls": [ + { + "call": "MPI_Comm_rank", + "ttot": 6.9788e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.35865, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00086312, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 13.745909999999999, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Recv", + "ttot": 14.799700000000001, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 4.5699e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.652289883, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "42", + "ttot": 29.535980657456996, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 1.4703968, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00050463, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 17.843899999999998, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 7.48677e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 9.56733, + "count": 189792, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.3478e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.653848144, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "14", + "ttot": 29.488137238203, + "mpiCalls": [ + { + "call": "MPI_Send", + "ttot": 8.08203, + "count": 189792, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.075279, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00050123, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 18.677590000000002, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.85613e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.7259e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.65273605, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "12", + "ttot": 29.250660243869994, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 2.4248206999999997, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0003824, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 16.639400000000002, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Send", + "ttot": 9.53392, + "count": 189792, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.4779e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.7608e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.65213622, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "38", + "ttot": 29.115996460679003, + "mpiCalls": [ + { + "call": "MPI_Comm_rank", + "ttot": 6.97349e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.8811813, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00046908, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 13.69998, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Recv", + "ttot": 13.88196, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.4433e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.652405039, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "9", + "ttot": 28.961937120400002, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 2.5049261, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00063345, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 13.0674, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Send", + "ttot": 12.7363, + "count": 189792, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 8.0297e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 4.9343e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.6526762740000001, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "120", + "ttot": 28.915493426502003, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 0.4529218, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00034115, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 13.62023, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 7.56132e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.6437e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 14.18995, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.652049356, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "37", + "ttot": 28.734707068196002, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 0.9034745000000001, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00084595, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 13.83035, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.79526e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.7867e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 13.3475, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.65253556, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "102", + "ttot": 28.72930390116, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 13.7112, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.6214e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.7317729, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0010031, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.7302e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 13.63265, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.652676866, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "121", + "ttot": 28.72451932095001, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 0.39306789999999997, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00052049, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 13.244510000000002, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Send", + "ttot": 14.43413, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 7.578800000000001e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 5.3307e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.65228964, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "23", + "ttot": 28.601872105213005, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 1.4699453999999998, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 13.13002, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00070023, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 13.34911, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.23043e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.6217e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.65209559, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "73", + "ttot": 28.50012411524, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 0.9836877, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00057791, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 12.885449999999999, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 7.203900000000001e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.8085e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 13.977800000000002, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.652607504, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "167", + "ttot": 28.456664220841994, + "mpiCalls": [ + { + "call": "MPI_Comm_rank", + "ttot": 4.93472e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.0950011, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00083547, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 9.6183, + "count": 126528, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.5737e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 18.0898, + "count": 126528, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.6527269, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "90", + "ttot": 28.230415506671005, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 0.6905237999999999, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00088869, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 12.42529, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 9.482009999999999e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 6.3647e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 14.46247239, + "count": 253086, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.651239042, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "74", + "ttot": 28.092044619853997, + "mpiCalls": [ + { + "call": "MPI_Comm_rank", + "ttot": 5.20834e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.9402022999999999, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00063347, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 13.80689, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Recv", + "ttot": 12.69125, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.2302e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.653068106, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "123", + "ttot": 28.071878746762003, + "mpiCalls": [ + { + "call": "MPI_Send", + "ttot": 13.25433, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.3252364, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00048125, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 13.8396, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.70902e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 6.2786e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.6522297979999999, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "137", + "ttot": 27.848862940669996, + "mpiCalls": [ + { + "call": "MPI_Send", + "ttot": 13.182490000000001, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.23468640000000002, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0005673, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.1866e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 5.2301e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 13.77829, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.652828099, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "34", + "ttot": 27.82455066207, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 1.1058137000000001, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00056055, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 13.07666, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.904e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.8867e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 12.988869999999999, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.652645333, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "33", + "ttot": 27.72681261123, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 1.1288069, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00072907, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 13.4539, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 7.4126e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 12.491, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.4997e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.65237555, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "94", + "ttot": 27.666750484636, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 12.96815, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.21756e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.4964294, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0006406, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 13.549734149999999, + "count": 253086, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.8088e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.6517955320000001, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "118", + "ttot": 27.666390418055002, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 0.581964, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0010281, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 12.083680000000001, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Send", + "ttot": 14.34711, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.15605e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 4.5345e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.6526073490000001, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "103", + "ttot": 27.65813435714, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 13.9766, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.7102217, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00066534, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 12.3179, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.6517e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 4.9997e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.6527461520000001, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "91", + "ttot": 27.630838657159, + "mpiCalls": [ + { + "call": "MPI_Comm_rank", + "ttot": 8.290790000000001e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.6238636, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00054308, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 14.00666116, + "count": 253086, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 6.1908e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 12.3483, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.651469369, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "136", + "ttot": 27.6168687979, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 14.502500000000001, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 7.4692e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.2802768, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00034283, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 12.18121, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.2998e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.652538091, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "24", + "ttot": 27.508776617753995, + "mpiCalls": [ + { + "call": "MPI_Comm_rank", + "ttot": 8.70824e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 1.3867216999999998, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Recv", + "ttot": 12.7864, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00041662, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 12.682879999999999, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 5.1693e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.6523569100000001, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "92", + "ttot": 27.42310658231, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 0.572513, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00030485, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 13.62907256, + "count": 253086, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Recv", + "ttot": 12.5689, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.1702e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.9829e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.652315257, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "26", + "ttot": 27.396048750829998, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 1.3181621, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00068828, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 11.81771, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Recv", + "ttot": 13.60689, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 8.551599999999999e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 5.7867e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.6525969370000001, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "20", + "ttot": 27.38664781955, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 1.5949525, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 11.29334, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00037983, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 13.845759999999999, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.7652e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.0303e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.65221461, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "10", + "ttot": 27.316664589089996, + "mpiCalls": [ + { + "call": "MPI_Send", + "ttot": 11.98198, + "count": 189792, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.3647e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.4534445, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00052324, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 12.228100000000001, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 4.1562e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.6526157969999999, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "154", + "ttot": 27.316290549478005, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 0.7677209, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00084984, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 17.5229, + "count": 126528, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.58638e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 4.4084e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 8.37241, + "count": 126528, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.6524088100000001, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "35", + "ttot": 27.294206107756, + "mpiCalls": [ + { + "call": "MPI_Comm_rank", + "ttot": 5.96486e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 1.053582, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00054706, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 12.39037, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Recv", + "ttot": 13.197300000000002, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.8127e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.65240617, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "119", + "ttot": 27.290745633527, + "mpiCalls": [ + { + "call": "MPI_Comm_rank", + "ttot": 5.91727e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.5275987, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00063847, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 13.16359, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Recv", + "ttot": 12.946299999999999, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 6.278e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.652617244, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "25", + "ttot": 27.232633244416, + "mpiCalls": [ + { + "call": "MPI_Send", + "ttot": 12.835249999999998, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 1.3440624, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00071287, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.59956e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.1346e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 12.40026, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.6523471009999999, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "21", + "ttot": 27.13753487437, + "mpiCalls": [ + { + "call": "MPI_Comm_rank", + "ttot": 6.739e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Recv", + "ttot": 12.78227, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Allreduce", + "ttot": 1.5522327, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00084617, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 12.149829999999998, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.5347e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.652354977, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "155", + "ttot": 27.114734248490002, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 0.6732346, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00062917, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 9.2579, + "count": 189792, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 8.3037e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 6.2212e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 16.5305, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.652469026, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "36", + "ttot": 27.03596940318, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 0.9507437, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00037927, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 12.569019999999998, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 7.3691e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Send", + "ttot": 12.86339, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.9127e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.652435305, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "138", + "ttot": 26.976919589487007, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 0.2139127, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Send", + "ttot": 12.53342, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00081762, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 13.5759, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.77817e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 4.2867e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.652868263, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "117", + "ttot": 26.975534179565003, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 0.6147639, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Recv", + "ttot": 12.5, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00065244, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.951849999999999e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 4.2738e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 13.20758, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.652536717, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "124", + "ttot": 26.827663003248002, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 0.31557650000000004, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00028938, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 13.24752, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Send", + "ttot": 12.61081, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.48218e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.1303e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.653466162, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "164", + "ttot": 26.773434621051, + "mpiCalls": [ + { + "call": "MPI_Comm_rank", + "ttot": 6.26471e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.2062754, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00033236, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 11.36059, + "count": 189792, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.1258e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 14.5535, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.652735922, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "166", + "ttot": 26.624431974384002, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 0.1251617, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.0011024, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 15.0078, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 7.89084e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 7.543e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 10.83786, + "count": 189792, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.652506331, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "89", + "ttot": 26.610458816262994, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 0.7274068, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00054438, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 12.985697089999999, + "count": 253086, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Recv", + "ttot": 12.244900000000001, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 7.06883e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 7.3038e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.651909109, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "165", + "ttot": 26.577393979206, + "mpiCalls": [ + { + "call": "MPI_Send", + "ttot": 12.39125, + "count": 189792, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.1475675, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00075919, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 13.3854, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.14326e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.8388e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.652416291, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "101", + "ttot": 26.475780030467998, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 0.79440705, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00065611, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 11.74388, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.25178e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Recv", + "ttot": 13.284199999999998, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.1129e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.652635934, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "72", + "ttot": 26.44250960745, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 1.0510842, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00032687, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 14.1067, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.5213e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.3432e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 10.63185, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.652547651, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "11", + "ttot": 26.22384551982, + "mpiCalls": [ + { + "call": "MPI_Send", + "ttot": 10.49761, + "count": 189792, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.4219849, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00049271, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 12.651299999999999, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 8.256e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.8822e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.652456696, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "93", + "ttot": 25.916307565937004, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 0.50901763, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00046185, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 11.01528, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 4.99607e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 4.0133e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 13.739511839999999, + "count": 253086, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.6520353449999999, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "100", + "ttot": 25.830788247252002, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 13.792620000000001, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.8523387, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00035288, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 10.53291, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.80392e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.2086e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.6525657659999999, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "88", + "ttot": 25.304456140722998, + "mpiCalls": [ + { + "call": "MPI_Comm_rank", + "ttot": 4.62573e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.7860210999999999, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00042393, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 10.8882718, + "count": 253086, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.1215e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 12.9782, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.651538536, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "116", + "ttot": 24.984242905102004, + "mpiCalls": [ + { + "call": "MPI_Comm_rank", + "ttot": 5.17382e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.6520372, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00029796, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 11.00043, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Recv", + "ttot": 12.6786, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.9172e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.652876836, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "32", + "ttot": 24.978433854370003, + "mpiCalls": [ + { + "call": "MPI_Comm_rank", + "ttot": 9.3906e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 1.1742278, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00041877, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 10.47548, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Recv", + "ttot": 12.676000000000002, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 5.5431e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.6523057910000001, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "8", + "ttot": 24.840179401472, + "mpiCalls": [ + { + "call": "MPI_Send", + "ttot": 9.2573, + "count": 189792, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 2.5650394000000003, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00039233, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 12.3647, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.52112e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.6736e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.652746752, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "75", + "ttot": 24.655280467678004, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 0.8915462, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00061513, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 13.4937, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.712479999999999e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 6.7343e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 9.61795, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.651467793, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "39", + "ttot": 24.307002226719998, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 0.8454048, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00047998, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 8.755900000000001e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Recv", + "ttot": 12.643500000000001, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Send", + "ttot": 10.16477, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 5.8213e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.652845989, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "127", + "ttot": 24.108856680213005, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 0.8091551, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00047414, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 12.2036, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Send", + "ttot": 10.442710000000002, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.09083e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 6.5213e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.652916179, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "27", + "ttot": 23.636978638074996, + "mpiCalls": [ + { + "call": "MPI_Comm_rank", + "ttot": 6.16915e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 1.2792537, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Recv", + "ttot": 13.2691, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00073765, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 8.43526, + "count": 189792, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 2.2216e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.652626449, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "153", + "ttot": 23.47463305555, + "mpiCalls": [ + { + "call": "MPI_Comm_rank", + "ttot": 7.8648e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.1387021, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00067125, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 14.655899999999999, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.0607e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Send", + "ttot": 8.0266, + "count": 189792, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.6527586129999999, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "152", + "ttot": 23.468476524655998, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 0.17502050000000002, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00034648, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 8.44987, + "count": 253056, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.308259999999999e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 4.6083e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Recv", + "ttot": 14.1919, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.651338553, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "95", + "ttot": 23.314194205916, + "mpiCalls": [ + { + "call": "MPI_Allreduce", + "ttot": 0.4586103, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00048789, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 10.75110975, + "count": 253086, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Recv", + "ttot": 11.452000000000002, + "count": 253056, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 4.60026e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.5089e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.6519854549999999, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "139", + "ttot": 22.613326084429996, + "mpiCalls": [ + { + "call": "MPI_Recv", + "ttot": 13.78, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 5.8736e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.1739483, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00064849, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Send", + "ttot": 8.006039999999999, + "count": 189792, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.0607e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.6526884009999999, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "126", + "ttot": 22.06919976546, + "mpiCalls": [ + { + "call": "MPI_Send", + "ttot": 7.774260000000001, + "count": 189792, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.8825954, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00060741, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 12.758600000000001, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 7.582100000000001e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Comm_size", + "ttot": 3.2825e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.653135869, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + }, + { + "nr": "125", + "ttot": 21.01923364136, + "mpiCalls": [ + { + "call": "MPI_Send", + "ttot": 8.36989, + "count": 189792, + "color": "rgb(211, 94, 96)", + "hoverColor": "rgb(231, 114, 116)" + }, + { + "call": "MPI_Comm_rank", + "ttot": 6.0561e-7, + "count": 4, + "color": "rgb(128, 133, 133)", + "hoverColor": "rgb(148, 153, 153)" + }, + { + "call": "MPI_Allreduce", + "ttot": 0.2704312, + "count": 71, + "color": "rgb(225, 151, 76)", + "hoverColor": "rgb(245, 171, 96)" + }, + { + "call": "MPI_Barrier", + "ttot": 0.00047549, + "count": 2, + "color": "rgb(132, 186, 91)", + "hoverColor": "rgb(152, 206, 111)" + }, + { + "call": "MPI_Recv", + "ttot": 11.7251, + "count": 189792, + "color": "rgb(114, 147, 203)", + "hoverColor": "rgb(134, 167, 223)" + }, + { + "call": "MPI_Comm_size", + "ttot": 4.8475e-7, + "count": 1, + "color": "rgb(144, 103, 167)", + "hoverColor": "rgb(164, 123, 187)" + }, + { + "call": "MPI_Bcast", + "ttot": 0.6533358610000001, + "count": 10, + "color": "rgb(171, 104, 87)", + "hoverColor": "rgb(191, 124, 107)" + } + ] + } + ] + }, + "mpiPies": { + "mpiPercent": { + "datasets": [ + { + "data": ["54.30", "40.23", "3.42", "2.04", "0.00"], + "backgroundColor": [ + "rgb(114, 147, 203)", + "rgb(211, 94, 96)", + "rgb(225, 151, 76)", + "rgb(171, 104, 87)", + "rgb(204, 194, 16)" + ], + "hoverBackgroundColor": [ + "rgb(134, 167, 223)", + "rgb(231, 114, 116)", + "rgb(245, 171, 96)", + "rgb(191, 124, 107)", + "rgb(224, 214, 36)" + ] + } + ], + "labels": ["MPI_Recv", "MPI_Send", "MPI_Allreduce", "MPI_Bcast", "others"] + }, + "mpiWall": { + "datasets": [ + { + "data": ["36.20", "26.82", "2.28", "1.36", "0.00", "33.33"], + "backgroundColor": [ + "rgb(114, 147, 203)", + "rgb(211, 94, 96)", + "rgb(225, 151, 76)", + "rgb(171, 104, 87)", + "rgb(204, 194, 16)", + "rgb(57, 106, 177)" + ], + "hoverBackgroundColor": [ + "rgb(134, 167, 223)", + "rgb(231, 114, 116)", + "rgb(245, 171, 96)", + "rgb(191, 124, 107)", + "rgb(224, 214, 36)", + "rgb(77, 126, 197)" + ] + } + ], + "labels": [ + "MPI_Recv", + "MPI_Send", + "MPI_Allreduce", + "MPI_Bcast", + "others", + "Apllication" + ] + } + }, + "hpmData": [ + { + "name": "PAPI_TOT_INS", + "counter": 19495679027190, + "min": 88731136600, + "max": 141588905622, + "ncalls": 168 + }, + { + "name": "PAPI_FP_OPS", + "counter": 2814895509963, + "min": 16529749537, + "max": 17317366481, + "ncalls": 168 + }, + { + "name": "PAPI_L2_TCM", + "counter": 14217628688, + "min": 62824968, + "max": 192815485, + "ncalls": 168 + }, + { + "name": "(null)", + "counter": 0, + "min": 0, + "max": 0, + "ncalls": 168 + } + ], + "balanceData": { + "labels": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15", + "16", + "17", + "18", + "19", + "20", + "21", + "22", + "23", + "24", + "25", + "26", + "27", + "28", + "29", + "30", + "31", + "32", + "33", + "34", + "35", + "36", + "37", + "38", + "39", + "40", + "41", + "42", + "43", + "44", + "45", + "46", + "47", + "48", + "49", + "50", + "51", + "52", + "53", + "54", + "55", + "56", + "57", + "58", + "59", + "60", + "61", + "62", + "63", + "64", + "65", + "66", + "67", + "68", + "69", + "70", + "71", + "72", + "73", + "74", + "75", + "76", + "77", + "78", + "79", + "80", + "81", + "82", + "83", + "84", + "85", + "86", + "87", + "88", + "89", + "90", + "91", + "92", + "93", + "94", + "95", + "96", + "97", + "98", + "99", + "100", + "101", + "102", + "103", + "104", + "105", + "106", + "107", + "108", + "109", + "110", + "111", + "112", + "113", + "114", + "115", + "116", + "117", + "118", + "119", + "120", + "121", + "122", + "123", + "124", + "125", + "126", + "127", + "128", + "129", + "130", + "131", + "132", + "133", + "134", + "135", + "136", + "137", + "138", + "139", + "140", + "141", + "142", + "143", + "144", + "145", + "146", + "147", + "148", + "149", + "150", + "151", + "152", + "153", + "154", + "155", + "156", + "157", + "158", + "159", + "160", + "161", + "162", + "163", + "164", + "165", + "166", + "167" + ], + "datasets": [ + { + "label": "MPI_Recv", + "fill": false, + "backgroundColor": "rgb(114, 147, 203)", + "borderColor": "rgb(114, 147, 203)", + "pointHoverBackgroundColor": "rgb(134, 167, 223)", + "data": [ + 21.890538384, + 3.234537, + 3.270632, + 3.208319, + 6.187e-7, + 2.8720523, + 2.8183042, + 6.534799999999999e-7, + 9.2573, + 2.5049261, + 11.98198, + 10.49761, + 2.4248206999999997, + 9.88437, + 8.08203, + 17.665779999999998, + 12.90232, + 13.137739999999999, + 5.44322e-7, + 14.97953, + 1.5949525, + 6.739e-7, + 13.466350000000002, + 1.4699453999999998, + 8.70824e-7, + 12.835249999999998, + 1.3181621, + 6.16915e-7, + 1.716844, + 1.700506, + 1.523032, + 1.4446970000000001, + 9.3906e-7, + 1.1288069, + 1.1058137000000001, + 5.96486e-7, + 0.9507437, + 0.9034745000000001, + 6.97349e-7, + 0.8454048, + 0.88086, + 5.41722e-7, + 1.4703968, + 1.3774937999999999, + 13.49973, + 1.325412, + 5.6957e-7, + 16.03783, + 1.1089282999999999, + 5.52576e-7, + 13.9438, + 1.079872, + 6.8743e-7, + 12.983509999999999, + 0.9092335, + 5.97861e-7, + 1.6721089999999998, + 1.3890614000000001, + 1.3399130000000001, + 1.2931818, + 5.10001e-7, + 1.2627490000000001, + 1.2958349999999998, + 5.7737e-7, + 1.197284, + 1.1295600000000001, + 6.3428e-7, + 1.067193, + 0.8565187, + 5.347539999999999e-7, + 1.5693365, + 1.2642734, + 1.0510842, + 0.9836877, + 5.20834e-7, + 0.8915462, + 1.0424388, + 5.63462e-7, + 0.8585775000000001, + 0.8206049999999999, + 6.95562e-7, + 0.8844273, + 0.8726829, + 6.556060000000001e-7, + 1.432574, + 1.2287050000000002, + 1.172458, + 1.195405, + 4.62573e-7, + 0.7274068, + 0.6905237999999999, + 8.290790000000001e-7, + 0.572513, + 0.50901763, + 12.96815, + 0.4586103, + 20.69259, + 8.803909999999999e-7, + 1.371395, + 20.205650000000002, + 13.792620000000001, + 0.79440705, + 13.7112, + 13.9766, + 0.97889, + 18.542, + 0.768979, + 0.7267308, + 15.968700000000002, + 0.497232, + 0.7054750000000001, + 18.424, + 1.2961960000000001, + 1.0298393, + 0.9793874, + 0.9448369, + 5.17382e-7, + 0.6147639, + 0.581964, + 5.91727e-7, + 0.4529218, + 0.39306789999999997, + 6.9788e-7, + 13.25433, + 0.31557650000000004, + 8.36989, + 7.774260000000001, + 0.8091551, + 16.03452, + 15.14948, + 20.11612, + 13.92418, + 13.153580000000002, + 16.57655, + 15.877369999999999, + 13.81422, + 14.502500000000001, + 13.182490000000001, + 0.2139127, + 13.78, + 9.69379, + 0.8599558, + 0.8383098, + 13.51214, + 7.095299999999999e-7, + 0.692067, + 0.692274, + 7.34289e-7, + 0.6427, + 0.646332, + 7.8393e-7, + 0.48983, + 0.17502050000000002, + 7.8648e-7, + 0.7677209, + 0.6732346, + 0.937169, + 0.801302, + 5.11671e-7, + 0.809231, + 0.582158, + 6.21687e-7, + 14.56548, + 0.40321039999999997, + 6.26471e-7, + 12.39125, + 0.1251617, + 4.93472e-7 + ] + }, + { + "label": "MPI_Allreduce", + "fill": false, + "backgroundColor": "rgb(225, 151, 76)", + "borderColor": "rgb(225, 151, 76)", + "pointHoverBackgroundColor": "rgb(245, 171, 96)", + "data": [ + 3.3136606000000004, + 0.00068561, + 0.00048222, + 0.00046421, + 2.9228104000000004, + 0.00067057, + 0.00038811, + 2.929862, + 2.5650394000000003, + 0.00063345, + 6.3647e-7, + 2.4219849, + 0.0003824, + 6.07789e-7, + 2.075279, + 1.9747186, + 2.1075132, + 2.146522, + 20.74618, + 2.027057, + 11.29334, + 12.78227, + 1.5321559, + 13.13002, + 1.3867216999999998, + 1.3440624, + 0.00068828, + 1.2792537, + 9.752220000000001, + 0.00094798, + 0.00066677, + 12.53753, + 1.1742278, + 0.00072907, + 0.00056055, + 1.053582, + 0.00037927, + 0.00084595, + 0.8811813, + 0.00047998, + 0.00039722, + 0.883792, + 0.00050463, + 0.00048464, + 1.5505563, + 0.00064493, + 1.2562622, + 1.2234861000000001, + 0.00033416, + 1.078401, + 1.0299281, + 0.0006018, + 1.026635, + 0.976793, + 0.00065134, + 0.8586891000000001, + 10.69922, + 0.00052823, + 0.00067342, + 14.31775, + 1.3961759999999999, + 0.00094077, + 0.00057933, + 1.136386, + 0.00042909, + 0.0007339, + 1.099414, + 0.00063217, + 0.00020414, + 0.8046005, + 0.0005257, + 0.00051738, + 0.00032687, + 0.00057791, + 0.9402022999999999, + 0.00061513, + 0.00028688, + 0.9022268, + 0.00049324, + 0.00049979, + 1.029619, + 0.00063755, + 0.00078057, + 0.945858, + 0.00036103, + 0.00061912, + 0.0010119, + 0.00065003, + 0.7860210999999999, + 0.00054438, + 0.00088869, + 0.6238636, + 0.00030485, + 0.00046185, + 5.21756e-7, + 0.00048789, + 0.654729, + 0.607836, + 0.00089294, + 1.154931, + 0.8523387, + 0.00065611, + 6.6214e-7, + 0.7102217, + 0.00032564, + 5.934089999999999e-7, + 17.7824, + 0.00044765, + 5.23069e-7, + 17.869, + 0.0006072, + 9.11766e-7, + 0.00033287, + 0.00062555, + 17.4217, + 0.00067771, + 0.6520372, + 12.5, + 0.0010281, + 0.5275987, + 0.00034115, + 0.00052049, + 0.35865, + 0.3252364, + 0.00028938, + 6.0561e-7, + 0.8825954, + 0.00047414, + 1.034277, + 0.9824120000000001, + 5.25193e-7, + 0.887814, + 0.6397844, + 5.45646e-7, + 0.760051, + 0.4903846, + 7.4692e-7, + 0.23468640000000002, + 12.53342, + 5.8736e-7, + 1.1782924000000001, + 12.612860000000001, + 17.707629999999998, + 0.7820552000000001, + 0.73115, + 20.384490000000003, + 13.98256, + 0.625113, + 0.00032031, + 14.884830000000001, + 0.575936, + 0.00080364, + 0.00034648, + 0.1387021, + 0.00084984, + 0.00062917, + 0.00030693, + 0.00058587, + 0.736773, + 0.00065031, + 0.00039439, + 0.5121272, + 0.629005, + 0.0008842, + 0.2062754, + 0.1475675, + 0.0011024, + 0.0950011 + ] + }, + { + "label": "MPI_Barrier", + "fill": false, + "backgroundColor": "rgb(132, 186, 91)", + "borderColor": "rgb(132, 186, 91)", + "pointHoverBackgroundColor": "rgb(152, 206, 111)", + "data": [ + 0.00036717, + 11.536629999999999, + 19.9393, + 20.4326, + 0.000085015, + 17.1937, + 17.1773, + 0.00036469, + 0.00039233, + 13.0674, + 2.4534445, + 0.00049271, + 16.639400000000002, + 2.3777448, + 0.00050123, + 0.00049955, + 0.00040097, + 0.00086389, + 1.9903485, + 0.00062267, + 0.00037983, + 1.5522327, + 0.00071306, + 0.00070023, + 12.7864, + 0.00071287, + 11.81771, + 13.2691, + 0.0003283, + 12.57833, + 19.83212, + 0.00067031, + 0.00041877, + 13.4539, + 13.07666, + 0.00054706, + 12.569019999999998, + 13.83035, + 0.00046908, + 8.755900000000001e-7, + 11.524429999999999, + 0.00038297, + 17.843899999999998, + 12.60342, + 0.00035953, + 18.573700000000002, + 0.00045072, + 0.00048487, + 17.9841, + 0.00060571, + 0.00063464, + 20.6325, + 0.00037665, + 0.00084677, + 19.9061, + 0.00065345, + 0.00038936, + 17.6954, + 12.71717, + 0.00069436, + 0.00033585, + 17.116509999999998, + 18.621480000000002, + 0.00059333, + 18.86193, + 18.301119999999997, + 0.00065235, + 14.74154, + 12.683789999999998, + 0.00071761, + 10.69043, + 12.094949999999999, + 14.1067, + 12.885449999999999, + 0.00063347, + 13.4937, + 14.34331, + 0.00077687, + 16.8321, + 13.054559999999999, + 0.0003049, + 5.40808e-7, + 12.264420000000001, + 0.00064235, + 20.4587, + 11.78868329, + 12.300366279999999, + 19.984299999999998, + 0.00042393, + 12.985697089999999, + 12.42529, + 0.00054308, + 13.62907256, + 11.01528, + 0.4964294, + 10.75110975, + 0.00041154, + 0.00066028, + 10.745510000000001, + 0.0007445, + 0.00035288, + 11.74388, + 0.7317729, + 0.00066534, + 17.97911, + 0.911125, + 0.0008583, + 17.48666, + 0.5475214, + 0.00047402, + 15.2996, + 0.44067009999999995, + 19.76083, + 11.492220000000001, + 0.00085945, + 17.51353, + 0.00029796, + 0.00065244, + 12.083680000000001, + 0.00063847, + 13.62023, + 13.244510000000002, + 0.00086312, + 0.00048125, + 13.24752, + 0.2704312, + 0.00060741, + 12.2036, + 0.00041771, + 0.0006951, + 0.8976060000000001, + 0.00072281, + 0.00020251, + 0.5892212, + 0.000872, + 0.00051339, + 0.2802768, + 0.0005673, + 0.00081762, + 0.1739483, + 0.00022953, + 0.00050255, + 0.00078635, + 0.00059187, + 0.00031539, + 0.0006309, + 0.00081338, + 0.00081184, + 21.05886, + 0.00067051, + 0.0011637, + 5.89156e-7, + 8.44987, + 0.00067125, + 17.5229, + 9.2579, + 15.148089999999998, + 20.0197, + 0.00075731, + 13.677189999999998, + 22.1723, + 0.00086066, + 0.00090964, + 20.2089, + 0.00033236, + 0.00075919, + 15.0078, + 0.00083547 + ] + }, + { + "label": "MPI_Send", + "fill": false, + "backgroundColor": "rgb(211, 94, 96)", + "borderColor": "rgb(211, 94, 96)", + "pointHoverBackgroundColor": "rgb(231, 114, 116)", + "data": [ + 10.091769999999999, + 5.53472e-7, + 9.247569999999999e-7, + 11.62226, + 10.35025, + 6.221999999999999e-7, + 12.41479, + 13.24723, + 12.3647, + 12.7363, + 0.00052324, + 12.651299999999999, + 9.53392, + 0.00066732, + 18.677590000000002, + 5.31735e-7, + 6.4868e-7, + 20.2287, + 0.00061757, + 8.4521e-7, + 13.845759999999999, + 0.00084617, + 5.4912e-7, + 13.34911, + 0.00041662, + 5.59956e-7, + 13.60689, + 0.00073765, + 6.5691e-7, + 8.0864e-7, + 6.74756e-7, + 8.921200000000001e-7, + 10.47548, + 7.4126e-7, + 6.904e-7, + 12.39037, + 7.3691e-7, + 6.79526e-7, + 13.69998, + 12.643500000000001, + 5.24767e-7, + 20.1794, + 7.48677e-7, + 5.40862e-7, + 19.80278, + 5.674000000000001e-7, + 12.01875, + 16.8602, + 5.99089e-7, + 14.60139, + 18.147, + 5.564829999999999e-7, + 14.612660000000002, + 21.6218, + 6.756559999999999e-7, + 10.3431, + 20.4663, + 5.74734e-7, + 7.460299999999999e-7, + 17.7198, + 20.5853, + 0.00000518204, + 19.222, + 18.6284, + 7.5863e-7, + 19.5557, + 22.7328, + 6.721e-7, + 18.912, + 18.2367, + 8.6649e-7, + 5.5083e-7, + 5.5213e-7, + 7.203900000000001e-7, + 13.80689, + 6.712479999999999e-7, + 6.06945e-7, + 15.02203, + 6.325699999999999e-7, + 8.803799999999999e-7, + 15.643550000000001, + 21.158900000000003, + 7.77757e-7, + 10.98793, + 5.760639999999999e-7, + 5.07358e-7, + 20.101, + 7.369099999999999e-7, + 10.8882718, + 12.244900000000001, + 9.482009999999999e-7, + 14.00666116, + 12.5689, + 4.99607e-7, + 0.0006406, + 11.452000000000002, + 5.9344e-7, + 11.12094503, + 19.69233, + 5.11267e-7, + 10.53291, + 6.25178e-7, + 0.0010031, + 12.3179, + 8.4427e-7, + 0.00046579, + 18.21964, + 8.864279999999999e-7, + 0.00032543, + 14.40053, + 0.00000104612, + 0.0005096, + 10.51187, + 7.021259999999999e-7, + 7.629800000000001e-7, + 13.66618, + 11.00043, + 6.951849999999999e-7, + 14.34711, + 13.16359, + 7.56132e-7, + 14.43413, + 13.745909999999999, + 13.8396, + 12.61081, + 0.00047549, + 12.758600000000001, + 10.442710000000002, + 6.13876e-7, + 19.28432, + 0.00086342, + 5.6777e-7, + 17.68818, + 0.00051517, + 7.70416e-7, + 16.96461, + 0.00034283, + 6.1866e-7, + 13.5759, + 0.00064849, + 7.9783e-7, + 6.700120000000001e-7, + 6.852170000000001e-7, + 7.495880000000001e-7, + 13.373649999999998, + 5.056209999999999e-7, + 5.58652e-7, + 13.88831, + 7.426089999999999e-7, + 7.6612e-7, + 14.98688, + 20.92474, + 5.308259999999999e-7, + 14.655899999999999, + 5.58638e-7, + 8.3037e-7, + 20.0922, + 7.21277e-7, + 14.27229, + 22.0289, + 4.5384799999999995e-7, + 13.307870000000001, + 21.2294, + 7.5603e-7, + 11.36059, + 13.3854, + 7.89084e-7, + 9.6183 + ] + }, + { + "label": "MPI_Comm_rank", + "fill": false, + "backgroundColor": "rgb(128, 133, 133)", + "borderColor": "rgb(128, 133, 133)", + "pointHoverBackgroundColor": "rgb(148, 153, 153)", + "data": [ + 6.1913e-7, + 19.3021, + 5.9172e-7, + 6.93924e-7, + 16.814700000000002, + 5.0044e-7, + 5.9435e-7, + 19.2952, + 5.52112e-7, + 8.0297e-7, + 12.228100000000001, + 8.256e-7, + 6.4779e-7, + 20.7028, + 5.85613e-7, + 10.47843, + 19.366909999999997, + 5.17809e-7, + 11.91147, + 19.73022, + 5.7652e-7, + 12.149829999999998, + 2.2826e-7, + 6.23043e-7, + 12.682879999999999, + 3.1346e-7, + 8.551599999999999e-7, + 8.43526, + 3.2954e-7, + 20.7288, + 12.789950000000001, + 5.9954e-7, + 12.676000000000002, + 12.491, + 3.8867e-7, + 13.197300000000002, + 12.86339, + 3.7867e-7, + 13.88196, + 10.16477, + 2.2216e-7, + 2.6304e-7, + 9.56733, + 5.3435e-7, + 5.2217e-7, + 12.290670000000002, + 3.748e-7, + 4.97818e-7, + 16.30958, + 3.5128e-7, + 6.0214e-7, + 14.182159999999998, + 3.5958e-7, + 6.252460000000001e-7, + 4.4219e-7, + 3.0739e-7, + 0.00000106514, + 3.278e-7, + 4.0735e-7, + 6.1648e-7, + 4.1172e-7, + 3.6608e-7, + 0.00000119998, + 2.8347e-7, + 4.817e-7, + 6.2863e-7, + 4.6779e-7, + 5.2733e-7, + 6.16939e-7, + 2.6781e-7, + 3.1086e-7, + 17.28608, + 3.3432e-7, + 2.8085e-7, + 12.69125, + 6.7343e-7, + 3.2999e-7, + 16.4916, + 2.6477e-7, + 1.8478e-7, + 20.616699999999998, + 3.1605e-7, + 4.6518e-7, + 22.432399999999998, + 3.8867e-7, + 5.217e-7, + 5.24301e-7, + 3.5259e-7, + 3.1215e-7, + 7.06883e-7, + 6.3647e-7, + 6.1908e-7, + 6.1702e-7, + 4.0133e-7, + 13.549734149999999, + 4.60026e-7, + 2.8477e-7, + 7.3649e-7, + 9.9779e-7, + 5.5257e-7, + 5.80392e-7, + 13.284199999999998, + 3.7302e-7, + 6.6517e-7, + 19.6434, + 5.9647e-7, + 6.4081e-7, + 18.7716, + 4.9394e-7, + 6.48272e-7, + 20.4494, + 6.1218e-7, + 7.2518e-7, + 17.48359, + 4.8213e-7, + 6.75171e-7, + 12.6786, + 4.2738e-7, + 5.15605e-7, + 12.946299999999999, + 3.6437e-7, + 7.578800000000001e-7, + 14.799700000000001, + 6.70902e-7, + 6.48218e-7, + 11.7251, + 7.582100000000001e-7, + 6.09083e-7, + 19.64568, + 6.93879e-7, + 14.613150000000001, + 20.26925, + 4.96515e-7, + 14.49765, + 20.39985, + 6.512699999999999e-7, + 12.18121, + 5.2301e-7, + 5.77817e-7, + 8.006039999999999, + 5.761e-7, + 17.143900000000002, + 13.790790000000001, + 2.5566e-7, + 20.61962, + 13.23095, + 3.8084e-7, + 20.800710000000002, + 15.16007, + 3.9914e-7, + 21.2379, + 14.116700000000002, + 4.6083e-7, + 3.0607e-7, + 4.4084e-7, + 6.2212e-7, + 6.11268e-7, + 14.92472, + 3.1346e-7, + 8.472999999999999e-7, + 12.296389999999999, + 3.7911e-7, + 8.9122e-7, + 5.7212e-7, + 3.1258e-7, + 6.14326e-7, + 7.543e-7, + 2.5737e-7 + ] + }, + { + "label": "MPI_Comm_size", + "fill": false, + "backgroundColor": "rgb(144, 103, 167)", + "borderColor": "rgb(144, 103, 167)", + "pointHoverBackgroundColor": "rgb(164, 123, 187)", + "data": [ + 6.4998e-7, + 3.6565e-7, + 11.9883, + 4.7869e-7, + 4.5654e-7, + 11.34264, + 3.0261e-7, + 3.3609e-7, + 3.6736e-7, + 4.9343e-7, + 4.1562e-7, + 3.8822e-7, + 2.7608e-7, + 4.1303e-7, + 3.7259e-7, + 2.7783e-7, + 3.3955e-7, + 3.4738e-7, + 2.7391e-7, + 5.2215e-7, + 3.0303e-7, + 3.5347e-7, + 15.523340000000001, + 2.6217e-7, + 5.1693e-7, + 12.40026, + 5.7867e-7, + 2.2216e-7, + 20.03974, + 2.8042e-7, + 2.6042e-7, + 19.2627, + 5.5431e-7, + 3.4997e-7, + 12.988869999999999, + 2.8127e-7, + 3.9127e-7, + 13.3475, + 3.4433e-7, + 5.8213e-7, + 20.62262, + 9.63601, + 3.3478e-7, + 19.14433, + 2.5654e-7, + 2.9652e-7, + 17.3341, + 3.3436e-7, + 4.3302e-7, + 19.034, + 3.0693e-7, + 2.7736e-7, + 20.5451, + 3.1391e-7, + 12.240579999999998, + 19.8447, + 6.2343e-7, + 11.89895, + 18.2619, + 3.4041e-7, + 16.20053, + 19.2947, + 2.9261e-7, + 18.212429999999998, + 20.0115, + 4.0083e-7, + 14.20964, + 21.6665, + 3.3173e-7, + 10.187110000000002, + 19.07515, + 3.3347e-7, + 10.63185, + 13.977800000000002, + 2.2302e-7, + 9.61795, + 19.7885, + 3.0478e-7, + 15.498260000000002, + 18.4545, + 3.5258e-7, + 12.952999999999998, + 20.551299999999998, + 3.0824e-7, + 10.46783349, + 19.7521, + 2.8693e-7, + 13.81416596, + 12.9782, + 7.3038e-7, + 14.46247239, + 12.3483, + 2.9829e-7, + 13.739511839999999, + 2.8088e-7, + 3.5089e-7, + 12.32550751, + 20.3563, + 9.4516e-7, + 11.97393, + 3.2086e-7, + 3.1129e-7, + 13.63265, + 4.9997e-7, + 3.1127e-7, + 18.5563, + 3.6909e-7, + 5.6865e-7, + 17.76342, + 6.2436e-7, + 7.4698e-7, + 10.41388, + 3.2215e-7, + 5.8909e-7, + 11.82399, + 4.1607e-7, + 3.9172e-7, + 13.20758, + 4.5345e-7, + 6.278e-7, + 14.18995, + 5.3307e-7, + 4.5699e-7, + 6.2786e-7, + 3.1303e-7, + 4.8475e-7, + 3.2825e-7, + 6.5213e-7, + 4.1562e-7, + 5.6387e-7, + 3.8171e-7, + 3.9562e-7, + 3.6215e-7, + 2.3129e-7, + 3.6998e-7, + 4.0128e-7, + 3.2998e-7, + 13.77829, + 4.2867e-7, + 3.0607e-7, + 20.7563, + 3.7653e-7, + 3.7826e-7, + 16.72655, + 2.9607e-7, + 3.7649e-7, + 20.77093, + 3.9606e-7, + 4.4046e-7, + 21.00644, + 3.1349e-7, + 3.9219e-7, + 14.1919, + 8.0266, + 8.37241, + 16.5305, + 2.539e-7, + 2.8389e-7, + 20.6111, + 4.7388e-7, + 3.1041e-7, + 20.845599999999997, + 8.0427e-7, + 11.85238, + 14.5535, + 3.8388e-7, + 10.83786, + 18.0898 + ] + }, + { + "label": "MPI_Bcast", + "fill": false, + "backgroundColor": "rgb(171, 104, 87)", + "borderColor": "rgb(171, 104, 87)", + "pointHoverBackgroundColor": "rgb(191, 124, 107)", + "data": [ + 0.000133014, + 0.6511036379999999, + 0.656872914, + 0.6568635300000001, + 0.65397369, + 0.6541113900000001, + 0.65429257, + 0.65605165, + 0.652746752, + 0.6526762740000001, + 0.6526157969999999, + 0.652456696, + 0.65213622, + 0.653586372, + 0.65273605, + 0.651846773, + 0.655314936, + 0.656984505, + 0.655174653, + 0.65706505, + 0.65221461, + 0.652354977, + 0.652165003, + 0.65209559, + 0.6523569100000001, + 0.6523471009999999, + 0.6525969370000001, + 0.652626449, + 0.65538768, + 0.657513963, + 0.655744067, + 0.6554242029999999, + 0.6523057910000001, + 0.65237555, + 0.652645333, + 0.65240617, + 0.652435305, + 0.65253556, + 0.652405039, + 0.652845989, + 0.6538178920000001, + 0.6537981230000001, + 0.653848144, + 0.653538243, + 0.657293736, + 0.6542842720000001, + 0.6530142760000001, + 0.654450102, + 0.6536377482000001, + 0.6521176517, + 0.6523181711999999, + 0.6548982656, + 0.655596139, + 0.6553965319999999, + 0.654816519, + 0.65471664, + 0.656799161, + 0.654109215, + 0.654269097, + 0.653943046, + 0.6572853700000001, + 0.655975385, + 0.657765619, + 0.655835676, + 0.656874901, + 0.6565943310000001, + 0.656304196, + 0.656644815, + 0.65450347, + 0.6545531099999999, + 0.6571532800000001, + 0.6543135499999999, + 0.652547651, + 0.652607504, + 0.653068106, + 0.651467793, + 0.655123051, + 0.654052836, + 0.654242925, + 0.653883562, + 0.6567563268, + 0.6551466606999999, + 0.6554371041, + 0.6568868746000001, + 0.656178078, + 0.654917788, + 0.655037423, + 0.656197486, + 0.651538536, + 0.651909109, + 0.651239042, + 0.651469369, + 0.652315257, + 0.6520353449999999, + 0.6517955320000001, + 0.6519854549999999, + 0.654706896, + 0.654866083, + 0.6566159749999999, + 0.655506548, + 0.6525657659999999, + 0.652635934, + 0.652676866, + 0.6527461520000001, + 0.6567982920000001, + 0.657128823, + 0.655549022, + 0.6555287860000001, + 0.6541541519999999, + 0.6547146079999999, + 0.6572344990000001, + 0.654694959, + 0.6571187785, + 0.654238945, + 0.6540392237, + 0.654169082, + 0.652876836, + 0.652536717, + 0.6526073490000001, + 0.652617244, + 0.652049356, + 0.65228964, + 0.652289883, + 0.6522297979999999, + 0.653466162, + 0.6533358610000001, + 0.653135869, + 0.652916179, + 0.655504137, + 0.655473929, + 0.655433815, + 0.653564411, + 0.65402842, + 0.65449648, + 0.65726613, + 0.6540762299999999, + 0.652538091, + 0.652828099, + 0.652868263, + 0.6526884009999999, + 0.657471982, + 0.654201894, + 0.654362287, + 0.654512447, + 0.6544365565, + 0.654653063, + 0.6554966708000001, + 0.6550173769, + 0.657006484, + 0.657416162, + 0.6572965399999999, + 0.655826321, + 0.651338553, + 0.6527586129999999, + 0.6524088100000001, + 0.652469026, + 0.656096131, + 0.655295727, + 0.6554757769999999, + 0.657076305, + 0.654975697, + 0.6546159979999999, + 0.656685868, + 0.653576002, + 0.652735922, + 0.652416291, + 0.652506331, + 0.6527269 + ] + } + ] + }, + "balanceDataSorted": { "labels": [ "64", "62", diff --git a/package.json b/package.json index 3d033b1..1db05fe 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "ipm-hpc-v2", "productName": "IPM-HPC-v2", - "version": "0.7.1", + "version": "0.8.0", "description": "Interactive Visualization of MPI Performance Data (Bachelor Thesis)", "scripts": { "build": "concurrently \"yarn build-main\" \"yarn build-renderer\"",