Report version

This commit is contained in:
2020-12-05 23:29:26 +02:00
parent 8b5112dc2a
commit a93414b105
24 changed files with 1112 additions and 16 deletions
+1
View File
@@ -0,0 +1 @@
/Debug/
+93
View File
@@ -0,0 +1,93 @@
/*
* main.cpp
*
* Created on: Dec 4, 2020
* Author: hoo2
*/
#include <sstream>
#include <fstream>
#include <iostream>
#include <algorithm>
#define SIZE 20
std::ifstream file;
/*!
* Calculates and return the median of an array of measurements
* \param t Pointer to measurements
* \param n Size of measurements array
* \return The average
*/
int median (int *t, int n) {
std::sort (t, &t[n]);
return (n % 2) ? t[n/2] : (t[n/2] + t[n/2 -1]) /2;
}
/*
* A small post processing...
*/
int main(int argc, char* argv[]) {
file = std::ifstream(argv[1]);
std::string line, token, exec, mtx, times, dt, units, dyn1, dyn2;
std::string t1, t2, t3, t4;
enum state_en {RUNNING, LOAD, DATA, SUM} state = RUNNING;
int cnt =0, med =0;
int delta_t[SIZE];
while (std::getline (file, line, '\n')) {
std::stringstream ss(line);
switch (state) {
case RUNNING:
ss >> token;
if (token == "running") {
ss >> exec >> t1 >> mtx >> t2 >> times >> t3 >> t4 >> dyn1 >> dyn2;
cnt =0;
state = LOAD;
}
break;
case LOAD: state = DATA; break;
case DATA:
ss >> t1 >> t2 >> t3 >> dt >> units;
if (units == "[usec]") delta_t[cnt] = std::atoi(dt.c_str());
else if (units == "[msec]") delta_t[cnt] = std::atoi(dt.c_str()) * 1000;
else if (units == "[sec]") delta_t[cnt] = std::atoi(dt.c_str()) * 1000000;
if (++cnt == std::atoi(times.c_str())) {
med = median (delta_t, cnt);
cnt =0;
state = SUM;
}
break;
case SUM:
ss >> token;
if (token == "running") {
std::cout << exec << ',' << mtx << ',' << med << ", ," <<
(((dyn1 == "--dynamic") || (dyn2 == "--dynamic")) ? "dyn\n" : " \n");
dyn1 = "";
dyn2 = "";
ss >> exec >> t1 >> mtx >> t2 >> times >> t3 >> t4 >> dyn1 >> dyn2;
cnt =0;
state = LOAD;
}
else if (token == "[Timing]:") {
ss >> t1 >> t2 >> dt >> units;
if (units == "[usec]") med += std::atoi(dt.c_str());
else if (units == "[msec]") med += std::atoi(dt.c_str()) * 1000;
else if (units == "[sec]") med += std::atoi(dt.c_str()) * 1000000;
state = RUNNING;
std::cout << exec << ',' << mtx << ',' << med << ",sum," <<
(((dyn1 == "--dynamic") || (dyn2 == "--dynamic")) ? "dyn\n" : " \n");
dyn1 = "";
dyn2 = "";
}
break;
}
}
return 0;
}
+70
View File
@@ -0,0 +1,70 @@
out/hpc_cilkv3,mtx/belgium_osm.mtx,26500, ,
out/hpc_cilkv3,mtx/belgium_osm.mtx,25537,sum,
out/hpc_cilkv4,mtx/belgium_osm.mtx,56500, ,
out/hpc_cilkv4,mtx/belgium_osm.mtx,22534,sum,
out/hpc_ompv3,mtx/belgium_osm.mtx,22500, ,
out/hpc_ompv3,mtx/belgium_osm.mtx,22219,sum,
out/hpc_ompv4,mtx/belgium_osm.mtx,68000, ,
out/hpc_ompv4,mtx/belgium_osm.mtx,21223,sum,
out/hpc_pthv4,mtx/belgium_osm.mtx,77000, ,
out/hpc_pthv4,mtx/belgium_osm.mtx,40308,sum,
out/hpc_v3,mtx/belgium_osm.mtx,19000, ,
out/hpc_v3,mtx/belgium_osm.mtx,17903,sum,
out/hpc_v4,mtx/belgium_osm.mtx,66500, ,
out/hpc_v4,mtx/belgium_osm.mtx,28259,sum,
out/hpc_cilkv3,mtx/com-Youtube.mtx,3144000, ,
out/hpc_cilkv3,mtx/com-Youtube.mtx,3427034,sum,
out/hpc_cilkv4,mtx/com-Youtube.mtx,6631000, ,
out/hpc_cilkv4,mtx/com-Youtube.mtx,2388503,sum,
out/hpc_ompv3,mtx/com-Youtube.mtx,2918500, ,
out/hpc_ompv3,mtx/com-Youtube.mtx,2930703,sum,
out/hpc_ompv4,mtx/com-Youtube.mtx,7077000, ,
out/hpc_ompv4,mtx/com-Youtube.mtx,2846392,sum,
out/hpc_pthv4,mtx/com-Youtube.mtx,7516500, ,
out/hpc_pthv4,mtx/com-Youtube.mtx,2769814,sum,
out/hpc_v3,mtx/com-Youtube.mtx,2799500, ,
out/hpc_v3,mtx/com-Youtube.mtx,2758832,sum,
out/hpc_v4,mtx/com-Youtube.mtx,7050500, ,
out/hpc_v4,mtx/com-Youtube.mtx,2943710,sum,
out/hpc_cilkv3,mtx/dblp-2010.mtx,89000, ,
out/hpc_cilkv3,mtx/dblp-2010.mtx,89630,sum,
out/hpc_cilkv4,mtx/dblp-2010.mtx,185500, ,
out/hpc_cilkv4,mtx/dblp-2010.mtx,37130,sum,
out/hpc_ompv3,mtx/dblp-2010.mtx,90000, ,
out/hpc_ompv3,mtx/dblp-2010.mtx,90062,sum,
out/hpc_ompv4,mtx/dblp-2010.mtx,177000, ,
out/hpc_ompv4,mtx/dblp-2010.mtx,37060,sum,
out/hpc_pthv4,mtx/dblp-2010.mtx,182500, ,
out/hpc_pthv4,mtx/dblp-2010.mtx,45605,sum,
out/hpc_v3,mtx/dblp-2010.mtx,73000, ,
out/hpc_v3,mtx/dblp-2010.mtx,72072,sum,
out/hpc_v4,mtx/dblp-2010.mtx,183000, ,
out/hpc_v4,mtx/dblp-2010.mtx,36548,sum,
out/hpc_cilkv3,mtx/mycielskian13.mtx,1155500, ,
out/hpc_cilkv3,mtx/mycielskian13.mtx,1204510,sum,
out/hpc_cilkv4,mtx/mycielskian13.mtx,1663000, ,
out/hpc_cilkv4,mtx/mycielskian13.mtx,509509,sum,
out/hpc_ompv3,mtx/mycielskian13.mtx,1216500, ,
out/hpc_ompv3,mtx/mycielskian13.mtx,1214048,sum,
out/hpc_ompv4,mtx/mycielskian13.mtx,1867000, ,
out/hpc_ompv4,mtx/mycielskian13.mtx,570042,sum,
out/hpc_pthv4,mtx/mycielskian13.mtx,1710500, ,dyn
out/hpc_pthv4,mtx/mycielskian13.mtx,553878,sum,dyn
out/hpc_v3,mtx/mycielskian13.mtx,1065500, ,
out/hpc_v3,mtx/mycielskian13.mtx,1059500,sum,
out/hpc_v4,mtx/mycielskian13.mtx,1743500, ,
out/hpc_v4,mtx/mycielskian13.mtx,561501,sum,
out/hpc_cilkv3,mtx/NACA0015.mtx,165000, ,
out/hpc_cilkv3,mtx/NACA0015.mtx,168385,sum,
out/hpc_cilkv4,mtx/NACA0015.mtx,734000, ,
out/hpc_cilkv4,mtx/NACA0015.mtx,145433,sum,
out/hpc_ompv3,mtx/NACA0015.mtx,159000, ,
out/hpc_ompv3,mtx/NACA0015.mtx,159164,sum,
out/hpc_ompv4,mtx/NACA0015.mtx,702000, ,
out/hpc_ompv4,mtx/NACA0015.mtx,136257,sum,
out/hpc_pthv4,mtx/NACA0015.mtx,708500, ,
out/hpc_pthv4,mtx/NACA0015.mtx,154003,sum,
out/hpc_v3,mtx/NACA0015.mtx,127000, ,
out/hpc_v3,mtx/NACA0015.mtx,126170,sum,
out/hpc_v4,mtx/NACA0015.mtx,686000, ,
out/hpc_v4,mtx/NACA0015.mtx,135196,sum,
+70
View File
@@ -0,0 +1,70 @@
out/hpc_cilkv3,mtx/belgium_osm.mtx,6687, ,
out/hpc_cilkv3,mtx/belgium_osm.mtx,7026,sum,
out/hpc_cilkv4,mtx/belgium_osm.mtx,10000, ,
out/hpc_cilkv4,mtx/belgium_osm.mtx,5187,sum,
out/hpc_ompv3,mtx/belgium_osm.mtx,7521, ,
out/hpc_ompv3,mtx/belgium_osm.mtx,7518,sum,
out/hpc_ompv4,mtx/belgium_osm.mtx,10500, ,
out/hpc_ompv4,mtx/belgium_osm.mtx,5545,sum,
out/hpc_pthv4,mtx/belgium_osm.mtx,14500, ,
out/hpc_pthv4,mtx/belgium_osm.mtx,10285,sum,
out/hpc_v3,mtx/belgium_osm.mtx,15000, ,
out/hpc_v3,mtx/belgium_osm.mtx,18691,sum,
out/hpc_v4,mtx/belgium_osm.mtx,48500, ,
out/hpc_v4,mtx/belgium_osm.mtx,17178,sum,
out/hpc_cilkv3,mtx/com-Youtube.mtx,721500, ,
out/hpc_cilkv3,mtx/com-Youtube.mtx,720886,sum,
out/hpc_cilkv4,mtx/com-Youtube.mtx,1587000, ,
out/hpc_cilkv4,mtx/com-Youtube.mtx,1328352,sum,
out/hpc_ompv3,mtx/com-Youtube.mtx,405500, ,dyn
out/hpc_ompv3,mtx/com-Youtube.mtx,379584,sum,dyn
out/hpc_ompv4,mtx/com-Youtube.mtx,1100000, ,dyn
out/hpc_ompv4,mtx/com-Youtube.mtx,907637,sum,dyn
out/hpc_pthv4,mtx/com-Youtube.mtx,1562500, ,dyn
out/hpc_pthv4,mtx/com-Youtube.mtx,1046997,sum,dyn
out/hpc_v3,mtx/com-Youtube.mtx,2570000, ,
out/hpc_v3,mtx/com-Youtube.mtx,2570242,sum,
out/hpc_v4,mtx/com-Youtube.mtx,6289000, ,
out/hpc_v4,mtx/com-Youtube.mtx,2513721,sum,
out/hpc_cilkv3,mtx/dblp-2010.mtx,16000, ,
out/hpc_cilkv3,mtx/dblp-2010.mtx,15187,sum,
out/hpc_cilkv4,mtx/dblp-2010.mtx,25000, ,
out/hpc_cilkv4,mtx/dblp-2010.mtx,7497,sum,
out/hpc_ompv3,mtx/dblp-2010.mtx,20000, ,
out/hpc_ompv3,mtx/dblp-2010.mtx,20027,sum,
out/hpc_ompv4,mtx/dblp-2010.mtx,38000, ,
out/hpc_ompv4,mtx/dblp-2010.mtx,9201,sum,
out/hpc_pthv4,mtx/dblp-2010.mtx,41000, ,
out/hpc_pthv4,mtx/dblp-2010.mtx,10383,sum,
out/hpc_v3,mtx/dblp-2010.mtx,68000, ,
out/hpc_v3,mtx/dblp-2010.mtx,68041,sum,
out/hpc_v4,mtx/dblp-2010.mtx,162000, ,
out/hpc_v4,mtx/dblp-2010.mtx,34540,sum,
out/hpc_cilkv3,mtx/mycielskian13.mtx,261500, ,
out/hpc_cilkv3,mtx/mycielskian13.mtx,262504,sum,
out/hpc_cilkv4,mtx/mycielskian13.mtx,231500, ,
out/hpc_cilkv4,mtx/mycielskian13.mtx,138019,sum,
out/hpc_ompv3,mtx/mycielskian13.mtx,159000, ,dyn
out/hpc_ompv3,mtx/mycielskian13.mtx,159025,sum,dyn
out/hpc_ompv4,mtx/mycielskian13.mtx,254500, ,dyn
out/hpc_ompv4,mtx/mycielskian13.mtx,83026,sum,dyn
out/hpc_pthv4,mtx/mycielskian13.mtx,253000, ,dyn
out/hpc_pthv4,mtx/mycielskian13.mtx,113054,sum,dyn
out/hpc_v3,mtx/mycielskian13.mtx,1054000, ,
out/hpc_v3,mtx/mycielskian13.mtx,1056000,sum,
out/hpc_v4,mtx/mycielskian13.mtx,1752500, ,
out/hpc_v4,mtx/mycielskian13.mtx,567001,sum,
out/hpc_cilkv3,mtx/NACA0015.mtx,22000, ,
out/hpc_cilkv3,mtx/NACA0015.mtx,22268,sum,
out/hpc_cilkv4,mtx/NACA0015.mtx,87000, ,
out/hpc_cilkv4,mtx/NACA0015.mtx,19632,sum,
out/hpc_ompv3,mtx/NACA0015.mtx,40000, ,
out/hpc_ompv3,mtx/NACA0015.mtx,40084,sum,
out/hpc_ompv4,mtx/NACA0015.mtx,119000, ,
out/hpc_ompv4,mtx/NACA0015.mtx,32126,sum,
out/hpc_pthv4,mtx/NACA0015.mtx,93000, ,
out/hpc_pthv4,mtx/NACA0015.mtx,23567,sum,
out/hpc_v3,mtx/NACA0015.mtx,117000, ,
out/hpc_v3,mtx/NACA0015.mtx,118174,sum,
out/hpc_v4,mtx/NACA0015.mtx,633500, ,
out/hpc_v4,mtx/NACA0015.mtx,125691,sum,
+70
View File
@@ -0,0 +1,70 @@
out/hpc_cilkv3,mtx/belgium_osm.mtx,5818, ,
out/hpc_cilkv3,mtx/belgium_osm.mtx,6550,sum,
out/hpc_cilkv4,mtx/belgium_osm.mtx,8359, ,
out/hpc_cilkv4,mtx/belgium_osm.mtx,4373,sum,
out/hpc_ompv3,mtx/belgium_osm.mtx,6548, ,
out/hpc_ompv3,mtx/belgium_osm.mtx,9778,sum,
out/hpc_ompv4,mtx/belgium_osm.mtx,8995, ,
out/hpc_ompv4,mtx/belgium_osm.mtx,11833,sum,
out/hpc_pthv4,mtx/belgium_osm.mtx,14500, ,
out/hpc_pthv4,mtx/belgium_osm.mtx,11827,sum,
out/hpc_v3,mtx/belgium_osm.mtx,15000, ,
out/hpc_v3,mtx/belgium_osm.mtx,15193,sum,
out/hpc_v4,mtx/belgium_osm.mtx,48000, ,
out/hpc_v4,mtx/belgium_osm.mtx,18182,sum,
out/hpc_cilkv3,mtx/com-Youtube.mtx,692000, ,
out/hpc_cilkv3,mtx/com-Youtube.mtx,692936,sum,
out/hpc_cilkv4,mtx/com-Youtube.mtx,1524500, ,
out/hpc_cilkv4,mtx/com-Youtube.mtx,1324775,sum,
out/hpc_ompv3,mtx/com-Youtube.mtx,382500, ,dyn
out/hpc_ompv3,mtx/com-Youtube.mtx,308712,sum,dyn
out/hpc_ompv4,mtx/com-Youtube.mtx,1122000, ,dyn
out/hpc_ompv4,mtx/com-Youtube.mtx,925666,sum,dyn
out/hpc_pthv4,mtx/com-Youtube.mtx,1457000, ,dyn
out/hpc_pthv4,mtx/com-Youtube.mtx,1088557,sum,dyn
out/hpc_v3,mtx/com-Youtube.mtx,2537000, ,
out/hpc_v3,mtx/com-Youtube.mtx,2538293,sum,
out/hpc_v4,mtx/com-Youtube.mtx,6307500, ,
out/hpc_v4,mtx/com-Youtube.mtx,2511731,sum,
out/hpc_cilkv3,mtx/dblp-2010.mtx,14000, ,
out/hpc_cilkv3,mtx/dblp-2010.mtx,13210,sum,
out/hpc_cilkv4,mtx/dblp-2010.mtx,19000, ,
out/hpc_cilkv4,mtx/dblp-2010.mtx,5547,sum,
out/hpc_ompv3,mtx/dblp-2010.mtx,17000, ,
out/hpc_ompv3,mtx/dblp-2010.mtx,16547,sum,
out/hpc_ompv4,mtx/dblp-2010.mtx,29000, ,
out/hpc_ompv4,mtx/dblp-2010.mtx,9211,sum,
out/hpc_pthv4,mtx/dblp-2010.mtx,35000, ,
out/hpc_pthv4,mtx/dblp-2010.mtx,9051,sum,
out/hpc_v3,mtx/dblp-2010.mtx,68000, ,
out/hpc_v3,mtx/dblp-2010.mtx,68042,sum,
out/hpc_v4,mtx/dblp-2010.mtx,163500, ,
out/hpc_v4,mtx/dblp-2010.mtx,33041,sum,
out/hpc_cilkv3,mtx/mycielskian13.mtx,253000, ,
out/hpc_cilkv3,mtx/mycielskian13.mtx,250004,sum,
out/hpc_cilkv4,mtx/mycielskian13.mtx,198000, ,
out/hpc_cilkv4,mtx/mycielskian13.mtx,132043,sum,
out/hpc_ompv3,mtx/mycielskian13.mtx,115500, ,dyn
out/hpc_ompv3,mtx/mycielskian13.mtx,116021,sum,dyn
out/hpc_ompv4,mtx/mycielskian13.mtx,190000, ,dyn
out/hpc_ompv4,mtx/mycielskian13.mtx,61086,sum,dyn
out/hpc_pthv4,mtx/mycielskian13.mtx,210500, ,dyn
out/hpc_pthv4,mtx/mycielskian13.mtx,91430,sum,dyn
out/hpc_v3,mtx/mycielskian13.mtx,1056000, ,
out/hpc_v3,mtx/mycielskian13.mtx,1061000,sum,
out/hpc_v4,mtx/mycielskian13.mtx,1756000, ,
out/hpc_v4,mtx/mycielskian13.mtx,566001,sum,
out/hpc_cilkv3,mtx/NACA0015.mtx,20000, ,
out/hpc_cilkv3,mtx/NACA0015.mtx,19836,sum,
out/hpc_cilkv4,mtx/NACA0015.mtx,70000, ,
out/hpc_cilkv4,mtx/NACA0015.mtx,17198,sum,
out/hpc_ompv3,mtx/NACA0015.mtx,33000, ,
out/hpc_ompv3,mtx/NACA0015.mtx,33138,sum,
out/hpc_ompv4,mtx/NACA0015.mtx,95500, ,
out/hpc_ompv4,mtx/NACA0015.mtx,25132,sum,
out/hpc_pthv4,mtx/NACA0015.mtx,93500, ,
out/hpc_pthv4,mtx/NACA0015.mtx,25158,sum,
out/hpc_v3,mtx/NACA0015.mtx,119500, ,
out/hpc_v3,mtx/NACA0015.mtx,119662,sum,
out/hpc_v4,mtx/NACA0015.mtx,635000, ,
out/hpc_v4,mtx/NACA0015.mtx,130696,sum,
+70
View File
@@ -0,0 +1,70 @@
out/hpc_cilkv3,mtx/belgium_osm.mtx,17000, ,
out/hpc_cilkv3,mtx/belgium_osm.mtx,16859,sum,
out/hpc_cilkv4,mtx/belgium_osm.mtx,35000, ,
out/hpc_cilkv4,mtx/belgium_osm.mtx,15377,sum,
out/hpc_ompv3,mtx/belgium_osm.mtx,25000, ,
out/hpc_ompv3,mtx/belgium_osm.mtx,25243,sum,
out/hpc_ompv4,mtx/belgium_osm.mtx,62500, ,
out/hpc_ompv4,mtx/belgium_osm.mtx,29470,sum,
out/hpc_pthv4,mtx/belgium_osm.mtx,47000, ,
out/hpc_pthv4,mtx/belgium_osm.mtx,23382,sum,
out/hpc_v3,mtx/belgium_osm.mtx,18000, ,
out/hpc_v3,mtx/belgium_osm.mtx,21475,sum,
out/hpc_v4,mtx/belgium_osm.mtx,57000, ,
out/hpc_v4,mtx/belgium_osm.mtx,23247,sum,
out/hpc_cilkv3,mtx/com-Youtube.mtx,1592500, ,
out/hpc_cilkv3,mtx/com-Youtube.mtx,1708838,sum,
out/hpc_cilkv4,mtx/com-Youtube.mtx,3858000, ,
out/hpc_cilkv4,mtx/com-Youtube.mtx,1397498,sum,
out/hpc_ompv3,mtx/com-Youtube.mtx,2934500, ,dyn
out/hpc_ompv3,mtx/com-Youtube.mtx,2965201,sum,dyn
out/hpc_ompv4,mtx/com-Youtube.mtx,7008500, ,
out/hpc_ompv4,mtx/com-Youtube.mtx,2749905,sum,
out/hpc_pthv4,mtx/com-Youtube.mtx,4209000, ,dyn
out/hpc_pthv4,mtx/com-Youtube.mtx,1808107,sum,dyn
out/hpc_v3,mtx/com-Youtube.mtx,2705500, ,
out/hpc_v3,mtx/com-Youtube.mtx,2721897,sum,
out/hpc_v4,mtx/com-Youtube.mtx,7174500, ,
out/hpc_v4,mtx/com-Youtube.mtx,2843260,sum,
out/hpc_cilkv3,mtx/dblp-2010.mtx,52000, ,
out/hpc_cilkv3,mtx/dblp-2010.mtx,52104,sum,
out/hpc_cilkv4,mtx/dblp-2010.mtx,105500, ,
out/hpc_cilkv4,mtx/dblp-2010.mtx,22082,sum,
out/hpc_ompv3,mtx/dblp-2010.mtx,98500, ,
out/hpc_ompv3,mtx/dblp-2010.mtx,95072,sum,
out/hpc_ompv4,mtx/dblp-2010.mtx,178000, ,
out/hpc_ompv4,mtx/dblp-2010.mtx,37060,sum,
out/hpc_pthv4,mtx/dblp-2010.mtx,97000, ,
out/hpc_pthv4,mtx/dblp-2010.mtx,24501,sum,
out/hpc_v3,mtx/dblp-2010.mtx,72000, ,
out/hpc_v3,mtx/dblp-2010.mtx,72045,sum,
out/hpc_v4,mtx/dblp-2010.mtx,177000, ,
out/hpc_v4,mtx/dblp-2010.mtx,37060,sum,
out/hpc_cilkv3,mtx/mycielskian13.mtx,725500, ,
out/hpc_cilkv3,mtx/mycielskian13.mtx,744026,sum,
out/hpc_cilkv4,mtx/mycielskian13.mtx,903000, ,
out/hpc_cilkv4,mtx/mycielskian13.mtx,353023,sum,
out/hpc_ompv3,mtx/mycielskian13.mtx,1207500, ,dyn
out/hpc_ompv3,mtx/mycielskian13.mtx,1217553,sum,dyn
out/hpc_ompv4,mtx/mycielskian13.mtx,1872500, ,dyn
out/hpc_ompv4,mtx/mycielskian13.mtx,610035,sum,dyn
out/hpc_pthv4,mtx/mycielskian13.mtx,977000, ,dyn
out/hpc_pthv4,mtx/mycielskian13.mtx,352002,sum,dyn
out/hpc_v3,mtx/mycielskian13.mtx,1162500, ,
out/hpc_v3,mtx/mycielskian13.mtx,1158502,sum,
out/hpc_v4,mtx/mycielskian13.mtx,1899500, ,
out/hpc_v4,mtx/mycielskian13.mtx,609501,sum,
out/hpc_cilkv3,mtx/NACA0015.mtx,131500, ,
out/hpc_cilkv3,mtx/NACA0015.mtx,92768,sum,
out/hpc_cilkv4,mtx/NACA0015.mtx,506000, ,
out/hpc_cilkv4,mtx/NACA0015.mtx,84790,sum,
out/hpc_ompv3,mtx/NACA0015.mtx,196500, ,
out/hpc_ompv3,mtx/NACA0015.mtx,177187,sum,
out/hpc_ompv4,mtx/NACA0015.mtx,721500, ,
out/hpc_ompv4,mtx/NACA0015.mtx,143306,sum,
out/hpc_pthv4,mtx/NACA0015.mtx,407500, ,
out/hpc_pthv4,mtx/NACA0015.mtx,88733,sum,
out/hpc_v3,mtx/NACA0015.mtx,130000, ,
out/hpc_v3,mtx/NACA0015.mtx,133199,sum,
out/hpc_v4,mtx/NACA0015.mtx,748000, ,
out/hpc_v4,mtx/NACA0015.mtx,143241,sum,
+70
View File
@@ -0,0 +1,70 @@
out/hpc_cilkv3,mtx/belgium_osm.mtx,6303, ,
out/hpc_cilkv3,mtx/belgium_osm.mtx,6767,sum,
out/hpc_cilkv4,mtx/belgium_osm.mtx,6521, ,
out/hpc_cilkv4,mtx/belgium_osm.mtx,3872,sum,
out/hpc_ompv3,mtx/belgium_osm.mtx,8999, ,
out/hpc_ompv3,mtx/belgium_osm.mtx,7005,sum,
out/hpc_ompv4,mtx/belgium_osm.mtx,6932, ,
out/hpc_ompv4,mtx/belgium_osm.mtx,3931,sum,
out/hpc_pthv4,mtx/belgium_osm.mtx,10000, ,
out/hpc_pthv4,mtx/belgium_osm.mtx,8424,sum,
out/hpc_v3,mtx/belgium_osm.mtx,18500, ,
out/hpc_v3,mtx/belgium_osm.mtx,18708,sum,
out/hpc_v4,mtx/belgium_osm.mtx,51000, ,
out/hpc_v4,mtx/belgium_osm.mtx,19188,sum,
out/hpc_cilkv3,mtx/com-Youtube.mtx,678500, ,
out/hpc_cilkv3,mtx/com-Youtube.mtx,675455,sum,
out/hpc_cilkv4,mtx/com-Youtube.mtx,1516500, ,
out/hpc_cilkv4,mtx/com-Youtube.mtx,1287996,sum,
out/hpc_ompv3,mtx/com-Youtube.mtx,301000, ,dyn
out/hpc_ompv3,mtx/com-Youtube.mtx,221202,sum,dyn
out/hpc_ompv4,mtx/com-Youtube.mtx,1010000, ,dyn
out/hpc_ompv4,mtx/com-Youtube.mtx,883004,sum,dyn
out/hpc_pthv4,mtx/com-Youtube.mtx,1369500, ,dyn
out/hpc_pthv4,mtx/com-Youtube.mtx,980566,sum,dyn
out/hpc_v3,mtx/com-Youtube.mtx,2541000, ,
out/hpc_v3,mtx/com-Youtube.mtx,2519239,sum,
out/hpc_v4,mtx/com-Youtube.mtx,6370500, ,
out/hpc_v4,mtx/com-Youtube.mtx,2522198,sum,
out/hpc_cilkv3,mtx/dblp-2010.mtx,11000, ,
out/hpc_cilkv3,mtx/dblp-2010.mtx,12245,sum,
out/hpc_cilkv4,mtx/dblp-2010.mtx,16000, ,
out/hpc_cilkv4,mtx/dblp-2010.mtx,5710,sum,
out/hpc_ompv3,mtx/dblp-2010.mtx,15500, ,
out/hpc_ompv3,mtx/dblp-2010.mtx,15054,sum,
out/hpc_ompv4,mtx/dblp-2010.mtx,21500, ,
out/hpc_ompv4,mtx/dblp-2010.mtx,7761,sum,
out/hpc_pthv4,mtx/dblp-2010.mtx,36000, ,
out/hpc_pthv4,mtx/dblp-2010.mtx,9370,sum,
out/hpc_v3,mtx/dblp-2010.mtx,68000, ,
out/hpc_v3,mtx/dblp-2010.mtx,68540,sum,
out/hpc_v4,mtx/dblp-2010.mtx,162500, ,
out/hpc_v4,mtx/dblp-2010.mtx,33041,sum,
out/hpc_cilkv3,mtx/mycielskian13.mtx,171500, ,
out/hpc_cilkv3,mtx/mycielskian13.mtx,168505,sum,
out/hpc_cilkv4,mtx/mycielskian13.mtx,137500, ,
out/hpc_cilkv4,mtx/mycielskian13.mtx,95007,sum,
out/hpc_ompv3,mtx/mycielskian13.mtx,76000, ,dyn
out/hpc_ompv3,mtx/mycielskian13.mtx,76023,sum,dyn
out/hpc_ompv4,mtx/mycielskian13.mtx,128500, ,dyn
out/hpc_ompv4,mtx/mycielskian13.mtx,43031,sum,dyn
out/hpc_pthv4,mtx/mycielskian13.mtx,154000, ,dyn
out/hpc_pthv4,mtx/mycielskian13.mtx,89957,sum,dyn
out/hpc_v3,mtx/mycielskian13.mtx,1055000, ,
out/hpc_v3,mtx/mycielskian13.mtx,1055000,sum,
out/hpc_v4,mtx/mycielskian13.mtx,1739000, ,
out/hpc_v4,mtx/mycielskian13.mtx,574000,sum,
out/hpc_cilkv3,mtx/NACA0015.mtx,16500, ,
out/hpc_cilkv3,mtx/NACA0015.mtx,16359,sum,
out/hpc_cilkv4,mtx/NACA0015.mtx,51000, ,
out/hpc_cilkv4,mtx/NACA0015.mtx,13166,sum,
out/hpc_ompv3,mtx/NACA0015.mtx,34500, ,
out/hpc_ompv3,mtx/NACA0015.mtx,32736,sum,
out/hpc_ompv4,mtx/NACA0015.mtx,62500, ,
out/hpc_ompv4,mtx/NACA0015.mtx,23856,sum,
out/hpc_pthv4,mtx/NACA0015.mtx,56000, ,
out/hpc_pthv4,mtx/NACA0015.mtx,25950,sum,
out/hpc_v3,mtx/NACA0015.mtx,128500, ,
out/hpc_v3,mtx/NACA0015.mtx,127175,sum,
out/hpc_v4,mtx/NACA0015.mtx,685000, ,
out/hpc_v4,mtx/NACA0015.mtx,134705,sum,
+70
View File
@@ -0,0 +1,70 @@
out/hpc_cilkv3,mtx/belgium_osm.mtx,12000, ,
out/hpc_cilkv3,mtx/belgium_osm.mtx,12316,sum,
out/hpc_cilkv4,mtx/belgium_osm.mtx,21000, ,
out/hpc_cilkv4,mtx/belgium_osm.mtx,10237,sum,
out/hpc_ompv3,mtx/belgium_osm.mtx,19000, ,
out/hpc_ompv3,mtx/belgium_osm.mtx,16641,sum,
out/hpc_ompv4,mtx/belgium_osm.mtx,43000, ,
out/hpc_ompv4,mtx/belgium_osm.mtx,15244,sum,
out/hpc_pthv4,mtx/belgium_osm.mtx,27500, ,
out/hpc_pthv4,mtx/belgium_osm.mtx,16585,sum,
out/hpc_v3,mtx/belgium_osm.mtx,20000, ,
out/hpc_v3,mtx/belgium_osm.mtx,21397,sum,
out/hpc_v4,mtx/belgium_osm.mtx,65500, ,
out/hpc_v4,mtx/belgium_osm.mtx,27888,sum,
out/hpc_cilkv3,mtx/com-Youtube.mtx,923000, ,
out/hpc_cilkv3,mtx/com-Youtube.mtx,949250,sum,
out/hpc_cilkv4,mtx/com-Youtube.mtx,2037500, ,
out/hpc_cilkv4,mtx/com-Youtube.mtx,1507358,sum,
out/hpc_ompv3,mtx/com-Youtube.mtx,2943000, ,dyn
out/hpc_ompv3,mtx/com-Youtube.mtx,2938693,sum,dyn
out/hpc_ompv4,mtx/com-Youtube.mtx,7141500, ,dyn
out/hpc_ompv4,mtx/com-Youtube.mtx,2788393,sum,dyn
out/hpc_pthv4,mtx/com-Youtube.mtx,2706000, ,dyn
out/hpc_pthv4,mtx/com-Youtube.mtx,1464570,sum,dyn
out/hpc_v3,mtx/com-Youtube.mtx,2782500, ,
out/hpc_v3,mtx/com-Youtube.mtx,2719852,sum,
out/hpc_v4,mtx/com-Youtube.mtx,7123500, ,
out/hpc_v4,mtx/com-Youtube.mtx,2803272,sum,
out/hpc_cilkv3,mtx/dblp-2010.mtx,26000, ,
out/hpc_cilkv3,mtx/dblp-2010.mtx,27143,sum,
out/hpc_cilkv4,mtx/dblp-2010.mtx,52500, ,
out/hpc_cilkv4,mtx/dblp-2010.mtx,13574,sum,
out/hpc_ompv3,mtx/dblp-2010.mtx,91000, ,
out/hpc_ompv3,mtx/dblp-2010.mtx,92084,sum,
out/hpc_ompv4,mtx/dblp-2010.mtx,177500, ,
out/hpc_ompv4,mtx/dblp-2010.mtx,40064,sum,
out/hpc_pthv4,mtx/dblp-2010.mtx,57000, ,
out/hpc_pthv4,mtx/dblp-2010.mtx,15933,sum,
out/hpc_v3,mtx/dblp-2010.mtx,73000, ,
out/hpc_v3,mtx/dblp-2010.mtx,72551,sum,
out/hpc_v4,mtx/dblp-2010.mtx,179000, ,
out/hpc_v4,mtx/dblp-2010.mtx,37043,sum,
out/hpc_cilkv3,mtx/mycielskian13.mtx,547000, ,
out/hpc_cilkv3,mtx/mycielskian13.mtx,552507,sum,
out/hpc_cilkv4,mtx/mycielskian13.mtx,493000, ,
out/hpc_cilkv4,mtx/mycielskian13.mtx,257519,sum,
out/hpc_ompv3,mtx/mycielskian13.mtx,1239500, ,
out/hpc_ompv3,mtx/mycielskian13.mtx,1239035,sum,
out/hpc_ompv4,mtx/mycielskian13.mtx,1855500, ,dyn
out/hpc_ompv4,mtx/mycielskian13.mtx,607036,sum,dyn
out/hpc_pthv4,mtx/mycielskian13.mtx,514000, ,dyn
out/hpc_pthv4,mtx/mycielskian13.mtx,183973,sum,dyn
out/hpc_v3,mtx/mycielskian13.mtx,1158000, ,
out/hpc_v3,mtx/mycielskian13.mtx,1162002,sum,
out/hpc_v4,mtx/mycielskian13.mtx,1943000, ,
out/hpc_v4,mtx/mycielskian13.mtx,624001,sum,
out/hpc_cilkv3,mtx/NACA0015.mtx,55000, ,
out/hpc_cilkv3,mtx/NACA0015.mtx,56733,sum,
out/hpc_cilkv4,mtx/NACA0015.mtx,243000, ,
out/hpc_cilkv4,mtx/NACA0015.mtx,44164,sum,
out/hpc_ompv3,mtx/NACA0015.mtx,175500, ,
out/hpc_ompv3,mtx/NACA0015.mtx,177173,sum,
out/hpc_ompv4,mtx/NACA0015.mtx,774000, ,
out/hpc_ompv4,mtx/NACA0015.mtx,151281,sum,
out/hpc_pthv4,mtx/NACA0015.mtx,235000, ,
out/hpc_pthv4,mtx/NACA0015.mtx,51471,sum,
out/hpc_v3,mtx/NACA0015.mtx,155500, ,
out/hpc_v3,mtx/NACA0015.mtx,139297,sum,
out/hpc_v4,mtx/NACA0015.mtx,814500, ,
out/hpc_v4,mtx/NACA0015.mtx,163336,sum,
+100
View File
@@ -0,0 +1,100 @@
out/hpc_cilkv3,mtx/belgium_osm.mtx,11500, ,
out/hpc_cilkv3,mtx/belgium_osm.mtx,14266,sum,
out/hpc_cilkv4,mtx/belgium_osm.mtx,25500, ,
out/hpc_cilkv4,mtx/belgium_osm.mtx,10831,sum,
out/hpc_ompv3,mtx/belgium_osm.mtx,16500, ,
out/hpc_ompv3,mtx/belgium_osm.mtx,16296,sum,
out/hpc_ompv3,mtx/belgium_osm.mtx,89000, ,dyn
out/hpc_ompv3,mtx/belgium_osm.mtx,131341,sum,dyn
out/hpc_ompv4,mtx/belgium_osm.mtx,25000, ,
out/hpc_ompv4,mtx/belgium_osm.mtx,11637,sum,
out/hpc_ompv4,mtx/belgium_osm.mtx,201000, ,dyn
out/hpc_ompv4,mtx/belgium_osm.mtx,145311,sum,dyn
out/hpc_pthv4,mtx/belgium_osm.mtx,34500, ,
out/hpc_pthv4,mtx/belgium_osm.mtx,27363,sum,
out/hpc_pthv4,mtx/belgium_osm.mtx,123000, ,dyn
out/hpc_pthv4,mtx/belgium_osm.mtx,96481,sum,dyn
out/hpc_v3,mtx/belgium_osm.mtx,22000, ,
out/hpc_v3,mtx/belgium_osm.mtx,23473,sum,
out/hpc_v4,mtx/belgium_osm.mtx,71500, ,
out/hpc_v4,mtx/belgium_osm.mtx,26935,sum,
out/hpc_cilkv3,mtx/com-Youtube.mtx,1114500, ,
out/hpc_cilkv3,mtx/com-Youtube.mtx,868766,sum,
out/hpc_cilkv4,mtx/com-Youtube.mtx,1783000, ,
out/hpc_cilkv4,mtx/com-Youtube.mtx,1548890,sum,
out/hpc_ompv3,mtx/com-Youtube.mtx,2902000, ,
out/hpc_ompv3,mtx/com-Youtube.mtx,2894245,sum,
out/hpc_ompv3,mtx/com-Youtube.mtx,1548500, ,dyn
out/hpc_ompv3,mtx/com-Youtube.mtx,1541156,sum,dyn
out/hpc_ompv4,mtx/com-Youtube.mtx,6357500, ,
out/hpc_ompv4,mtx/com-Youtube.mtx,2700337,sum,
out/hpc_ompv4,mtx/com-Youtube.mtx,3643000, ,dyn
out/hpc_ompv4,mtx/com-Youtube.mtx,2779929,sum,dyn
out/hpc_pthv4,mtx/com-Youtube.mtx,4525500, ,
out/hpc_pthv4,mtx/com-Youtube.mtx,2541127,sum,
out/hpc_pthv4,mtx/com-Youtube.mtx,2686000, ,dyn
out/hpc_pthv4,mtx/com-Youtube.mtx,1271835,sum,dyn
out/hpc_v3,mtx/com-Youtube.mtx,2704500, ,
out/hpc_v3,mtx/com-Youtube.mtx,2724805,sum,
out/hpc_v4,mtx/com-Youtube.mtx,7090500, ,
out/hpc_v4,mtx/com-Youtube.mtx,2749317,sum,
out/hpc_cilkv3,mtx/dblp-2010.mtx,50500, ,
out/hpc_cilkv3,mtx/dblp-2010.mtx,37155,sum,
out/hpc_cilkv4,mtx/dblp-2010.mtx,44500, ,
out/hpc_cilkv4,mtx/dblp-2010.mtx,23616,sum,
out/hpc_ompv3,mtx/dblp-2010.mtx,93000, ,
out/hpc_ompv3,mtx/dblp-2010.mtx,93090,sum,
out/hpc_ompv3,mtx/dblp-2010.mtx,97500, ,dyn
out/hpc_ompv3,mtx/dblp-2010.mtx,98084,sum,dyn
out/hpc_ompv4,mtx/dblp-2010.mtx,185000, ,
out/hpc_ompv4,mtx/dblp-2010.mtx,37086,sum,
out/hpc_ompv4,mtx/dblp-2010.mtx,187000, ,dyn
out/hpc_ompv4,mtx/dblp-2010.mtx,42110,sum,dyn
out/hpc_pthv4,mtx/dblp-2010.mtx,96000, ,
out/hpc_pthv4,mtx/dblp-2010.mtx,15731,sum,
out/hpc_pthv4,mtx/dblp-2010.mtx,81500, ,dyn
out/hpc_pthv4,mtx/dblp-2010.mtx,39512,sum,dyn
out/hpc_v3,mtx/dblp-2010.mtx,74000, ,
out/hpc_v3,mtx/dblp-2010.mtx,74090,sum,
out/hpc_v4,mtx/dblp-2010.mtx,183000, ,
out/hpc_v4,mtx/dblp-2010.mtx,38068,sum,
out/hpc_cilkv3,mtx/mycielskian13.mtx,360500, ,
out/hpc_cilkv3,mtx/mycielskian13.mtx,534027,sum,
out/hpc_cilkv4,mtx/mycielskian13.mtx,379500, ,
out/hpc_cilkv4,mtx/mycielskian13.mtx,290512,sum,
out/hpc_ompv3,mtx/mycielskian13.mtx,1197000, ,
out/hpc_ompv3,mtx/mycielskian13.mtx,1198045,sum,
out/hpc_ompv3,mtx/mycielskian13.mtx,1200000, ,dyn
out/hpc_ompv3,mtx/mycielskian13.mtx,1197548,sum,dyn
out/hpc_ompv4,mtx/mycielskian13.mtx,1858000, ,
out/hpc_ompv4,mtx/mycielskian13.mtx,599587,sum,
out/hpc_ompv4,mtx/mycielskian13.mtx,1851500, ,dyn
out/hpc_ompv4,mtx/mycielskian13.mtx,598046,sum,dyn
out/hpc_pthv4,mtx/mycielskian13.mtx,684000, ,
out/hpc_pthv4,mtx/mycielskian13.mtx,383448,sum,
out/hpc_pthv4,mtx/mycielskian13.mtx,442500, ,dyn
out/hpc_pthv4,mtx/mycielskian13.mtx,160597,sum,dyn
out/hpc_v3,mtx/mycielskian13.mtx,1140500, ,
out/hpc_v3,mtx/mycielskian13.mtx,1139002,sum,
out/hpc_v4,mtx/mycielskian13.mtx,1876500, ,
out/hpc_v4,mtx/mycielskian13.mtx,604501,sum,
out/hpc_cilkv3,mtx/NACA0015.mtx,52500, ,
out/hpc_cilkv3,mtx/NACA0015.mtx,54250,sum,
out/hpc_cilkv4,mtx/NACA0015.mtx,259500, ,
out/hpc_cilkv4,mtx/NACA0015.mtx,84789,sum,
out/hpc_ompv3,mtx/NACA0015.mtx,227500, ,
out/hpc_ompv3,mtx/NACA0015.mtx,224189,sum,
out/hpc_ompv3,mtx/NACA0015.mtx,248000, ,dyn
out/hpc_ompv3,mtx/NACA0015.mtx,233677,sum,dyn
out/hpc_ompv4,mtx/NACA0015.mtx,808000, ,
out/hpc_ompv4,mtx/NACA0015.mtx,170856,sum,
out/hpc_ompv4,mtx/NACA0015.mtx,876500, ,dyn
out/hpc_ompv4,mtx/NACA0015.mtx,253854,sum,dyn
out/hpc_pthv4,mtx/NACA0015.mtx,373000, ,
out/hpc_pthv4,mtx/NACA0015.mtx,102168,sum,
out/hpc_pthv4,mtx/NACA0015.mtx,445500, ,dyn
out/hpc_pthv4,mtx/NACA0015.mtx,133809,sum,dyn
out/hpc_v3,mtx/NACA0015.mtx,158500, ,
out/hpc_v3,mtx/NACA0015.mtx,156298,sum,
out/hpc_v4,mtx/NACA0015.mtx,864000, ,
out/hpc_v4,mtx/NACA0015.mtx,182324,sum,
+70
View File
@@ -0,0 +1,70 @@
out/hpc_cilkv3,mtx/belgium_osm.mtx,8485, ,
out/hpc_cilkv3,mtx/belgium_osm.mtx,8729,sum,
out/hpc_cilkv4,mtx/belgium_osm.mtx,11500, ,
out/hpc_cilkv4,mtx/belgium_osm.mtx,6546,sum,
out/hpc_ompv3,mtx/belgium_osm.mtx,11500, ,
out/hpc_ompv3,mtx/belgium_osm.mtx,11100,sum,
out/hpc_ompv4,mtx/belgium_osm.mtx,18500, ,
out/hpc_ompv4,mtx/belgium_osm.mtx,9888,sum,
out/hpc_pthv4,mtx/belgium_osm.mtx,19000, ,
out/hpc_pthv4,mtx/belgium_osm.mtx,13872,sum,
out/hpc_v3,mtx/belgium_osm.mtx,21500, ,
out/hpc_v3,mtx/belgium_osm.mtx,21502,sum,
out/hpc_v4,mtx/belgium_osm.mtx,67000, ,
out/hpc_v4,mtx/belgium_osm.mtx,25411,sum,
out/hpc_cilkv3,mtx/com-Youtube.mtx,768000, ,
out/hpc_cilkv3,mtx/com-Youtube.mtx,767339,sum,
out/hpc_cilkv4,mtx/com-Youtube.mtx,1695500, ,
out/hpc_cilkv4,mtx/com-Youtube.mtx,1437948,sum,
out/hpc_ompv3,mtx/com-Youtube.mtx,704000, ,dyn
out/hpc_ompv3,mtx/com-Youtube.mtx,701135,sum,dyn
out/hpc_ompv4,mtx/com-Youtube.mtx,1598000, ,dyn
out/hpc_ompv4,mtx/com-Youtube.mtx,1054208,sum,dyn
out/hpc_pthv4,mtx/com-Youtube.mtx,1907000, ,dyn
out/hpc_pthv4,mtx/com-Youtube.mtx,1167025,sum,dyn
out/hpc_v3,mtx/com-Youtube.mtx,2736000, ,
out/hpc_v3,mtx/com-Youtube.mtx,2734914,sum,
out/hpc_v4,mtx/com-Youtube.mtx,7123000, ,
out/hpc_v4,mtx/com-Youtube.mtx,2775836,sum,
out/hpc_cilkv3,mtx/dblp-2010.mtx,18500, ,
out/hpc_cilkv3,mtx/dblp-2010.mtx,17669,sum,
out/hpc_cilkv4,mtx/dblp-2010.mtx,29500, ,
out/hpc_cilkv4,mtx/dblp-2010.mtx,8610,sum,
out/hpc_ompv3,mtx/dblp-2010.mtx,32000, ,
out/hpc_ompv3,mtx/dblp-2010.mtx,32061,sum,
out/hpc_ompv4,mtx/dblp-2010.mtx,53500, ,dyn
out/hpc_ompv4,mtx/dblp-2010.mtx,23066,sum,dyn
out/hpc_pthv4,mtx/dblp-2010.mtx,37500, ,
out/hpc_pthv4,mtx/dblp-2010.mtx,10636,sum,
out/hpc_v3,mtx/dblp-2010.mtx,76000, ,
out/hpc_v3,mtx/dblp-2010.mtx,74074,sum,
out/hpc_v4,mtx/dblp-2010.mtx,188000, ,
out/hpc_v4,mtx/dblp-2010.mtx,39076,sum,
out/hpc_cilkv3,mtx/mycielskian13.mtx,395000, ,
out/hpc_cilkv3,mtx/mycielskian13.mtx,396520,sum,
out/hpc_cilkv4,mtx/mycielskian13.mtx,303000, ,
out/hpc_cilkv4,mtx/mycielskian13.mtx,194007,sum,
out/hpc_ompv3,mtx/mycielskian13.mtx,276000, ,dyn
out/hpc_ompv3,mtx/mycielskian13.mtx,278057,sum,dyn
out/hpc_ompv4,mtx/mycielskian13.mtx,517000, ,dyn
out/hpc_ompv4,mtx/mycielskian13.mtx,182559,sum,dyn
out/hpc_pthv4,mtx/mycielskian13.mtx,303500, ,dyn
out/hpc_pthv4,mtx/mycielskian13.mtx,117786,sum,dyn
out/hpc_v3,mtx/mycielskian13.mtx,1148500, ,
out/hpc_v3,mtx/mycielskian13.mtx,1157001,sum,
out/hpc_v4,mtx/mycielskian13.mtx,1892000, ,
out/hpc_v4,mtx/mycielskian13.mtx,609001,sum,
out/hpc_cilkv3,mtx/NACA0015.mtx,28000, ,
out/hpc_cilkv3,mtx/NACA0015.mtx,29757,sum,
out/hpc_cilkv4,mtx/NACA0015.mtx,123500, ,
out/hpc_cilkv4,mtx/NACA0015.mtx,25157,sum,
out/hpc_ompv3,mtx/NACA0015.mtx,102000, ,
out/hpc_ompv3,mtx/NACA0015.mtx,102619,sum,
out/hpc_ompv4,mtx/NACA0015.mtx,235000, ,
out/hpc_ompv4,mtx/NACA0015.mtx,84688,sum,
out/hpc_pthv4,mtx/NACA0015.mtx,128500, ,
out/hpc_pthv4,mtx/NACA0015.mtx,31076,sum,
out/hpc_v3,mtx/NACA0015.mtx,175500, ,
out/hpc_v3,mtx/NACA0015.mtx,174353,sum,
out/hpc_v4,mtx/NACA0015.mtx,879000, ,
out/hpc_v4,mtx/NACA0015.mtx,189315,sum,
+225
View File
@@ -0,0 +1,225 @@
mtx/belgium_osm.mtx,out/hpc_cilkv3,0,19000
mtx/belgium_osm.mtx,out/hpc_cilkv3,1,26500
mtx/belgium_osm.mtx,out/hpc_cilkv3,2,17000
mtx/belgium_osm.mtx,out/hpc_cilkv3,4,12000
mtx/belgium_osm.mtx,out/hpc_cilkv3,5,11500
mtx/belgium_osm.mtx,out/hpc_cilkv3,8,8485
mtx/belgium_osm.mtx,out/hpc_cilkv3,10,6687
mtx/belgium_osm.mtx,out/hpc_cilkv3,15,5818
mtx/belgium_osm.mtx,out/hpc_cilkv3,20,6303
mtx/belgium_osm.mtx,out/hpc_cilkv4,0,48500
mtx/belgium_osm.mtx,out/hpc_cilkv4,1,56500
mtx/belgium_osm.mtx,out/hpc_cilkv4,2,35000
mtx/belgium_osm.mtx,out/hpc_cilkv4,4,21000
mtx/belgium_osm.mtx,out/hpc_cilkv4,5,25500
mtx/belgium_osm.mtx,out/hpc_cilkv4,8,11500
mtx/belgium_osm.mtx,out/hpc_cilkv4,10,10000
mtx/belgium_osm.mtx,out/hpc_cilkv4,15,8359
mtx/belgium_osm.mtx,out/hpc_cilkv4,20,6521
mtx/belgium_osm.mtx,out/hpc_ompv3,0,18000
mtx/belgium_osm.mtx,out/hpc_ompv3,1,22500
mtx/belgium_osm.mtx,out/hpc_ompv3,2,25000
mtx/belgium_osm.mtx,out/hpc_ompv3,4,19000
mtx/belgium_osm.mtx,out/hpc_ompv3,5,16500
mtx/belgium_osm.mtx,out/hpc_ompv3,8,11500
mtx/belgium_osm.mtx,out/hpc_ompv3,10,7521
mtx/belgium_osm.mtx,out/hpc_ompv3,15,6548
mtx/belgium_osm.mtx,out/hpc_ompv3,20,8999
mtx/belgium_osm.mtx,out/hpc_ompv4,0,48000
mtx/belgium_osm.mtx,out/hpc_ompv4,1,68000
mtx/belgium_osm.mtx,out/hpc_ompv4,2,62500
mtx/belgium_osm.mtx,out/hpc_ompv4,4,43000
mtx/belgium_osm.mtx,out/hpc_ompv4,5,25000
mtx/belgium_osm.mtx,out/hpc_ompv4,8,18500
mtx/belgium_osm.mtx,out/hpc_ompv4,10,10500
mtx/belgium_osm.mtx,out/hpc_ompv4,15,8995
mtx/belgium_osm.mtx,out/hpc_ompv4,20,6932
mtx/belgium_osm.mtx,out/hpc_pthv4,0,51000
mtx/belgium_osm.mtx,out/hpc_pthv4,1,77000
mtx/belgium_osm.mtx,out/hpc_pthv4,2,47000
mtx/belgium_osm.mtx,out/hpc_pthv4,4,27500
mtx/belgium_osm.mtx,out/hpc_pthv4,5,34500
mtx/belgium_osm.mtx,out/hpc_pthv4,8,19000
mtx/belgium_osm.mtx,out/hpc_pthv4,10,14500
mtx/belgium_osm.mtx,out/hpc_pthv4,15,14500
mtx/belgium_osm.mtx,out/hpc_pthv4,20,10000
mtx/com-Youtube.mtx,out/hpc_cilkv3,0,2799500
mtx/com-Youtube.mtx,out/hpc_cilkv3,1,3144000
mtx/com-Youtube.mtx,out/hpc_cilkv3,2,1592500
mtx/com-Youtube.mtx,out/hpc_cilkv3,4,923000
mtx/com-Youtube.mtx,out/hpc_cilkv3,5,1114500
mtx/com-Youtube.mtx,out/hpc_cilkv3,8,768000
mtx/com-Youtube.mtx,out/hpc_cilkv3,10,721500
mtx/com-Youtube.mtx,out/hpc_cilkv3,15,692000
mtx/com-Youtube.mtx,out/hpc_cilkv3,20,678500
mtx/com-Youtube.mtx,out/hpc_cilkv4,0,6289000
mtx/com-Youtube.mtx,out/hpc_cilkv4,1,6631000
mtx/com-Youtube.mtx,out/hpc_cilkv4,2,3858000
mtx/com-Youtube.mtx,out/hpc_cilkv4,4,2037500
mtx/com-Youtube.mtx,out/hpc_cilkv4,5,1783000
mtx/com-Youtube.mtx,out/hpc_cilkv4,8,1695500
mtx/com-Youtube.mtx,out/hpc_cilkv4,10,1587000
mtx/com-Youtube.mtx,out/hpc_cilkv4,15,1524500
mtx/com-Youtube.mtx,out/hpc_cilkv4,20,1516500
mtx/com-Youtube.mtx,out/hpc_ompv3,0,2705500
mtx/com-Youtube.mtx,out/hpc_ompv3,1,2918500
mtx/com-Youtube.mtx,out/hpc_ompv3,2,2934500
mtx/com-Youtube.mtx,out/hpc_ompv3,4,2943000
mtx/com-Youtube.mtx,out/hpc_ompv3,5,1548500
mtx/com-Youtube.mtx,out/hpc_ompv3,8,704000
mtx/com-Youtube.mtx,out/hpc_ompv3,10,405500
mtx/com-Youtube.mtx,out/hpc_ompv3,15,382500
mtx/com-Youtube.mtx,out/hpc_ompv3,20,301000
mtx/com-Youtube.mtx,out/hpc_ompv4,0,6307500
mtx/com-Youtube.mtx,out/hpc_ompv4,1,7077000
mtx/com-Youtube.mtx,out/hpc_ompv4,2,7008500
mtx/com-Youtube.mtx,out/hpc_ompv4,4,7141500
mtx/com-Youtube.mtx,out/hpc_ompv4,5,3643000
mtx/com-Youtube.mtx,out/hpc_ompv4,8,1598000
mtx/com-Youtube.mtx,out/hpc_ompv4,10,1100000
mtx/com-Youtube.mtx,out/hpc_ompv4,15,1122000
mtx/com-Youtube.mtx,out/hpc_ompv4,20,1010000
mtx/com-Youtube.mtx,out/hpc_pthv4,0,6370500
mtx/com-Youtube.mtx,out/hpc_pthv4,1,7516500
mtx/com-Youtube.mtx,out/hpc_pthv4,2,4209000
mtx/com-Youtube.mtx,out/hpc_pthv4,4,2706000
mtx/com-Youtube.mtx,out/hpc_pthv4,5,2686000
mtx/com-Youtube.mtx,out/hpc_pthv4,8,1907000
mtx/com-Youtube.mtx,out/hpc_pthv4,10,1562500
mtx/com-Youtube.mtx,out/hpc_pthv4,15,1457000
mtx/com-Youtube.mtx,out/hpc_pthv4,20,1369500
mtx/dblp-2010.mtx,out/hpc_cilkv3,0,68000
mtx/dblp-2010.mtx,out/hpc_cilkv3,1,89000
mtx/dblp-2010.mtx,out/hpc_cilkv3,2,52000
mtx/dblp-2010.mtx,out/hpc_cilkv3,4,26000
mtx/dblp-2010.mtx,out/hpc_cilkv3,5,50500
mtx/dblp-2010.mtx,out/hpc_cilkv3,8,18500
mtx/dblp-2010.mtx,out/hpc_cilkv3,10,16000
mtx/dblp-2010.mtx,out/hpc_cilkv3,15,14000
mtx/dblp-2010.mtx,out/hpc_cilkv3,20,11000
mtx/dblp-2010.mtx,out/hpc_cilkv4,0,162000
mtx/dblp-2010.mtx,out/hpc_cilkv4,1,185500
mtx/dblp-2010.mtx,out/hpc_cilkv4,2,105500
mtx/dblp-2010.mtx,out/hpc_cilkv4,4,52500
mtx/dblp-2010.mtx,out/hpc_cilkv4,5,44500
mtx/dblp-2010.mtx,out/hpc_cilkv4,8,29500
mtx/dblp-2010.mtx,out/hpc_cilkv4,10,25000
mtx/dblp-2010.mtx,out/hpc_cilkv4,15,19000
mtx/dblp-2010.mtx,out/hpc_cilkv4,20,16000
mtx/dblp-2010.mtx,out/hpc_ompv3,0,68000
mtx/dblp-2010.mtx,out/hpc_ompv3,1,90000
mtx/dblp-2010.mtx,out/hpc_ompv3,2,98500
mtx/dblp-2010.mtx,out/hpc_ompv3,4,91000
mtx/dblp-2010.mtx,out/hpc_ompv3,5,93000
mtx/dblp-2010.mtx,out/hpc_ompv3,8,32000
mtx/dblp-2010.mtx,out/hpc_ompv3,10,20000
mtx/dblp-2010.mtx,out/hpc_ompv3,15,17000
mtx/dblp-2010.mtx,out/hpc_ompv3,20,15500
mtx/dblp-2010.mtx,out/hpc_ompv4,0,163500
mtx/dblp-2010.mtx,out/hpc_ompv4,1,177000
mtx/dblp-2010.mtx,out/hpc_ompv4,2,178000
mtx/dblp-2010.mtx,out/hpc_ompv4,4,177500
mtx/dblp-2010.mtx,out/hpc_ompv4,5,185000
mtx/dblp-2010.mtx,out/hpc_ompv4,8,53500
mtx/dblp-2010.mtx,out/hpc_ompv4,10,38000
mtx/dblp-2010.mtx,out/hpc_ompv4,15,29000
mtx/dblp-2010.mtx,out/hpc_ompv4,20,21500
mtx/dblp-2010.mtx,out/hpc_pthv4,0,162500
mtx/dblp-2010.mtx,out/hpc_pthv4,1,182500
mtx/dblp-2010.mtx,out/hpc_pthv4,2,97000
mtx/dblp-2010.mtx,out/hpc_pthv4,4,57000
mtx/dblp-2010.mtx,out/hpc_pthv4,5,81500
mtx/dblp-2010.mtx,out/hpc_pthv4,8,37500
mtx/dblp-2010.mtx,out/hpc_pthv4,10,41000
mtx/dblp-2010.mtx,out/hpc_pthv4,15,35000
mtx/dblp-2010.mtx,out/hpc_pthv4,20,36000
mtx/mycielskian13.mtx,out/hpc_cilkv3,0,1056000
mtx/mycielskian13.mtx,out/hpc_cilkv3,1,1155500
mtx/mycielskian13.mtx,out/hpc_cilkv3,2,725500
mtx/mycielskian13.mtx,out/hpc_cilkv3,4,547000
mtx/mycielskian13.mtx,out/hpc_cilkv3,5,360500
mtx/mycielskian13.mtx,out/hpc_cilkv3,8,395000
mtx/mycielskian13.mtx,out/hpc_cilkv3,10,261500
mtx/mycielskian13.mtx,out/hpc_cilkv3,15,253000
mtx/mycielskian13.mtx,out/hpc_cilkv3,20,171500
mtx/mycielskian13.mtx,out/hpc_cilkv4,0,1743500
mtx/mycielskian13.mtx,out/hpc_cilkv4,1,1663000
mtx/mycielskian13.mtx,out/hpc_cilkv4,2,903000
mtx/mycielskian13.mtx,out/hpc_cilkv4,4,493000
mtx/mycielskian13.mtx,out/hpc_cilkv4,5,379500
mtx/mycielskian13.mtx,out/hpc_cilkv4,8,303000
mtx/mycielskian13.mtx,out/hpc_cilkv4,10,231500
mtx/mycielskian13.mtx,out/hpc_cilkv4,15,198000
mtx/mycielskian13.mtx,out/hpc_cilkv4,20,137500
mtx/mycielskian13.mtx,out/hpc_ompv3,0,1055000
mtx/mycielskian13.mtx,out/hpc_ompv3,1,1216500
mtx/mycielskian13.mtx,out/hpc_ompv3,2,1207500
mtx/mycielskian13.mtx,out/hpc_ompv3,4,1239500
mtx/mycielskian13.mtx,out/hpc_ompv3,5,1197000
mtx/mycielskian13.mtx,out/hpc_ompv3,8,276000
mtx/mycielskian13.mtx,out/hpc_ompv3,10,159000
mtx/mycielskian13.mtx,out/hpc_ompv3,15,115500
mtx/mycielskian13.mtx,out/hpc_ompv3,20,76000
mtx/mycielskian13.mtx,out/hpc_ompv4,0,1899500
mtx/mycielskian13.mtx,out/hpc_ompv4,1,1867000
mtx/mycielskian13.mtx,out/hpc_ompv4,2,1872500
mtx/mycielskian13.mtx,out/hpc_ompv4,4,1855500
mtx/mycielskian13.mtx,out/hpc_ompv4,5,1851500
mtx/mycielskian13.mtx,out/hpc_ompv4,8,517000
mtx/mycielskian13.mtx,out/hpc_ompv4,10,254500
mtx/mycielskian13.mtx,out/hpc_ompv4,15,190000
mtx/mycielskian13.mtx,out/hpc_ompv4,20,128500
mtx/mycielskian13.mtx,out/hpc_pthv4,0,1943000
mtx/mycielskian13.mtx,out/hpc_pthv4,1,1710500
mtx/mycielskian13.mtx,out/hpc_pthv4,2,977000
mtx/mycielskian13.mtx,out/hpc_pthv4,4,514000
mtx/mycielskian13.mtx,out/hpc_pthv4,5,442500
mtx/mycielskian13.mtx,out/hpc_pthv4,8,303500
mtx/mycielskian13.mtx,out/hpc_pthv4,10,253000
mtx/mycielskian13.mtx,out/hpc_pthv4,15,210500
mtx/mycielskian13.mtx,out/hpc_pthv4,20,154000
mtx/NACA0015.mtx,out/hpc_cilkv3,0,175500
mtx/NACA0015.mtx,out/hpc_cilkv3,1,165000
mtx/NACA0015.mtx,out/hpc_cilkv3,2,131500
mtx/NACA0015.mtx,out/hpc_cilkv3,4,55000
mtx/NACA0015.mtx,out/hpc_cilkv3,5,52500
mtx/NACA0015.mtx,out/hpc_cilkv3,8,28000
mtx/NACA0015.mtx,out/hpc_cilkv3,10,22000
mtx/NACA0015.mtx,out/hpc_cilkv3,15,20000
mtx/NACA0015.mtx,out/hpc_cilkv3,20,16500
mtx/NACA0015.mtx,out/hpc_cilkv4,0,633500
mtx/NACA0015.mtx,out/hpc_cilkv4,1,734000
mtx/NACA0015.mtx,out/hpc_cilkv4,2,506000
mtx/NACA0015.mtx,out/hpc_cilkv4,4,243000
mtx/NACA0015.mtx,out/hpc_cilkv4,5,259500
mtx/NACA0015.mtx,out/hpc_cilkv4,8,123500
mtx/NACA0015.mtx,out/hpc_cilkv4,10,87000
mtx/NACA0015.mtx,out/hpc_cilkv4,15,70000
mtx/NACA0015.mtx,out/hpc_cilkv4,20,51000
mtx/NACA0015.mtx,out/hpc_ompv3,0,117000
mtx/NACA0015.mtx,out/hpc_ompv3,1,159000
mtx/NACA0015.mtx,out/hpc_ompv3,2,196500
mtx/NACA0015.mtx,out/hpc_ompv3,4,175500
mtx/NACA0015.mtx,out/hpc_ompv3,5,227500
mtx/NACA0015.mtx,out/hpc_ompv3,8,102000
mtx/NACA0015.mtx,out/hpc_ompv3,10,40000
mtx/NACA0015.mtx,out/hpc_ompv3,15,33000
mtx/NACA0015.mtx,out/hpc_ompv3,20,34500
mtx/NACA0015.mtx,out/hpc_ompv4,0,635000
mtx/NACA0015.mtx,out/hpc_ompv4,1,702000
mtx/NACA0015.mtx,out/hpc_ompv4,2,721500
mtx/NACA0015.mtx,out/hpc_ompv4,4,380500
mtx/NACA0015.mtx,out/hpc_ompv4,5,408000
mtx/NACA0015.mtx,out/hpc_ompv4,8,235000
mtx/NACA0015.mtx,out/hpc_ompv4,10,119000
mtx/NACA0015.mtx,out/hpc_ompv4,15,95500
mtx/NACA0015.mtx,out/hpc_ompv4,20,62500
mtx/NACA0015.mtx,out/hpc_pthv4,0,685000
mtx/NACA0015.mtx,out/hpc_pthv4,1,708500
mtx/NACA0015.mtx,out/hpc_pthv4,2,407500
mtx/NACA0015.mtx,out/hpc_pthv4,4,235000
mtx/NACA0015.mtx,out/hpc_pthv4,5,373000
mtx/NACA0015.mtx,out/hpc_pthv4,8,128500
mtx/NACA0015.mtx,out/hpc_pthv4,10,93000
mtx/NACA0015.mtx,out/hpc_pthv4,15,93500
mtx/NACA0015.mtx,out/hpc_pthv4,20,56000
1 mtx/belgium_osm.mtx out/hpc_cilkv3 0 19000
2 mtx/belgium_osm.mtx out/hpc_cilkv3 1 26500
3 mtx/belgium_osm.mtx out/hpc_cilkv3 2 17000
4 mtx/belgium_osm.mtx out/hpc_cilkv3 4 12000
5 mtx/belgium_osm.mtx out/hpc_cilkv3 5 11500
6 mtx/belgium_osm.mtx out/hpc_cilkv3 8 8485
7 mtx/belgium_osm.mtx out/hpc_cilkv3 10 6687
8 mtx/belgium_osm.mtx out/hpc_cilkv3 15 5818
9 mtx/belgium_osm.mtx out/hpc_cilkv3 20 6303
10 mtx/belgium_osm.mtx out/hpc_cilkv4 0 48500
11 mtx/belgium_osm.mtx out/hpc_cilkv4 1 56500
12 mtx/belgium_osm.mtx out/hpc_cilkv4 2 35000
13 mtx/belgium_osm.mtx out/hpc_cilkv4 4 21000
14 mtx/belgium_osm.mtx out/hpc_cilkv4 5 25500
15 mtx/belgium_osm.mtx out/hpc_cilkv4 8 11500
16 mtx/belgium_osm.mtx out/hpc_cilkv4 10 10000
17 mtx/belgium_osm.mtx out/hpc_cilkv4 15 8359
18 mtx/belgium_osm.mtx out/hpc_cilkv4 20 6521
19 mtx/belgium_osm.mtx out/hpc_ompv3 0 18000
20 mtx/belgium_osm.mtx out/hpc_ompv3 1 22500
21 mtx/belgium_osm.mtx out/hpc_ompv3 2 25000
22 mtx/belgium_osm.mtx out/hpc_ompv3 4 19000
23 mtx/belgium_osm.mtx out/hpc_ompv3 5 16500
24 mtx/belgium_osm.mtx out/hpc_ompv3 8 11500
25 mtx/belgium_osm.mtx out/hpc_ompv3 10 7521
26 mtx/belgium_osm.mtx out/hpc_ompv3 15 6548
27 mtx/belgium_osm.mtx out/hpc_ompv3 20 8999
28 mtx/belgium_osm.mtx out/hpc_ompv4 0 48000
29 mtx/belgium_osm.mtx out/hpc_ompv4 1 68000
30 mtx/belgium_osm.mtx out/hpc_ompv4 2 62500
31 mtx/belgium_osm.mtx out/hpc_ompv4 4 43000
32 mtx/belgium_osm.mtx out/hpc_ompv4 5 25000
33 mtx/belgium_osm.mtx out/hpc_ompv4 8 18500
34 mtx/belgium_osm.mtx out/hpc_ompv4 10 10500
35 mtx/belgium_osm.mtx out/hpc_ompv4 15 8995
36 mtx/belgium_osm.mtx out/hpc_ompv4 20 6932
37 mtx/belgium_osm.mtx out/hpc_pthv4 0 51000
38 mtx/belgium_osm.mtx out/hpc_pthv4 1 77000
39 mtx/belgium_osm.mtx out/hpc_pthv4 2 47000
40 mtx/belgium_osm.mtx out/hpc_pthv4 4 27500
41 mtx/belgium_osm.mtx out/hpc_pthv4 5 34500
42 mtx/belgium_osm.mtx out/hpc_pthv4 8 19000
43 mtx/belgium_osm.mtx out/hpc_pthv4 10 14500
44 mtx/belgium_osm.mtx out/hpc_pthv4 15 14500
45 mtx/belgium_osm.mtx out/hpc_pthv4 20 10000
46 mtx/com-Youtube.mtx out/hpc_cilkv3 0 2799500
47 mtx/com-Youtube.mtx out/hpc_cilkv3 1 3144000
48 mtx/com-Youtube.mtx out/hpc_cilkv3 2 1592500
49 mtx/com-Youtube.mtx out/hpc_cilkv3 4 923000
50 mtx/com-Youtube.mtx out/hpc_cilkv3 5 1114500
51 mtx/com-Youtube.mtx out/hpc_cilkv3 8 768000
52 mtx/com-Youtube.mtx out/hpc_cilkv3 10 721500
53 mtx/com-Youtube.mtx out/hpc_cilkv3 15 692000
54 mtx/com-Youtube.mtx out/hpc_cilkv3 20 678500
55 mtx/com-Youtube.mtx out/hpc_cilkv4 0 6289000
56 mtx/com-Youtube.mtx out/hpc_cilkv4 1 6631000
57 mtx/com-Youtube.mtx out/hpc_cilkv4 2 3858000
58 mtx/com-Youtube.mtx out/hpc_cilkv4 4 2037500
59 mtx/com-Youtube.mtx out/hpc_cilkv4 5 1783000
60 mtx/com-Youtube.mtx out/hpc_cilkv4 8 1695500
61 mtx/com-Youtube.mtx out/hpc_cilkv4 10 1587000
62 mtx/com-Youtube.mtx out/hpc_cilkv4 15 1524500
63 mtx/com-Youtube.mtx out/hpc_cilkv4 20 1516500
64 mtx/com-Youtube.mtx out/hpc_ompv3 0 2705500
65 mtx/com-Youtube.mtx out/hpc_ompv3 1 2918500
66 mtx/com-Youtube.mtx out/hpc_ompv3 2 2934500
67 mtx/com-Youtube.mtx out/hpc_ompv3 4 2943000
68 mtx/com-Youtube.mtx out/hpc_ompv3 5 1548500
69 mtx/com-Youtube.mtx out/hpc_ompv3 8 704000
70 mtx/com-Youtube.mtx out/hpc_ompv3 10 405500
71 mtx/com-Youtube.mtx out/hpc_ompv3 15 382500
72 mtx/com-Youtube.mtx out/hpc_ompv3 20 301000
73 mtx/com-Youtube.mtx out/hpc_ompv4 0 6307500
74 mtx/com-Youtube.mtx out/hpc_ompv4 1 7077000
75 mtx/com-Youtube.mtx out/hpc_ompv4 2 7008500
76 mtx/com-Youtube.mtx out/hpc_ompv4 4 7141500
77 mtx/com-Youtube.mtx out/hpc_ompv4 5 3643000
78 mtx/com-Youtube.mtx out/hpc_ompv4 8 1598000
79 mtx/com-Youtube.mtx out/hpc_ompv4 10 1100000
80 mtx/com-Youtube.mtx out/hpc_ompv4 15 1122000
81 mtx/com-Youtube.mtx out/hpc_ompv4 20 1010000
82 mtx/com-Youtube.mtx out/hpc_pthv4 0 6370500
83 mtx/com-Youtube.mtx out/hpc_pthv4 1 7516500
84 mtx/com-Youtube.mtx out/hpc_pthv4 2 4209000
85 mtx/com-Youtube.mtx out/hpc_pthv4 4 2706000
86 mtx/com-Youtube.mtx out/hpc_pthv4 5 2686000
87 mtx/com-Youtube.mtx out/hpc_pthv4 8 1907000
88 mtx/com-Youtube.mtx out/hpc_pthv4 10 1562500
89 mtx/com-Youtube.mtx out/hpc_pthv4 15 1457000
90 mtx/com-Youtube.mtx out/hpc_pthv4 20 1369500
91 mtx/dblp-2010.mtx out/hpc_cilkv3 0 68000
92 mtx/dblp-2010.mtx out/hpc_cilkv3 1 89000
93 mtx/dblp-2010.mtx out/hpc_cilkv3 2 52000
94 mtx/dblp-2010.mtx out/hpc_cilkv3 4 26000
95 mtx/dblp-2010.mtx out/hpc_cilkv3 5 50500
96 mtx/dblp-2010.mtx out/hpc_cilkv3 8 18500
97 mtx/dblp-2010.mtx out/hpc_cilkv3 10 16000
98 mtx/dblp-2010.mtx out/hpc_cilkv3 15 14000
99 mtx/dblp-2010.mtx out/hpc_cilkv3 20 11000
100 mtx/dblp-2010.mtx out/hpc_cilkv4 0 162000
101 mtx/dblp-2010.mtx out/hpc_cilkv4 1 185500
102 mtx/dblp-2010.mtx out/hpc_cilkv4 2 105500
103 mtx/dblp-2010.mtx out/hpc_cilkv4 4 52500
104 mtx/dblp-2010.mtx out/hpc_cilkv4 5 44500
105 mtx/dblp-2010.mtx out/hpc_cilkv4 8 29500
106 mtx/dblp-2010.mtx out/hpc_cilkv4 10 25000
107 mtx/dblp-2010.mtx out/hpc_cilkv4 15 19000
108 mtx/dblp-2010.mtx out/hpc_cilkv4 20 16000
109 mtx/dblp-2010.mtx out/hpc_ompv3 0 68000
110 mtx/dblp-2010.mtx out/hpc_ompv3 1 90000
111 mtx/dblp-2010.mtx out/hpc_ompv3 2 98500
112 mtx/dblp-2010.mtx out/hpc_ompv3 4 91000
113 mtx/dblp-2010.mtx out/hpc_ompv3 5 93000
114 mtx/dblp-2010.mtx out/hpc_ompv3 8 32000
115 mtx/dblp-2010.mtx out/hpc_ompv3 10 20000
116 mtx/dblp-2010.mtx out/hpc_ompv3 15 17000
117 mtx/dblp-2010.mtx out/hpc_ompv3 20 15500
118 mtx/dblp-2010.mtx out/hpc_ompv4 0 163500
119 mtx/dblp-2010.mtx out/hpc_ompv4 1 177000
120 mtx/dblp-2010.mtx out/hpc_ompv4 2 178000
121 mtx/dblp-2010.mtx out/hpc_ompv4 4 177500
122 mtx/dblp-2010.mtx out/hpc_ompv4 5 185000
123 mtx/dblp-2010.mtx out/hpc_ompv4 8 53500
124 mtx/dblp-2010.mtx out/hpc_ompv4 10 38000
125 mtx/dblp-2010.mtx out/hpc_ompv4 15 29000
126 mtx/dblp-2010.mtx out/hpc_ompv4 20 21500
127 mtx/dblp-2010.mtx out/hpc_pthv4 0 162500
128 mtx/dblp-2010.mtx out/hpc_pthv4 1 182500
129 mtx/dblp-2010.mtx out/hpc_pthv4 2 97000
130 mtx/dblp-2010.mtx out/hpc_pthv4 4 57000
131 mtx/dblp-2010.mtx out/hpc_pthv4 5 81500
132 mtx/dblp-2010.mtx out/hpc_pthv4 8 37500
133 mtx/dblp-2010.mtx out/hpc_pthv4 10 41000
134 mtx/dblp-2010.mtx out/hpc_pthv4 15 35000
135 mtx/dblp-2010.mtx out/hpc_pthv4 20 36000
136 mtx/mycielskian13.mtx out/hpc_cilkv3 0 1056000
137 mtx/mycielskian13.mtx out/hpc_cilkv3 1 1155500
138 mtx/mycielskian13.mtx out/hpc_cilkv3 2 725500
139 mtx/mycielskian13.mtx out/hpc_cilkv3 4 547000
140 mtx/mycielskian13.mtx out/hpc_cilkv3 5 360500
141 mtx/mycielskian13.mtx out/hpc_cilkv3 8 395000
142 mtx/mycielskian13.mtx out/hpc_cilkv3 10 261500
143 mtx/mycielskian13.mtx out/hpc_cilkv3 15 253000
144 mtx/mycielskian13.mtx out/hpc_cilkv3 20 171500
145 mtx/mycielskian13.mtx out/hpc_cilkv4 0 1743500
146 mtx/mycielskian13.mtx out/hpc_cilkv4 1 1663000
147 mtx/mycielskian13.mtx out/hpc_cilkv4 2 903000
148 mtx/mycielskian13.mtx out/hpc_cilkv4 4 493000
149 mtx/mycielskian13.mtx out/hpc_cilkv4 5 379500
150 mtx/mycielskian13.mtx out/hpc_cilkv4 8 303000
151 mtx/mycielskian13.mtx out/hpc_cilkv4 10 231500
152 mtx/mycielskian13.mtx out/hpc_cilkv4 15 198000
153 mtx/mycielskian13.mtx out/hpc_cilkv4 20 137500
154 mtx/mycielskian13.mtx out/hpc_ompv3 0 1055000
155 mtx/mycielskian13.mtx out/hpc_ompv3 1 1216500
156 mtx/mycielskian13.mtx out/hpc_ompv3 2 1207500
157 mtx/mycielskian13.mtx out/hpc_ompv3 4 1239500
158 mtx/mycielskian13.mtx out/hpc_ompv3 5 1197000
159 mtx/mycielskian13.mtx out/hpc_ompv3 8 276000
160 mtx/mycielskian13.mtx out/hpc_ompv3 10 159000
161 mtx/mycielskian13.mtx out/hpc_ompv3 15 115500
162 mtx/mycielskian13.mtx out/hpc_ompv3 20 76000
163 mtx/mycielskian13.mtx out/hpc_ompv4 0 1899500
164 mtx/mycielskian13.mtx out/hpc_ompv4 1 1867000
165 mtx/mycielskian13.mtx out/hpc_ompv4 2 1872500
166 mtx/mycielskian13.mtx out/hpc_ompv4 4 1855500
167 mtx/mycielskian13.mtx out/hpc_ompv4 5 1851500
168 mtx/mycielskian13.mtx out/hpc_ompv4 8 517000
169 mtx/mycielskian13.mtx out/hpc_ompv4 10 254500
170 mtx/mycielskian13.mtx out/hpc_ompv4 15 190000
171 mtx/mycielskian13.mtx out/hpc_ompv4 20 128500
172 mtx/mycielskian13.mtx out/hpc_pthv4 0 1943000
173 mtx/mycielskian13.mtx out/hpc_pthv4 1 1710500
174 mtx/mycielskian13.mtx out/hpc_pthv4 2 977000
175 mtx/mycielskian13.mtx out/hpc_pthv4 4 514000
176 mtx/mycielskian13.mtx out/hpc_pthv4 5 442500
177 mtx/mycielskian13.mtx out/hpc_pthv4 8 303500
178 mtx/mycielskian13.mtx out/hpc_pthv4 10 253000
179 mtx/mycielskian13.mtx out/hpc_pthv4 15 210500
180 mtx/mycielskian13.mtx out/hpc_pthv4 20 154000
181 mtx/NACA0015.mtx out/hpc_cilkv3 0 175500
182 mtx/NACA0015.mtx out/hpc_cilkv3 1 165000
183 mtx/NACA0015.mtx out/hpc_cilkv3 2 131500
184 mtx/NACA0015.mtx out/hpc_cilkv3 4 55000
185 mtx/NACA0015.mtx out/hpc_cilkv3 5 52500
186 mtx/NACA0015.mtx out/hpc_cilkv3 8 28000
187 mtx/NACA0015.mtx out/hpc_cilkv3 10 22000
188 mtx/NACA0015.mtx out/hpc_cilkv3 15 20000
189 mtx/NACA0015.mtx out/hpc_cilkv3 20 16500
190 mtx/NACA0015.mtx out/hpc_cilkv4 0 633500
191 mtx/NACA0015.mtx out/hpc_cilkv4 1 734000
192 mtx/NACA0015.mtx out/hpc_cilkv4 2 506000
193 mtx/NACA0015.mtx out/hpc_cilkv4 4 243000
194 mtx/NACA0015.mtx out/hpc_cilkv4 5 259500
195 mtx/NACA0015.mtx out/hpc_cilkv4 8 123500
196 mtx/NACA0015.mtx out/hpc_cilkv4 10 87000
197 mtx/NACA0015.mtx out/hpc_cilkv4 15 70000
198 mtx/NACA0015.mtx out/hpc_cilkv4 20 51000
199 mtx/NACA0015.mtx out/hpc_ompv3 0 117000
200 mtx/NACA0015.mtx out/hpc_ompv3 1 159000
201 mtx/NACA0015.mtx out/hpc_ompv3 2 196500
202 mtx/NACA0015.mtx out/hpc_ompv3 4 175500
203 mtx/NACA0015.mtx out/hpc_ompv3 5 227500
204 mtx/NACA0015.mtx out/hpc_ompv3 8 102000
205 mtx/NACA0015.mtx out/hpc_ompv3 10 40000
206 mtx/NACA0015.mtx out/hpc_ompv3 15 33000
207 mtx/NACA0015.mtx out/hpc_ompv3 20 34500
208 mtx/NACA0015.mtx out/hpc_ompv4 0 635000
209 mtx/NACA0015.mtx out/hpc_ompv4 1 702000
210 mtx/NACA0015.mtx out/hpc_ompv4 2 721500
211 mtx/NACA0015.mtx out/hpc_ompv4 4 380500
212 mtx/NACA0015.mtx out/hpc_ompv4 5 408000
213 mtx/NACA0015.mtx out/hpc_ompv4 8 235000
214 mtx/NACA0015.mtx out/hpc_ompv4 10 119000
215 mtx/NACA0015.mtx out/hpc_ompv4 15 95500
216 mtx/NACA0015.mtx out/hpc_ompv4 20 62500
217 mtx/NACA0015.mtx out/hpc_pthv4 0 685000
218 mtx/NACA0015.mtx out/hpc_pthv4 1 708500
219 mtx/NACA0015.mtx out/hpc_pthv4 2 407500
220 mtx/NACA0015.mtx out/hpc_pthv4 4 235000
221 mtx/NACA0015.mtx out/hpc_pthv4 5 373000
222 mtx/NACA0015.mtx out/hpc_pthv4 8 128500
223 mtx/NACA0015.mtx out/hpc_pthv4 10 93000
224 mtx/NACA0015.mtx out/hpc_pthv4 15 93500
225 mtx/NACA0015.mtx out/hpc_pthv4 20 56000
Binary file not shown.
View File
BIN
View File
Binary file not shown.