diff --git a/.DS_Store b/.DS_Store
new file mode 100644
index 0000000..7ccd9bd
Binary files /dev/null and b/.DS_Store differ
diff --git a/API Server b/API Server
new file mode 160000
index 0000000..2add91c
--- /dev/null
+++ b/API Server
@@ -0,0 +1 @@
+Subproject commit 2add91ce273280d4ba05db9adbe88996d40f4bde
diff --git a/Client/visualize.html b/Client/visualize.html
new file mode 100644
index 0000000..7d2761b
--- /dev/null
+++ b/Client/visualize.html
@@ -0,0 +1,64 @@
+
+
+
+ Embedding Vega-Lite
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/DBQueries.txt b/DBQueries.txt
new file mode 100644
index 0000000..fdbcf73
--- /dev/null
+++ b/DBQueries.txt
@@ -0,0 +1,40 @@
+1. Granular view #1 - Display all geomean
+SELECT
+ exp_date, benchmark_suite, benchmark_item, engine, version, config,
+ machine, metric_type, avg FROM summary
+WHERE
+ exp_label = 'NIGHTLYRUN' AND benchmark_item = "GEOMEAN"
+
+
+2. Fine view #2 - show for all selected data range
+SELECT
+ exp_date, benchmark_suite, benchmark_item, engine, version, config,
+ machine, metric_type, avg FROM summary
+WHERE
+ exp_data BETWEEN value1 AND value2 AND exp_label = 'NIGHTLYRUN' AND benchmark_item != "GEOMEAN"
+
+
+3. Fine view #3 - show violin plot for one DATE and one benchmark suite
+SELECT
+ percentile_95,
+ min,
+ max,
+ metric_type,
+ engine,
+ version,
+ config,
+ machine,
+WHERE
+ exp_data = value1 AND exp_label = 'NIGHTLYRUN' AND benchmark_suite = value2 AND benchmark_item != "GEOMEAN"
+
+
+Note: The API Server currently has slightly modified queries, since the database does not have "GEOMEAN" values yet.
+"GEOMEAN" is a tag assigned to "benchmark_item" column in the SUMMARY table, to store the geometric mean for each
+engine + config across all "benchmark_item" in a "benchmark_suite".
+
+Once the geometric mean values are added to the database, with the corresponding "benchmark_item" column storing string
+"GEOMEAN", the API queries should be replaced with the above mentioned queries.
+
+
+
+
diff --git a/DBSchema.txt b/DBSchema.txt
new file mode 100644
index 0000000..a5594d2
--- /dev/null
+++ b/DBSchema.txt
@@ -0,0 +1,41 @@
+PostgresQL DB Schema for WASM benchmarking
+
+1. Create a database 'wasm_benchmark' on PostgresQL
+
+2. Create a summary table using the following syntax
+CREATE TABLE summary (
+ exp_date DATE NOT NULL DEFAULT CURRENT_DATE,
+ exp_label VARCHAR NOT NULL,
+ benchmark_suite VARCHAR(100) NOT NULL,
+ benchmark_item VARCHAR(100) NOT NULL,
+ engine VARCHAR(100) NOT NULL,
+ version VARCHAR(100) NOT NULL,
+ config VARCHAR(40) NOT NULL,
+ machine VARCHAR(25) NOT NULL,
+ metric_type metric NOT NULL,
+ avg NUMERIC(10,7) NOT NULL,
+ percentile_5 NUMERIC(10,7) NOT NULL,
+ percentile_95 NUMERIC(10,7) NOT NULL,
+ min NUMERIC(10,7) NOT NULL,
+ max NUMERIC(10,7) NOT NULL,
+ time TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
+)
+
+3. Create a raw data table with the following syntax
+CREATE TABLE raw (
+ exp_date DATE NOT NULL DEFAULT CURRENT_DATE,
+ exp_label VARCHAR NOT NULL,
+ benchmark_suite VARCHAR(100) NOT NULL,
+ benchmark_item VARCHAR(100) NOT NULL,
+ engine VARCHAR(100) NOT NULL,
+ version VARCHAR(100) NOT NULL,
+ config VARCHAR(40) NOT NULL,
+ machine VARCHAR(25) NOT NULL,
+ execution_samples NUMERIC(10,7)[] NOT NULL,
+ memory_samples NUMERIC(10,7)[] NOT NULL,
+ preprocess_samples NUMERIC(10,7)[] NOT NULL,
+ aot_samples NUMERIC(10,7)[] NOT NULL,
+ jit_samples NUMERIC(10,7)[] NOT NULL,
+ time TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
+)
+
diff --git a/README.md b/README.md
index dd28c41..01643d6 100644
--- a/README.md
+++ b/README.md
@@ -1 +1,38 @@
# wish-you-were-fast
+
+Wish-you-were-fast is a real-time wasm benchmarking + visualization plaftorm. This README attempts to explain the
+various directories and the parts of the platform they represent.
+
+* API Server
+
+ Hosts a Flask Server acting as an API Gateway microservice between the WASM visualization frontend and
+ the PostgresQL database (storing the benchmarking results). Currently, the API Server provides 3 REST APIs necessary to provide the initial 3 views of the frontend visualization. It receives request parameters from the
+ frontend service, queries the database, parses it and returns a JSON result containing the requested data.
+
+* Client
+
+ Provides a barebones html file which hosts the vegalite-based visualizations. Easiest way to get this running locally is to go to the directory on cmdline and start a http server using
+ "python -m http.server". The visualization would then be available on localhost:8000/visualize.html.
+
+ Note: The visualization currently provides only the first view. While the API Server supports the necessary APIs for all 3 views, we are yet to figure out how an interactive datarange
+ on the first vegalite view (i.e the x-axis select interval) can be converted from vegalite object to a dynamic REST API parameter. Once done, the remaining 2 views can be impleted similar to the multiview-exec.vl.json specification in the vegalite folder.
+
+* historical-data
+
+ Contains raw data for each of the 6 engines on PolyBenchC for a 6 month duration from Sept '22 to Feb '23, sampled at a monthly interval. Also contains a consolidated csv which can be used to load data directly to the PostgresQL database.
+
+* vegalite
+
+ Contains examples and test-scripts for visualizing and learning vegalite
+
+* DBSchema.txt
+
+ Lays down the DB schema to create the PostgresQL database
+
+* DBQueries.txt
+
+ Documents the queries required to create the 3 initial vegalite views
+
+
+
+
diff --git a/historical-data/.DS_Store b/historical-data/.DS_Store
new file mode 100644
index 0000000..1f76916
Binary files /dev/null and b/historical-data/.DS_Store differ
diff --git a/historical-data/data-import.csv b/historical-data/data-import.csv
new file mode 100644
index 0000000..a7ef6df
--- /dev/null
+++ b/historical-data/data-import.csv
@@ -0,0 +1,1561 @@
+Date,Label,BenchSuite,BenchItem,Engine,Version,Config,Machine,Metric,Avg ,95,5,Min,Max,timestamp
+2023-02-05,NIGHTLY_RUN,PolybenchC,bicg,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,omg,x86-64,execution_time,0.032855,0.032855,0.032855,0.032855,0.032855,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,mvt,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,omg,x86-64,execution_time,0.034183,0.034183,0.034183,0.034183,0.034183,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,atax,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,omg,x86-64,execution_time,0.033749,0.033749,0.033749,0.033749,0.033749,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,gemver,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,omg,x86-64,execution_time,0.0329,0.0329,0.0329,0.0329,0.0329,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,trmm,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,omg,x86-64,execution_time,0.038769,0.038769,0.038769,0.038769,0.038769,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,doitgen,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,omg,x86-64,execution_time,0.043583,0.043583,0.043583,0.043583,0.043583,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,syrk,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,omg,x86-64,execution_time,0.040689,0.040689,0.040689,0.040689,0.040689,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,correlation,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,omg,x86-64,execution_time,0.046321,0.046321,0.046321,0.046321,0.046321,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,covariance,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,omg,x86-64,execution_time,0.043409,0.043409,0.043409,0.043409,0.043409,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,symm,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,omg,x86-64,execution_time,0.048846,0.048846,0.048846,0.048846,0.048846,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,syr2k,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,omg,x86-64,execution_time,0.048801,0.048801,0.048801,0.048801,0.048801,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,gemm,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,omg,x86-64,execution_time,0.048442,0.048442,0.048442,0.048442,0.048442,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,gramschmidt,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,omg,x86-64,execution_time,0.051248,0.051248,0.051248,0.051248,0.051248,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,2mm,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,omg,x86-64,execution_time,0.054888,0.054888,0.054888,0.054888,0.054888,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,nussinov,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,omg,x86-64,execution_time,0.057224,0.057224,0.057224,0.057224,0.057224,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,adi,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,omg,x86-64,execution_time,0.103658,0.103658,0.103658,0.103658,0.103658,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,3mm,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,omg,x86-64,execution_time,0.070278,0.070278,0.070278,0.070278,0.070278,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,fdtd-2d,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,omg,x86-64,execution_time,0.064432,0.064432,0.064432,0.064432,0.064432,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,jacobi-2d,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,omg,x86-64,execution_time,0.069476,0.069476,0.069476,0.069476,0.069476,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,seidel-2d,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,omg,x86-64,execution_time,0.223209,0.223209,0.223209,0.223209,0.223209,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,heat-3d,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,omg,x86-64,execution_time,0.092611,0.092611,0.092611,0.092611,0.092611,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,cholesky,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,omg,x86-64,execution_time,0.135538,0.135538,0.135538,0.135538,0.135538,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,ludcmp,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,omg,x86-64,execution_time,0.145965,0.145965,0.145965,0.145965,0.145965,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,lu,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,omg,x86-64,execution_time,0.150595,0.150595,0.150595,0.150595,0.150595,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,bicg,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,int,x86-64,execution_time,0.026273,0.026273,0.026273,0.026273,0.026273,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,mvt,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,int,x86-64,execution_time,0.02195,0.02195,0.02195,0.02195,0.02195,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,atax,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,int,x86-64,execution_time,0.02135,0.02135,0.02135,0.02135,0.02135,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,gemver,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,int,x86-64,execution_time,0.028146,0.028146,0.028146,0.028146,0.028146,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,trmm,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,int,x86-64,execution_time,0.130904,0.130904,0.130904,0.130904,0.130904,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,doitgen,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,int,x86-64,execution_time,0.175856,0.175856,0.175856,0.175856,0.175856,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,syrk,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,int,x86-64,execution_time,0.228496,0.228496,0.228496,0.228496,0.228496,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,correlation,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,int,x86-64,execution_time,0.219698,0.219698,0.219698,0.219698,0.219698,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,covariance,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,int,x86-64,execution_time,0.207558,0.207558,0.207558,0.207558,0.207558,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,symm,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,int,x86-64,execution_time,0.240473,0.240473,0.240473,0.240473,0.240473,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,syr2k,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,int,x86-64,execution_time,0.300887,0.300887,0.300887,0.300887,0.300887,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,gemm,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,int,x86-64,execution_time,0.311885,0.311885,0.311885,0.311885,0.311885,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,gramschmidt,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,int,x86-64,execution_time,0.384893,0.384893,0.384893,0.384893,0.384893,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,2mm,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,int,x86-64,execution_time,0.42587,0.42587,0.42587,0.42587,0.42587,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,nussinov,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,int,x86-64,execution_time,0.557731,0.557731,0.557731,0.557731,0.557731,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,adi,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,int,x86-64,execution_time,0.733034,0.733034,0.733034,0.733034,0.733034,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,3mm,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,int,x86-64,execution_time,0.709546,0.709546,0.709546,0.709546,0.709546,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,fdtd-2d,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,int,x86-64,execution_time,0.681183,0.681183,0.681183,0.681183,0.681183,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,jacobi-2d,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,int,x86-64,execution_time,0.761329,0.761329,0.761329,0.761329,0.761329,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,seidel-2d,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,int,x86-64,execution_time,0.974396,0.974396,0.974396,0.974396,0.974396,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,heat-3d,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,int,x86-64,execution_time,1.132789,1.132789,1.132789,1.132789,1.132789,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,cholesky,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,int,x86-64,execution_time,2.467216,2.467216,2.467216,2.467216,2.467216,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,ludcmp,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,int,x86-64,execution_time,2.722934,2.722934,2.722934,2.722934,2.722934,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,lu,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,int,x86-64,execution_time,2.886361,2.886361,2.886361,2.886361,2.886361,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,bicg,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,bbq,x86-64,execution_time,0.016059,0.016059,0.016059,0.016059,0.016059,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,mvt,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,bbq,x86-64,execution_time,0.016612,0.016612,0.016612,0.016612,0.016612,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,atax,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,bbq,x86-64,execution_time,0.016708,0.016708,0.016708,0.016708,0.016708,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,gemver,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,bbq,x86-64,execution_time,0.017493,0.017493,0.017493,0.017493,0.017493,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,trmm,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,bbq,x86-64,execution_time,0.030762,0.030762,0.030762,0.030762,0.030762,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,doitgen,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,bbq,x86-64,execution_time,0.034818,0.034818,0.034818,0.034818,0.034818,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,syrk,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,bbq,x86-64,execution_time,0.040221,0.040221,0.040221,0.040221,0.040221,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,correlation,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,bbq,x86-64,execution_time,0.039041,0.039041,0.039041,0.039041,0.039041,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,covariance,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,bbq,x86-64,execution_time,0.040794,0.040794,0.040794,0.040794,0.040794,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,symm,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,bbq,x86-64,execution_time,0.047573,0.047573,0.047573,0.047573,0.047573,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,syr2k,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,bbq,x86-64,execution_time,0.059342,0.059342,0.059342,0.059342,0.059342,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,gemm,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,bbq,x86-64,execution_time,0.053646,0.053646,0.053646,0.053646,0.053646,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,gramschmidt,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,bbq,x86-64,execution_time,0.055239,0.055239,0.055239,0.055239,0.055239,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,2mm,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,bbq,x86-64,execution_time,0.069881,0.069881,0.069881,0.069881,0.069881,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,nussinov,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,bbq,x86-64,execution_time,0.140433,0.140433,0.140433,0.140433,0.140433,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,adi,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,bbq,x86-64,execution_time,0.114169,0.114169,0.114169,0.114169,0.114169,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,3mm,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,bbq,x86-64,execution_time,0.109001,0.109001,0.109001,0.109001,0.109001,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,fdtd-2d,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,bbq,x86-64,execution_time,0.088208,0.088208,0.088208,0.088208,0.088208,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,jacobi-2d,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,bbq,x86-64,execution_time,0.118999,0.118999,0.118999,0.118999,0.118999,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,seidel-2d,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,bbq,x86-64,execution_time,0.200306,0.200306,0.200306,0.200306,0.200306,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,heat-3d,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,bbq,x86-64,execution_time,0.17339,0.17339,0.17339,0.17339,0.17339,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,cholesky,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,bbq,x86-64,execution_time,0.291013,0.291013,0.291013,0.291013,0.291013,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,ludcmp,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,bbq,x86-64,execution_time,0.314235,0.314235,0.314235,0.314235,0.314235,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,lu,jsc,76babbc4cdb34fa3e128164cca20dcba817a2058,bbq,x86-64,execution_time,0.326018,0.326018,0.326018,0.326018,0.326018,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,bicg,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,omg,x86-64,execution_time,0.033568,0.033568,0.033568,0.033568,0.033568,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,mvt,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,omg,x86-64,execution_time,0.033748,0.033748,0.033748,0.033748,0.033748,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,atax,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,omg,x86-64,execution_time,0.032188,0.032188,0.032188,0.032188,0.032188,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,gemver,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,omg,x86-64,execution_time,0.033155,0.033155,0.033155,0.033155,0.033155,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,trmm,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,omg,x86-64,execution_time,0.038588,0.038588,0.038588,0.038588,0.038588,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,doitgen,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,omg,x86-64,execution_time,0.041423,0.041423,0.041423,0.041423,0.041423,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,syrk,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,omg,x86-64,execution_time,0.041873,0.041873,0.041873,0.041873,0.041873,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,correlation,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,omg,x86-64,execution_time,0.046828,0.046828,0.046828,0.046828,0.046828,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,covariance,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,omg,x86-64,execution_time,0.043146,0.043146,0.043146,0.043146,0.043146,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,symm,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,omg,x86-64,execution_time,0.047461,0.047461,0.047461,0.047461,0.047461,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,syr2k,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,omg,x86-64,execution_time,0.048618,0.048618,0.048618,0.048618,0.048618,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,gemm,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,omg,x86-64,execution_time,0.047037,0.047037,0.047037,0.047037,0.047037,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,gramschmidt,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,omg,x86-64,execution_time,0.051333,0.051333,0.051333,0.051333,0.051333,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,2mm,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,omg,x86-64,execution_time,0.05541,0.05541,0.05541,0.05541,0.05541,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,nussinov,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,omg,x86-64,execution_time,0.057205,0.057205,0.057205,0.057205,0.057205,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,adi,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,omg,x86-64,execution_time,0.102706,0.102706,0.102706,0.102706,0.102706,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,3mm,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,omg,x86-64,execution_time,0.071158,0.071158,0.071158,0.071158,0.071158,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,fdtd-2d,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,omg,x86-64,execution_time,0.064264,0.064264,0.064264,0.064264,0.064264,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,jacobi-2d,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,omg,x86-64,execution_time,0.068052,0.068052,0.068052,0.068052,0.068052,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,seidel-2d,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,omg,x86-64,execution_time,0.222834,0.222834,0.222834,0.222834,0.222834,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,heat-3d,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,omg,x86-64,execution_time,0.092936,0.092936,0.092936,0.092936,0.092936,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,cholesky,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,omg,x86-64,execution_time,0.134147,0.134147,0.134147,0.134147,0.134147,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,ludcmp,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,omg,x86-64,execution_time,0.14653,0.14653,0.14653,0.14653,0.14653,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,lu,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,omg,x86-64,execution_time,0.152902,0.152902,0.152902,0.152902,0.152902,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,bicg,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,int,x86-64,execution_time,0.01996,0.01996,0.01996,0.01996,0.01996,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,mvt,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,int,x86-64,execution_time,0.021725,0.021725,0.021725,0.021725,0.021725,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,atax,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,int,x86-64,execution_time,0.022084,0.022084,0.022084,0.022084,0.022084,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,gemver,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,int,x86-64,execution_time,0.027871,0.027871,0.027871,0.027871,0.027871,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,trmm,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,int,x86-64,execution_time,0.131742,0.131742,0.131742,0.131742,0.131742,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,doitgen,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,int,x86-64,execution_time,0.190947,0.190947,0.190947,0.190947,0.190947,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,syrk,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,int,x86-64,execution_time,0.236848,0.236848,0.236848,0.236848,0.236848,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,correlation,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,int,x86-64,execution_time,0.241514,0.241514,0.241514,0.241514,0.241514,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,covariance,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,int,x86-64,execution_time,0.207714,0.207714,0.207714,0.207714,0.207714,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,symm,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,int,x86-64,execution_time,0.239188,0.239188,0.239188,0.239188,0.239188,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,syr2k,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,int,x86-64,execution_time,0.297342,0.297342,0.297342,0.297342,0.297342,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,gemm,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,int,x86-64,execution_time,0.310392,0.310392,0.310392,0.310392,0.310392,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,gramschmidt,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,int,x86-64,execution_time,0.386604,0.386604,0.386604,0.386604,0.386604,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,2mm,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,int,x86-64,execution_time,0.45215,0.45215,0.45215,0.45215,0.45215,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,nussinov,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,int,x86-64,execution_time,0.555453,0.555453,0.555453,0.555453,0.555453,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,adi,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,int,x86-64,execution_time,0.739217,0.739217,0.739217,0.739217,0.739217,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,3mm,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,int,x86-64,execution_time,0.776804,0.776804,0.776804,0.776804,0.776804,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,fdtd-2d,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,int,x86-64,execution_time,0.676609,0.676609,0.676609,0.676609,0.676609,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,jacobi-2d,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,int,x86-64,execution_time,0.778849,0.778849,0.778849,0.778849,0.778849,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,seidel-2d,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,int,x86-64,execution_time,0.970474,0.970474,0.970474,0.970474,0.970474,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,heat-3d,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,int,x86-64,execution_time,1.134056,1.134056,1.134056,1.134056,1.134056,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,cholesky,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,int,x86-64,execution_time,2.533451,2.533451,2.533451,2.533451,2.533451,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,ludcmp,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,int,x86-64,execution_time,2.782354,2.782354,2.782354,2.782354,2.782354,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,lu,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,int,x86-64,execution_time,2.985236,2.985236,2.985236,2.985236,2.985236,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,bicg,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,bbq,x86-64,execution_time,0.017003,0.017003,0.017003,0.017003,0.017003,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,mvt,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,bbq,x86-64,execution_time,0.01696,0.01696,0.01696,0.01696,0.01696,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,atax,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,bbq,x86-64,execution_time,0.01682,0.01682,0.01682,0.01682,0.01682,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,gemver,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,bbq,x86-64,execution_time,0.018735,0.018735,0.018735,0.018735,0.018735,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,trmm,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,bbq,x86-64,execution_time,0.030418,0.030418,0.030418,0.030418,0.030418,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,doitgen,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,bbq,x86-64,execution_time,0.034845,0.034845,0.034845,0.034845,0.034845,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,syrk,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,bbq,x86-64,execution_time,0.039871,0.039871,0.039871,0.039871,0.039871,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,correlation,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,bbq,x86-64,execution_time,0.037827,0.037827,0.037827,0.037827,0.037827,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,covariance,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,bbq,x86-64,execution_time,0.041212,0.041212,0.041212,0.041212,0.041212,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,symm,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,bbq,x86-64,execution_time,0.049273,0.049273,0.049273,0.049273,0.049273,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,syr2k,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,bbq,x86-64,execution_time,0.057699,0.057699,0.057699,0.057699,0.057699,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,gemm,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,bbq,x86-64,execution_time,0.053794,0.053794,0.053794,0.053794,0.053794,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,gramschmidt,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,bbq,x86-64,execution_time,0.05512,0.05512,0.05512,0.05512,0.05512,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,2mm,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,bbq,x86-64,execution_time,0.068301,0.068301,0.068301,0.068301,0.068301,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,nussinov,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,bbq,x86-64,execution_time,0.13996,0.13996,0.13996,0.13996,0.13996,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,adi,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,bbq,x86-64,execution_time,0.114938,0.114938,0.114938,0.114938,0.114938,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,3mm,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,bbq,x86-64,execution_time,0.109441,0.109441,0.109441,0.109441,0.109441,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,fdtd-2d,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,bbq,x86-64,execution_time,0.088597,0.088597,0.088597,0.088597,0.088597,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,jacobi-2d,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,bbq,x86-64,execution_time,0.119813,0.119813,0.119813,0.119813,0.119813,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,seidel-2d,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,bbq,x86-64,execution_time,0.202706,0.202706,0.202706,0.202706,0.202706,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,heat-3d,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,bbq,x86-64,execution_time,0.16961,0.16961,0.16961,0.16961,0.16961,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,cholesky,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,bbq,x86-64,execution_time,0.288734,0.288734,0.288734,0.288734,0.288734,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,ludcmp,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,bbq,x86-64,execution_time,0.310606,0.310606,0.310606,0.310606,0.310606,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,lu,jsc,866813ec2e4eb4f8646237cccfe1ad3ad76f46e1,bbq,x86-64,execution_time,0.326295,0.326295,0.326295,0.326295,0.326295,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,bicg,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,omg,x86-64,execution_time,0.033116,0.033116,0.033116,0.033116,0.033116,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,mvt,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,omg,x86-64,execution_time,0.033574,0.033574,0.033574,0.033574,0.033574,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,atax,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,omg,x86-64,execution_time,0.032446,0.032446,0.032446,0.032446,0.032446,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,gemver,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,omg,x86-64,execution_time,0.033479,0.033479,0.033479,0.033479,0.033479,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,trmm,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,omg,x86-64,execution_time,0.038342,0.038342,0.038342,0.038342,0.038342,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,doitgen,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,omg,x86-64,execution_time,0.039325,0.039325,0.039325,0.039325,0.039325,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,syrk,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,omg,x86-64,execution_time,0.042365,0.042365,0.042365,0.042365,0.042365,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,correlation,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,omg,x86-64,execution_time,0.045006,0.045006,0.045006,0.045006,0.045006,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,covariance,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,omg,x86-64,execution_time,0.043324,0.043324,0.043324,0.043324,0.043324,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,symm,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,omg,x86-64,execution_time,0.050423,0.050423,0.050423,0.050423,0.050423,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,syr2k,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,omg,x86-64,execution_time,0.049458,0.049458,0.049458,0.049458,0.049458,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,gemm,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,omg,x86-64,execution_time,0.048743,0.048743,0.048743,0.048743,0.048743,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,gramschmidt,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,omg,x86-64,execution_time,0.050996,0.050996,0.050996,0.050996,0.050996,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,2mm,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,omg,x86-64,execution_time,0.053257,0.053257,0.053257,0.053257,0.053257,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,nussinov,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,omg,x86-64,execution_time,0.056795,0.056795,0.056795,0.056795,0.056795,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,adi,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,omg,x86-64,execution_time,0.100404,0.100404,0.100404,0.100404,0.100404,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,3mm,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,omg,x86-64,execution_time,0.06837,0.06837,0.06837,0.06837,0.06837,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,fdtd-2d,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,omg,x86-64,execution_time,0.063602,0.063602,0.063602,0.063602,0.063602,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,jacobi-2d,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,omg,x86-64,execution_time,0.069191,0.069191,0.069191,0.069191,0.069191,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,seidel-2d,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,omg,x86-64,execution_time,0.195846,0.195846,0.195846,0.195846,0.195846,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,heat-3d,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,omg,x86-64,execution_time,0.091231,0.091231,0.091231,0.091231,0.091231,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,cholesky,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,omg,x86-64,execution_time,0.132484,0.132484,0.132484,0.132484,0.132484,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,ludcmp,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,omg,x86-64,execution_time,0.145946,0.145946,0.145946,0.145946,0.145946,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,lu,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,omg,x86-64,execution_time,0.149321,0.149321,0.149321,0.149321,0.149321,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,bicg,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,int,x86-64,execution_time,0.019663,0.019663,0.019663,0.019663,0.019663,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,mvt,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,int,x86-64,execution_time,0.020648,0.020648,0.020648,0.020648,0.020648,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,atax,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,int,x86-64,execution_time,0.021863,0.021863,0.021863,0.021863,0.021863,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,gemver,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,int,x86-64,execution_time,0.029058,0.029058,0.029058,0.029058,0.029058,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,trmm,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,int,x86-64,execution_time,0.137884,0.137884,0.137884,0.137884,0.137884,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,doitgen,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,int,x86-64,execution_time,0.194943,0.194943,0.194943,0.194943,0.194943,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,syrk,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,int,x86-64,execution_time,0.249957,0.249957,0.249957,0.249957,0.249957,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,correlation,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,int,x86-64,execution_time,0.245181,0.245181,0.245181,0.245181,0.245181,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,covariance,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,int,x86-64,execution_time,0.212286,0.212286,0.212286,0.212286,0.212286,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,symm,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,int,x86-64,execution_time,0.250464,0.250464,0.250464,0.250464,0.250464,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,syr2k,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,int,x86-64,execution_time,0.322217,0.322217,0.322217,0.322217,0.322217,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,gemm,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,int,x86-64,execution_time,0.325251,0.325251,0.325251,0.325251,0.325251,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,gramschmidt,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,int,x86-64,execution_time,0.38643,0.38643,0.38643,0.38643,0.38643,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,2mm,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,int,x86-64,execution_time,0.482236,0.482236,0.482236,0.482236,0.482236,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,nussinov,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,int,x86-64,execution_time,0.561176,0.561176,0.561176,0.561176,0.561176,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,adi,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,int,x86-64,execution_time,0.796068,0.796068,0.796068,0.796068,0.796068,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,3mm,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,int,x86-64,execution_time,0.826287,0.826287,0.826287,0.826287,0.826287,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,fdtd-2d,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,int,x86-64,execution_time,0.682921,0.682921,0.682921,0.682921,0.682921,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,jacobi-2d,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,int,x86-64,execution_time,0.793058,0.793058,0.793058,0.793058,0.793058,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,seidel-2d,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,int,x86-64,execution_time,1.038723,1.038723,1.038723,1.038723,1.038723,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,heat-3d,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,int,x86-64,execution_time,1.237323,1.237323,1.237323,1.237323,1.237323,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,cholesky,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,int,x86-64,execution_time,2.603973,2.603973,2.603973,2.603973,2.603973,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,ludcmp,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,int,x86-64,execution_time,2.856479,2.856479,2.856479,2.856479,2.856479,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,lu,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,int,x86-64,execution_time,3.039874,3.039874,3.039874,3.039874,3.039874,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,bicg,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,bbq,x86-64,execution_time,0.017354,0.017354,0.017354,0.017354,0.017354,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,mvt,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,bbq,x86-64,execution_time,0.016773,0.016773,0.016773,0.016773,0.016773,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,atax,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,bbq,x86-64,execution_time,0.016979,0.016979,0.016979,0.016979,0.016979,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,gemver,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,bbq,x86-64,execution_time,0.018429,0.018429,0.018429,0.018429,0.018429,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,trmm,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,bbq,x86-64,execution_time,0.030902,0.030902,0.030902,0.030902,0.030902,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,doitgen,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,bbq,x86-64,execution_time,0.036391,0.036391,0.036391,0.036391,0.036391,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,syrk,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,bbq,x86-64,execution_time,0.042019,0.042019,0.042019,0.042019,0.042019,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,correlation,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,bbq,x86-64,execution_time,0.039243,0.039243,0.039243,0.039243,0.039243,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,covariance,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,bbq,x86-64,execution_time,0.041979,0.041979,0.041979,0.041979,0.041979,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,symm,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,bbq,x86-64,execution_time,0.04903,0.04903,0.04903,0.04903,0.04903,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,syr2k,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,bbq,x86-64,execution_time,0.060819,0.060819,0.060819,0.060819,0.060819,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,gemm,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,bbq,x86-64,execution_time,0.056333,0.056333,0.056333,0.056333,0.056333,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,gramschmidt,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,bbq,x86-64,execution_time,0.057054,0.057054,0.057054,0.057054,0.057054,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,2mm,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,bbq,x86-64,execution_time,0.069584,0.069584,0.069584,0.069584,0.069584,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,nussinov,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,bbq,x86-64,execution_time,0.142259,0.142259,0.142259,0.142259,0.142259,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,adi,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,bbq,x86-64,execution_time,0.118352,0.118352,0.118352,0.118352,0.118352,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,3mm,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,bbq,x86-64,execution_time,0.10832,0.10832,0.10832,0.10832,0.10832,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,fdtd-2d,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,bbq,x86-64,execution_time,0.091572,0.091572,0.091572,0.091572,0.091572,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,jacobi-2d,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,bbq,x86-64,execution_time,0.121188,0.121188,0.121188,0.121188,0.121188,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,seidel-2d,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,bbq,x86-64,execution_time,0.212181,0.212181,0.212181,0.212181,0.212181,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,heat-3d,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,bbq,x86-64,execution_time,0.171859,0.171859,0.171859,0.171859,0.171859,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,cholesky,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,bbq,x86-64,execution_time,0.308201,0.308201,0.308201,0.308201,0.308201,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,ludcmp,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,bbq,x86-64,execution_time,0.325161,0.325161,0.325161,0.325161,0.325161,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,lu,jsc,f14203440c9ccb1f09af72288eec9fb1b75f235d,bbq,x86-64,execution_time,0.345544,0.345544,0.345544,0.345544,0.345544,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,bicg,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,omg,x86-64,execution_time,0.033982,0.033982,0.033982,0.033982,0.033982,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,mvt,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,omg,x86-64,execution_time,0.033483,0.033483,0.033483,0.033483,0.033483,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,atax,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,omg,x86-64,execution_time,0.032752,0.032752,0.032752,0.032752,0.032752,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,gemver,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,omg,x86-64,execution_time,0.033061,0.033061,0.033061,0.033061,0.033061,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,trmm,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,omg,x86-64,execution_time,0.03836,0.03836,0.03836,0.03836,0.03836,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,doitgen,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,omg,x86-64,execution_time,0.040115,0.040115,0.040115,0.040115,0.040115,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,syrk,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,omg,x86-64,execution_time,0.04181,0.04181,0.04181,0.04181,0.04181,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,correlation,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,omg,x86-64,execution_time,0.044906,0.044906,0.044906,0.044906,0.044906,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,covariance,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,omg,x86-64,execution_time,0.043997,0.043997,0.043997,0.043997,0.043997,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,symm,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,omg,x86-64,execution_time,0.047424,0.047424,0.047424,0.047424,0.047424,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,syr2k,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,omg,x86-64,execution_time,0.049499,0.049499,0.049499,0.049499,0.049499,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,gemm,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,omg,x86-64,execution_time,0.050825,0.050825,0.050825,0.050825,0.050825,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,gramschmidt,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,omg,x86-64,execution_time,0.052471,0.052471,0.052471,0.052471,0.052471,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,2mm,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,omg,x86-64,execution_time,0.055466,0.055466,0.055466,0.055466,0.055466,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,nussinov,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,omg,x86-64,execution_time,0.064398,0.064398,0.064398,0.064398,0.064398,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,adi,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,omg,x86-64,execution_time,0.10007,0.10007,0.10007,0.10007,0.10007,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,3mm,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,omg,x86-64,execution_time,0.069959,0.069959,0.069959,0.069959,0.069959,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,fdtd-2d,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,omg,x86-64,execution_time,0.065533,0.065533,0.065533,0.065533,0.065533,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,jacobi-2d,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,omg,x86-64,execution_time,0.070258,0.070258,0.070258,0.070258,0.070258,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,seidel-2d,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,omg,x86-64,execution_time,0.196372,0.196372,0.196372,0.196372,0.196372,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,heat-3d,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,omg,x86-64,execution_time,0.093356,0.093356,0.093356,0.093356,0.093356,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,cholesky,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,omg,x86-64,execution_time,0.135375,0.135375,0.135375,0.135375,0.135375,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,ludcmp,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,omg,x86-64,execution_time,0.15171,0.15171,0.15171,0.15171,0.15171,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,lu,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,omg,x86-64,execution_time,0.157079,0.157079,0.157079,0.157079,0.157079,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,bicg,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,int,x86-64,execution_time,0.019547,0.019547,0.019547,0.019547,0.019547,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,mvt,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,int,x86-64,execution_time,0.021528,0.021528,0.021528,0.021528,0.021528,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,atax,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,int,x86-64,execution_time,0.021689,0.021689,0.021689,0.021689,0.021689,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,gemver,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,int,x86-64,execution_time,0.02848,0.02848,0.02848,0.02848,0.02848,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,trmm,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,int,x86-64,execution_time,0.131481,0.131481,0.131481,0.131481,0.131481,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,doitgen,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,int,x86-64,execution_time,0.191763,0.191763,0.191763,0.191763,0.191763,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,syrk,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,int,x86-64,execution_time,0.244333,0.244333,0.244333,0.244333,0.244333,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,correlation,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,int,x86-64,execution_time,0.243645,0.243645,0.243645,0.243645,0.243645,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,covariance,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,int,x86-64,execution_time,0.20867,0.20867,0.20867,0.20867,0.20867,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,symm,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,int,x86-64,execution_time,0.242619,0.242619,0.242619,0.242619,0.242619,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,syr2k,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,int,x86-64,execution_time,0.314626,0.314626,0.314626,0.314626,0.314626,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,gemm,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,int,x86-64,execution_time,0.312387,0.312387,0.312387,0.312387,0.312387,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,gramschmidt,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,int,x86-64,execution_time,0.393772,0.393772,0.393772,0.393772,0.393772,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,2mm,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,int,x86-64,execution_time,0.461083,0.461083,0.461083,0.461083,0.461083,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,nussinov,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,int,x86-64,execution_time,0.561901,0.561901,0.561901,0.561901,0.561901,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,adi,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,int,x86-64,execution_time,0.746528,0.746528,0.746528,0.746528,0.746528,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,3mm,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,int,x86-64,execution_time,0.794006,0.794006,0.794006,0.794006,0.794006,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,fdtd-2d,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,int,x86-64,execution_time,0.679913,0.679913,0.679913,0.679913,0.679913,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,jacobi-2d,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,int,x86-64,execution_time,0.747763,0.747763,0.747763,0.747763,0.747763,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,seidel-2d,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,int,x86-64,execution_time,0.990772,0.990772,0.990772,0.990772,0.990772,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,heat-3d,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,int,x86-64,execution_time,1.174166,1.174166,1.174166,1.174166,1.174166,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,cholesky,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,int,x86-64,execution_time,2.598622,2.598622,2.598622,2.598622,2.598622,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,ludcmp,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,int,x86-64,execution_time,2.855769,2.855769,2.855769,2.855769,2.855769,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,lu,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,int,x86-64,execution_time,3.029644,3.029644,3.029644,3.029644,3.029644,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,bicg,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,bbq,x86-64,execution_time,0.017085,0.017085,0.017085,0.017085,0.017085,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,mvt,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,bbq,x86-64,execution_time,0.01668,0.01668,0.01668,0.01668,0.01668,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,atax,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,bbq,x86-64,execution_time,0.017012,0.017012,0.017012,0.017012,0.017012,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,gemver,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,bbq,x86-64,execution_time,0.018556,0.018556,0.018556,0.018556,0.018556,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,trmm,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,bbq,x86-64,execution_time,0.030942,0.030942,0.030942,0.030942,0.030942,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,doitgen,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,bbq,x86-64,execution_time,0.036506,0.036506,0.036506,0.036506,0.036506,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,syrk,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,bbq,x86-64,execution_time,0.04238,0.04238,0.04238,0.04238,0.04238,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,correlation,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,bbq,x86-64,execution_time,0.040713,0.040713,0.040713,0.040713,0.040713,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,covariance,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,bbq,x86-64,execution_time,0.042302,0.042302,0.042302,0.042302,0.042302,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,symm,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,bbq,x86-64,execution_time,0.049596,0.049596,0.049596,0.049596,0.049596,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,syr2k,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,bbq,x86-64,execution_time,0.061738,0.061738,0.061738,0.061738,0.061738,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,gemm,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,bbq,x86-64,execution_time,0.056422,0.056422,0.056422,0.056422,0.056422,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,gramschmidt,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,bbq,x86-64,execution_time,0.05639,0.05639,0.05639,0.05639,0.05639,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,2mm,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,bbq,x86-64,execution_time,0.070712,0.070712,0.070712,0.070712,0.070712,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,nussinov,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,bbq,x86-64,execution_time,0.142195,0.142195,0.142195,0.142195,0.142195,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,adi,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,bbq,x86-64,execution_time,0.120251,0.120251,0.120251,0.120251,0.120251,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,3mm,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,bbq,x86-64,execution_time,0.109384,0.109384,0.109384,0.109384,0.109384,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,fdtd-2d,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,bbq,x86-64,execution_time,0.091573,0.091573,0.091573,0.091573,0.091573,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,jacobi-2d,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,bbq,x86-64,execution_time,0.12104,0.12104,0.12104,0.12104,0.12104,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,seidel-2d,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,bbq,x86-64,execution_time,0.211706,0.211706,0.211706,0.211706,0.211706,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,heat-3d,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,bbq,x86-64,execution_time,0.171858,0.171858,0.171858,0.171858,0.171858,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,cholesky,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,bbq,x86-64,execution_time,0.303953,0.303953,0.303953,0.303953,0.303953,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,ludcmp,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,bbq,x86-64,execution_time,0.325935,0.325935,0.325935,0.325935,0.325935,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,lu,jsc ,dc6a2b2784f6b088142cd583dd25f9d14b9cae03,bbq,x86-64,execution_time,0.345375,0.345375,0.345375,0.345375,0.345375,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,bicg,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,omg,x86-64,execution_time,0.034479,0.034479,0.034479,0.034479,0.034479,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,mvt,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,omg,x86-64,execution_time,0.032188,0.032188,0.032188,0.032188,0.032188,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,atax,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,omg,x86-64,execution_time,0.034622,0.034622,0.034622,0.034622,0.034622,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,gemver,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,omg,x86-64,execution_time,0.033663,0.033663,0.033663,0.033663,0.033663,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,trmm,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,omg,x86-64,execution_time,0.038164,0.038164,0.038164,0.038164,0.038164,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,doitgen,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,omg,x86-64,execution_time,0.040783,0.040783,0.040783,0.040783,0.040783,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,syrk,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,omg,x86-64,execution_time,0.041188,0.041188,0.041188,0.041188,0.041188,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,correlation,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,omg,x86-64,execution_time,0.045006,0.045006,0.045006,0.045006,0.045006,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,covariance,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,omg,x86-64,execution_time,0.044332,0.044332,0.044332,0.044332,0.044332,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,symm,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,omg,x86-64,execution_time,0.05064,0.05064,0.05064,0.05064,0.05064,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,syr2k,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,omg,x86-64,execution_time,0.050478,0.050478,0.050478,0.050478,0.050478,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,gemm,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,omg,x86-64,execution_time,0.048289,0.048289,0.048289,0.048289,0.048289,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,gramschmidt,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,omg,x86-64,execution_time,0.050608,0.050608,0.050608,0.050608,0.050608,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,2mm,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,omg,x86-64,execution_time,0.053934,0.053934,0.053934,0.053934,0.053934,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,nussinov,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,omg,x86-64,execution_time,0.056584,0.056584,0.056584,0.056584,0.056584,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,adi,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,omg,x86-64,execution_time,0.100166,0.100166,0.100166,0.100166,0.100166,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,3mm,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,omg,x86-64,execution_time,0.068844,0.068844,0.068844,0.068844,0.068844,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,fdtd-2d,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,omg,x86-64,execution_time,0.064518,0.064518,0.064518,0.064518,0.064518,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,jacobi-2d,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,omg,x86-64,execution_time,0.070446,0.070446,0.070446,0.070446,0.070446,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,seidel-2d,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,omg,x86-64,execution_time,0.194054,0.194054,0.194054,0.194054,0.194054,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,heat-3d,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,omg,x86-64,execution_time,0.094159,0.094159,0.094159,0.094159,0.094159,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,cholesky,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,omg,x86-64,execution_time,0.137073,0.137073,0.137073,0.137073,0.137073,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,ludcmp,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,omg,x86-64,execution_time,0.152712,0.152712,0.152712,0.152712,0.152712,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,lu,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,omg,x86-64,execution_time,0.153672,0.153672,0.153672,0.153672,0.153672,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,bicg,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,int,x86-64,execution_time,0.019804,0.019804,0.019804,0.019804,0.019804,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,mvt,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,int,x86-64,execution_time,0.021651,0.021651,0.021651,0.021651,0.021651,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,atax,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,int,x86-64,execution_time,0.021519,0.021519,0.021519,0.021519,0.021519,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,gemver,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,int,x86-64,execution_time,0.02806,0.02806,0.02806,0.02806,0.02806,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,trmm,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,int,x86-64,execution_time,0.129656,0.129656,0.129656,0.129656,0.129656,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,doitgen,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,int,x86-64,execution_time,0.1886,0.1886,0.1886,0.1886,0.1886,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,syrk,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,int,x86-64,execution_time,0.233469,0.233469,0.233469,0.233469,0.233469,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,correlation,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,int,x86-64,execution_time,0.234797,0.234797,0.234797,0.234797,0.234797,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,covariance,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,int,x86-64,execution_time,0.208271,0.208271,0.208271,0.208271,0.208271,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,symm,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,int,x86-64,execution_time,0.24258,0.24258,0.24258,0.24258,0.24258,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,syr2k,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,int,x86-64,execution_time,0.299292,0.299292,0.299292,0.299292,0.299292,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,gemm,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,int,x86-64,execution_time,0.311756,0.311756,0.311756,0.311756,0.311756,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,gramschmidt,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,int,x86-64,execution_time,0.38824,0.38824,0.38824,0.38824,0.38824,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,2mm,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,int,x86-64,execution_time,0.439385,0.439385,0.439385,0.439385,0.439385,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,nussinov,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,int,x86-64,execution_time,0.562675,0.562675,0.562675,0.562675,0.562675,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,adi,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,int,x86-64,execution_time,0.730557,0.730557,0.730557,0.730557,0.730557,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,3mm,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,int,x86-64,execution_time,0.768932,0.768932,0.768932,0.768932,0.768932,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,fdtd-2d,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,int,x86-64,execution_time,0.67579,0.67579,0.67579,0.67579,0.67579,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,jacobi-2d,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,int,x86-64,execution_time,0.761198,0.761198,0.761198,0.761198,0.761198,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,seidel-2d,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,int,x86-64,execution_time,0.958602,0.958602,0.958602,0.958602,0.958602,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,heat-3d,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,int,x86-64,execution_time,1.130463,1.130463,1.130463,1.130463,1.130463,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,cholesky,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,int,x86-64,execution_time,2.549996,2.549996,2.549996,2.549996,2.549996,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,ludcmp,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,int,x86-64,execution_time,2.792629,2.792629,2.792629,2.792629,2.792629,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,lu,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,int,x86-64,execution_time,2.956882,2.956882,2.956882,2.956882,2.956882,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,bicg,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,bbq,x86-64,execution_time,0.016057,0.016057,0.016057,0.016057,0.016057,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,mvt,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,bbq,x86-64,execution_time,0.016839,0.016839,0.016839,0.016839,0.016839,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,atax,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,bbq,x86-64,execution_time,0.015552,0.015552,0.015552,0.015552,0.015552,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,gemver,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,bbq,x86-64,execution_time,0.017414,0.017414,0.017414,0.017414,0.017414,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,trmm,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,bbq,x86-64,execution_time,0.02972,0.02972,0.02972,0.02972,0.02972,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,doitgen,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,bbq,x86-64,execution_time,0.035095,0.035095,0.035095,0.035095,0.035095,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,syrk,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,bbq,x86-64,execution_time,0.040909,0.040909,0.040909,0.040909,0.040909,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,correlation,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,bbq,x86-64,execution_time,0.040739,0.040739,0.040739,0.040739,0.040739,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,covariance,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,bbq,x86-64,execution_time,0.041628,0.041628,0.041628,0.041628,0.041628,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,symm,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,bbq,x86-64,execution_time,0.049008,0.049008,0.049008,0.049008,0.049008,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,syr2k,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,bbq,x86-64,execution_time,0.060276,0.060276,0.060276,0.060276,0.060276,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,gemm,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,bbq,x86-64,execution_time,0.055272,0.055272,0.055272,0.055272,0.055272,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,gramschmidt,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,bbq,x86-64,execution_time,0.056303,0.056303,0.056303,0.056303,0.056303,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,2mm,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,bbq,x86-64,execution_time,0.068298,0.068298,0.068298,0.068298,0.068298,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,nussinov,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,bbq,x86-64,execution_time,0.141606,0.141606,0.141606,0.141606,0.141606,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,adi,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,bbq,x86-64,execution_time,0.118455,0.118455,0.118455,0.118455,0.118455,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,3mm,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,bbq,x86-64,execution_time,0.108238,0.108238,0.108238,0.108238,0.108238,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,fdtd-2d,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,bbq,x86-64,execution_time,0.090989,0.090989,0.090989,0.090989,0.090989,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,jacobi-2d,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,bbq,x86-64,execution_time,0.121617,0.121617,0.121617,0.121617,0.121617,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,seidel-2d,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,bbq,x86-64,execution_time,0.210137,0.210137,0.210137,0.210137,0.210137,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,heat-3d,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,bbq,x86-64,execution_time,0.172164,0.172164,0.172164,0.172164,0.172164,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,cholesky,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,bbq,x86-64,execution_time,0.30266,0.30266,0.30266,0.30266,0.30266,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,ludcmp,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,bbq,x86-64,execution_time,0.324378,0.324378,0.324378,0.324378,0.324378,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,lu,jsc ,92f852a32bc3d2f924eb1b58b95e5393a27ebff6,bbq,x86-64,execution_time,0.345306,0.345306,0.345306,0.345306,0.345306,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,bicg,jsc ,1e857085f6729e460017f4a65639a08ab300be71,omg,x86-64,execution_time,0.034479,0.034479,0.034479,0.034479,0.034479,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,mvt,jsc ,1e857085f6729e460017f4a65639a08ab300be71,omg,x86-64,execution_time,0.032188,0.032188,0.032188,0.032188,0.032188,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,atax,jsc ,1e857085f6729e460017f4a65639a08ab300be71,omg,x86-64,execution_time,0.034622,0.034622,0.034622,0.034622,0.034622,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,gemver,jsc ,1e857085f6729e460017f4a65639a08ab300be71,omg,x86-64,execution_time,0.033663,0.033663,0.033663,0.033663,0.033663,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,trmm,jsc ,1e857085f6729e460017f4a65639a08ab300be71,omg,x86-64,execution_time,0.038164,0.038164,0.038164,0.038164,0.038164,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,doitgen,jsc ,1e857085f6729e460017f4a65639a08ab300be71,omg,x86-64,execution_time,0.040783,0.040783,0.040783,0.040783,0.040783,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,syrk,jsc ,1e857085f6729e460017f4a65639a08ab300be71,omg,x86-64,execution_time,0.041188,0.041188,0.041188,0.041188,0.041188,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,correlation,jsc ,1e857085f6729e460017f4a65639a08ab300be71,omg,x86-64,execution_time,0.045006,0.045006,0.045006,0.045006,0.045006,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,covariance,jsc ,1e857085f6729e460017f4a65639a08ab300be71,omg,x86-64,execution_time,0.044332,0.044332,0.044332,0.044332,0.044332,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,symm,jsc ,1e857085f6729e460017f4a65639a08ab300be71,omg,x86-64,execution_time,0.05064,0.05064,0.05064,0.05064,0.05064,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,syr2k,jsc ,1e857085f6729e460017f4a65639a08ab300be71,omg,x86-64,execution_time,0.050478,0.050478,0.050478,0.050478,0.050478,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,gemm,jsc ,1e857085f6729e460017f4a65639a08ab300be71,omg,x86-64,execution_time,0.048289,0.048289,0.048289,0.048289,0.048289,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,gramschmidt,jsc ,1e857085f6729e460017f4a65639a08ab300be71,omg,x86-64,execution_time,0.050608,0.050608,0.050608,0.050608,0.050608,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,2mm,jsc ,1e857085f6729e460017f4a65639a08ab300be71,omg,x86-64,execution_time,0.053934,0.053934,0.053934,0.053934,0.053934,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,nussinov,jsc ,1e857085f6729e460017f4a65639a08ab300be71,omg,x86-64,execution_time,0.056584,0.056584,0.056584,0.056584,0.056584,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,adi,jsc ,1e857085f6729e460017f4a65639a08ab300be71,omg,x86-64,execution_time,0.100166,0.100166,0.100166,0.100166,0.100166,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,3mm,jsc ,1e857085f6729e460017f4a65639a08ab300be71,omg,x86-64,execution_time,0.068844,0.068844,0.068844,0.068844,0.068844,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,fdtd-2d,jsc ,1e857085f6729e460017f4a65639a08ab300be71,omg,x86-64,execution_time,0.064518,0.064518,0.064518,0.064518,0.064518,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,jacobi-2d,jsc ,1e857085f6729e460017f4a65639a08ab300be71,omg,x86-64,execution_time,0.070446,0.070446,0.070446,0.070446,0.070446,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,seidel-2d,jsc ,1e857085f6729e460017f4a65639a08ab300be71,omg,x86-64,execution_time,0.194054,0.194054,0.194054,0.194054,0.194054,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,heat-3d,jsc ,1e857085f6729e460017f4a65639a08ab300be71,omg,x86-64,execution_time,0.094159,0.094159,0.094159,0.094159,0.094159,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,cholesky,jsc ,1e857085f6729e460017f4a65639a08ab300be71,omg,x86-64,execution_time,0.137073,0.137073,0.137073,0.137073,0.137073,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,ludcmp,jsc ,1e857085f6729e460017f4a65639a08ab300be71,omg,x86-64,execution_time,0.152712,0.152712,0.152712,0.152712,0.152712,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,lu,jsc ,1e857085f6729e460017f4a65639a08ab300be71,omg,x86-64,execution_time,0.153672,0.153672,0.153672,0.153672,0.153672,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,bicg,jsc ,1e857085f6729e460017f4a65639a08ab300be71,int,x86-64,execution_time,0.019804,0.019804,0.019804,0.019804,0.019804,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,mvt,jsc ,1e857085f6729e460017f4a65639a08ab300be71,int,x86-64,execution_time,0.021651,0.021651,0.021651,0.021651,0.021651,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,atax,jsc ,1e857085f6729e460017f4a65639a08ab300be71,int,x86-64,execution_time,0.021519,0.021519,0.021519,0.021519,0.021519,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,gemver,jsc ,1e857085f6729e460017f4a65639a08ab300be71,int,x86-64,execution_time,0.02806,0.02806,0.02806,0.02806,0.02806,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,trmm,jsc ,1e857085f6729e460017f4a65639a08ab300be71,int,x86-64,execution_time,0.129656,0.129656,0.129656,0.129656,0.129656,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,doitgen,jsc ,1e857085f6729e460017f4a65639a08ab300be71,int,x86-64,execution_time,0.1886,0.1886,0.1886,0.1886,0.1886,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,syrk,jsc ,1e857085f6729e460017f4a65639a08ab300be71,int,x86-64,execution_time,0.233469,0.233469,0.233469,0.233469,0.233469,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,correlation,jsc ,1e857085f6729e460017f4a65639a08ab300be71,int,x86-64,execution_time,0.234797,0.234797,0.234797,0.234797,0.234797,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,covariance,jsc ,1e857085f6729e460017f4a65639a08ab300be71,int,x86-64,execution_time,0.208271,0.208271,0.208271,0.208271,0.208271,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,symm,jsc ,1e857085f6729e460017f4a65639a08ab300be71,int,x86-64,execution_time,0.24258,0.24258,0.24258,0.24258,0.24258,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,syr2k,jsc ,1e857085f6729e460017f4a65639a08ab300be71,int,x86-64,execution_time,0.299292,0.299292,0.299292,0.299292,0.299292,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,gemm,jsc ,1e857085f6729e460017f4a65639a08ab300be71,int,x86-64,execution_time,0.311756,0.311756,0.311756,0.311756,0.311756,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,gramschmidt,jsc ,1e857085f6729e460017f4a65639a08ab300be71,int,x86-64,execution_time,0.38824,0.38824,0.38824,0.38824,0.38824,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,2mm,jsc ,1e857085f6729e460017f4a65639a08ab300be71,int,x86-64,execution_time,0.439385,0.439385,0.439385,0.439385,0.439385,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,nussinov,jsc ,1e857085f6729e460017f4a65639a08ab300be71,int,x86-64,execution_time,0.562675,0.562675,0.562675,0.562675,0.562675,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,adi,jsc ,1e857085f6729e460017f4a65639a08ab300be71,int,x86-64,execution_time,0.730557,0.730557,0.730557,0.730557,0.730557,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,3mm,jsc ,1e857085f6729e460017f4a65639a08ab300be71,int,x86-64,execution_time,0.768932,0.768932,0.768932,0.768932,0.768932,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,fdtd-2d,jsc ,1e857085f6729e460017f4a65639a08ab300be71,int,x86-64,execution_time,0.67579,0.67579,0.67579,0.67579,0.67579,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,jacobi-2d,jsc ,1e857085f6729e460017f4a65639a08ab300be71,int,x86-64,execution_time,0.761198,0.761198,0.761198,0.761198,0.761198,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,seidel-2d,jsc ,1e857085f6729e460017f4a65639a08ab300be71,int,x86-64,execution_time,0.958602,0.958602,0.958602,0.958602,0.958602,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,heat-3d,jsc ,1e857085f6729e460017f4a65639a08ab300be71,int,x86-64,execution_time,1.130463,1.130463,1.130463,1.130463,1.130463,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,cholesky,jsc ,1e857085f6729e460017f4a65639a08ab300be71,int,x86-64,execution_time,2.549996,2.549996,2.549996,2.549996,2.549996,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,ludcmp,jsc ,1e857085f6729e460017f4a65639a08ab300be71,int,x86-64,execution_time,2.792629,2.792629,2.792629,2.792629,2.792629,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,lu,jsc ,1e857085f6729e460017f4a65639a08ab300be71,int,x86-64,execution_time,2.956882,2.956882,2.956882,2.956882,2.956882,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,bicg,jsc ,1e857085f6729e460017f4a65639a08ab300be71,bbq,x86-64,execution_time,0.016057,0.016057,0.016057,0.016057,0.016057,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,mvt,jsc ,1e857085f6729e460017f4a65639a08ab300be71,bbq,x86-64,execution_time,0.016839,0.016839,0.016839,0.016839,0.016839,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,atax,jsc ,1e857085f6729e460017f4a65639a08ab300be71,bbq,x86-64,execution_time,0.015552,0.015552,0.015552,0.015552,0.015552,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,gemver,jsc ,1e857085f6729e460017f4a65639a08ab300be71,bbq,x86-64,execution_time,0.017414,0.017414,0.017414,0.017414,0.017414,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,trmm,jsc ,1e857085f6729e460017f4a65639a08ab300be71,bbq,x86-64,execution_time,0.02972,0.02972,0.02972,0.02972,0.02972,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,doitgen,jsc ,1e857085f6729e460017f4a65639a08ab300be71,bbq,x86-64,execution_time,0.035095,0.035095,0.035095,0.035095,0.035095,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,syrk,jsc ,1e857085f6729e460017f4a65639a08ab300be71,bbq,x86-64,execution_time,0.040909,0.040909,0.040909,0.040909,0.040909,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,correlation,jsc ,1e857085f6729e460017f4a65639a08ab300be71,bbq,x86-64,execution_time,0.040739,0.040739,0.040739,0.040739,0.040739,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,covariance,jsc ,1e857085f6729e460017f4a65639a08ab300be71,bbq,x86-64,execution_time,0.041628,0.041628,0.041628,0.041628,0.041628,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,symm,jsc ,1e857085f6729e460017f4a65639a08ab300be71,bbq,x86-64,execution_time,0.049008,0.049008,0.049008,0.049008,0.049008,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,syr2k,jsc ,1e857085f6729e460017f4a65639a08ab300be71,bbq,x86-64,execution_time,0.060276,0.060276,0.060276,0.060276,0.060276,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,gemm,jsc ,1e857085f6729e460017f4a65639a08ab300be71,bbq,x86-64,execution_time,0.055272,0.055272,0.055272,0.055272,0.055272,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,gramschmidt,jsc ,1e857085f6729e460017f4a65639a08ab300be71,bbq,x86-64,execution_time,0.056303,0.056303,0.056303,0.056303,0.056303,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,2mm,jsc ,1e857085f6729e460017f4a65639a08ab300be71,bbq,x86-64,execution_time,0.068298,0.068298,0.068298,0.068298,0.068298,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,nussinov,jsc ,1e857085f6729e460017f4a65639a08ab300be71,bbq,x86-64,execution_time,0.141606,0.141606,0.141606,0.141606,0.141606,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,adi,jsc ,1e857085f6729e460017f4a65639a08ab300be71,bbq,x86-64,execution_time,0.118455,0.118455,0.118455,0.118455,0.118455,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,3mm,jsc ,1e857085f6729e460017f4a65639a08ab300be71,bbq,x86-64,execution_time,0.108238,0.108238,0.108238,0.108238,0.108238,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,fdtd-2d,jsc ,1e857085f6729e460017f4a65639a08ab300be71,bbq,x86-64,execution_time,0.090989,0.090989,0.090989,0.090989,0.090989,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,jacobi-2d,jsc ,1e857085f6729e460017f4a65639a08ab300be71,bbq,x86-64,execution_time,0.121617,0.121617,0.121617,0.121617,0.121617,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,seidel-2d,jsc ,1e857085f6729e460017f4a65639a08ab300be71,bbq,x86-64,execution_time,0.210137,0.210137,0.210137,0.210137,0.210137,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,heat-3d,jsc ,1e857085f6729e460017f4a65639a08ab300be71,bbq,x86-64,execution_time,0.172164,0.172164,0.172164,0.172164,0.172164,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,cholesky,jsc ,1e857085f6729e460017f4a65639a08ab300be71,bbq,x86-64,execution_time,0.30266,0.30266,0.30266,0.30266,0.30266,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,ludcmp,jsc ,1e857085f6729e460017f4a65639a08ab300be71,bbq,x86-64,execution_time,0.324378,0.324378,0.324378,0.324378,0.324378,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,lu,jsc ,1e857085f6729e460017f4a65639a08ab300be71,bbq,x86-64,execution_time,0.345306,0.345306,0.345306,0.345306,0.345306,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,bicg,spidermonkey,FIREFOX_NIGHTLY_111_END,base,x86-64,execution_time,0.01901,0.01901,0.01901,0.01901,0.01901,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,mvt,spidermonkey,FIREFOX_NIGHTLY_111_END,base,x86-64,execution_time,0.020382,0.020382,0.020382,0.020382,0.020382,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,atax,spidermonkey,FIREFOX_NIGHTLY_111_END,base,x86-64,execution_time,0.018517,0.018517,0.018517,0.018517,0.018517,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,gemver,spidermonkey,FIREFOX_NIGHTLY_111_END,base,x86-64,execution_time,0.019978,0.019978,0.019978,0.019978,0.019978,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,trmm,spidermonkey,FIREFOX_NIGHTLY_111_END,base,x86-64,execution_time,0.029099,0.029099,0.029099,0.029099,0.029099,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,doitgen,spidermonkey,FIREFOX_NIGHTLY_111_END,base,x86-64,execution_time,0.03428,0.03428,0.03428,0.03428,0.03428,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,syrk,spidermonkey,FIREFOX_NIGHTLY_111_END,base,x86-64,execution_time,0.032595,0.032595,0.032595,0.032595,0.032595,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,correlation,spidermonkey,FIREFOX_NIGHTLY_111_END,base,x86-64,execution_time,0.036255,0.036255,0.036255,0.036255,0.036255,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,covariance,spidermonkey,FIREFOX_NIGHTLY_111_END,base,x86-64,execution_time,0.03601,0.03601,0.03601,0.03601,0.03601,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,symm,spidermonkey,FIREFOX_NIGHTLY_111_END,base,x86-64,execution_time,0.040108,0.040108,0.040108,0.040108,0.040108,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,syr2k,spidermonkey,FIREFOX_NIGHTLY_111_END,base,x86-64,execution_time,0.04349,0.04349,0.04349,0.04349,0.04349,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,gemm,spidermonkey,FIREFOX_NIGHTLY_111_END,base,x86-64,execution_time,0.043166,0.043166,0.043166,0.043166,0.043166,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,gramschmidt,spidermonkey,FIREFOX_NIGHTLY_111_END,base,x86-64,execution_time,0.049755,0.049755,0.049755,0.049755,0.049755,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,2mm,spidermonkey,FIREFOX_NIGHTLY_111_END,base,x86-64,execution_time,0.053707,0.053707,0.053707,0.053707,0.053707,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,nussinov,spidermonkey,FIREFOX_NIGHTLY_111_END,base,x86-64,execution_time,0.065837,0.065837,0.065837,0.065837,0.065837,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,adi,spidermonkey,FIREFOX_NIGHTLY_111_END,base,x86-64,execution_time,0.116843,0.116843,0.116843,0.116843,0.116843,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,3mm,spidermonkey,FIREFOX_NIGHTLY_111_END,base,x86-64,execution_time,0.075733,0.075733,0.075733,0.075733,0.075733,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,fdtd-2d,spidermonkey,FIREFOX_NIGHTLY_111_END,base,x86-64,execution_time,0.066035,0.066035,0.066035,0.066035,0.066035,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,jacobi-2d,spidermonkey,FIREFOX_NIGHTLY_111_END,base,x86-64,execution_time,0.070734,0.070734,0.070734,0.070734,0.070734,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,seidel-2d,spidermonkey,FIREFOX_NIGHTLY_111_END,base,x86-64,execution_time,0.195292,0.195292,0.195292,0.195292,0.195292,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,heat-3d,spidermonkey,FIREFOX_NIGHTLY_111_END,base,x86-64,execution_time,0.097048,0.097048,0.097048,0.097048,0.097048,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,cholesky,spidermonkey,FIREFOX_NIGHTLY_111_END,base,x86-64,execution_time,0.204051,0.204051,0.204051,0.204051,0.204051,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,ludcmp,spidermonkey,FIREFOX_NIGHTLY_111_END,base,x86-64,execution_time,0.2153,0.2153,0.2153,0.2153,0.2153,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,lu,spidermonkey,FIREFOX_NIGHTLY_111_END,base,x86-64,execution_time,0.232077,0.232077,0.232077,0.232077,0.232077,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,bicg,spidermonkey,FIREFOX_NIGHTLY_111_END,opt,x86-64,execution_time,0.024532,0.024532,0.024532,0.024532,0.024532,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,mvt,spidermonkey,FIREFOX_NIGHTLY_111_END,opt,x86-64,execution_time,0.022519,0.022519,0.022519,0.022519,0.022519,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,atax,spidermonkey,FIREFOX_NIGHTLY_111_END,opt,x86-64,execution_time,0.023079,0.023079,0.023079,0.023079,0.023079,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,gemver,spidermonkey,FIREFOX_NIGHTLY_111_END,opt,x86-64,execution_time,0.022748,0.022748,0.022748,0.022748,0.022748,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,trmm,spidermonkey,FIREFOX_NIGHTLY_111_END,opt,x86-64,execution_time,0.027104,0.027104,0.027104,0.027104,0.027104,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,doitgen,spidermonkey,FIREFOX_NIGHTLY_111_END,opt,x86-64,execution_time,0.02784,0.02784,0.02784,0.02784,0.02784,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,syrk,spidermonkey,FIREFOX_NIGHTLY_111_END,opt,x86-64,execution_time,0.029321,0.029321,0.029321,0.029321,0.029321,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,correlation,spidermonkey,FIREFOX_NIGHTLY_111_END,opt,x86-64,execution_time,0.032711,0.032711,0.032711,0.032711,0.032711,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,covariance,spidermonkey,FIREFOX_NIGHTLY_111_END,opt,x86-64,execution_time,0.032338,0.032338,0.032338,0.032338,0.032338,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,symm,spidermonkey,FIREFOX_NIGHTLY_111_END,opt,x86-64,execution_time,0.034908,0.034908,0.034908,0.034908,0.034908,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,syr2k,spidermonkey,FIREFOX_NIGHTLY_111_END,opt,x86-64,execution_time,0.034563,0.034563,0.034563,0.034563,0.034563,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,gemm,spidermonkey,FIREFOX_NIGHTLY_111_END,opt,x86-64,execution_time,0.033521,0.033521,0.033521,0.033521,0.033521,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,gramschmidt,spidermonkey,FIREFOX_NIGHTLY_111_END,opt,x86-64,execution_time,0.039761,0.039761,0.039761,0.039761,0.039761,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,2mm,spidermonkey,FIREFOX_NIGHTLY_111_END,opt,x86-64,execution_time,0.03867,0.03867,0.03867,0.03867,0.03867,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,nussinov,spidermonkey,FIREFOX_NIGHTLY_111_END,opt,x86-64,execution_time,0.046861,0.046861,0.046861,0.046861,0.046861,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,adi,spidermonkey,FIREFOX_NIGHTLY_111_END,opt,x86-64,execution_time,0.093011,0.093011,0.093011,0.093011,0.093011,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,3mm,spidermonkey,FIREFOX_NIGHTLY_111_END,opt,x86-64,execution_time,0.047779,0.047779,0.047779,0.047779,0.047779,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,fdtd-2d,spidermonkey,FIREFOX_NIGHTLY_111_END,opt,x86-64,execution_time,0.043439,0.043439,0.043439,0.043439,0.043439,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,jacobi-2d,spidermonkey,FIREFOX_NIGHTLY_111_END,opt,x86-64,execution_time,0.04392,0.04392,0.04392,0.04392,0.04392,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,seidel-2d,spidermonkey,FIREFOX_NIGHTLY_111_END,opt,x86-64,execution_time,0.173077,0.173077,0.173077,0.173077,0.173077,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,heat-3d,spidermonkey,FIREFOX_NIGHTLY_111_END,opt,x86-64,execution_time,0.054336,0.054336,0.054336,0.054336,0.054336,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,cholesky,spidermonkey,FIREFOX_NIGHTLY_111_END,opt,x86-64,execution_time,0.107505,0.107505,0.107505,0.107505,0.107505,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,ludcmp,spidermonkey,FIREFOX_NIGHTLY_111_END,opt,x86-64,execution_time,0.119262,0.119262,0.119262,0.119262,0.119262,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,lu,spidermonkey,FIREFOX_NIGHTLY_111_END,opt,x86-64,execution_time,0.122323,0.122323,0.122323,0.122323,0.122323,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,bicg,spidermonkey,FIREFOX_NIGHTLY_110_END,base,x86-64,execution_time,0.018272,0.018272,0.018272,0.018272,0.018272,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,mvt,spidermonkey,FIREFOX_NIGHTLY_110_END,base,x86-64,execution_time,0.019116,0.019116,0.019116,0.019116,0.019116,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,atax,spidermonkey,FIREFOX_NIGHTLY_110_END,base,x86-64,execution_time,0.019266,0.019266,0.019266,0.019266,0.019266,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,gemver,spidermonkey,FIREFOX_NIGHTLY_110_END,base,x86-64,execution_time,0.019942,0.019942,0.019942,0.019942,0.019942,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,trmm,spidermonkey,FIREFOX_NIGHTLY_110_END,base,x86-64,execution_time,0.028662,0.028662,0.028662,0.028662,0.028662,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,doitgen,spidermonkey,FIREFOX_NIGHTLY_110_END,base,x86-64,execution_time,0.033119,0.033119,0.033119,0.033119,0.033119,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,syrk,spidermonkey,FIREFOX_NIGHTLY_110_END,base,x86-64,execution_time,0.030855,0.030855,0.030855,0.030855,0.030855,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,correlation,spidermonkey,FIREFOX_NIGHTLY_110_END,base,x86-64,execution_time,0.035828,0.035828,0.035828,0.035828,0.035828,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,covariance,spidermonkey,FIREFOX_NIGHTLY_110_END,base,x86-64,execution_time,0.036024,0.036024,0.036024,0.036024,0.036024,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,symm,spidermonkey,FIREFOX_NIGHTLY_110_END,base,x86-64,execution_time,0.039616,0.039616,0.039616,0.039616,0.039616,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,syr2k,spidermonkey,FIREFOX_NIGHTLY_110_END,base,x86-64,execution_time,0.042977,0.042977,0.042977,0.042977,0.042977,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,gemm,spidermonkey,FIREFOX_NIGHTLY_110_END,base,x86-64,execution_time,0.042851,0.042851,0.042851,0.042851,0.042851,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,gramschmidt,spidermonkey,FIREFOX_NIGHTLY_110_END,base,x86-64,execution_time,0.048651,0.048651,0.048651,0.048651,0.048651,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,2mm,spidermonkey,FIREFOX_NIGHTLY_110_END,base,x86-64,execution_time,0.053158,0.053158,0.053158,0.053158,0.053158,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,nussinov,spidermonkey,FIREFOX_NIGHTLY_110_END,base,x86-64,execution_time,0.065617,0.065617,0.065617,0.065617,0.065617,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,adi,spidermonkey,FIREFOX_NIGHTLY_110_END,base,x86-64,execution_time,0.116661,0.116661,0.116661,0.116661,0.116661,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,3mm,spidermonkey,FIREFOX_NIGHTLY_110_END,base,x86-64,execution_time,0.074368,0.074368,0.074368,0.074368,0.074368,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,fdtd-2d,spidermonkey,FIREFOX_NIGHTLY_110_END,base,x86-64,execution_time,0.066029,0.066029,0.066029,0.066029,0.066029,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,jacobi-2d,spidermonkey,FIREFOX_NIGHTLY_110_END,base,x86-64,execution_time,0.071079,0.071079,0.071079,0.071079,0.071079,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,seidel-2d,spidermonkey,FIREFOX_NIGHTLY_110_END,base,x86-64,execution_time,0.194229,0.194229,0.194229,0.194229,0.194229,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,heat-3d,spidermonkey,FIREFOX_NIGHTLY_110_END,base,x86-64,execution_time,0.097272,0.097272,0.097272,0.097272,0.097272,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,cholesky,spidermonkey,FIREFOX_NIGHTLY_110_END,base,x86-64,execution_time,0.203264,0.203264,0.203264,0.203264,0.203264,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,ludcmp,spidermonkey,FIREFOX_NIGHTLY_110_END,base,x86-64,execution_time,0.215037,0.215037,0.215037,0.215037,0.215037,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,lu,spidermonkey,FIREFOX_NIGHTLY_110_END,base,x86-64,execution_time,0.231519,0.231519,0.231519,0.231519,0.231519,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,bicg,spidermonkey,FIREFOX_NIGHTLY_110_END,opt,x86-64,execution_time,0.022766,0.022766,0.022766,0.022766,0.022766,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,mvt,spidermonkey,FIREFOX_NIGHTLY_110_END,opt,x86-64,execution_time,0.022925,0.022925,0.022925,0.022925,0.022925,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,atax,spidermonkey,FIREFOX_NIGHTLY_110_END,opt,x86-64,execution_time,0.022723,0.022723,0.022723,0.022723,0.022723,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,gemver,spidermonkey,FIREFOX_NIGHTLY_110_END,opt,x86-64,execution_time,0.023002,0.023002,0.023002,0.023002,0.023002,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,trmm,spidermonkey,FIREFOX_NIGHTLY_110_END,opt,x86-64,execution_time,0.027392,0.027392,0.027392,0.027392,0.027392,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,doitgen,spidermonkey,FIREFOX_NIGHTLY_110_END,opt,x86-64,execution_time,0.02786,0.02786,0.02786,0.02786,0.02786,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,syrk,spidermonkey,FIREFOX_NIGHTLY_110_END,opt,x86-64,execution_time,0.028687,0.028687,0.028687,0.028687,0.028687,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,correlation,spidermonkey,FIREFOX_NIGHTLY_110_END,opt,x86-64,execution_time,0.031584,0.031584,0.031584,0.031584,0.031584,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,covariance,spidermonkey,FIREFOX_NIGHTLY_110_END,opt,x86-64,execution_time,0.031443,0.031443,0.031443,0.031443,0.031443,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,symm,spidermonkey,FIREFOX_NIGHTLY_110_END,opt,x86-64,execution_time,0.034809,0.034809,0.034809,0.034809,0.034809,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,syr2k,spidermonkey,FIREFOX_NIGHTLY_110_END,opt,x86-64,execution_time,0.034604,0.034604,0.034604,0.034604,0.034604,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,gemm,spidermonkey,FIREFOX_NIGHTLY_110_END,opt,x86-64,execution_time,0.032261,0.032261,0.032261,0.032261,0.032261,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,gramschmidt,spidermonkey,FIREFOX_NIGHTLY_110_END,opt,x86-64,execution_time,0.040399,0.040399,0.040399,0.040399,0.040399,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,2mm,spidermonkey,FIREFOX_NIGHTLY_110_END,opt,x86-64,execution_time,0.037399,0.037399,0.037399,0.037399,0.037399,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,nussinov,spidermonkey,FIREFOX_NIGHTLY_110_END,opt,x86-64,execution_time,0.047048,0.047048,0.047048,0.047048,0.047048,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,adi,spidermonkey,FIREFOX_NIGHTLY_110_END,opt,x86-64,execution_time,0.092881,0.092881,0.092881,0.092881,0.092881,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,3mm,spidermonkey,FIREFOX_NIGHTLY_110_END,opt,x86-64,execution_time,0.046943,0.046943,0.046943,0.046943,0.046943,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,fdtd-2d,spidermonkey,FIREFOX_NIGHTLY_110_END,opt,x86-64,execution_time,0.042387,0.042387,0.042387,0.042387,0.042387,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,jacobi-2d,spidermonkey,FIREFOX_NIGHTLY_110_END,opt,x86-64,execution_time,0.043912,0.043912,0.043912,0.043912,0.043912,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,seidel-2d,spidermonkey,FIREFOX_NIGHTLY_110_END,opt,x86-64,execution_time,0.171994,0.171994,0.171994,0.171994,0.171994,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,heat-3d,spidermonkey,FIREFOX_NIGHTLY_110_END,opt,x86-64,execution_time,0.053851,0.053851,0.053851,0.053851,0.053851,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,cholesky,spidermonkey,FIREFOX_NIGHTLY_110_END,opt,x86-64,execution_time,0.106688,0.106688,0.106688,0.106688,0.106688,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,ludcmp,spidermonkey,FIREFOX_NIGHTLY_110_END,opt,x86-64,execution_time,0.118309,0.118309,0.118309,0.118309,0.118309,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,lu,spidermonkey,FIREFOX_NIGHTLY_110_END,opt,x86-64,execution_time,0.121912,0.121912,0.121912,0.121912,0.121912,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,bicg,spidermonkey,FIREFOX_NIGHTLY_109_END,base,x86-64,execution_time,0.019403,0.019403,0.019403,0.019403,0.019403,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,mvt,spidermonkey,FIREFOX_NIGHTLY_109_END,base,x86-64,execution_time,0.020314,0.020314,0.020314,0.020314,0.020314,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,atax,spidermonkey,FIREFOX_NIGHTLY_109_END,base,x86-64,execution_time,0.019033,0.019033,0.019033,0.019033,0.019033,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,gemver,spidermonkey,FIREFOX_NIGHTLY_109_END,base,x86-64,execution_time,0.019728,0.019728,0.019728,0.019728,0.019728,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,trmm,spidermonkey,FIREFOX_NIGHTLY_109_END,base,x86-64,execution_time,0.028561,0.028561,0.028561,0.028561,0.028561,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,doitgen,spidermonkey,FIREFOX_NIGHTLY_109_END,base,x86-64,execution_time,0.033559,0.033559,0.033559,0.033559,0.033559,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,syrk,spidermonkey,FIREFOX_NIGHTLY_109_END,base,x86-64,execution_time,0.031045,0.031045,0.031045,0.031045,0.031045,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,correlation,spidermonkey,FIREFOX_NIGHTLY_109_END,base,x86-64,execution_time,0.036408,0.036408,0.036408,0.036408,0.036408,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,covariance,spidermonkey,FIREFOX_NIGHTLY_109_END,base,x86-64,execution_time,0.035964,0.035964,0.035964,0.035964,0.035964,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,symm,spidermonkey,FIREFOX_NIGHTLY_109_END,base,x86-64,execution_time,0.039139,0.039139,0.039139,0.039139,0.039139,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,syr2k,spidermonkey,FIREFOX_NIGHTLY_109_END,base,x86-64,execution_time,0.043915,0.043915,0.043915,0.043915,0.043915,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,gemm,spidermonkey,FIREFOX_NIGHTLY_109_END,base,x86-64,execution_time,0.043109,0.043109,0.043109,0.043109,0.043109,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,gramschmidt,spidermonkey,FIREFOX_NIGHTLY_109_END,base,x86-64,execution_time,0.048984,0.048984,0.048984,0.048984,0.048984,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,2mm,spidermonkey,FIREFOX_NIGHTLY_109_END,base,x86-64,execution_time,0.053895,0.053895,0.053895,0.053895,0.053895,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,nussinov,spidermonkey,FIREFOX_NIGHTLY_109_END,base,x86-64,execution_time,0.065488,0.065488,0.065488,0.065488,0.065488,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,adi,spidermonkey,FIREFOX_NIGHTLY_109_END,base,x86-64,execution_time,0.116558,0.116558,0.116558,0.116558,0.116558,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,3mm,spidermonkey,FIREFOX_NIGHTLY_109_END,base,x86-64,execution_time,0.074795,0.074795,0.074795,0.074795,0.074795,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,fdtd-2d,spidermonkey,FIREFOX_NIGHTLY_109_END,base,x86-64,execution_time,0.065966,0.065966,0.065966,0.065966,0.065966,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,jacobi-2d,spidermonkey,FIREFOX_NIGHTLY_109_END,base,x86-64,execution_time,0.070976,0.070976,0.070976,0.070976,0.070976,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,seidel-2d,spidermonkey,FIREFOX_NIGHTLY_109_END,base,x86-64,execution_time,0.194646,0.194646,0.194646,0.194646,0.194646,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,heat-3d,spidermonkey,FIREFOX_NIGHTLY_109_END,base,x86-64,execution_time,0.09749,0.09749,0.09749,0.09749,0.09749,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,cholesky,spidermonkey,FIREFOX_NIGHTLY_109_END,base,x86-64,execution_time,0.204031,0.204031,0.204031,0.204031,0.204031,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,ludcmp,spidermonkey,FIREFOX_NIGHTLY_109_END,base,x86-64,execution_time,0.214801,0.214801,0.214801,0.214801,0.214801,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,lu,spidermonkey,FIREFOX_NIGHTLY_109_END,base,x86-64,execution_time,0.232322,0.232322,0.232322,0.232322,0.232322,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,bicg,spidermonkey,FIREFOX_NIGHTLY_109_END,opt,x86-64,execution_time,0.023529,0.023529,0.023529,0.023529,0.023529,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,mvt,spidermonkey,FIREFOX_NIGHTLY_109_END,opt,x86-64,execution_time,0.022314,0.022314,0.022314,0.022314,0.022314,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,atax,spidermonkey,FIREFOX_NIGHTLY_109_END,opt,x86-64,execution_time,0.023006,0.023006,0.023006,0.023006,0.023006,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,gemver,spidermonkey,FIREFOX_NIGHTLY_109_END,opt,x86-64,execution_time,0.023738,0.023738,0.023738,0.023738,0.023738,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,trmm,spidermonkey,FIREFOX_NIGHTLY_109_END,opt,x86-64,execution_time,0.027858,0.027858,0.027858,0.027858,0.027858,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,doitgen,spidermonkey,FIREFOX_NIGHTLY_109_END,opt,x86-64,execution_time,0.027631,0.027631,0.027631,0.027631,0.027631,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,syrk,spidermonkey,FIREFOX_NIGHTLY_109_END,opt,x86-64,execution_time,0.028792,0.028792,0.028792,0.028792,0.028792,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,correlation,spidermonkey,FIREFOX_NIGHTLY_109_END,opt,x86-64,execution_time,0.03203,0.03203,0.03203,0.03203,0.03203,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,covariance,spidermonkey,FIREFOX_NIGHTLY_109_END,opt,x86-64,execution_time,0.032347,0.032347,0.032347,0.032347,0.032347,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,symm,spidermonkey,FIREFOX_NIGHTLY_109_END,opt,x86-64,execution_time,0.034584,0.034584,0.034584,0.034584,0.034584,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,syr2k,spidermonkey,FIREFOX_NIGHTLY_109_END,opt,x86-64,execution_time,0.034744,0.034744,0.034744,0.034744,0.034744,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,gemm,spidermonkey,FIREFOX_NIGHTLY_109_END,opt,x86-64,execution_time,0.033614,0.033614,0.033614,0.033614,0.033614,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,gramschmidt,spidermonkey,FIREFOX_NIGHTLY_109_END,opt,x86-64,execution_time,0.041078,0.041078,0.041078,0.041078,0.041078,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,2mm,spidermonkey,FIREFOX_NIGHTLY_109_END,opt,x86-64,execution_time,0.037836,0.037836,0.037836,0.037836,0.037836,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,nussinov,spidermonkey,FIREFOX_NIGHTLY_109_END,opt,x86-64,execution_time,0.046491,0.046491,0.046491,0.046491,0.046491,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,adi,spidermonkey,FIREFOX_NIGHTLY_109_END,opt,x86-64,execution_time,0.092253,0.092253,0.092253,0.092253,0.092253,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,3mm,spidermonkey,FIREFOX_NIGHTLY_109_END,opt,x86-64,execution_time,0.047811,0.047811,0.047811,0.047811,0.047811,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,fdtd-2d,spidermonkey,FIREFOX_NIGHTLY_109_END,opt,x86-64,execution_time,0.042048,0.042048,0.042048,0.042048,0.042048,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,jacobi-2d,spidermonkey,FIREFOX_NIGHTLY_109_END,opt,x86-64,execution_time,0.044517,0.044517,0.044517,0.044517,0.044517,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,seidel-2d,spidermonkey,FIREFOX_NIGHTLY_109_END,opt,x86-64,execution_time,0.172529,0.172529,0.172529,0.172529,0.172529,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,heat-3d,spidermonkey,FIREFOX_NIGHTLY_109_END,opt,x86-64,execution_time,0.055103,0.055103,0.055103,0.055103,0.055103,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,cholesky,spidermonkey,FIREFOX_NIGHTLY_109_END,opt,x86-64,execution_time,0.107284,0.107284,0.107284,0.107284,0.107284,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,ludcmp,spidermonkey,FIREFOX_NIGHTLY_109_END,opt,x86-64,execution_time,0.118744,0.118744,0.118744,0.118744,0.118744,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,lu,spidermonkey,FIREFOX_NIGHTLY_109_END,opt,x86-64,execution_time,0.122542,0.122542,0.122542,0.122542,0.122542,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,bicg,spidermonkey,FIREFOX_NIGHTLY_108_END,base,x86-64,execution_time,0.018492,0.018492,0.018492,0.018492,0.018492,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,mvt,spidermonkey,FIREFOX_NIGHTLY_108_END,base,x86-64,execution_time,0.018847,0.018847,0.018847,0.018847,0.018847,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,atax,spidermonkey,FIREFOX_NIGHTLY_108_END,base,x86-64,execution_time,0.019315,0.019315,0.019315,0.019315,0.019315,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,gemver,spidermonkey,FIREFOX_NIGHTLY_108_END,base,x86-64,execution_time,0.020013,0.020013,0.020013,0.020013,0.020013,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,trmm,spidermonkey,FIREFOX_NIGHTLY_108_END,base,x86-64,execution_time,0.028901,0.028901,0.028901,0.028901,0.028901,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,doitgen,spidermonkey,FIREFOX_NIGHTLY_108_END,base,x86-64,execution_time,0.033856,0.033856,0.033856,0.033856,0.033856,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,syrk,spidermonkey,FIREFOX_NIGHTLY_108_END,base,x86-64,execution_time,0.03129,0.03129,0.03129,0.03129,0.03129,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,correlation,spidermonkey,FIREFOX_NIGHTLY_108_END,base,x86-64,execution_time,0.035822,0.035822,0.035822,0.035822,0.035822,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,covariance,spidermonkey,FIREFOX_NIGHTLY_108_END,base,x86-64,execution_time,0.036532,0.036532,0.036532,0.036532,0.036532,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,symm,spidermonkey,FIREFOX_NIGHTLY_108_END,base,x86-64,execution_time,0.039931,0.039931,0.039931,0.039931,0.039931,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,syr2k,spidermonkey,FIREFOX_NIGHTLY_108_END,base,x86-64,execution_time,0.043638,0.043638,0.043638,0.043638,0.043638,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,gemm,spidermonkey,FIREFOX_NIGHTLY_108_END,base,x86-64,execution_time,0.043521,0.043521,0.043521,0.043521,0.043521,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,gramschmidt,spidermonkey,FIREFOX_NIGHTLY_108_END,base,x86-64,execution_time,0.049474,0.049474,0.049474,0.049474,0.049474,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,2mm,spidermonkey,FIREFOX_NIGHTLY_108_END,base,x86-64,execution_time,0.054614,0.054614,0.054614,0.054614,0.054614,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,nussinov,spidermonkey,FIREFOX_NIGHTLY_108_END,base,x86-64,execution_time,0.065331,0.065331,0.065331,0.065331,0.065331,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,adi,spidermonkey,FIREFOX_NIGHTLY_108_END,base,x86-64,execution_time,0.116548,0.116548,0.116548,0.116548,0.116548,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,3mm,spidermonkey,FIREFOX_NIGHTLY_108_END,base,x86-64,execution_time,0.074584,0.074584,0.074584,0.074584,0.074584,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,fdtd-2d,spidermonkey,FIREFOX_NIGHTLY_108_END,base,x86-64,execution_time,0.066262,0.066262,0.066262,0.066262,0.066262,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,jacobi-2d,spidermonkey,FIREFOX_NIGHTLY_108_END,base,x86-64,execution_time,0.071802,0.071802,0.071802,0.071802,0.071802,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,seidel-2d,spidermonkey,FIREFOX_NIGHTLY_108_END,base,x86-64,execution_time,0.194678,0.194678,0.194678,0.194678,0.194678,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,heat-3d,spidermonkey,FIREFOX_NIGHTLY_108_END,base,x86-64,execution_time,0.097978,0.097978,0.097978,0.097978,0.097978,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,cholesky,spidermonkey,FIREFOX_NIGHTLY_108_END,base,x86-64,execution_time,0.203468,0.203468,0.203468,0.203468,0.203468,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,ludcmp,spidermonkey,FIREFOX_NIGHTLY_108_END,base,x86-64,execution_time,0.216223,0.216223,0.216223,0.216223,0.216223,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,lu,spidermonkey,FIREFOX_NIGHTLY_108_END,base,x86-64,execution_time,0.231832,0.231832,0.231832,0.231832,0.231832,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,bicg,spidermonkey,FIREFOX_NIGHTLY_108_END,opt,x86-64,execution_time,0.02896,0.02896,0.02896,0.02896,0.02896,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,mvt,spidermonkey,FIREFOX_NIGHTLY_108_END,opt,x86-64,execution_time,0.022543,0.022543,0.022543,0.022543,0.022543,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,atax,spidermonkey,FIREFOX_NIGHTLY_108_END,opt,x86-64,execution_time,0.023137,0.023137,0.023137,0.023137,0.023137,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,gemver,spidermonkey,FIREFOX_NIGHTLY_108_END,opt,x86-64,execution_time,0.022914,0.022914,0.022914,0.022914,0.022914,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,trmm,spidermonkey,FIREFOX_NIGHTLY_108_END,opt,x86-64,execution_time,0.028381,0.028381,0.028381,0.028381,0.028381,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,doitgen,spidermonkey,FIREFOX_NIGHTLY_108_END,opt,x86-64,execution_time,0.028048,0.028048,0.028048,0.028048,0.028048,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,syrk,spidermonkey,FIREFOX_NIGHTLY_108_END,opt,x86-64,execution_time,0.028126,0.028126,0.028126,0.028126,0.028126,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,correlation,spidermonkey,FIREFOX_NIGHTLY_108_END,opt,x86-64,execution_time,0.032023,0.032023,0.032023,0.032023,0.032023,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,covariance,spidermonkey,FIREFOX_NIGHTLY_108_END,opt,x86-64,execution_time,0.031823,0.031823,0.031823,0.031823,0.031823,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,symm,spidermonkey,FIREFOX_NIGHTLY_108_END,opt,x86-64,execution_time,0.035332,0.035332,0.035332,0.035332,0.035332,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,syr2k,spidermonkey,FIREFOX_NIGHTLY_108_END,opt,x86-64,execution_time,0.034794,0.034794,0.034794,0.034794,0.034794,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,gemm,spidermonkey,FIREFOX_NIGHTLY_108_END,opt,x86-64,execution_time,0.033022,0.033022,0.033022,0.033022,0.033022,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,gramschmidt,spidermonkey,FIREFOX_NIGHTLY_108_END,opt,x86-64,execution_time,0.039647,0.039647,0.039647,0.039647,0.039647,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,2mm,spidermonkey,FIREFOX_NIGHTLY_108_END,opt,x86-64,execution_time,0.038658,0.038658,0.038658,0.038658,0.038658,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,nussinov,spidermonkey,FIREFOX_NIGHTLY_108_END,opt,x86-64,execution_time,0.046578,0.046578,0.046578,0.046578,0.046578,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,adi,spidermonkey,FIREFOX_NIGHTLY_108_END,opt,x86-64,execution_time,0.092269,0.092269,0.092269,0.092269,0.092269,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,3mm,spidermonkey,FIREFOX_NIGHTLY_108_END,opt,x86-64,execution_time,0.047157,0.047157,0.047157,0.047157,0.047157,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,fdtd-2d,spidermonkey,FIREFOX_NIGHTLY_108_END,opt,x86-64,execution_time,0.043175,0.043175,0.043175,0.043175,0.043175,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,jacobi-2d,spidermonkey,FIREFOX_NIGHTLY_108_END,opt,x86-64,execution_time,0.043776,0.043776,0.043776,0.043776,0.043776,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,seidel-2d,spidermonkey,FIREFOX_NIGHTLY_108_END,opt,x86-64,execution_time,0.171972,0.171972,0.171972,0.171972,0.171972,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,heat-3d,spidermonkey,FIREFOX_NIGHTLY_108_END,opt,x86-64,execution_time,0.054627,0.054627,0.054627,0.054627,0.054627,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,cholesky,spidermonkey,FIREFOX_NIGHTLY_108_END,opt,x86-64,execution_time,0.109181,0.109181,0.109181,0.109181,0.109181,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,ludcmp,spidermonkey,FIREFOX_NIGHTLY_108_END,opt,x86-64,execution_time,0.118952,0.118952,0.118952,0.118952,0.118952,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,lu,spidermonkey,FIREFOX_NIGHTLY_108_END,opt,x86-64,execution_time,0.122366,0.122366,0.122366,0.122366,0.122366,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,bicg,spidermonkey,FIREFOX_NIGHTLY_107_END,base,x86-64,execution_time,0.01954,0.01954,0.01954,0.01954,0.01954,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,mvt,spidermonkey,FIREFOX_NIGHTLY_107_END,base,x86-64,execution_time,0.019857,0.019857,0.019857,0.019857,0.019857,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,atax,spidermonkey,FIREFOX_NIGHTLY_107_END,base,x86-64,execution_time,0.01969,0.01969,0.01969,0.01969,0.01969,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,gemver,spidermonkey,FIREFOX_NIGHTLY_107_END,base,x86-64,execution_time,0.02,0.02,0.02,0.02,0.02,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,trmm,spidermonkey,FIREFOX_NIGHTLY_107_END,base,x86-64,execution_time,0.028998,0.028998,0.028998,0.028998,0.028998,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,doitgen,spidermonkey,FIREFOX_NIGHTLY_107_END,base,x86-64,execution_time,0.034112,0.034112,0.034112,0.034112,0.034112,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,syrk,spidermonkey,FIREFOX_NIGHTLY_107_END,base,x86-64,execution_time,0.031894,0.031894,0.031894,0.031894,0.031894,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,correlation,spidermonkey,FIREFOX_NIGHTLY_107_END,base,x86-64,execution_time,0.036374,0.036374,0.036374,0.036374,0.036374,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,covariance,spidermonkey,FIREFOX_NIGHTLY_107_END,base,x86-64,execution_time,0.036331,0.036331,0.036331,0.036331,0.036331,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,symm,spidermonkey,FIREFOX_NIGHTLY_107_END,base,x86-64,execution_time,0.040018,0.040018,0.040018,0.040018,0.040018,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,syr2k,spidermonkey,FIREFOX_NIGHTLY_107_END,base,x86-64,execution_time,0.043133,0.043133,0.043133,0.043133,0.043133,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,gemm,spidermonkey,FIREFOX_NIGHTLY_107_END,base,x86-64,execution_time,0.043712,0.043712,0.043712,0.043712,0.043712,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,gramschmidt,spidermonkey,FIREFOX_NIGHTLY_107_END,base,x86-64,execution_time,0.04898,0.04898,0.04898,0.04898,0.04898,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,2mm,spidermonkey,FIREFOX_NIGHTLY_107_END,base,x86-64,execution_time,0.053623,0.053623,0.053623,0.053623,0.053623,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,nussinov,spidermonkey,FIREFOX_NIGHTLY_107_END,base,x86-64,execution_time,0.065464,0.065464,0.065464,0.065464,0.065464,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,adi,spidermonkey,FIREFOX_NIGHTLY_107_END,base,x86-64,execution_time,0.116393,0.116393,0.116393,0.116393,0.116393,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,3mm,spidermonkey,FIREFOX_NIGHTLY_107_END,base,x86-64,execution_time,0.075393,0.075393,0.075393,0.075393,0.075393,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,fdtd-2d,spidermonkey,FIREFOX_NIGHTLY_107_END,base,x86-64,execution_time,0.065681,0.065681,0.065681,0.065681,0.065681,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,jacobi-2d,spidermonkey,FIREFOX_NIGHTLY_107_END,base,x86-64,execution_time,0.070899,0.070899,0.070899,0.070899,0.070899,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,seidel-2d,spidermonkey,FIREFOX_NIGHTLY_107_END,base,x86-64,execution_time,0.195037,0.195037,0.195037,0.195037,0.195037,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,heat-3d,spidermonkey,FIREFOX_NIGHTLY_107_END,base,x86-64,execution_time,0.097791,0.097791,0.097791,0.097791,0.097791,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,cholesky,spidermonkey,FIREFOX_NIGHTLY_107_END,base,x86-64,execution_time,0.204082,0.204082,0.204082,0.204082,0.204082,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,ludcmp,spidermonkey,FIREFOX_NIGHTLY_107_END,base,x86-64,execution_time,0.214487,0.214487,0.214487,0.214487,0.214487,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,lu,spidermonkey,FIREFOX_NIGHTLY_107_END,base,x86-64,execution_time,0.23133,0.23133,0.23133,0.23133,0.23133,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,bicg,spidermonkey,FIREFOX_NIGHTLY_107_END,opt,x86-64,execution_time,0.024296,0.024296,0.024296,0.024296,0.024296,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,mvt,spidermonkey,FIREFOX_NIGHTLY_107_END,opt,x86-64,execution_time,0.022635,0.022635,0.022635,0.022635,0.022635,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,atax,spidermonkey,FIREFOX_NIGHTLY_107_END,opt,x86-64,execution_time,0.023562,0.023562,0.023562,0.023562,0.023562,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,gemver,spidermonkey,FIREFOX_NIGHTLY_107_END,opt,x86-64,execution_time,0.024449,0.024449,0.024449,0.024449,0.024449,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,trmm,spidermonkey,FIREFOX_NIGHTLY_107_END,opt,x86-64,execution_time,0.028273,0.028273,0.028273,0.028273,0.028273,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,doitgen,spidermonkey,FIREFOX_NIGHTLY_107_END,opt,x86-64,execution_time,0.027422,0.027422,0.027422,0.027422,0.027422,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,syrk,spidermonkey,FIREFOX_NIGHTLY_107_END,opt,x86-64,execution_time,0.029212,0.029212,0.029212,0.029212,0.029212,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,correlation,spidermonkey,FIREFOX_NIGHTLY_107_END,opt,x86-64,execution_time,0.033427,0.033427,0.033427,0.033427,0.033427,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,covariance,spidermonkey,FIREFOX_NIGHTLY_107_END,opt,x86-64,execution_time,0.031682,0.031682,0.031682,0.031682,0.031682,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,symm,spidermonkey,FIREFOX_NIGHTLY_107_END,opt,x86-64,execution_time,0.036217,0.036217,0.036217,0.036217,0.036217,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,syr2k,spidermonkey,FIREFOX_NIGHTLY_107_END,opt,x86-64,execution_time,0.035135,0.035135,0.035135,0.035135,0.035135,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,gemm,spidermonkey,FIREFOX_NIGHTLY_107_END,opt,x86-64,execution_time,0.033873,0.033873,0.033873,0.033873,0.033873,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,gramschmidt,spidermonkey,FIREFOX_NIGHTLY_107_END,opt,x86-64,execution_time,0.040741,0.040741,0.040741,0.040741,0.040741,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,2mm,spidermonkey,FIREFOX_NIGHTLY_107_END,opt,x86-64,execution_time,0.037116,0.037116,0.037116,0.037116,0.037116,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,nussinov,spidermonkey,FIREFOX_NIGHTLY_107_END,opt,x86-64,execution_time,0.045945,0.045945,0.045945,0.045945,0.045945,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,adi,spidermonkey,FIREFOX_NIGHTLY_107_END,opt,x86-64,execution_time,0.092924,0.092924,0.092924,0.092924,0.092924,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,3mm,spidermonkey,FIREFOX_NIGHTLY_107_END,opt,x86-64,execution_time,0.047131,0.047131,0.047131,0.047131,0.047131,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,fdtd-2d,spidermonkey,FIREFOX_NIGHTLY_107_END,opt,x86-64,execution_time,0.042405,0.042405,0.042405,0.042405,0.042405,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,jacobi-2d,spidermonkey,FIREFOX_NIGHTLY_107_END,opt,x86-64,execution_time,0.044881,0.044881,0.044881,0.044881,0.044881,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,seidel-2d,spidermonkey,FIREFOX_NIGHTLY_107_END,opt,x86-64,execution_time,0.171596,0.171596,0.171596,0.171596,0.171596,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,heat-3d,spidermonkey,FIREFOX_NIGHTLY_107_END,opt,x86-64,execution_time,0.05419,0.05419,0.05419,0.05419,0.05419,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,cholesky,spidermonkey,FIREFOX_NIGHTLY_107_END,opt,x86-64,execution_time,0.107873,0.107873,0.107873,0.107873,0.107873,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,ludcmp,spidermonkey,FIREFOX_NIGHTLY_107_END,opt,x86-64,execution_time,0.118636,0.118636,0.118636,0.118636,0.118636,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,lu,spidermonkey,FIREFOX_NIGHTLY_107_END,opt,x86-64,execution_time,0.122559,0.122559,0.122559,0.122559,0.122559,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,bicg,spidermonkey,FIREFOX_NIGHTLY_106_END,base,x86-64,execution_time,0.02,0.02,0.02,0.02,0.02,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,mvt,spidermonkey,FIREFOX_NIGHTLY_106_END,base,x86-64,execution_time,0.019876,0.019876,0.019876,0.019876,0.019876,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,atax,spidermonkey,FIREFOX_NIGHTLY_106_END,base,x86-64,execution_time,0.01932,0.01932,0.01932,0.01932,0.01932,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,gemver,spidermonkey,FIREFOX_NIGHTLY_106_END,base,x86-64,execution_time,0.019996,0.019996,0.019996,0.019996,0.019996,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,trmm,spidermonkey,FIREFOX_NIGHTLY_106_END,base,x86-64,execution_time,0.029128,0.029128,0.029128,0.029128,0.029128,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,doitgen,spidermonkey,FIREFOX_NIGHTLY_106_END,base,x86-64,execution_time,0.033793,0.033793,0.033793,0.033793,0.033793,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,syrk,spidermonkey,FIREFOX_NIGHTLY_106_END,base,x86-64,execution_time,0.031373,0.031373,0.031373,0.031373,0.031373,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,correlation,spidermonkey,FIREFOX_NIGHTLY_106_END,base,x86-64,execution_time,0.03638,0.03638,0.03638,0.03638,0.03638,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,covariance,spidermonkey,FIREFOX_NIGHTLY_106_END,base,x86-64,execution_time,0.036618,0.036618,0.036618,0.036618,0.036618,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,symm,spidermonkey,FIREFOX_NIGHTLY_106_END,base,x86-64,execution_time,0.039718,0.039718,0.039718,0.039718,0.039718,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,syr2k,spidermonkey,FIREFOX_NIGHTLY_106_END,base,x86-64,execution_time,0.043349,0.043349,0.043349,0.043349,0.043349,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,gemm,spidermonkey,FIREFOX_NIGHTLY_106_END,base,x86-64,execution_time,0.043809,0.043809,0.043809,0.043809,0.043809,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,gramschmidt,spidermonkey,FIREFOX_NIGHTLY_106_END,base,x86-64,execution_time,0.049813,0.049813,0.049813,0.049813,0.049813,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,2mm,spidermonkey,FIREFOX_NIGHTLY_106_END,base,x86-64,execution_time,0.054042,0.054042,0.054042,0.054042,0.054042,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,nussinov,spidermonkey,FIREFOX_NIGHTLY_106_END,base,x86-64,execution_time,0.06586,0.06586,0.06586,0.06586,0.06586,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,adi,spidermonkey,FIREFOX_NIGHTLY_106_END,base,x86-64,execution_time,0.117545,0.117545,0.117545,0.117545,0.117545,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,3mm,spidermonkey,FIREFOX_NIGHTLY_106_END,base,x86-64,execution_time,0.074783,0.074783,0.074783,0.074783,0.074783,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,fdtd-2d,spidermonkey,FIREFOX_NIGHTLY_106_END,base,x86-64,execution_time,0.066035,0.066035,0.066035,0.066035,0.066035,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,jacobi-2d,spidermonkey,FIREFOX_NIGHTLY_106_END,base,x86-64,execution_time,0.070976,0.070976,0.070976,0.070976,0.070976,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,seidel-2d,spidermonkey,FIREFOX_NIGHTLY_106_END,base,x86-64,execution_time,0.194699,0.194699,0.194699,0.194699,0.194699,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,heat-3d,spidermonkey,FIREFOX_NIGHTLY_106_END,base,x86-64,execution_time,0.098172,0.098172,0.098172,0.098172,0.098172,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,cholesky,spidermonkey,FIREFOX_NIGHTLY_106_END,base,x86-64,execution_time,0.204283,0.204283,0.204283,0.204283,0.204283,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,ludcmp,spidermonkey,FIREFOX_NIGHTLY_106_END,base,x86-64,execution_time,0.214666,0.214666,0.214666,0.214666,0.214666,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,lu,spidermonkey,FIREFOX_NIGHTLY_106_END,base,x86-64,execution_time,0.231619,0.231619,0.231619,0.231619,0.231619,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,bicg,spidermonkey,FIREFOX_NIGHTLY_106_END,opt,x86-64,execution_time,0.023402,0.023402,0.023402,0.023402,0.023402,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,mvt,spidermonkey,FIREFOX_NIGHTLY_106_END,opt,x86-64,execution_time,0.022774,0.022774,0.022774,0.022774,0.022774,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,atax,spidermonkey,FIREFOX_NIGHTLY_106_END,opt,x86-64,execution_time,0.02236,0.02236,0.02236,0.02236,0.02236,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,gemver,spidermonkey,FIREFOX_NIGHTLY_106_END,opt,x86-64,execution_time,0.023587,0.023587,0.023587,0.023587,0.023587,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,trmm,spidermonkey,FIREFOX_NIGHTLY_106_END,opt,x86-64,execution_time,0.027816,0.027816,0.027816,0.027816,0.027816,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,doitgen,spidermonkey,FIREFOX_NIGHTLY_106_END,opt,x86-64,execution_time,0.028215,0.028215,0.028215,0.028215,0.028215,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,syrk,spidermonkey,FIREFOX_NIGHTLY_106_END,opt,x86-64,execution_time,0.028566,0.028566,0.028566,0.028566,0.028566,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,correlation,spidermonkey,FIREFOX_NIGHTLY_106_END,opt,x86-64,execution_time,0.032569,0.032569,0.032569,0.032569,0.032569,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,covariance,spidermonkey,FIREFOX_NIGHTLY_106_END,opt,x86-64,execution_time,0.031654,0.031654,0.031654,0.031654,0.031654,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,symm,spidermonkey,FIREFOX_NIGHTLY_106_END,opt,x86-64,execution_time,0.035134,0.035134,0.035134,0.035134,0.035134,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,syr2k,spidermonkey,FIREFOX_NIGHTLY_106_END,opt,x86-64,execution_time,0.03472,0.03472,0.03472,0.03472,0.03472,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,gemm,spidermonkey,FIREFOX_NIGHTLY_106_END,opt,x86-64,execution_time,0.033894,0.033894,0.033894,0.033894,0.033894,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,gramschmidt,spidermonkey,FIREFOX_NIGHTLY_106_END,opt,x86-64,execution_time,0.03959,0.03959,0.03959,0.03959,0.03959,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,2mm,spidermonkey,FIREFOX_NIGHTLY_106_END,opt,x86-64,execution_time,0.037066,0.037066,0.037066,0.037066,0.037066,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,nussinov,spidermonkey,FIREFOX_NIGHTLY_106_END,opt,x86-64,execution_time,0.047121,0.047121,0.047121,0.047121,0.047121,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,adi,spidermonkey,FIREFOX_NIGHTLY_106_END,opt,x86-64,execution_time,0.09294,0.09294,0.09294,0.09294,0.09294,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,3mm,spidermonkey,FIREFOX_NIGHTLY_106_END,opt,x86-64,execution_time,0.048405,0.048405,0.048405,0.048405,0.048405,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,fdtd-2d,spidermonkey,FIREFOX_NIGHTLY_106_END,opt,x86-64,execution_time,0.042681,0.042681,0.042681,0.042681,0.042681,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,jacobi-2d,spidermonkey,FIREFOX_NIGHTLY_106_END,opt,x86-64,execution_time,0.044361,0.044361,0.044361,0.044361,0.044361,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,seidel-2d,spidermonkey,FIREFOX_NIGHTLY_106_END,opt,x86-64,execution_time,0.172757,0.172757,0.172757,0.172757,0.172757,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,heat-3d,spidermonkey,FIREFOX_NIGHTLY_106_END,opt,x86-64,execution_time,0.054171,0.054171,0.054171,0.054171,0.054171,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,cholesky,spidermonkey,FIREFOX_NIGHTLY_106_END,opt,x86-64,execution_time,0.108076,0.108076,0.108076,0.108076,0.108076,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,ludcmp,spidermonkey,FIREFOX_NIGHTLY_106_END,opt,x86-64,execution_time,0.118239,0.118239,0.118239,0.118239,0.118239,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,lu,spidermonkey,FIREFOX_NIGHTLY_106_END,opt,x86-64,execution_time,0.122469,0.122469,0.122469,0.122469,0.122469,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,bicg,v8,f7500a2c4a,liftoff,x86-64,execution_time,0.014227,0.014227,0.014227,0.014227,0.014227,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,mvt,v8,f7500a2c4a,liftoff,x86-64,execution_time,0.013343,0.013343,0.013343,0.013343,0.013343,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,atax,v8,f7500a2c4a,liftoff,x86-64,execution_time,0.013743,0.013743,0.013743,0.013743,0.013743,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,gemver,v8,f7500a2c4a,liftoff,x86-64,execution_time,0.013393,0.013393,0.013393,0.013393,0.013393,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,trmm,v8,f7500a2c4a,liftoff,x86-64,execution_time,0.021756,0.021756,0.021756,0.021756,0.021756,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,doitgen,v8,f7500a2c4a,liftoff,x86-64,execution_time,0.022445,0.022445,0.022445,0.022445,0.022445,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,syrk,v8,f7500a2c4a,liftoff,x86-64,execution_time,0.026527,0.026527,0.026527,0.026527,0.026527,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,correlation,v8,f7500a2c4a,liftoff,x86-64,execution_time,0.028667,0.028667,0.028667,0.028667,0.028667,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,covariance,v8,f7500a2c4a,liftoff,x86-64,execution_time,0.029274,0.029274,0.029274,0.029274,0.029274,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,symm,v8,f7500a2c4a,liftoff,x86-64,execution_time,0.033442,0.033442,0.033442,0.033442,0.033442,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,syr2k,v8,f7500a2c4a,liftoff,x86-64,execution_time,0.037012,0.037012,0.037012,0.037012,0.037012,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,gemm,v8,f7500a2c4a,liftoff,x86-64,execution_time,0.032071,0.032071,0.032071,0.032071,0.032071,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,gramschmidt,v8,f7500a2c4a,liftoff,x86-64,execution_time,0.039469,0.039469,0.039469,0.039469,0.039469,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,2mm,v8,f7500a2c4a,liftoff,x86-64,execution_time,0.041953,0.041953,0.041953,0.041953,0.041953,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,nussinov,v8,f7500a2c4a,liftoff,x86-64,execution_time,0.066264,0.066264,0.066264,0.066264,0.066264,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,adi,v8,f7500a2c4a,liftoff,x86-64,execution_time,0.103568,0.103568,0.103568,0.103568,0.103568,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,3mm,v8,f7500a2c4a,liftoff,x86-64,execution_time,0.063197,0.063197,0.063197,0.063197,0.063197,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,fdtd-2d,v8,f7500a2c4a,liftoff,x86-64,execution_time,0.051931,0.051931,0.051931,0.051931,0.051931,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,jacobi-2d,v8,f7500a2c4a,liftoff,x86-64,execution_time,0.062615,0.062615,0.062615,0.062615,0.062615,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,seidel-2d,v8,f7500a2c4a,liftoff,x86-64,execution_time,0.191748,0.191748,0.191748,0.191748,0.191748,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,heat-3d,v8,f7500a2c4a,liftoff,x86-64,execution_time,0.090711,0.090711,0.090711,0.090711,0.090711,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,cholesky,v8,f7500a2c4a,liftoff,x86-64,execution_time,0.192339,0.192339,0.192339,0.192339,0.192339,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,ludcmp,v8,f7500a2c4a,liftoff,x86-64,execution_time,0.201528,0.201528,0.201528,0.201528,0.201528,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,lu,v8,f7500a2c4a,liftoff,x86-64,execution_time,0.21671,0.21671,0.21671,0.21671,0.21671,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,bicg,v8,18a6255a7b,liftoff,x86-64,execution_time,0.01412,0.01412,0.01412,0.01412,0.01412,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,mvt,v8,18a6255a7b,liftoff,x86-64,execution_time,0.01383,0.01383,0.01383,0.01383,0.01383,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,atax,v8,18a6255a7b,liftoff,x86-64,execution_time,0.013499,0.013499,0.013499,0.013499,0.013499,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,gemver,v8,18a6255a7b,liftoff,x86-64,execution_time,0.013615,0.013615,0.013615,0.013615,0.013615,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,trmm,v8,18a6255a7b,liftoff,x86-64,execution_time,0.021451,0.021451,0.021451,0.021451,0.021451,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,doitgen,v8,18a6255a7b,liftoff,x86-64,execution_time,0.022571,0.022571,0.022571,0.022571,0.022571,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,syrk,v8,18a6255a7b,liftoff,x86-64,execution_time,0.026705,0.026705,0.026705,0.026705,0.026705,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,correlation,v8,18a6255a7b,liftoff,x86-64,execution_time,0.028424,0.028424,0.028424,0.028424,0.028424,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,covariance,v8,18a6255a7b,liftoff,x86-64,execution_time,0.028946,0.028946,0.028946,0.028946,0.028946,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,symm,v8,18a6255a7b,liftoff,x86-64,execution_time,0.033679,0.033679,0.033679,0.033679,0.033679,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,syr2k,v8,18a6255a7b,liftoff,x86-64,execution_time,0.037075,0.037075,0.037075,0.037075,0.037075,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,gemm,v8,18a6255a7b,liftoff,x86-64,execution_time,0.032586,0.032586,0.032586,0.032586,0.032586,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,gramschmidt,v8,18a6255a7b,liftoff,x86-64,execution_time,0.039996,0.039996,0.039996,0.039996,0.039996,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,2mm,v8,18a6255a7b,liftoff,x86-64,execution_time,0.04159,0.04159,0.04159,0.04159,0.04159,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,nussinov,v8,18a6255a7b,liftoff,x86-64,execution_time,0.065738,0.065738,0.065738,0.065738,0.065738,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,adi,v8,18a6255a7b,liftoff,x86-64,execution_time,0.103532,0.103532,0.103532,0.103532,0.103532,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,3mm,v8,18a6255a7b,liftoff,x86-64,execution_time,0.064177,0.064177,0.064177,0.064177,0.064177,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,fdtd-2d,v8,18a6255a7b,liftoff,x86-64,execution_time,0.052069,0.052069,0.052069,0.052069,0.052069,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,jacobi-2d,v8,18a6255a7b,liftoff,x86-64,execution_time,0.062549,0.062549,0.062549,0.062549,0.062549,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,seidel-2d,v8,18a6255a7b,liftoff,x86-64,execution_time,0.191168,0.191168,0.191168,0.191168,0.191168,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,heat-3d,v8,18a6255a7b,liftoff,x86-64,execution_time,0.090786,0.090786,0.090786,0.090786,0.090786,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,cholesky,v8,18a6255a7b,liftoff,x86-64,execution_time,0.192375,0.192375,0.192375,0.192375,0.192375,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,ludcmp,v8,18a6255a7b,liftoff,x86-64,execution_time,0.200791,0.200791,0.200791,0.200791,0.200791,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,lu,v8,18a6255a7b,liftoff,x86-64,execution_time,0.212844,0.212844,0.212844,0.212844,0.212844,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,bicg,v8,0768a17a89,liftoff,x86-64,execution_time,0.01351,0.01351,0.01351,0.01351,0.01351,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,mvt,v8,0768a17a89,liftoff,x86-64,execution_time,0.012649,0.012649,0.012649,0.012649,0.012649,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,atax,v8,0768a17a89,liftoff,x86-64,execution_time,0.012799,0.012799,0.012799,0.012799,0.012799,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,gemver,v8,0768a17a89,liftoff,x86-64,execution_time,0.013425,0.013425,0.013425,0.013425,0.013425,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,trmm,v8,0768a17a89,liftoff,x86-64,execution_time,0.02125,0.02125,0.02125,0.02125,0.02125,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,doitgen,v8,0768a17a89,liftoff,x86-64,execution_time,0.023077,0.023077,0.023077,0.023077,0.023077,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,syrk,v8,0768a17a89,liftoff,x86-64,execution_time,0.026234,0.026234,0.026234,0.026234,0.026234,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,correlation,v8,0768a17a89,liftoff,x86-64,execution_time,0.028875,0.028875,0.028875,0.028875,0.028875,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,covariance,v8,0768a17a89,liftoff,x86-64,execution_time,0.028867,0.028867,0.028867,0.028867,0.028867,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,symm,v8,0768a17a89,liftoff,x86-64,execution_time,0.033811,0.033811,0.033811,0.033811,0.033811,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,syr2k,v8,0768a17a89,liftoff,x86-64,execution_time,0.036739,0.036739,0.036739,0.036739,0.036739,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,gemm,v8,0768a17a89,liftoff,x86-64,execution_time,0.031799,0.031799,0.031799,0.031799,0.031799,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,gramschmidt,v8,0768a17a89,liftoff,x86-64,execution_time,0.039115,0.039115,0.039115,0.039115,0.039115,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,2mm,v8,0768a17a89,liftoff,x86-64,execution_time,0.04187,0.04187,0.04187,0.04187,0.04187,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,nussinov,v8,0768a17a89,liftoff,x86-64,execution_time,0.066594,0.066594,0.066594,0.066594,0.066594,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,adi,v8,0768a17a89,liftoff,x86-64,execution_time,0.103451,0.103451,0.103451,0.103451,0.103451,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,3mm,v8,0768a17a89,liftoff,x86-64,execution_time,0.063452,0.063452,0.063452,0.063452,0.063452,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,fdtd-2d,v8,0768a17a89,liftoff,x86-64,execution_time,0.052228,0.052228,0.052228,0.052228,0.052228,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,jacobi-2d,v8,0768a17a89,liftoff,x86-64,execution_time,0.062888,0.062888,0.062888,0.062888,0.062888,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,seidel-2d,v8,0768a17a89,liftoff,x86-64,execution_time,0.19172,0.19172,0.19172,0.19172,0.19172,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,heat-3d,v8,0768a17a89,liftoff,x86-64,execution_time,0.090266,0.090266,0.090266,0.090266,0.090266,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,cholesky,v8,0768a17a89,liftoff,x86-64,execution_time,0.192387,0.192387,0.192387,0.192387,0.192387,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,ludcmp,v8,0768a17a89,liftoff,x86-64,execution_time,0.200605,0.200605,0.200605,0.200605,0.200605,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,lu,v8,0768a17a89,liftoff,x86-64,execution_time,0.212323,0.212323,0.212323,0.212323,0.212323,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,bicg,v8,b80e2601a9,liftoff,x86-64,execution_time,0.014381,0.014381,0.014381,0.014381,0.014381,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,mvt,v8,b80e2601a9,liftoff,x86-64,execution_time,0.013949,0.013949,0.013949,0.013949,0.013949,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,atax,v8,b80e2601a9,liftoff,x86-64,execution_time,0.013368,0.013368,0.013368,0.013368,0.013368,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,gemver,v8,b80e2601a9,liftoff,x86-64,execution_time,0.013603,0.013603,0.013603,0.013603,0.013603,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,trmm,v8,b80e2601a9,liftoff,x86-64,execution_time,0.022309,0.022309,0.022309,0.022309,0.022309,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,doitgen,v8,b80e2601a9,liftoff,x86-64,execution_time,0.022899,0.022899,0.022899,0.022899,0.022899,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,syrk,v8,b80e2601a9,liftoff,x86-64,execution_time,0.026109,0.026109,0.026109,0.026109,0.026109,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,correlation,v8,b80e2601a9,liftoff,x86-64,execution_time,0.028852,0.028852,0.028852,0.028852,0.028852,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,covariance,v8,b80e2601a9,liftoff,x86-64,execution_time,0.029519,0.029519,0.029519,0.029519,0.029519,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,symm,v8,b80e2601a9,liftoff,x86-64,execution_time,0.035052,0.035052,0.035052,0.035052,0.035052,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,syr2k,v8,b80e2601a9,liftoff,x86-64,execution_time,0.03714,0.03714,0.03714,0.03714,0.03714,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,gemm,v8,b80e2601a9,liftoff,x86-64,execution_time,0.031555,0.031555,0.031555,0.031555,0.031555,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,gramschmidt,v8,b80e2601a9,liftoff,x86-64,execution_time,0.03913,0.03913,0.03913,0.03913,0.03913,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,2mm,v8,b80e2601a9,liftoff,x86-64,execution_time,0.042162,0.042162,0.042162,0.042162,0.042162,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,nussinov,v8,b80e2601a9,liftoff,x86-64,execution_time,0.067144,0.067144,0.067144,0.067144,0.067144,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,adi,v8,b80e2601a9,liftoff,x86-64,execution_time,0.103279,0.103279,0.103279,0.103279,0.103279,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,3mm,v8,b80e2601a9,liftoff,x86-64,execution_time,0.063387,0.063387,0.063387,0.063387,0.063387,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,fdtd-2d,v8,b80e2601a9,liftoff,x86-64,execution_time,0.052353,0.052353,0.052353,0.052353,0.052353,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,jacobi-2d,v8,b80e2601a9,liftoff,x86-64,execution_time,0.063583,0.063583,0.063583,0.063583,0.063583,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,seidel-2d,v8,b80e2601a9,liftoff,x86-64,execution_time,0.191476,0.191476,0.191476,0.191476,0.191476,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,heat-3d,v8,b80e2601a9,liftoff,x86-64,execution_time,0.089869,0.089869,0.089869,0.089869,0.089869,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,cholesky,v8,b80e2601a9,liftoff,x86-64,execution_time,0.18416,0.18416,0.18416,0.18416,0.18416,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,ludcmp,v8,b80e2601a9,liftoff,x86-64,execution_time,0.197618,0.197618,0.197618,0.197618,0.197618,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,lu,v8,b80e2601a9,liftoff,x86-64,execution_time,0.208565,0.208565,0.208565,0.208565,0.208565,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,bicg,v8,3ae6859800,liftoff,x86-64,execution_time,0.015064,0.015064,0.015064,0.015064,0.015064,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,mvt,v8,3ae6859800,liftoff,x86-64,execution_time,0.012635,0.012635,0.012635,0.012635,0.012635,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,atax,v8,3ae6859800,liftoff,x86-64,execution_time,0.013339,0.013339,0.013339,0.013339,0.013339,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,gemver,v8,3ae6859800,liftoff,x86-64,execution_time,0.013406,0.013406,0.013406,0.013406,0.013406,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,trmm,v8,3ae6859800,liftoff,x86-64,execution_time,0.024572,0.024572,0.024572,0.024572,0.024572,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,doitgen,v8,3ae6859800,liftoff,x86-64,execution_time,0.025633,0.025633,0.025633,0.025633,0.025633,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,syrk,v8,3ae6859800,liftoff,x86-64,execution_time,0.02762,0.02762,0.02762,0.02762,0.02762,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,correlation,v8,3ae6859800,liftoff,x86-64,execution_time,0.030103,0.030103,0.030103,0.030103,0.030103,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,covariance,v8,3ae6859800,liftoff,x86-64,execution_time,0.031056,0.031056,0.031056,0.031056,0.031056,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,symm,v8,3ae6859800,liftoff,x86-64,execution_time,0.036775,0.036775,0.036775,0.036775,0.036775,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,syr2k,v8,3ae6859800,liftoff,x86-64,execution_time,0.039498,0.039498,0.039498,0.039498,0.039498,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,gemm,v8,3ae6859800,liftoff,x86-64,execution_time,0.035461,0.035461,0.035461,0.035461,0.035461,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,gramschmidt,v8,3ae6859800,liftoff,x86-64,execution_time,0.057535,0.057535,0.057535,0.057535,0.057535,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,2mm,v8,3ae6859800,liftoff,x86-64,execution_time,0.042706,0.042706,0.042706,0.042706,0.042706,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,nussinov,v8,3ae6859800,liftoff,x86-64,execution_time,0.068619,0.068619,0.068619,0.068619,0.068619,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,adi,v8,3ae6859800,liftoff,x86-64,execution_time,0.104099,0.104099,0.104099,0.104099,0.104099,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,3mm,v8,3ae6859800,liftoff,x86-64,execution_time,0.066362,0.066362,0.066362,0.066362,0.066362,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,fdtd-2d,v8,3ae6859800,liftoff,x86-64,execution_time,0.056988,0.056988,0.056988,0.056988,0.056988,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,jacobi-2d,v8,3ae6859800,liftoff,x86-64,execution_time,0.070602,0.070602,0.070602,0.070602,0.070602,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,seidel-2d,v8,3ae6859800,liftoff,x86-64,execution_time,0.192374,0.192374,0.192374,0.192374,0.192374,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,heat-3d,v8,3ae6859800,liftoff,x86-64,execution_time,0.096634,0.096634,0.096634,0.096634,0.096634,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,cholesky,v8,3ae6859800,liftoff,x86-64,execution_time,0.195196,0.195196,0.195196,0.195196,0.195196,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,ludcmp,v8,3ae6859800,liftoff,x86-64,execution_time,0.216984,0.216984,0.216984,0.216984,0.216984,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,lu,v8,3ae6859800,liftoff,x86-64,execution_time,0.214102,0.214102,0.214102,0.214102,0.214102,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,bicg,v8,7999223ca1,turbofan,x86-64,execution_time,0.029337,0.029337,0.029337,0.029337,0.029337,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,mvt,v8,7999223ca1,turbofan,x86-64,execution_time,0.021848,0.021848,0.021848,0.021848,0.021848,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,atax,v8,7999223ca1,turbofan,x86-64,execution_time,0.022207,0.022207,0.022207,0.022207,0.022207,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,gemver,v8,7999223ca1,turbofan,x86-64,execution_time,0.022126,0.022126,0.022126,0.022126,0.022126,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,trmm,v8,7999223ca1,turbofan,x86-64,execution_time,0.026799,0.026799,0.026799,0.026799,0.026799,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,doitgen,v8,7999223ca1,turbofan,x86-64,execution_time,0.027277,0.027277,0.027277,0.027277,0.027277,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,syrk,v8,7999223ca1,turbofan,x86-64,execution_time,0.027586,0.027586,0.027586,0.027586,0.027586,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,correlation,v8,7999223ca1,turbofan,x86-64,execution_time,0.031464,0.031464,0.031464,0.031464,0.031464,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,covariance,v8,7999223ca1,turbofan,x86-64,execution_time,0.030722,0.030722,0.030722,0.030722,0.030722,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,symm,v8,7999223ca1,turbofan,x86-64,execution_time,0.035845,0.035845,0.035845,0.035845,0.035845,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,syr2k,v8,7999223ca1,turbofan,x86-64,execution_time,0.032248,0.032248,0.032248,0.032248,0.032248,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,gemm,v8,7999223ca1,turbofan,x86-64,execution_time,0.030169,0.030169,0.030169,0.030169,0.030169,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,gramschmidt,v8,7999223ca1,turbofan,x86-64,execution_time,0.038178,0.038178,0.038178,0.038178,0.038178,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,2mm,v8,7999223ca1,turbofan,x86-64,execution_time,0.035335,0.035335,0.035335,0.035335,0.035335,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,nussinov,v8,7999223ca1,turbofan,x86-64,execution_time,0.04418,0.04418,0.04418,0.04418,0.04418,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,adi,v8,7999223ca1,turbofan,x86-64,execution_time,0.094066,0.094066,0.094066,0.094066,0.094066,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,3mm,v8,7999223ca1,turbofan,x86-64,execution_time,0.04402,0.04402,0.04402,0.04402,0.04402,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,fdtd-2d,v8,7999223ca1,turbofan,x86-64,execution_time,0.037352,0.037352,0.037352,0.037352,0.037352,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,jacobi-2d,v8,7999223ca1,turbofan,x86-64,execution_time,0.040167,0.040167,0.040167,0.040167,0.040167,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,seidel-2d,v8,7999223ca1,turbofan,x86-64,execution_time,0.174107,0.174107,0.174107,0.174107,0.174107,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,heat-3d,v8,7999223ca1,turbofan,x86-64,execution_time,0.049448,0.049448,0.049448,0.049448,0.049448,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,cholesky,v8,7999223ca1,turbofan,x86-64,execution_time,0.094584,0.094584,0.094584,0.094584,0.094584,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,ludcmp,v8,7999223ca1,turbofan,x86-64,execution_time,0.107084,0.107084,0.107084,0.107084,0.107084,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,lu,v8,7999223ca1,turbofan,x86-64,execution_time,0.106853,0.106853,0.106853,0.106853,0.106853,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,bicg,v8,f7500a2c4a,turbofan,x86-64,execution_time,0.022923,0.022923,0.022923,0.022923,0.022923,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,mvt,v8,f7500a2c4a,turbofan,x86-64,execution_time,0.022044,0.022044,0.022044,0.022044,0.022044,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,atax,v8,f7500a2c4a,turbofan,x86-64,execution_time,0.020823,0.020823,0.020823,0.020823,0.020823,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,gemver,v8,f7500a2c4a,turbofan,x86-64,execution_time,0.021915,0.021915,0.021915,0.021915,0.021915,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,trmm,v8,f7500a2c4a,turbofan,x86-64,execution_time,0.025426,0.025426,0.025426,0.025426,0.025426,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,doitgen,v8,f7500a2c4a,turbofan,x86-64,execution_time,0.025655,0.025655,0.025655,0.025655,0.025655,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,syrk,v8,f7500a2c4a,turbofan,x86-64,execution_time,0.026387,0.026387,0.026387,0.026387,0.026387,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,correlation,v8,f7500a2c4a,turbofan,x86-64,execution_time,0.03059,0.03059,0.03059,0.03059,0.03059,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,covariance,v8,f7500a2c4a,turbofan,x86-64,execution_time,0.029375,0.029375,0.029375,0.029375,0.029375,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,symm,v8,f7500a2c4a,turbofan,x86-64,execution_time,0.034435,0.034435,0.034435,0.034435,0.034435,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,syr2k,v8,f7500a2c4a,turbofan,x86-64,execution_time,0.031358,0.031358,0.031358,0.031358,0.031358,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,gemm,v8,f7500a2c4a,turbofan,x86-64,execution_time,0.029405,0.029405,0.029405,0.029405,0.029405,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,gramschmidt,v8,f7500a2c4a,turbofan,x86-64,execution_time,0.037847,0.037847,0.037847,0.037847,0.037847,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,2mm,v8,f7500a2c4a,turbofan,x86-64,execution_time,0.03477,0.03477,0.03477,0.03477,0.03477,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,nussinov,v8,f7500a2c4a,turbofan,x86-64,execution_time,0.043481,0.043481,0.043481,0.043481,0.043481,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,adi,v8,f7500a2c4a,turbofan,x86-64,execution_time,0.093812,0.093812,0.093812,0.093812,0.093812,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,3mm,v8,f7500a2c4a,turbofan,x86-64,execution_time,0.043342,0.043342,0.043342,0.043342,0.043342,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,fdtd-2d,v8,f7500a2c4a,turbofan,x86-64,execution_time,0.036937,0.036937,0.036937,0.036937,0.036937,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,jacobi-2d,v8,f7500a2c4a,turbofan,x86-64,execution_time,0.040395,0.040395,0.040395,0.040395,0.040395,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,seidel-2d,v8,f7500a2c4a,turbofan,x86-64,execution_time,0.17357,0.17357,0.17357,0.17357,0.17357,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,heat-3d,v8,f7500a2c4a,turbofan,x86-64,execution_time,0.04929,0.04929,0.04929,0.04929,0.04929,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,cholesky,v8,f7500a2c4a,turbofan,x86-64,execution_time,0.094177,0.094177,0.094177,0.094177,0.094177,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,ludcmp,v8,f7500a2c4a,turbofan,x86-64,execution_time,0.1067,0.1067,0.1067,0.1067,0.1067,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,lu,v8,f7500a2c4a,turbofan,x86-64,execution_time,0.105834,0.105834,0.105834,0.105834,0.105834,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,bicg,v8,18a6255a7b,turbofan,x86-64,execution_time,0.020313,0.020313,0.020313,0.020313,0.020313,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,mvt,v8,18a6255a7b,turbofan,x86-64,execution_time,0.019933,0.019933,0.019933,0.019933,0.019933,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,atax,v8,18a6255a7b,turbofan,x86-64,execution_time,0.020313,0.020313,0.020313,0.020313,0.020313,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,gemver,v8,18a6255a7b,turbofan,x86-64,execution_time,0.020437,0.020437,0.020437,0.020437,0.020437,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,trmm,v8,18a6255a7b,turbofan,x86-64,execution_time,0.024262,0.024262,0.024262,0.024262,0.024262,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,doitgen,v8,18a6255a7b,turbofan,x86-64,execution_time,0.023914,0.023914,0.023914,0.023914,0.023914,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,syrk,v8,18a6255a7b,turbofan,x86-64,execution_time,0.024268,0.024268,0.024268,0.024268,0.024268,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,correlation,v8,18a6255a7b,turbofan,x86-64,execution_time,0.028289,0.028289,0.028289,0.028289,0.028289,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,covariance,v8,18a6255a7b,turbofan,x86-64,execution_time,0.028251,0.028251,0.028251,0.028251,0.028251,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,symm,v8,18a6255a7b,turbofan,x86-64,execution_time,0.0325,0.0325,0.0325,0.0325,0.0325,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,syr2k,v8,18a6255a7b,turbofan,x86-64,execution_time,0.030079,0.030079,0.030079,0.030079,0.030079,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,gemm,v8,18a6255a7b,turbofan,x86-64,execution_time,0.02799,0.02799,0.02799,0.02799,0.02799,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,gramschmidt,v8,18a6255a7b,turbofan,x86-64,execution_time,0.034759,0.034759,0.034759,0.034759,0.034759,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,2mm,v8,18a6255a7b,turbofan,x86-64,execution_time,0.033227,0.033227,0.033227,0.033227,0.033227,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,nussinov,v8,18a6255a7b,turbofan,x86-64,execution_time,0.040636,0.040636,0.040636,0.040636,0.040636,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,adi,v8,18a6255a7b,turbofan,x86-64,execution_time,0.09218,0.09218,0.09218,0.09218,0.09218,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,3mm,v8,18a6255a7b,turbofan,x86-64,execution_time,0.043533,0.043533,0.043533,0.043533,0.043533,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,fdtd-2d,v8,18a6255a7b,turbofan,x86-64,execution_time,0.033895,0.033895,0.033895,0.033895,0.033895,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,jacobi-2d,v8,18a6255a7b,turbofan,x86-64,execution_time,0.039828,0.039828,0.039828,0.039828,0.039828,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,seidel-2d,v8,18a6255a7b,turbofan,x86-64,execution_time,0.173515,0.173515,0.173515,0.173515,0.173515,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,heat-3d,v8,18a6255a7b,turbofan,x86-64,execution_time,0.048273,0.048273,0.048273,0.048273,0.048273,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,cholesky,v8,18a6255a7b,turbofan,x86-64,execution_time,0.092168,0.092168,0.092168,0.092168,0.092168,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,ludcmp,v8,18a6255a7b,turbofan,x86-64,execution_time,0.103357,0.103357,0.103357,0.103357,0.103357,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,lu,v8,18a6255a7b,turbofan,x86-64,execution_time,0.104719,0.104719,0.104719,0.104719,0.104719,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,bicg,v8,0768a17a89,turbofan,x86-64,execution_time,0.020551,0.020551,0.020551,0.020551,0.020551,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,mvt,v8,0768a17a89,turbofan,x86-64,execution_time,0.019758,0.019758,0.019758,0.019758,0.019758,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,atax,v8,0768a17a89,turbofan,x86-64,execution_time,0.020156,0.020156,0.020156,0.020156,0.020156,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,gemver,v8,0768a17a89,turbofan,x86-64,execution_time,0.020692,0.020692,0.020692,0.020692,0.020692,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,trmm,v8,0768a17a89,turbofan,x86-64,execution_time,0.023619,0.023619,0.023619,0.023619,0.023619,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,doitgen,v8,0768a17a89,turbofan,x86-64,execution_time,0.024522,0.024522,0.024522,0.024522,0.024522,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,syrk,v8,0768a17a89,turbofan,x86-64,execution_time,0.024842,0.024842,0.024842,0.024842,0.024842,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,correlation,v8,0768a17a89,turbofan,x86-64,execution_time,0.028187,0.028187,0.028187,0.028187,0.028187,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,covariance,v8,0768a17a89,turbofan,x86-64,execution_time,0.02814,0.02814,0.02814,0.02814,0.02814,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,symm,v8,0768a17a89,turbofan,x86-64,execution_time,0.033317,0.033317,0.033317,0.033317,0.033317,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,syr2k,v8,0768a17a89,turbofan,x86-64,execution_time,0.028839,0.028839,0.028839,0.028839,0.028839,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,gemm,v8,0768a17a89,turbofan,x86-64,execution_time,0.027659,0.027659,0.027659,0.027659,0.027659,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,gramschmidt,v8,0768a17a89,turbofan,x86-64,execution_time,0.036134,0.036134,0.036134,0.036134,0.036134,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,2mm,v8,0768a17a89,turbofan,x86-64,execution_time,0.032987,0.032987,0.032987,0.032987,0.032987,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,nussinov,v8,0768a17a89,turbofan,x86-64,execution_time,0.041078,0.041078,0.041078,0.041078,0.041078,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,adi,v8,0768a17a89,turbofan,x86-64,execution_time,0.092113,0.092113,0.092113,0.092113,0.092113,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,3mm,v8,0768a17a89,turbofan,x86-64,execution_time,0.041456,0.041456,0.041456,0.041456,0.041456,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,fdtd-2d,v8,0768a17a89,turbofan,x86-64,execution_time,0.035287,0.035287,0.035287,0.035287,0.035287,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,jacobi-2d,v8,0768a17a89,turbofan,x86-64,execution_time,0.039073,0.039073,0.039073,0.039073,0.039073,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,seidel-2d,v8,0768a17a89,turbofan,x86-64,execution_time,0.174463,0.174463,0.174463,0.174463,0.174463,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,heat-3d,v8,0768a17a89,turbofan,x86-64,execution_time,0.047789,0.047789,0.047789,0.047789,0.047789,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,cholesky,v8,0768a17a89,turbofan,x86-64,execution_time,0.092622,0.092622,0.092622,0.092622,0.092622,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,ludcmp,v8,0768a17a89,turbofan,x86-64,execution_time,0.103467,0.103467,0.103467,0.103467,0.103467,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,lu,v8,0768a17a89,turbofan,x86-64,execution_time,0.103892,0.103892,0.103892,0.103892,0.103892,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,bicg,v8,b80e2601a9,turbofan,x86-64,execution_time,0.022511,0.022511,0.022511,0.022511,0.022511,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,mvt,v8,b80e2601a9,turbofan,x86-64,execution_time,0.020044,0.020044,0.020044,0.020044,0.020044,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,atax,v8,b80e2601a9,turbofan,x86-64,execution_time,0.019648,0.019648,0.019648,0.019648,0.019648,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,gemver,v8,b80e2601a9,turbofan,x86-64,execution_time,0.019983,0.019983,0.019983,0.019983,0.019983,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,trmm,v8,b80e2601a9,turbofan,x86-64,execution_time,0.025013,0.025013,0.025013,0.025013,0.025013,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,doitgen,v8,b80e2601a9,turbofan,x86-64,execution_time,0.024321,0.024321,0.024321,0.024321,0.024321,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,syrk,v8,b80e2601a9,turbofan,x86-64,execution_time,0.025615,0.025615,0.025615,0.025615,0.025615,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,correlation,v8,b80e2601a9,turbofan,x86-64,execution_time,0.027641,0.027641,0.027641,0.027641,0.027641,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,covariance,v8,b80e2601a9,turbofan,x86-64,execution_time,0.028973,0.028973,0.028973,0.028973,0.028973,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,symm,v8,b80e2601a9,turbofan,x86-64,execution_time,0.033028,0.033028,0.033028,0.033028,0.033028,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,syr2k,v8,b80e2601a9,turbofan,x86-64,execution_time,0.029765,0.029765,0.029765,0.029765,0.029765,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,gemm,v8,b80e2601a9,turbofan,x86-64,execution_time,0.028208,0.028208,0.028208,0.028208,0.028208,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,gramschmidt,v8,b80e2601a9,turbofan,x86-64,execution_time,0.035453,0.035453,0.035453,0.035453,0.035453,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,2mm,v8,b80e2601a9,turbofan,x86-64,execution_time,0.033251,0.033251,0.033251,0.033251,0.033251,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,nussinov,v8,b80e2601a9,turbofan,x86-64,execution_time,0.042573,0.042573,0.042573,0.042573,0.042573,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,adi,v8,b80e2601a9,turbofan,x86-64,execution_time,0.092201,0.092201,0.092201,0.092201,0.092201,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,3mm,v8,b80e2601a9,turbofan,x86-64,execution_time,0.041451,0.041451,0.041451,0.041451,0.041451,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,fdtd-2d,v8,b80e2601a9,turbofan,x86-64,execution_time,0.035471,0.035471,0.035471,0.035471,0.035471,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,jacobi-2d,v8,b80e2601a9,turbofan,x86-64,execution_time,0.039899,0.039899,0.039899,0.039899,0.039899,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,seidel-2d,v8,b80e2601a9,turbofan,x86-64,execution_time,0.173657,0.173657,0.173657,0.173657,0.173657,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,heat-3d,v8,b80e2601a9,turbofan,x86-64,execution_time,0.047266,0.047266,0.047266,0.047266,0.047266,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,cholesky,v8,b80e2601a9,turbofan,x86-64,execution_time,0.092777,0.092777,0.092777,0.092777,0.092777,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,ludcmp,v8,b80e2601a9,turbofan,x86-64,execution_time,0.103298,0.103298,0.103298,0.103298,0.103298,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,lu,v8,b80e2601a9,turbofan,x86-64,execution_time,0.104752,0.104752,0.104752,0.104752,0.104752,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,bicg,v8,3ae6859800,turbofan,x86-64,execution_time,0.020502,0.020502,0.020502,0.020502,0.020502,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,mvt,v8,3ae6859800,turbofan,x86-64,execution_time,0.019498,0.019498,0.019498,0.019498,0.019498,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,atax,v8,3ae6859800,turbofan,x86-64,execution_time,0.019734,0.019734,0.019734,0.019734,0.019734,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,gemver,v8,3ae6859800,turbofan,x86-64,execution_time,0.020353,0.020353,0.020353,0.020353,0.020353,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,trmm,v8,3ae6859800,turbofan,x86-64,execution_time,0.024616,0.024616,0.024616,0.024616,0.024616,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,doitgen,v8,3ae6859800,turbofan,x86-64,execution_time,0.023984,0.023984,0.023984,0.023984,0.023984,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,syrk,v8,3ae6859800,turbofan,x86-64,execution_time,0.025676,0.025676,0.025676,0.025676,0.025676,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,correlation,v8,3ae6859800,turbofan,x86-64,execution_time,0.028726,0.028726,0.028726,0.028726,0.028726,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,covariance,v8,3ae6859800,turbofan,x86-64,execution_time,0.029075,0.029075,0.029075,0.029075,0.029075,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,symm,v8,3ae6859800,turbofan,x86-64,execution_time,0.03262,0.03262,0.03262,0.03262,0.03262,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,syr2k,v8,3ae6859800,turbofan,x86-64,execution_time,0.029783,0.029783,0.029783,0.029783,0.029783,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,gemm,v8,3ae6859800,turbofan,x86-64,execution_time,0.027065,0.027065,0.027065,0.027065,0.027065,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,gramschmidt,v8,3ae6859800,turbofan,x86-64,execution_time,0.035362,0.035362,0.035362,0.035362,0.035362,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,2mm,v8,3ae6859800,turbofan,x86-64,execution_time,0.032787,0.032787,0.032787,0.032787,0.032787,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,nussinov,v8,3ae6859800,turbofan,x86-64,execution_time,0.040987,0.040987,0.040987,0.040987,0.040987,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,adi,v8,3ae6859800,turbofan,x86-64,execution_time,0.092365,0.092365,0.092365,0.092365,0.092365,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,3mm,v8,3ae6859800,turbofan,x86-64,execution_time,0.041918,0.041918,0.041918,0.041918,0.041918,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,fdtd-2d,v8,3ae6859800,turbofan,x86-64,execution_time,0.035512,0.035512,0.035512,0.035512,0.035512,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,jacobi-2d,v8,3ae6859800,turbofan,x86-64,execution_time,0.039137,0.039137,0.039137,0.039137,0.039137,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,seidel-2d,v8,3ae6859800,turbofan,x86-64,execution_time,0.173683,0.173683,0.173683,0.173683,0.173683,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,heat-3d,v8,3ae6859800,turbofan,x86-64,execution_time,0.048446,0.048446,0.048446,0.048446,0.048446,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,cholesky,v8,3ae6859800,turbofan,x86-64,execution_time,0.092065,0.092065,0.092065,0.092065,0.092065,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,ludcmp,v8,3ae6859800,turbofan,x86-64,execution_time,0.103151,0.103151,0.103151,0.103151,0.103151,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,lu,v8,3ae6859800,turbofan,x86-64,execution_time,0.10531,0.10531,0.10531,0.10531,0.10531,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,bicg,wamr,219713bf,classic,x86-64,execution_time,0.019173,0.019173,0.019173,0.019173,0.019173,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,mvt,wamr,219713bf,classic,x86-64,execution_time,0.019354,0.019354,0.019354,0.019354,0.019354,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,atax,wamr,219713bf,classic,x86-64,execution_time,0.018743,0.018743,0.018743,0.018743,0.018743,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,gemver,wamr,219713bf,classic,x86-64,execution_time,0.02595,0.02595,0.02595,0.02595,0.02595,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,trmm,wamr,219713bf,classic,x86-64,execution_time,0.147107,0.147107,0.147107,0.147107,0.147107,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,doitgen,wamr,219713bf,classic,x86-64,execution_time,0.177558,0.177558,0.177558,0.177558,0.177558,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,syrk,wamr,219713bf,classic,x86-64,execution_time,0.208948,0.208948,0.208948,0.208948,0.208948,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,correlation,wamr,219713bf,classic,x86-64,execution_time,0.214646,0.214646,0.214646,0.214646,0.214646,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,covariance,wamr,219713bf,classic,x86-64,execution_time,0.214081,0.214081,0.214081,0.214081,0.214081,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,symm,wamr,219713bf,classic,x86-64,execution_time,0.236808,0.236808,0.236808,0.236808,0.236808,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,syr2k,wamr,219713bf,classic,x86-64,execution_time,0.340289,0.340289,0.340289,0.340289,0.340289,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,gemm,wamr,219713bf,classic,x86-64,execution_time,0.316879,0.316879,0.316879,0.316879,0.316879,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,gramschmidt,wamr,219713bf,classic,x86-64,execution_time,0.342099,0.342099,0.342099,0.342099,0.342099,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,2mm,wamr,219713bf,classic,x86-64,execution_time,0.43292,0.43292,0.43292,0.43292,0.43292,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,nussinov,wamr,219713bf,classic,x86-64,execution_time,0.571445,0.571445,0.571445,0.571445,0.571445,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,adi,wamr,219713bf,classic,x86-64,execution_time,1.017042,1.017042,1.017042,1.017042,1.017042,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,3mm,wamr,219713bf,classic,x86-64,execution_time,0.712044,0.712044,0.712044,0.712044,0.712044,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,fdtd-2d,wamr,219713bf,classic,x86-64,execution_time,0.637901,0.637901,0.637901,0.637901,0.637901,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,jacobi-2d,wamr,219713bf,classic,x86-64,execution_time,0.800374,0.800374,0.800374,0.800374,0.800374,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,seidel-2d,wamr,219713bf,classic,x86-64,execution_time,1.223071,1.223071,1.223071,1.223071,1.223071,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,heat-3d,wamr,219713bf,classic,x86-64,execution_time,1.396069,1.396069,1.396069,1.396069,1.396069,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,cholesky,wamr,219713bf,classic,x86-64,execution_time,2.180584,2.180584,2.180584,2.180584,2.180584,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,ludcmp,wamr,219713bf,classic,x86-64,execution_time,2.44513,2.44513,2.44513,2.44513,2.44513,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,lu,wamr,219713bf,classic,x86-64,execution_time,2.527786,2.527786,2.527786,2.527786,2.527786,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,bicg,wamr,14492757,classic,x86-64,execution_time,0.018744,0.018744,0.018744,0.018744,0.018744,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,mvt,wamr,14492757,classic,x86-64,execution_time,0.019154,0.019154,0.019154,0.019154,0.019154,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,atax,wamr,14492757,classic,x86-64,execution_time,0.018931,0.018931,0.018931,0.018931,0.018931,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,gemver,wamr,14492757,classic,x86-64,execution_time,0.025245,0.025245,0.025245,0.025245,0.025245,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,trmm,wamr,14492757,classic,x86-64,execution_time,0.146504,0.146504,0.146504,0.146504,0.146504,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,doitgen,wamr,14492757,classic,x86-64,execution_time,0.175106,0.175106,0.175106,0.175106,0.175106,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,syrk,wamr,14492757,classic,x86-64,execution_time,0.207362,0.207362,0.207362,0.207362,0.207362,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,correlation,wamr,14492757,classic,x86-64,execution_time,0.207924,0.207924,0.207924,0.207924,0.207924,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,covariance,wamr,14492757,classic,x86-64,execution_time,0.217583,0.217583,0.217583,0.217583,0.217583,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,symm,wamr,14492757,classic,x86-64,execution_time,0.238822,0.238822,0.238822,0.238822,0.238822,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,syr2k,wamr,14492757,classic,x86-64,execution_time,0.338654,0.338654,0.338654,0.338654,0.338654,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,gemm,wamr,14492757,classic,x86-64,execution_time,0.316682,0.316682,0.316682,0.316682,0.316682,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,gramschmidt,wamr,14492757,classic,x86-64,execution_time,0.346026,0.346026,0.346026,0.346026,0.346026,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,2mm,wamr,14492757,classic,x86-64,execution_time,0.430648,0.430648,0.430648,0.430648,0.430648,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,nussinov,wamr,14492757,classic,x86-64,execution_time,0.564711,0.564711,0.564711,0.564711,0.564711,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,adi,wamr,14492757,classic,x86-64,execution_time,1.014561,1.014561,1.014561,1.014561,1.014561,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,3mm,wamr,14492757,classic,x86-64,execution_time,0.717889,0.717889,0.717889,0.717889,0.717889,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,fdtd-2d,wamr,14492757,classic,x86-64,execution_time,0.643212,0.643212,0.643212,0.643212,0.643212,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,jacobi-2d,wamr,14492757,classic,x86-64,execution_time,0.767887,0.767887,0.767887,0.767887,0.767887,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,seidel-2d,wamr,14492757,classic,x86-64,execution_time,1.225423,1.225423,1.225423,1.225423,1.225423,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,heat-3d,wamr,14492757,classic,x86-64,execution_time,1.332307,1.332307,1.332307,1.332307,1.332307,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,cholesky,wamr,14492757,classic,x86-64,execution_time,2.191113,2.191113,2.191113,2.191113,2.191113,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,ludcmp,wamr,14492757,classic,x86-64,execution_time,2.449516,2.449516,2.449516,2.449516,2.449516,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,lu,wamr,14492757,classic,x86-64,execution_time,2.535113,2.535113,2.535113,2.535113,2.535113,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,bicg,wamr,ff4ee4a9,classic,x86-64,execution_time,0.018492,0.018492,0.018492,0.018492,0.018492,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,mvt,wamr,ff4ee4a9,classic,x86-64,execution_time,0.019396,0.019396,0.019396,0.019396,0.019396,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,atax,wamr,ff4ee4a9,classic,x86-64,execution_time,0.018623,0.018623,0.018623,0.018623,0.018623,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,gemver,wamr,ff4ee4a9,classic,x86-64,execution_time,0.024573,0.024573,0.024573,0.024573,0.024573,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,trmm,wamr,ff4ee4a9,classic,x86-64,execution_time,0.152113,0.152113,0.152113,0.152113,0.152113,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,doitgen,wamr,ff4ee4a9,classic,x86-64,execution_time,0.185223,0.185223,0.185223,0.185223,0.185223,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,syrk,wamr,ff4ee4a9,classic,x86-64,execution_time,0.212401,0.212401,0.212401,0.212401,0.212401,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,correlation,wamr,ff4ee4a9,classic,x86-64,execution_time,0.214284,0.214284,0.214284,0.214284,0.214284,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,covariance,wamr,ff4ee4a9,classic,x86-64,execution_time,0.224266,0.224266,0.224266,0.224266,0.224266,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,symm,wamr,ff4ee4a9,classic,x86-64,execution_time,0.238119,0.238119,0.238119,0.238119,0.238119,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,syr2k,wamr,ff4ee4a9,classic,x86-64,execution_time,0.338314,0.338314,0.338314,0.338314,0.338314,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,gemm,wamr,ff4ee4a9,classic,x86-64,execution_time,0.316136,0.316136,0.316136,0.316136,0.316136,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,gramschmidt,wamr,ff4ee4a9,classic,x86-64,execution_time,0.355095,0.355095,0.355095,0.355095,0.355095,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,2mm,wamr,ff4ee4a9,classic,x86-64,execution_time,0.437045,0.437045,0.437045,0.437045,0.437045,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,nussinov,wamr,ff4ee4a9,classic,x86-64,execution_time,0.599043,0.599043,0.599043,0.599043,0.599043,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,adi,wamr,ff4ee4a9,classic,x86-64,execution_time,1.016675,1.016675,1.016675,1.016675,1.016675,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,3mm,wamr,ff4ee4a9,classic,x86-64,execution_time,0.753854,0.753854,0.753854,0.753854,0.753854,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,fdtd-2d,wamr,ff4ee4a9,classic,x86-64,execution_time,0.639091,0.639091,0.639091,0.639091,0.639091,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,jacobi-2d,wamr,ff4ee4a9,classic,x86-64,execution_time,0.765893,0.765893,0.765893,0.765893,0.765893,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,seidel-2d,wamr,ff4ee4a9,classic,x86-64,execution_time,1.227898,1.227898,1.227898,1.227898,1.227898,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,heat-3d,wamr,ff4ee4a9,classic,x86-64,execution_time,1.320762,1.320762,1.320762,1.320762,1.320762,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,cholesky,wamr,ff4ee4a9,classic,x86-64,execution_time,2.20115,2.20115,2.20115,2.20115,2.20115,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,ludcmp,wamr,ff4ee4a9,classic,x86-64,execution_time,2.455736,2.455736,2.455736,2.455736,2.455736,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,lu,wamr,ff4ee4a9,classic,x86-64,execution_time,2.549741,2.549741,2.549741,2.549741,2.549741,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,bicg,wamr,5ddc335a,classic,x86-64,execution_time,0.018576,0.018576,0.018576,0.018576,0.018576,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,mvt,wamr,5ddc335a,classic,x86-64,execution_time,0.019009,0.019009,0.019009,0.019009,0.019009,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,atax,wamr,5ddc335a,classic,x86-64,execution_time,0.018675,0.018675,0.018675,0.018675,0.018675,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,gemver,wamr,5ddc335a,classic,x86-64,execution_time,0.025523,0.025523,0.025523,0.025523,0.025523,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,trmm,wamr,5ddc335a,classic,x86-64,execution_time,0.157647,0.157647,0.157647,0.157647,0.157647,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,doitgen,wamr,5ddc335a,classic,x86-64,execution_time,0.177779,0.177779,0.177779,0.177779,0.177779,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,syrk,wamr,5ddc335a,classic,x86-64,execution_time,0.216676,0.216676,0.216676,0.216676,0.216676,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,correlation,wamr,5ddc335a,classic,x86-64,execution_time,0.210431,0.210431,0.210431,0.210431,0.210431,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,covariance,wamr,5ddc335a,classic,x86-64,execution_time,0.218121,0.218121,0.218121,0.218121,0.218121,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,symm,wamr,5ddc335a,classic,x86-64,execution_time,0.239021,0.239021,0.239021,0.239021,0.239021,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,syr2k,wamr,5ddc335a,classic,x86-64,execution_time,0.344415,0.344415,0.344415,0.344415,0.344415,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,gemm,wamr,5ddc335a,classic,x86-64,execution_time,0.316556,0.316556,0.316556,0.316556,0.316556,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,gramschmidt,wamr,5ddc335a,classic,x86-64,execution_time,0.344147,0.344147,0.344147,0.344147,0.344147,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,2mm,wamr,5ddc335a,classic,x86-64,execution_time,0.432142,0.432142,0.432142,0.432142,0.432142,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,nussinov,wamr,5ddc335a,classic,x86-64,execution_time,0.547188,0.547188,0.547188,0.547188,0.547188,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,adi,wamr,5ddc335a,classic,x86-64,execution_time,1.009927,1.009927,1.009927,1.009927,1.009927,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,3mm,wamr,5ddc335a,classic,x86-64,execution_time,0.715147,0.715147,0.715147,0.715147,0.715147,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,fdtd-2d,wamr,5ddc335a,classic,x86-64,execution_time,0.644823,0.644823,0.644823,0.644823,0.644823,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,jacobi-2d,wamr,5ddc335a,classic,x86-64,execution_time,0.767591,0.767591,0.767591,0.767591,0.767591,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,seidel-2d,wamr,5ddc335a,classic,x86-64,execution_time,1.241974,1.241974,1.241974,1.241974,1.241974,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,heat-3d,wamr,5ddc335a,classic,x86-64,execution_time,1.287561,1.287561,1.287561,1.287561,1.287561,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,cholesky,wamr,5ddc335a,classic,x86-64,execution_time,2.248842,2.248842,2.248842,2.248842,2.248842,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,ludcmp,wamr,5ddc335a,classic,x86-64,execution_time,2.445734,2.445734,2.445734,2.445734,2.445734,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,lu,wamr,5ddc335a,classic,x86-64,execution_time,2.749316,2.749316,2.749316,2.749316,2.749316,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,bicg,wamr,75936680,classic,x86-64,execution_time,0.01778,0.01778,0.01778,0.01778,0.01778,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,mvt,wamr,75936680,classic,x86-64,execution_time,0.01891,0.01891,0.01891,0.01891,0.01891,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,atax,wamr,75936680,classic,x86-64,execution_time,0.018626,0.018626,0.018626,0.018626,0.018626,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,gemver,wamr,75936680,classic,x86-64,execution_time,0.02574,0.02574,0.02574,0.02574,0.02574,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,trmm,wamr,75936680,classic,x86-64,execution_time,0.146537,0.146537,0.146537,0.146537,0.146537,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,doitgen,wamr,75936680,classic,x86-64,execution_time,0.178231,0.178231,0.178231,0.178231,0.178231,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,syrk,wamr,75936680,classic,x86-64,execution_time,0.20853,0.20853,0.20853,0.20853,0.20853,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,correlation,wamr,75936680,classic,x86-64,execution_time,0.218768,0.218768,0.218768,0.218768,0.218768,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,covariance,wamr,75936680,classic,x86-64,execution_time,0.218016,0.218016,0.218016,0.218016,0.218016,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,symm,wamr,75936680,classic,x86-64,execution_time,0.238889,0.238889,0.238889,0.238889,0.238889,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,syr2k,wamr,75936680,classic,x86-64,execution_time,0.344591,0.344591,0.344591,0.344591,0.344591,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,gemm,wamr,75936680,classic,x86-64,execution_time,0.317112,0.317112,0.317112,0.317112,0.317112,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,gramschmidt,wamr,75936680,classic,x86-64,execution_time,0.343873,0.343873,0.343873,0.343873,0.343873,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,2mm,wamr,75936680,classic,x86-64,execution_time,0.431857,0.431857,0.431857,0.431857,0.431857,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,nussinov,wamr,75936680,classic,x86-64,execution_time,0.547524,0.547524,0.547524,0.547524,0.547524,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,adi,wamr,75936680,classic,x86-64,execution_time,1.011243,1.011243,1.011243,1.011243,1.011243,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,3mm,wamr,75936680,classic,x86-64,execution_time,0.715498,0.715498,0.715498,0.715498,0.715498,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,fdtd-2d,wamr,75936680,classic,x86-64,execution_time,0.644484,0.644484,0.644484,0.644484,0.644484,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,jacobi-2d,wamr,75936680,classic,x86-64,execution_time,0.766653,0.766653,0.766653,0.766653,0.766653,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,seidel-2d,wamr,75936680,classic,x86-64,execution_time,1.241296,1.241296,1.241296,1.241296,1.241296,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,heat-3d,wamr,75936680,classic,x86-64,execution_time,1.287699,1.287699,1.287699,1.287699,1.287699,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,cholesky,wamr,75936680,classic,x86-64,execution_time,2.185338,2.185338,2.185338,2.185338,2.185338,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,ludcmp,wamr,75936680,classic,x86-64,execution_time,2.444936,2.444936,2.444936,2.444936,2.444936,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,lu,wamr,75936680,classic,x86-64,execution_time,2.537903,2.537903,2.537903,2.537903,2.537903,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,bicg,wamr,d0fb2716,classic,x86-64,execution_time,0.017969,0.017969,0.017969,0.017969,0.017969,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,mvt,wamr,d0fb2716,classic,x86-64,execution_time,0.018483,0.018483,0.018483,0.018483,0.018483,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,atax,wamr,d0fb2716,classic,x86-64,execution_time,0.018227,0.018227,0.018227,0.018227,0.018227,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,gemver,wamr,d0fb2716,classic,x86-64,execution_time,0.02496,0.02496,0.02496,0.02496,0.02496,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,trmm,wamr,d0fb2716,classic,x86-64,execution_time,0.141784,0.141784,0.141784,0.141784,0.141784,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,doitgen,wamr,d0fb2716,classic,x86-64,execution_time,0.172666,0.172666,0.172666,0.172666,0.172666,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,syrk,wamr,d0fb2716,classic,x86-64,execution_time,0.209344,0.209344,0.209344,0.209344,0.209344,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,correlation,wamr,d0fb2716,classic,x86-64,execution_time,0.207792,0.207792,0.207792,0.207792,0.207792,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,covariance,wamr,d0fb2716,classic,x86-64,execution_time,0.212951,0.212951,0.212951,0.212951,0.212951,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,symm,wamr,d0fb2716,classic,x86-64,execution_time,0.238035,0.238035,0.238035,0.238035,0.238035,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,syr2k,wamr,d0fb2716,classic,x86-64,execution_time,0.350215,0.350215,0.350215,0.350215,0.350215,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,gemm,wamr,d0fb2716,classic,x86-64,execution_time,0.319672,0.319672,0.319672,0.319672,0.319672,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,gramschmidt,wamr,d0fb2716,classic,x86-64,execution_time,0.335218,0.335218,0.335218,0.335218,0.335218,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,2mm,wamr,d0fb2716,classic,x86-64,execution_time,0.424723,0.424723,0.424723,0.424723,0.424723,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,nussinov,wamr,d0fb2716,classic,x86-64,execution_time,0.546667,0.546667,0.546667,0.546667,0.546667,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,adi,wamr,d0fb2716,classic,x86-64,execution_time,0.999115,0.999115,0.999115,0.999115,0.999115,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,3mm,wamr,d0fb2716,classic,x86-64,execution_time,0.701918,0.701918,0.701918,0.701918,0.701918,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,fdtd-2d,wamr,d0fb2716,classic,x86-64,execution_time,0.652299,0.652299,0.652299,0.652299,0.652299,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,jacobi-2d,wamr,d0fb2716,classic,x86-64,execution_time,0.765231,0.765231,0.765231,0.765231,0.765231,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,seidel-2d,wamr,d0fb2716,classic,x86-64,execution_time,1.17988,1.17988,1.17988,1.17988,1.17988,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,heat-3d,wamr,d0fb2716,classic,x86-64,execution_time,1.261708,1.261708,1.261708,1.261708,1.261708,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,cholesky,wamr,d0fb2716,classic,x86-64,execution_time,2.189535,2.189535,2.189535,2.189535,2.189535,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,ludcmp,wamr,d0fb2716,classic,x86-64,execution_time,2.466752,2.466752,2.466752,2.466752,2.466752,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,lu,wamr,d0fb2716,classic,x86-64,execution_time,2.543609,2.543609,2.543609,2.543609,2.543609,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,bicg,wamr,219713bf,fast,x86-64,execution_time,0.014657,0.014657,0.014657,0.014657,0.014657,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,mvt,wamr,219713bf,fast,x86-64,execution_time,0.013676,0.013676,0.013676,0.013676,0.013676,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,atax,wamr,219713bf,fast,x86-64,execution_time,0.01292,0.01292,0.01292,0.01292,0.01292,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,gemver,wamr,219713bf,fast,x86-64,execution_time,0.018103,0.018103,0.018103,0.018103,0.018103,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,trmm,wamr,219713bf,fast,x86-64,execution_time,0.086667,0.086667,0.086667,0.086667,0.086667,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,doitgen,wamr,219713bf,fast,x86-64,execution_time,0.102064,0.102064,0.102064,0.102064,0.102064,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,syrk,wamr,219713bf,fast,x86-64,execution_time,0.1294,0.1294,0.1294,0.1294,0.1294,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,correlation,wamr,219713bf,fast,x86-64,execution_time,0.131333,0.131333,0.131333,0.131333,0.131333,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,covariance,wamr,219713bf,fast,x86-64,execution_time,0.139119,0.139119,0.139119,0.139119,0.139119,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,symm,wamr,219713bf,fast,x86-64,execution_time,0.159811,0.159811,0.159811,0.159811,0.159811,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,syr2k,wamr,219713bf,fast,x86-64,execution_time,0.194628,0.194628,0.194628,0.194628,0.194628,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,gemm,wamr,219713bf,fast,x86-64,execution_time,0.188115,0.188115,0.188115,0.188115,0.188115,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,gramschmidt,wamr,219713bf,fast,x86-64,execution_time,0.229007,0.229007,0.229007,0.229007,0.229007,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,2mm,wamr,219713bf,fast,x86-64,execution_time,0.250681,0.250681,0.250681,0.250681,0.250681,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,nussinov,wamr,219713bf,fast,x86-64,execution_time,0.339105,0.339105,0.339105,0.339105,0.339105,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,adi,wamr,219713bf,fast,x86-64,execution_time,0.466794,0.466794,0.466794,0.466794,0.466794,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,3mm,wamr,219713bf,fast,x86-64,execution_time,0.433735,0.433735,0.433735,0.433735,0.433735,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,fdtd-2d,wamr,219713bf,fast,x86-64,execution_time,0.391619,0.391619,0.391619,0.391619,0.391619,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,jacobi-2d,wamr,219713bf,fast,x86-64,execution_time,0.481426,0.481426,0.481426,0.481426,0.481426,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,seidel-2d,wamr,219713bf,fast,x86-64,execution_time,0.727676,0.727676,0.727676,0.727676,0.727676,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,heat-3d,wamr,219713bf,fast,x86-64,execution_time,0.779255,0.779255,0.779255,0.779255,0.779255,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,cholesky,wamr,219713bf,fast,x86-64,execution_time,1.439525,1.439525,1.439525,1.439525,1.439525,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,ludcmp,wamr,219713bf,fast,x86-64,execution_time,1.569316,1.569316,1.569316,1.569316,1.569316,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,lu,wamr,219713bf,fast,x86-64,execution_time,1.816773,1.816773,1.816773,1.816773,1.816773,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,bicg,wamr,14492757,fast,x86-64,execution_time,0.013936,0.013936,0.013936,0.013936,0.013936,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,mvt,wamr,14492757,fast,x86-64,execution_time,0.014109,0.014109,0.014109,0.014109,0.014109,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,atax,wamr,14492757,fast,x86-64,execution_time,0.014238,0.014238,0.014238,0.014238,0.014238,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,gemver,wamr,14492757,fast,x86-64,execution_time,0.017818,0.017818,0.017818,0.017818,0.017818,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,trmm,wamr,14492757,fast,x86-64,execution_time,0.087813,0.087813,0.087813,0.087813,0.087813,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,doitgen,wamr,14492757,fast,x86-64,execution_time,0.101431,0.101431,0.101431,0.101431,0.101431,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,syrk,wamr,14492757,fast,x86-64,execution_time,0.156707,0.156707,0.156707,0.156707,0.156707,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,correlation,wamr,14492757,fast,x86-64,execution_time,0.130919,0.130919,0.130919,0.130919,0.130919,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,covariance,wamr,14492757,fast,x86-64,execution_time,0.138782,0.138782,0.138782,0.138782,0.138782,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,symm,wamr,14492757,fast,x86-64,execution_time,0.15287,0.15287,0.15287,0.15287,0.15287,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,syr2k,wamr,14492757,fast,x86-64,execution_time,0.195359,0.195359,0.195359,0.195359,0.195359,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,gemm,wamr,14492757,fast,x86-64,execution_time,0.192623,0.192623,0.192623,0.192623,0.192623,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,gramschmidt,wamr,14492757,fast,x86-64,execution_time,0.235397,0.235397,0.235397,0.235397,0.235397,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,2mm,wamr,14492757,fast,x86-64,execution_time,0.257256,0.257256,0.257256,0.257256,0.257256,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,nussinov,wamr,14492757,fast,x86-64,execution_time,0.338928,0.338928,0.338928,0.338928,0.338928,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,adi,wamr,14492757,fast,x86-64,execution_time,0.46337,0.46337,0.46337,0.46337,0.46337,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,3mm,wamr,14492757,fast,x86-64,execution_time,0.435006,0.435006,0.435006,0.435006,0.435006,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,fdtd-2d,wamr,14492757,fast,x86-64,execution_time,0.424555,0.424555,0.424555,0.424555,0.424555,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,jacobi-2d,wamr,14492757,fast,x86-64,execution_time,0.480936,0.480936,0.480936,0.480936,0.480936,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,seidel-2d,wamr,14492757,fast,x86-64,execution_time,0.734578,0.734578,0.734578,0.734578,0.734578,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,heat-3d,wamr,14492757,fast,x86-64,execution_time,0.779767,0.779767,0.779767,0.779767,0.779767,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,cholesky,wamr,14492757,fast,x86-64,execution_time,1.44243,1.44243,1.44243,1.44243,1.44243,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,ludcmp,wamr,14492757,fast,x86-64,execution_time,1.614299,1.614299,1.614299,1.614299,1.614299,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,lu,wamr,14492757,fast,x86-64,execution_time,1.814185,1.814185,1.814185,1.814185,1.814185,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,bicg,wamr,ff4ee4a9,classic,x86-64,execution_time,0.014567,0.014567,0.014567,0.014567,0.014567,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,mvt,wamr,ff4ee4a9,classic,x86-64,execution_time,0.014295,0.014295,0.014295,0.014295,0.014295,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,atax,wamr,ff4ee4a9,classic,x86-64,execution_time,0.013096,0.013096,0.013096,0.013096,0.013096,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,gemver,wamr,ff4ee4a9,classic,x86-64,execution_time,0.017888,0.017888,0.017888,0.017888,0.017888,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,trmm,wamr,ff4ee4a9,classic,x86-64,execution_time,0.092711,0.092711,0.092711,0.092711,0.092711,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,doitgen,wamr,ff4ee4a9,classic,x86-64,execution_time,0.101545,0.101545,0.101545,0.101545,0.101545,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,syrk,wamr,ff4ee4a9,classic,x86-64,execution_time,0.160317,0.160317,0.160317,0.160317,0.160317,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,correlation,wamr,ff4ee4a9,classic,x86-64,execution_time,0.131616,0.131616,0.131616,0.131616,0.131616,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,covariance,wamr,ff4ee4a9,classic,x86-64,execution_time,0.138469,0.138469,0.138469,0.138469,0.138469,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,symm,wamr,ff4ee4a9,classic,x86-64,execution_time,0.152157,0.152157,0.152157,0.152157,0.152157,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,syr2k,wamr,ff4ee4a9,classic,x86-64,execution_time,0.195422,0.195422,0.195422,0.195422,0.195422,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,gemm,wamr,ff4ee4a9,classic,x86-64,execution_time,0.193018,0.193018,0.193018,0.193018,0.193018,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,gramschmidt,wamr,ff4ee4a9,classic,x86-64,execution_time,0.23529,0.23529,0.23529,0.23529,0.23529,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,2mm,wamr,ff4ee4a9,classic,x86-64,execution_time,0.250696,0.250696,0.250696,0.250696,0.250696,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,nussinov,wamr,ff4ee4a9,classic,x86-64,execution_time,0.339679,0.339679,0.339679,0.339679,0.339679,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,adi,wamr,ff4ee4a9,classic,x86-64,execution_time,0.466772,0.466772,0.466772,0.466772,0.466772,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,3mm,wamr,ff4ee4a9,classic,x86-64,execution_time,0.434515,0.434515,0.434515,0.434515,0.434515,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,fdtd-2d,wamr,ff4ee4a9,classic,x86-64,execution_time,0.42341,0.42341,0.42341,0.42341,0.42341,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,jacobi-2d,wamr,ff4ee4a9,classic,x86-64,execution_time,0.481109,0.481109,0.481109,0.481109,0.481109,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,seidel-2d,wamr,ff4ee4a9,classic,x86-64,execution_time,0.752732,0.752732,0.752732,0.752732,0.752732,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,heat-3d,wamr,ff4ee4a9,classic,x86-64,execution_time,0.778992,0.778992,0.778992,0.778992,0.778992,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,cholesky,wamr,ff4ee4a9,classic,x86-64,execution_time,1.438913,1.438913,1.438913,1.438913,1.438913,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,ludcmp,wamr,ff4ee4a9,classic,x86-64,execution_time,1.615056,1.615056,1.615056,1.615056,1.615056,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,lu,wamr,ff4ee4a9,classic,x86-64,execution_time,1.810453,1.810453,1.810453,1.810453,1.810453,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,bicg,wamr,5ddc335a,classic,x86-64,execution_time,0.013939,0.013939,0.013939,0.013939,0.013939,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,mvt,wamr,5ddc335a,classic,x86-64,execution_time,0.014135,0.014135,0.014135,0.014135,0.014135,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,atax,wamr,5ddc335a,classic,x86-64,execution_time,0.013973,0.013973,0.013973,0.013973,0.013973,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,gemver,wamr,5ddc335a,classic,x86-64,execution_time,0.01751,0.01751,0.01751,0.01751,0.01751,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,trmm,wamr,5ddc335a,classic,x86-64,execution_time,0.09112,0.09112,0.09112,0.09112,0.09112,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,doitgen,wamr,5ddc335a,classic,x86-64,execution_time,0.101724,0.101724,0.101724,0.101724,0.101724,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,syrk,wamr,5ddc335a,classic,x86-64,execution_time,0.135909,0.135909,0.135909,0.135909,0.135909,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,correlation,wamr,5ddc335a,classic,x86-64,execution_time,0.13478,0.13478,0.13478,0.13478,0.13478,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,covariance,wamr,5ddc335a,classic,x86-64,execution_time,0.139196,0.139196,0.139196,0.139196,0.139196,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,symm,wamr,5ddc335a,classic,x86-64,execution_time,0.158583,0.158583,0.158583,0.158583,0.158583,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,syr2k,wamr,5ddc335a,classic,x86-64,execution_time,0.191069,0.191069,0.191069,0.191069,0.191069,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,gemm,wamr,5ddc335a,classic,x86-64,execution_time,0.192935,0.192935,0.192935,0.192935,0.192935,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,gramschmidt,wamr,5ddc335a,classic,x86-64,execution_time,0.227439,0.227439,0.227439,0.227439,0.227439,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,2mm,wamr,5ddc335a,classic,x86-64,execution_time,0.259567,0.259567,0.259567,0.259567,0.259567,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,nussinov,wamr,5ddc335a,classic,x86-64,execution_time,0.340525,0.340525,0.340525,0.340525,0.340525,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,adi,wamr,5ddc335a,classic,x86-64,execution_time,0.455529,0.455529,0.455529,0.455529,0.455529,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,3mm,wamr,5ddc335a,classic,x86-64,execution_time,0.440025,0.440025,0.440025,0.440025,0.440025,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,fdtd-2d,wamr,5ddc335a,classic,x86-64,execution_time,0.430347,0.430347,0.430347,0.430347,0.430347,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,jacobi-2d,wamr,5ddc335a,classic,x86-64,execution_time,0.467415,0.467415,0.467415,0.467415,0.467415,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,seidel-2d,wamr,5ddc335a,classic,x86-64,execution_time,0.743614,0.743614,0.743614,0.743614,0.743614,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,heat-3d,wamr,5ddc335a,classic,x86-64,execution_time,0.776723,0.776723,0.776723,0.776723,0.776723,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,cholesky,wamr,5ddc335a,classic,x86-64,execution_time,1.433922,1.433922,1.433922,1.433922,1.433922,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,ludcmp,wamr,5ddc335a,classic,x86-64,execution_time,1.594442,1.594442,1.594442,1.594442,1.594442,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,lu,wamr,5ddc335a,classic,x86-64,execution_time,1.607899,1.607899,1.607899,1.607899,1.607899,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,bicg,wamr,75936680,classic,x86-64,execution_time,0.013877,0.013877,0.013877,0.013877,0.013877,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,mvt,wamr,75936680,classic,x86-64,execution_time,0.013501,0.013501,0.013501,0.013501,0.013501,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,atax,wamr,75936680,classic,x86-64,execution_time,0.012873,0.012873,0.012873,0.012873,0.012873,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,gemver,wamr,75936680,classic,x86-64,execution_time,0.017119,0.017119,0.017119,0.017119,0.017119,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,trmm,wamr,75936680,classic,x86-64,execution_time,0.084309,0.084309,0.084309,0.084309,0.084309,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,doitgen,wamr,75936680,classic,x86-64,execution_time,0.103985,0.103985,0.103985,0.103985,0.103985,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,syrk,wamr,75936680,classic,x86-64,execution_time,0.125848,0.125848,0.125848,0.125848,0.125848,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,correlation,wamr,75936680,classic,x86-64,execution_time,0.133052,0.133052,0.133052,0.133052,0.133052,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,covariance,wamr,75936680,classic,x86-64,execution_time,0.139977,0.139977,0.139977,0.139977,0.139977,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,symm,wamr,75936680,classic,x86-64,execution_time,0.149091,0.149091,0.149091,0.149091,0.149091,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,syr2k,wamr,75936680,classic,x86-64,execution_time,0.19662,0.19662,0.19662,0.19662,0.19662,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,gemm,wamr,75936680,classic,x86-64,execution_time,0.21263,0.21263,0.21263,0.21263,0.21263,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,gramschmidt,wamr,75936680,classic,x86-64,execution_time,0.21024,0.21024,0.21024,0.21024,0.21024,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,2mm,wamr,75936680,classic,x86-64,execution_time,0.259238,0.259238,0.259238,0.259238,0.259238,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,nussinov,wamr,75936680,classic,x86-64,execution_time,0.322787,0.322787,0.322787,0.322787,0.322787,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,adi,wamr,75936680,classic,x86-64,execution_time,0.464262,0.464262,0.464262,0.464262,0.464262,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,3mm,wamr,75936680,classic,x86-64,execution_time,0.439782,0.439782,0.439782,0.439782,0.439782,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,fdtd-2d,wamr,75936680,classic,x86-64,execution_time,0.37825,0.37825,0.37825,0.37825,0.37825,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,jacobi-2d,wamr,75936680,classic,x86-64,execution_time,0.481093,0.481093,0.481093,0.481093,0.481093,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,seidel-2d,wamr,75936680,classic,x86-64,execution_time,0.709151,0.709151,0.709151,0.709151,0.709151,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,heat-3d,wamr,75936680,classic,x86-64,execution_time,0.784381,0.784381,0.784381,0.784381,0.784381,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,cholesky,wamr,75936680,classic,x86-64,execution_time,1.420781,1.420781,1.420781,1.420781,1.420781,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,ludcmp,wamr,75936680,classic,x86-64,execution_time,1.75282,1.75282,1.75282,1.75282,1.75282,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,lu,wamr,75936680,classic,x86-64,execution_time,1.629371,1.629371,1.629371,1.629371,1.629371,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,bicg,wamr,d0fb2716,classic,x86-64,execution_time,0.01419,0.01419,0.01419,0.01419,0.01419,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,mvt,wamr,d0fb2716,classic,x86-64,execution_time,0.013887,0.013887,0.013887,0.013887,0.013887,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,atax,wamr,d0fb2716,classic,x86-64,execution_time,0.013458,0.013458,0.013458,0.013458,0.013458,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,gemver,wamr,d0fb2716,classic,x86-64,execution_time,0.017891,0.017891,0.017891,0.017891,0.017891,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,trmm,wamr,d0fb2716,classic,x86-64,execution_time,0.087161,0.087161,0.087161,0.087161,0.087161,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,doitgen,wamr,d0fb2716,classic,x86-64,execution_time,0.100822,0.100822,0.100822,0.100822,0.100822,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,syrk,wamr,d0fb2716,classic,x86-64,execution_time,0.157826,0.157826,0.157826,0.157826,0.157826,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,correlation,wamr,d0fb2716,classic,x86-64,execution_time,0.132618,0.132618,0.132618,0.132618,0.132618,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,covariance,wamr,d0fb2716,classic,x86-64,execution_time,0.137527,0.137527,0.137527,0.137527,0.137527,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,symm,wamr,d0fb2716,classic,x86-64,execution_time,0.15095,0.15095,0.15095,0.15095,0.15095,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,syr2k,wamr,d0fb2716,classic,x86-64,execution_time,0.191786,0.191786,0.191786,0.191786,0.191786,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,gemm,wamr,d0fb2716,classic,x86-64,execution_time,0.190775,0.190775,0.190775,0.190775,0.190775,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,gramschmidt,wamr,d0fb2716,classic,x86-64,execution_time,0.219876,0.219876,0.219876,0.219876,0.219876,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,2mm,wamr,d0fb2716,classic,x86-64,execution_time,0.253733,0.253733,0.253733,0.253733,0.253733,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,nussinov,wamr,d0fb2716,classic,x86-64,execution_time,0.346171,0.346171,0.346171,0.346171,0.346171,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,adi,wamr,d0fb2716,classic,x86-64,execution_time,0.459674,0.459674,0.459674,0.459674,0.459674,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,3mm,wamr,d0fb2716,classic,x86-64,execution_time,0.437991,0.437991,0.437991,0.437991,0.437991,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,fdtd-2d,wamr,d0fb2716,classic,x86-64,execution_time,0.382001,0.382001,0.382001,0.382001,0.382001,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,jacobi-2d,wamr,d0fb2716,classic,x86-64,execution_time,0.467497,0.467497,0.467497,0.467497,0.467497,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,seidel-2d,wamr,d0fb2716,classic,x86-64,execution_time,0.716725,0.716725,0.716725,0.716725,0.716725,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,heat-3d,wamr,d0fb2716,classic,x86-64,execution_time,0.813661,0.813661,0.813661,0.813661,0.813661,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,cholesky,wamr,d0fb2716,classic,x86-64,execution_time,1.398914,1.398914,1.398914,1.398914,1.398914,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,ludcmp,wamr,d0fb2716,classic,x86-64,execution_time,1.543194,1.543194,1.543194,1.543194,1.543194,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,lu,wamr,d0fb2716,classic,x86-64,execution_time,1.602832,1.602832,1.602832,1.602832,1.602832,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,bicg,wasm3,49290f1,base,x86-64,execution_time,0.011274,0.011274,0.011274,0.011274,0.011274,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,mvt,wasm3,49290f1,base,x86-64,execution_time,0.010551,0.010551,0.010551,0.010551,0.010551,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,atax,wasm3,49290f1,base,x86-64,execution_time,0.01135,0.01135,0.01135,0.01135,0.01135,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,gemver,wasm3,49290f1,base,x86-64,execution_time,0.013945,0.013945,0.013945,0.013945,0.013945,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,trmm,wasm3,49290f1,base,x86-64,execution_time,0.054909,0.054909,0.054909,0.054909,0.054909,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,doitgen,wasm3,49290f1,base,x86-64,execution_time,0.071992,0.071992,0.071992,0.071992,0.071992,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,syrk,wasm3,49290f1,base,x86-64,execution_time,0.088208,0.088208,0.088208,0.088208,0.088208,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,correlation,wasm3,49290f1,base,x86-64,execution_time,0.082178,0.082178,0.082178,0.082178,0.082178,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,covariance,wasm3,49290f1,base,x86-64,execution_time,0.096109,0.096109,0.096109,0.096109,0.096109,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,symm,wasm3,49290f1,base,x86-64,execution_time,0.105423,0.105423,0.105423,0.105423,0.105423,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,syr2k,wasm3,49290f1,base,x86-64,execution_time,0.135259,0.135259,0.135259,0.135259,0.135259,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,gemm,wasm3,49290f1,base,x86-64,execution_time,0.135991,0.135991,0.135991,0.135991,0.135991,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,gramschmidt,wasm3,49290f1,base,x86-64,execution_time,0.142208,0.142208,0.142208,0.142208,0.142208,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,2mm,wasm3,49290f1,base,x86-64,execution_time,0.156831,0.156831,0.156831,0.156831,0.156831,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,nussinov,wasm3,49290f1,base,x86-64,execution_time,0.231836,0.231836,0.231836,0.231836,0.231836,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,adi,wasm3,49290f1,base,x86-64,execution_time,0.303488,0.303488,0.303488,0.303488,0.303488,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,3mm,wasm3,49290f1,base,x86-64,execution_time,0.264483,0.264483,0.264483,0.264483,0.264483,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,fdtd-2d,wasm3,49290f1,base,x86-64,execution_time,0.274345,0.274345,0.274345,0.274345,0.274345,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,jacobi-2d,wasm3,49290f1,base,x86-64,execution_time,0.331659,0.331659,0.331659,0.331659,0.331659,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,seidel-2d,wasm3,49290f1,base,x86-64,execution_time,0.48076,0.48076,0.48076,0.48076,0.48076,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,heat-3d,wasm3,49290f1,base,x86-64,execution_time,0.501045,0.501045,0.501045,0.501045,0.501045,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,cholesky,wasm3,49290f1,base,x86-64,execution_time,0.937802,0.937802,0.937802,0.937802,0.937802,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,ludcmp,wasm3,49290f1,base,x86-64,execution_time,1.072148,1.072148,1.072148,1.072148,1.072148,2023-04-13 10:46:02.047156-04
+2023-02-05,NIGHTLY_RUN,PolybenchC,lu,wasm3,49290f1,base,x86-64,execution_time,1.054491,1.054491,1.054491,1.054491,1.054491,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,bicg,wasm3,49290f1,base,x86-64,execution_time,0.011274,0.011274,0.011274,0.011274,0.011274,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,mvt,wasm3,49290f1,base,x86-64,execution_time,0.010551,0.010551,0.010551,0.010551,0.010551,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,atax,wasm3,49290f1,base,x86-64,execution_time,0.01135,0.01135,0.01135,0.01135,0.01135,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,gemver,wasm3,49290f1,base,x86-64,execution_time,0.013945,0.013945,0.013945,0.013945,0.013945,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,trmm,wasm3,49290f1,base,x86-64,execution_time,0.054909,0.054909,0.054909,0.054909,0.054909,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,doitgen,wasm3,49290f1,base,x86-64,execution_time,0.071992,0.071992,0.071992,0.071992,0.071992,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,syrk,wasm3,49290f1,base,x86-64,execution_time,0.088208,0.088208,0.088208,0.088208,0.088208,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,correlation,wasm3,49290f1,base,x86-64,execution_time,0.082178,0.082178,0.082178,0.082178,0.082178,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,covariance,wasm3,49290f1,base,x86-64,execution_time,0.096109,0.096109,0.096109,0.096109,0.096109,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,symm,wasm3,49290f1,base,x86-64,execution_time,0.105423,0.105423,0.105423,0.105423,0.105423,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,syr2k,wasm3,49290f1,base,x86-64,execution_time,0.135259,0.135259,0.135259,0.135259,0.135259,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,gemm,wasm3,49290f1,base,x86-64,execution_time,0.135991,0.135991,0.135991,0.135991,0.135991,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,gramschmidt,wasm3,49290f1,base,x86-64,execution_time,0.142208,0.142208,0.142208,0.142208,0.142208,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,2mm,wasm3,49290f1,base,x86-64,execution_time,0.156831,0.156831,0.156831,0.156831,0.156831,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,nussinov,wasm3,49290f1,base,x86-64,execution_time,0.231836,0.231836,0.231836,0.231836,0.231836,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,adi,wasm3,49290f1,base,x86-64,execution_time,0.303488,0.303488,0.303488,0.303488,0.303488,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,3mm,wasm3,49290f1,base,x86-64,execution_time,0.264483,0.264483,0.264483,0.264483,0.264483,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,fdtd-2d,wasm3,49290f1,base,x86-64,execution_time,0.274345,0.274345,0.274345,0.274345,0.274345,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,jacobi-2d,wasm3,49290f1,base,x86-64,execution_time,0.331659,0.331659,0.331659,0.331659,0.331659,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,seidel-2d,wasm3,49290f1,base,x86-64,execution_time,0.48076,0.48076,0.48076,0.48076,0.48076,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,heat-3d,wasm3,49290f1,base,x86-64,execution_time,0.501045,0.501045,0.501045,0.501045,0.501045,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,cholesky,wasm3,49290f1,base,x86-64,execution_time,0.937802,0.937802,0.937802,0.937802,0.937802,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,ludcmp,wasm3,49290f1,base,x86-64,execution_time,1.072148,1.072148,1.072148,1.072148,1.072148,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,lu,wasm3,49290f1,base,x86-64,execution_time,1.054491,1.054491,1.054491,1.054491,1.054491,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,bicg,wasm3,45040,base,x86-64,execution_time,0.01095,0.01095,0.01095,0.01095,0.01095,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,mvt,wasm3,45040,base,x86-64,execution_time,0.009866,0.009866,0.009866,0.009866,0.009866,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,atax,wasm3,45040,base,x86-64,execution_time,0.010806,0.010806,0.010806,0.010806,0.010806,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,gemver,wasm3,45040,base,x86-64,execution_time,0.013454,0.013454,0.013454,0.013454,0.013454,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,trmm,wasm3,45040,base,x86-64,execution_time,0.055736,0.055736,0.055736,0.055736,0.055736,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,doitgen,wasm3,45040,base,x86-64,execution_time,0.072219,0.072219,0.072219,0.072219,0.072219,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,syrk,wasm3,45040,base,x86-64,execution_time,0.08823,0.08823,0.08823,0.08823,0.08823,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,correlation,wasm3,45040,base,x86-64,execution_time,0.081882,0.081882,0.081882,0.081882,0.081882,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,covariance,wasm3,45040,base,x86-64,execution_time,0.106265,0.106265,0.106265,0.106265,0.106265,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,symm,wasm3,45040,base,x86-64,execution_time,0.105037,0.105037,0.105037,0.105037,0.105037,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,syr2k,wasm3,45040,base,x86-64,execution_time,0.135425,0.135425,0.135425,0.135425,0.135425,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,gemm,wasm3,45040,base,x86-64,execution_time,0.136375,0.136375,0.136375,0.136375,0.136375,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,gramschmidt,wasm3,45040,base,x86-64,execution_time,0.14189,0.14189,0.14189,0.14189,0.14189,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,2mm,wasm3,45040,base,x86-64,execution_time,0.161892,0.161892,0.161892,0.161892,0.161892,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,nussinov,wasm3,45040,base,x86-64,execution_time,0.231484,0.231484,0.231484,0.231484,0.231484,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,adi,wasm3,45040,base,x86-64,execution_time,0.303449,0.303449,0.303449,0.303449,0.303449,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,3mm,wasm3,45040,base,x86-64,execution_time,0.264291,0.264291,0.264291,0.264291,0.264291,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,fdtd-2d,wasm3,45040,base,x86-64,execution_time,0.27917,0.27917,0.27917,0.27917,0.27917,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,jacobi-2d,wasm3,45040,base,x86-64,execution_time,0.332012,0.332012,0.332012,0.332012,0.332012,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,seidel-2d,wasm3,45040,base,x86-64,execution_time,0.481188,0.481188,0.481188,0.481188,0.481188,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,heat-3d,wasm3,45040,base,x86-64,execution_time,0.499357,0.499357,0.499357,0.499357,0.499357,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,cholesky,wasm3,45040,base,x86-64,execution_time,0.938373,0.938373,0.938373,0.938373,0.938373,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,ludcmp,wasm3,45040,base,x86-64,execution_time,1.071844,1.071844,1.071844,1.071844,1.071844,2023-04-13 10:46:02.047156-04
+2022-12-05,NIGHTLY_RUN,PolybenchC,lu,wasm3,45040,base,x86-64,execution_time,1.0547,1.0547,1.0547,1.0547,1.0547,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,bicg,wasm3,1a6ca56,base,x86-64,execution_time,0.010843,0.010843,0.010843,0.010843,0.010843,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,mvt,wasm3,1a6ca56,base,x86-64,execution_time,0.009879,0.009879,0.009879,0.009879,0.009879,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,atax,wasm3,1a6ca56,base,x86-64,execution_time,0.010759,0.010759,0.010759,0.010759,0.010759,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,gemver,wasm3,1a6ca56,base,x86-64,execution_time,0.012974,0.012974,0.012974,0.012974,0.012974,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,trmm,wasm3,1a6ca56,base,x86-64,execution_time,0.060666,0.060666,0.060666,0.060666,0.060666,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,doitgen,wasm3,1a6ca56,base,x86-64,execution_time,0.067327,0.067327,0.067327,0.067327,0.067327,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,syrk,wasm3,1a6ca56,base,x86-64,execution_time,0.082919,0.082919,0.082919,0.082919,0.082919,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,correlation,wasm3,1a6ca56,base,x86-64,execution_time,0.076246,0.076246,0.076246,0.076246,0.076246,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,covariance,wasm3,1a6ca56,base,x86-64,execution_time,0.081486,0.081486,0.081486,0.081486,0.081486,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,symm,wasm3,1a6ca56,base,x86-64,execution_time,0.099671,0.099671,0.099671,0.099671,0.099671,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,syr2k,wasm3,1a6ca56,base,x86-64,execution_time,0.127825,0.127825,0.127825,0.127825,0.127825,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,gemm,wasm3,1a6ca56,base,x86-64,execution_time,0.127048,0.127048,0.127048,0.127048,0.127048,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,gramschmidt,wasm3,1a6ca56,base,x86-64,execution_time,0.13363,0.13363,0.13363,0.13363,0.13363,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,2mm,wasm3,1a6ca56,base,x86-64,execution_time,0.153342,0.153342,0.153342,0.153342,0.153342,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,nussinov,wasm3,1a6ca56,base,x86-64,execution_time,0.234947,0.234947,0.234947,0.234947,0.234947,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,adi,wasm3,1a6ca56,base,x86-64,execution_time,0.28064,0.28064,0.28064,0.28064,0.28064,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,3mm,wasm3,1a6ca56,base,x86-64,execution_time,0.248783,0.248783,0.248783,0.248783,0.248783,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,fdtd-2d,wasm3,1a6ca56,base,x86-64,execution_time,0.261621,0.261621,0.261621,0.261621,0.261621,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,jacobi-2d,wasm3,1a6ca56,base,x86-64,execution_time,0.307483,0.307483,0.307483,0.307483,0.307483,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,seidel-2d,wasm3,1a6ca56,base,x86-64,execution_time,0.408897,0.408897,0.408897,0.408897,0.408897,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,heat-3d,wasm3,1a6ca56,base,x86-64,execution_time,0.458272,0.458272,0.458272,0.458272,0.458272,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,cholesky,wasm3,1a6ca56,base,x86-64,execution_time,0.876448,0.876448,0.876448,0.876448,0.876448,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,ludcmp,wasm3,1a6ca56,base,x86-64,execution_time,1.005549,1.005549,1.005549,1.005549,1.005549,2023-04-13 10:46:02.047156-04
+2022-11-05,NIGHTLY_RUN,PolybenchC,lu,wasm3,1a6ca56,base,x86-64,execution_time,0.998503,0.998503,0.998503,0.998503,0.998503,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,bicg,wasm3,1a6ca56,base,x86-64,execution_time,0.010843,0.010843,0.010843,0.010843,0.010843,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,mvt,wasm3,1a6ca56,base,x86-64,execution_time,0.009879,0.009879,0.009879,0.009879,0.009879,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,atax,wasm3,1a6ca56,base,x86-64,execution_time,0.010759,0.010759,0.010759,0.010759,0.010759,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,gemver,wasm3,1a6ca56,base,x86-64,execution_time,0.012974,0.012974,0.012974,0.012974,0.012974,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,trmm,wasm3,1a6ca56,base,x86-64,execution_time,0.060666,0.060666,0.060666,0.060666,0.060666,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,doitgen,wasm3,1a6ca56,base,x86-64,execution_time,0.067327,0.067327,0.067327,0.067327,0.067327,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,syrk,wasm3,1a6ca56,base,x86-64,execution_time,0.082919,0.082919,0.082919,0.082919,0.082919,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,correlation,wasm3,1a6ca56,base,x86-64,execution_time,0.076246,0.076246,0.076246,0.076246,0.076246,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,covariance,wasm3,1a6ca56,base,x86-64,execution_time,0.081486,0.081486,0.081486,0.081486,0.081486,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,symm,wasm3,1a6ca56,base,x86-64,execution_time,0.099671,0.099671,0.099671,0.099671,0.099671,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,syr2k,wasm3,1a6ca56,base,x86-64,execution_time,0.127825,0.127825,0.127825,0.127825,0.127825,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,gemm,wasm3,1a6ca56,base,x86-64,execution_time,0.127048,0.127048,0.127048,0.127048,0.127048,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,gramschmidt,wasm3,1a6ca56,base,x86-64,execution_time,0.13363,0.13363,0.13363,0.13363,0.13363,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,2mm,wasm3,1a6ca56,base,x86-64,execution_time,0.153342,0.153342,0.153342,0.153342,0.153342,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,nussinov,wasm3,1a6ca56,base,x86-64,execution_time,0.234947,0.234947,0.234947,0.234947,0.234947,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,adi,wasm3,1a6ca56,base,x86-64,execution_time,0.28064,0.28064,0.28064,0.28064,0.28064,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,3mm,wasm3,1a6ca56,base,x86-64,execution_time,0.248783,0.248783,0.248783,0.248783,0.248783,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,fdtd-2d,wasm3,1a6ca56,base,x86-64,execution_time,0.261621,0.261621,0.261621,0.261621,0.261621,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,jacobi-2d,wasm3,1a6ca56,base,x86-64,execution_time,0.307483,0.307483,0.307483,0.307483,0.307483,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,seidel-2d,wasm3,1a6ca56,base,x86-64,execution_time,0.408897,0.408897,0.408897,0.408897,0.408897,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,heat-3d,wasm3,1a6ca56,base,x86-64,execution_time,0.458272,0.458272,0.458272,0.458272,0.458272,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,cholesky,wasm3,1a6ca56,base,x86-64,execution_time,0.876448,0.876448,0.876448,0.876448,0.876448,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,ludcmp,wasm3,1a6ca56,base,x86-64,execution_time,1.005549,1.005549,1.005549,1.005549,1.005549,2023-04-13 10:46:02.047156-04
+2022-10-05,NIGHTLY_RUN,PolybenchC,lu,wasm3,1a6ca56,base,x86-64,execution_time,0.998503,0.998503,0.998503,0.998503,0.998503,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,bicg,wasm3,1a6ca56,base,x86-64,execution_time,0.010843,0.010843,0.010843,0.010843,0.010843,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,mvt,wasm3,1a6ca56,base,x86-64,execution_time,0.009879,0.009879,0.009879,0.009879,0.009879,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,atax,wasm3,1a6ca56,base,x86-64,execution_time,0.010759,0.010759,0.010759,0.010759,0.010759,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,gemver,wasm3,1a6ca56,base,x86-64,execution_time,0.012974,0.012974,0.012974,0.012974,0.012974,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,trmm,wasm3,1a6ca56,base,x86-64,execution_time,0.060666,0.060666,0.060666,0.060666,0.060666,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,doitgen,wasm3,1a6ca56,base,x86-64,execution_time,0.067327,0.067327,0.067327,0.067327,0.067327,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,syrk,wasm3,1a6ca56,base,x86-64,execution_time,0.082919,0.082919,0.082919,0.082919,0.082919,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,correlation,wasm3,1a6ca56,base,x86-64,execution_time,0.076246,0.076246,0.076246,0.076246,0.076246,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,covariance,wasm3,1a6ca56,base,x86-64,execution_time,0.081486,0.081486,0.081486,0.081486,0.081486,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,symm,wasm3,1a6ca56,base,x86-64,execution_time,0.099671,0.099671,0.099671,0.099671,0.099671,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,syr2k,wasm3,1a6ca56,base,x86-64,execution_time,0.127825,0.127825,0.127825,0.127825,0.127825,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,gemm,wasm3,1a6ca56,base,x86-64,execution_time,0.127048,0.127048,0.127048,0.127048,0.127048,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,gramschmidt,wasm3,1a6ca56,base,x86-64,execution_time,0.13363,0.13363,0.13363,0.13363,0.13363,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,2mm,wasm3,1a6ca56,base,x86-64,execution_time,0.153342,0.153342,0.153342,0.153342,0.153342,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,nussinov,wasm3,1a6ca56,base,x86-64,execution_time,0.234947,0.234947,0.234947,0.234947,0.234947,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,adi,wasm3,1a6ca56,base,x86-64,execution_time,0.28064,0.28064,0.28064,0.28064,0.28064,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,3mm,wasm3,1a6ca56,base,x86-64,execution_time,0.248783,0.248783,0.248783,0.248783,0.248783,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,fdtd-2d,wasm3,1a6ca56,base,x86-64,execution_time,0.261621,0.261621,0.261621,0.261621,0.261621,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,jacobi-2d,wasm3,1a6ca56,base,x86-64,execution_time,0.307483,0.307483,0.307483,0.307483,0.307483,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,seidel-2d,wasm3,1a6ca56,base,x86-64,execution_time,0.408897,0.408897,0.408897,0.408897,0.408897,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,heat-3d,wasm3,1a6ca56,base,x86-64,execution_time,0.458272,0.458272,0.458272,0.458272,0.458272,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,cholesky,wasm3,1a6ca56,base,x86-64,execution_time,0.876448,0.876448,0.876448,0.876448,0.876448,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,ludcmp,wasm3,1a6ca56,base,x86-64,execution_time,1.005549,1.005549,1.005549,1.005549,1.005549,2023-04-13 10:46:02.047156-04
+2022-09-05,NIGHTLY_RUN,PolybenchC,lu,wasm3,1a6ca56,base,x86-64,execution_time,0.998503,0.998503,0.998503,0.998503,0.998503,2023-04-13 10:46:02.047156-04
+2023-02-19,NIGHTLY_RUN,PolybenchC,bicg,wizard,b6940efa32e9e240f0c1adceec771eb922fa563c,base,x86-64,execution_time,0.016313,0.016313,0.016313,0.016313,0.016313,2023-04-13 10:46:02.047156-04
+2023-02-19,NIGHTLY_RUN,PolybenchC,mvt,wizard,b6940efa32e9e240f0c1adceec771eb922fa563c,base,x86-64,execution_time,0.01858,0.01858,0.01858,0.01858,0.01858,2023-04-13 10:46:02.047156-04
+2023-02-19,NIGHTLY_RUN,PolybenchC,atax,wizard,b6940efa32e9e240f0c1adceec771eb922fa563c,base,x86-64,execution_time,0.019521,0.019521,0.019521,0.019521,0.019521,2023-04-13 10:46:02.047156-04
+2023-02-19,NIGHTLY_RUN,PolybenchC,gemver,wizard,b6940efa32e9e240f0c1adceec771eb922fa563c,base,x86-64,execution_time,0.0258,0.0258,0.0258,0.0258,0.0258,2023-04-13 10:46:02.047156-04
+2023-02-19,NIGHTLY_RUN,PolybenchC,trmm,wizard,b6940efa32e9e240f0c1adceec771eb922fa563c,base,x86-64,execution_time,0.150967,0.150967,0.150967,0.150967,0.150967,2023-04-13 10:46:02.047156-04
+2023-02-19,NIGHTLY_RUN,PolybenchC,doitgen,wizard,b6940efa32e9e240f0c1adceec771eb922fa563c,base,x86-64,execution_time,0.177239,0.177239,0.177239,0.177239,0.177239,2023-04-13 10:46:02.047156-04
+2023-02-19,NIGHTLY_RUN,PolybenchC,syrk,wizard,b6940efa32e9e240f0c1adceec771eb922fa563c,base,x86-64,execution_time,0.248685,0.248685,0.248685,0.248685,0.248685,2023-04-13 10:46:02.047156-04
+2023-02-19,NIGHTLY_RUN,PolybenchC,correlation,wizard,b6940efa32e9e240f0c1adceec771eb922fa563c,base,x86-64,execution_time,0.272198,0.272198,0.272198,0.272198,0.272198,2023-04-13 10:46:02.047156-04
+2023-02-19,NIGHTLY_RUN,PolybenchC,covariance,wizard,b6940efa32e9e240f0c1adceec771eb922fa563c,base,x86-64,execution_time,0.27145,0.27145,0.27145,0.27145,0.27145,2023-04-13 10:46:02.047156-04
+2023-02-19,NIGHTLY_RUN,PolybenchC,symm,wizard,b6940efa32e9e240f0c1adceec771eb922fa563c,base,x86-64,execution_time,0.28392,0.28392,0.28392,0.28392,0.28392,2023-04-13 10:46:02.047156-04
+2023-02-19,NIGHTLY_RUN,PolybenchC,syr2k,wizard,b6940efa32e9e240f0c1adceec771eb922fa563c,base,x86-64,execution_time,0.355724,0.355724,0.355724,0.355724,0.355724,2023-04-13 10:46:02.047156-04
+2023-02-19,NIGHTLY_RUN,PolybenchC,gemm,wizard,b6940efa32e9e240f0c1adceec771eb922fa563c,base,x86-64,execution_time,0.382585,0.382585,0.382585,0.382585,0.382585,2023-04-13 10:46:02.047156-04
+2023-02-19,NIGHTLY_RUN,PolybenchC,gramschmidt,wizard,b6940efa32e9e240f0c1adceec771eb922fa563c,base,x86-64,execution_time,0.447974,0.447974,0.447974,0.447974,0.447974,2023-04-13 10:46:02.047156-04
+2023-02-19,NIGHTLY_RUN,PolybenchC,2mm,wizard,b6940efa32e9e240f0c1adceec771eb922fa563c,base,x86-64,execution_time,0.447053,0.447053,0.447053,0.447053,0.447053,2023-04-13 10:46:02.047156-04
+2023-02-19,NIGHTLY_RUN,PolybenchC,nussinov,wizard,b6940efa32e9e240f0c1adceec771eb922fa563c,base,x86-64,execution_time,0.718328,0.718328,0.718328,0.718328,0.718328,2023-04-13 10:46:02.047156-04
+2023-02-19,NIGHTLY_RUN,PolybenchC,adi,wizard,b6940efa32e9e240f0c1adceec771eb922fa563c,base,x86-64,execution_time,0.78738,0.78738,0.78738,0.78738,0.78738,2023-04-13 10:46:02.047156-04
+2023-02-19,NIGHTLY_RUN,PolybenchC,3mm,wizard,b6940efa32e9e240f0c1adceec771eb922fa563c,base,x86-64,execution_time,0.819447,0.819447,0.819447,0.819447,0.819447,2023-04-13 10:46:02.047156-04
+2023-02-19,NIGHTLY_RUN,PolybenchC,fdtd-2d,wizard,b6940efa32e9e240f0c1adceec771eb922fa563c,base,x86-64,execution_time,0.808933,0.808933,0.808933,0.808933,0.808933,2023-04-13 10:46:02.047156-04
+2023-02-19,NIGHTLY_RUN,PolybenchC,jacobi-2d,wizard,b6940efa32e9e240f0c1adceec771eb922fa563c,base,x86-64,execution_time,1.073999,1.073999,1.073999,1.073999,1.073999,2023-04-13 10:46:02.047156-04
+2023-02-19,NIGHTLY_RUN,PolybenchC,seidel-2d,wizard,b6940efa32e9e240f0c1adceec771eb922fa563c,base,x86-64,execution_time,1.144815,1.144815,1.144815,1.144815,1.144815,2023-04-13 10:46:02.047156-04
+2023-02-19,NIGHTLY_RUN,PolybenchC,heat-3d,wizard,b6940efa32e9e240f0c1adceec771eb922fa563c,base,x86-64,execution_time,1.30805,1.30805,1.30805,1.30805,1.30805,2023-04-13 10:46:02.047156-04
+2023-02-19,NIGHTLY_RUN,PolybenchC,cholesky,wizard,b6940efa32e9e240f0c1adceec771eb922fa563c,base,x86-64,execution_time,2.780604,2.780604,2.780604,2.780604,2.780604,2023-04-13 10:46:02.047156-04
+2023-02-19,NIGHTLY_RUN,PolybenchC,ludcmp,wizard,b6940efa32e9e240f0c1adceec771eb922fa563c,base,x86-64,execution_time,3.070561,3.070561,3.070561,3.070561,3.070561,2023-04-13 10:46:02.047156-04
+2023-02-19,NIGHTLY_RUN,PolybenchC,lu,wizard,b6940efa32e9e240f0c1adceec771eb922fa563c,base,x86-64,execution_time,3.175899,3.175899,3.175899,3.175899,3.175899,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,bicg,wizard,34e9dbcd79b3430782e7903b9b6ccfd25518d241,base,x86-64,execution_time,0.017019,0.017019,0.017019,0.017019,0.017019,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,mvt,wizard,34e9dbcd79b3430782e7903b9b6ccfd25518d241,base,x86-64,execution_time,0.018164,0.018164,0.018164,0.018164,0.018164,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,atax,wizard,34e9dbcd79b3430782e7903b9b6ccfd25518d241,base,x86-64,execution_time,0.019566,0.019566,0.019566,0.019566,0.019566,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,gemver,wizard,34e9dbcd79b3430782e7903b9b6ccfd25518d241,base,x86-64,execution_time,0.024883,0.024883,0.024883,0.024883,0.024883,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,trmm,wizard,34e9dbcd79b3430782e7903b9b6ccfd25518d241,base,x86-64,execution_time,0.145186,0.145186,0.145186,0.145186,0.145186,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,doitgen,wizard,34e9dbcd79b3430782e7903b9b6ccfd25518d241,base,x86-64,execution_time,0.170415,0.170415,0.170415,0.170415,0.170415,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,syrk,wizard,34e9dbcd79b3430782e7903b9b6ccfd25518d241,base,x86-64,execution_time,0.239652,0.239652,0.239652,0.239652,0.239652,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,correlation,wizard,34e9dbcd79b3430782e7903b9b6ccfd25518d241,base,x86-64,execution_time,0.26904,0.26904,0.26904,0.26904,0.26904,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,covariance,wizard,34e9dbcd79b3430782e7903b9b6ccfd25518d241,base,x86-64,execution_time,0.267773,0.267773,0.267773,0.267773,0.267773,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,symm,wizard,34e9dbcd79b3430782e7903b9b6ccfd25518d241,base,x86-64,execution_time,0.274168,0.274168,0.274168,0.274168,0.274168,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,syr2k,wizard,34e9dbcd79b3430782e7903b9b6ccfd25518d241,base,x86-64,execution_time,0.35367,0.35367,0.35367,0.35367,0.35367,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,gemm,wizard,34e9dbcd79b3430782e7903b9b6ccfd25518d241,base,x86-64,execution_time,0.372382,0.372382,0.372382,0.372382,0.372382,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,gramschmidt,wizard,34e9dbcd79b3430782e7903b9b6ccfd25518d241,base,x86-64,execution_time,0.439733,0.439733,0.439733,0.439733,0.439733,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,2mm,wizard,34e9dbcd79b3430782e7903b9b6ccfd25518d241,base,x86-64,execution_time,0.438104,0.438104,0.438104,0.438104,0.438104,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,nussinov,wizard,34e9dbcd79b3430782e7903b9b6ccfd25518d241,base,x86-64,execution_time,0.700342,0.700342,0.700342,0.700342,0.700342,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,adi,wizard,34e9dbcd79b3430782e7903b9b6ccfd25518d241,base,x86-64,execution_time,0.766818,0.766818,0.766818,0.766818,0.766818,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,3mm,wizard,34e9dbcd79b3430782e7903b9b6ccfd25518d241,base,x86-64,execution_time,0.809935,0.809935,0.809935,0.809935,0.809935,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,fdtd-2d,wizard,34e9dbcd79b3430782e7903b9b6ccfd25518d241,base,x86-64,execution_time,0.783722,0.783722,0.783722,0.783722,0.783722,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,jacobi-2d,wizard,34e9dbcd79b3430782e7903b9b6ccfd25518d241,base,x86-64,execution_time,0.962725,0.962725,0.962725,0.962725,0.962725,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,seidel-2d,wizard,34e9dbcd79b3430782e7903b9b6ccfd25518d241,base,x86-64,execution_time,1.212362,1.212362,1.212362,1.212362,1.212362,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,heat-3d,wizard,34e9dbcd79b3430782e7903b9b6ccfd25518d241,base,x86-64,execution_time,1.294736,1.294736,1.294736,1.294736,1.294736,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,cholesky,wizard,34e9dbcd79b3430782e7903b9b6ccfd25518d241,base,x86-64,execution_time,2.683588,2.683588,2.683588,2.683588,2.683588,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,ludcmp,wizard,34e9dbcd79b3430782e7903b9b6ccfd25518d241,base,x86-64,execution_time,2.979606,2.979606,2.979606,2.979606,2.979606,2023-04-13 10:46:02.047156-04
+2023-01-05,NIGHTLY_RUN,PolybenchC,lu,wizard,34e9dbcd79b3430782e7903b9b6ccfd25518d241,base,x86-64,execution_time,3.068658,3.068658,3.068658,3.068658,3.068658,2023-04-13 10:46:02.047156-04
+2022-12-14,NIGHTLY_RUN,PolybenchC,bicg,wizard,51235cdf82770c6267beb40ed0b625af15841a8a,base,x86-64,execution_time,0.01718,0.01718,0.01718,0.01718,0.01718,2023-04-13 10:46:02.047156-04
+2022-12-14,NIGHTLY_RUN,PolybenchC,mvt,wizard,51235cdf82770c6267beb40ed0b625af15841a8a,base,x86-64,execution_time,0.01884,0.01884,0.01884,0.01884,0.01884,2023-04-13 10:46:02.047156-04
+2022-12-14,NIGHTLY_RUN,PolybenchC,atax,wizard,51235cdf82770c6267beb40ed0b625af15841a8a,base,x86-64,execution_time,0.018428,0.018428,0.018428,0.018428,0.018428,2023-04-13 10:46:02.047156-04
+2022-12-14,NIGHTLY_RUN,PolybenchC,gemver,wizard,51235cdf82770c6267beb40ed0b625af15841a8a,base,x86-64,execution_time,0.025019,0.025019,0.025019,0.025019,0.025019,2023-04-13 10:46:02.047156-04
+2022-12-14,NIGHTLY_RUN,PolybenchC,trmm,wizard,51235cdf82770c6267beb40ed0b625af15841a8a,base,x86-64,execution_time,0.144599,0.144599,0.144599,0.144599,0.144599,2023-04-13 10:46:02.047156-04
+2022-12-14,NIGHTLY_RUN,PolybenchC,doitgen,wizard,51235cdf82770c6267beb40ed0b625af15841a8a,base,x86-64,execution_time,0.170391,0.170391,0.170391,0.170391,0.170391,2023-04-13 10:46:02.047156-04
+2022-12-14,NIGHTLY_RUN,PolybenchC,syrk,wizard,51235cdf82770c6267beb40ed0b625af15841a8a,base,x86-64,execution_time,0.241122,0.241122,0.241122,0.241122,0.241122,2023-04-13 10:46:02.047156-04
+2022-12-14,NIGHTLY_RUN,PolybenchC,correlation,wizard,51235cdf82770c6267beb40ed0b625af15841a8a,base,x86-64,execution_time,0.270025,0.270025,0.270025,0.270025,0.270025,2023-04-13 10:46:02.047156-04
+2022-12-14,NIGHTLY_RUN,PolybenchC,covariance,wizard,51235cdf82770c6267beb40ed0b625af15841a8a,base,x86-64,execution_time,0.269181,0.269181,0.269181,0.269181,0.269181,2023-04-13 10:46:02.047156-04
+2022-12-14,NIGHTLY_RUN,PolybenchC,symm,wizard,51235cdf82770c6267beb40ed0b625af15841a8a,base,x86-64,execution_time,0.274318,0.274318,0.274318,0.274318,0.274318,2023-04-13 10:46:02.047156-04
+2022-12-14,NIGHTLY_RUN,PolybenchC,syr2k,wizard,51235cdf82770c6267beb40ed0b625af15841a8a,base,x86-64,execution_time,0.353104,0.353104,0.353104,0.353104,0.353104,2023-04-13 10:46:02.047156-04
+2022-12-14,NIGHTLY_RUN,PolybenchC,gemm,wizard,51235cdf82770c6267beb40ed0b625af15841a8a,base,x86-64,execution_time,0.372741,0.372741,0.372741,0.372741,0.372741,2023-04-13 10:46:02.047156-04
+2022-12-14,NIGHTLY_RUN,PolybenchC,gramschmidt,wizard,51235cdf82770c6267beb40ed0b625af15841a8a,base,x86-64,execution_time,0.438043,0.438043,0.438043,0.438043,0.438043,2023-04-13 10:46:02.047156-04
+2022-12-14,NIGHTLY_RUN,PolybenchC,2mm,wizard,51235cdf82770c6267beb40ed0b625af15841a8a,base,x86-64,execution_time,0.437019,0.437019,0.437019,0.437019,0.437019,2023-04-13 10:46:02.047156-04
+2022-12-14,NIGHTLY_RUN,PolybenchC,nussinov,wizard,51235cdf82770c6267beb40ed0b625af15841a8a,base,x86-64,execution_time,0.699981,0.699981,0.699981,0.699981,0.699981,2023-04-13 10:46:02.047156-04
+2022-12-14,NIGHTLY_RUN,PolybenchC,adi,wizard,51235cdf82770c6267beb40ed0b625af15841a8a,base,x86-64,execution_time,0.764624,0.764624,0.764624,0.764624,0.764624,2023-04-13 10:46:02.047156-04
+2022-12-14,NIGHTLY_RUN,PolybenchC,3mm,wizard,51235cdf82770c6267beb40ed0b625af15841a8a,base,x86-64,execution_time,0.809444,0.809444,0.809444,0.809444,0.809444,2023-04-13 10:46:02.047156-04
+2022-12-14,NIGHTLY_RUN,PolybenchC,fdtd-2d,wizard,51235cdf82770c6267beb40ed0b625af15841a8a,base,x86-64,execution_time,0.783786,0.783786,0.783786,0.783786,0.783786,2023-04-13 10:46:02.047156-04
+2022-12-14,NIGHTLY_RUN,PolybenchC,jacobi-2d,wizard,51235cdf82770c6267beb40ed0b625af15841a8a,base,x86-64,execution_time,0.963834,0.963834,0.963834,0.963834,0.963834,2023-04-13 10:46:02.047156-04
+2022-12-14,NIGHTLY_RUN,PolybenchC,seidel-2d,wizard,51235cdf82770c6267beb40ed0b625af15841a8a,base,x86-64,execution_time,1.10219,1.10219,1.10219,1.10219,1.10219,2023-04-13 10:46:02.047156-04
+2022-12-14,NIGHTLY_RUN,PolybenchC,heat-3d,wizard,51235cdf82770c6267beb40ed0b625af15841a8a,base,x86-64,execution_time,1.293152,1.293152,1.293152,1.293152,1.293152,2023-04-13 10:46:02.047156-04
+2022-12-14,NIGHTLY_RUN,PolybenchC,cholesky,wizard,51235cdf82770c6267beb40ed0b625af15841a8a,base,x86-64,execution_time,2.686478,2.686478,2.686478,2.686478,2.686478,2023-04-13 10:46:02.047156-04
+2022-12-14,NIGHTLY_RUN,PolybenchC,ludcmp,wizard,51235cdf82770c6267beb40ed0b625af15841a8a,base,x86-64,execution_time,2.984838,2.984838,2.984838,2.984838,2.984838,2023-04-13 10:46:02.047156-04
+2022-12-14,NIGHTLY_RUN,PolybenchC,lu,wizard,51235cdf82770c6267beb40ed0b625af15841a8a,base,x86-64,execution_time,3.072387,3.072387,3.072387,3.072387,3.072387,2023-04-13 10:46:02.047156-04
+2022-11-07,NIGHTLY_RUN,PolybenchC,bicg,wizard,12ecc792aa525dce0c3b61d899a6b26d6bed1417,base,x86-64,execution_time,0.016315,0.016315,0.016315,0.016315,0.016315,2023-04-13 10:46:02.047156-04
+2022-11-07,NIGHTLY_RUN,PolybenchC,mvt,wizard,12ecc792aa525dce0c3b61d899a6b26d6bed1417,base,x86-64,execution_time,0.018718,0.018718,0.018718,0.018718,0.018718,2023-04-13 10:46:02.047156-04
+2022-11-07,NIGHTLY_RUN,PolybenchC,atax,wizard,12ecc792aa525dce0c3b61d899a6b26d6bed1417,base,x86-64,execution_time,0.019012,0.019012,0.019012,0.019012,0.019012,2023-04-13 10:46:02.047156-04
+2022-11-07,NIGHTLY_RUN,PolybenchC,gemver,wizard,12ecc792aa525dce0c3b61d899a6b26d6bed1417,base,x86-64,execution_time,0.024582,0.024582,0.024582,0.024582,0.024582,2023-04-13 10:46:02.047156-04
+2022-11-07,NIGHTLY_RUN,PolybenchC,trmm,wizard,12ecc792aa525dce0c3b61d899a6b26d6bed1417,base,x86-64,execution_time,0.148033,0.148033,0.148033,0.148033,0.148033,2023-04-13 10:46:02.047156-04
+2022-11-07,NIGHTLY_RUN,PolybenchC,doitgen,wizard,12ecc792aa525dce0c3b61d899a6b26d6bed1417,base,x86-64,execution_time,0.16847,0.16847,0.16847,0.16847,0.16847,2023-04-13 10:46:02.047156-04
+2022-11-07,NIGHTLY_RUN,PolybenchC,syrk,wizard,12ecc792aa525dce0c3b61d899a6b26d6bed1417,base,x86-64,execution_time,0.239512,0.239512,0.239512,0.239512,0.239512,2023-04-13 10:46:02.047156-04
+2022-11-07,NIGHTLY_RUN,PolybenchC,correlation,wizard,12ecc792aa525dce0c3b61d899a6b26d6bed1417,base,x86-64,execution_time,0.270296,0.270296,0.270296,0.270296,0.270296,2023-04-13 10:46:02.047156-04
+2022-11-07,NIGHTLY_RUN,PolybenchC,covariance,wizard,12ecc792aa525dce0c3b61d899a6b26d6bed1417,base,x86-64,execution_time,0.269511,0.269511,0.269511,0.269511,0.269511,2023-04-13 10:46:02.047156-04
+2022-11-07,NIGHTLY_RUN,PolybenchC,symm,wizard,12ecc792aa525dce0c3b61d899a6b26d6bed1417,base,x86-64,execution_time,0.27339,0.27339,0.27339,0.27339,0.27339,2023-04-13 10:46:02.047156-04
+2022-11-07,NIGHTLY_RUN,PolybenchC,syr2k,wizard,12ecc792aa525dce0c3b61d899a6b26d6bed1417,base,x86-64,execution_time,0.360703,0.360703,0.360703,0.360703,0.360703,2023-04-13 10:46:02.047156-04
+2022-11-07,NIGHTLY_RUN,PolybenchC,gemm,wizard,12ecc792aa525dce0c3b61d899a6b26d6bed1417,base,x86-64,execution_time,0.388621,0.388621,0.388621,0.388621,0.388621,2023-04-13 10:46:02.047156-04
+2022-11-07,NIGHTLY_RUN,PolybenchC,gramschmidt,wizard,12ecc792aa525dce0c3b61d899a6b26d6bed1417,base,x86-64,execution_time,0.434351,0.434351,0.434351,0.434351,0.434351,2023-04-13 10:46:02.047156-04
+2022-11-07,NIGHTLY_RUN,PolybenchC,2mm,wizard,12ecc792aa525dce0c3b61d899a6b26d6bed1417,base,x86-64,execution_time,0.436605,0.436605,0.436605,0.436605,0.436605,2023-04-13 10:46:02.047156-04
+2022-11-07,NIGHTLY_RUN,PolybenchC,nussinov,wizard,12ecc792aa525dce0c3b61d899a6b26d6bed1417,base,x86-64,execution_time,0.691982,0.691982,0.691982,0.691982,0.691982,2023-04-13 10:46:02.047156-04
+2022-11-07,NIGHTLY_RUN,PolybenchC,adi,wizard,12ecc792aa525dce0c3b61d899a6b26d6bed1417,base,x86-64,execution_time,0.758885,0.758885,0.758885,0.758885,0.758885,2023-04-13 10:46:02.047156-04
+2022-11-07,NIGHTLY_RUN,PolybenchC,3mm,wizard,12ecc792aa525dce0c3b61d899a6b26d6bed1417,base,x86-64,execution_time,0.806171,0.806171,0.806171,0.806171,0.806171,2023-04-13 10:46:02.047156-04
+2022-11-07,NIGHTLY_RUN,PolybenchC,fdtd-2d,wizard,12ecc792aa525dce0c3b61d899a6b26d6bed1417,base,x86-64,execution_time,0.792286,0.792286,0.792286,0.792286,0.792286,2023-04-13 10:46:02.047156-04
+2022-11-07,NIGHTLY_RUN,PolybenchC,jacobi-2d,wizard,12ecc792aa525dce0c3b61d899a6b26d6bed1417,base,x86-64,execution_time,0.960374,0.960374,0.960374,0.960374,0.960374,2023-04-13 10:46:02.047156-04
+2022-11-07,NIGHTLY_RUN,PolybenchC,seidel-2d,wizard,12ecc792aa525dce0c3b61d899a6b26d6bed1417,base,x86-64,execution_time,1.100332,1.100332,1.100332,1.100332,1.100332,2023-04-13 10:46:02.047156-04
+2022-11-07,NIGHTLY_RUN,PolybenchC,heat-3d,wizard,12ecc792aa525dce0c3b61d899a6b26d6bed1417,base,x86-64,execution_time,1.264891,1.264891,1.264891,1.264891,1.264891,2023-04-13 10:46:02.047156-04
+2022-11-07,NIGHTLY_RUN,PolybenchC,cholesky,wizard,12ecc792aa525dce0c3b61d899a6b26d6bed1417,base,x86-64,execution_time,2.667948,2.667948,2.667948,2.667948,2.667948,2023-04-13 10:46:02.047156-04
+2022-11-07,NIGHTLY_RUN,PolybenchC,ludcmp,wizard,12ecc792aa525dce0c3b61d899a6b26d6bed1417,base,x86-64,execution_time,2.966399,2.966399,2.966399,2.966399,2.966399,2023-04-13 10:46:02.047156-04
+2022-11-07,NIGHTLY_RUN,PolybenchC,lu,wizard,12ecc792aa525dce0c3b61d899a6b26d6bed1417,base,x86-64,execution_time,3.049823,3.049823,3.049823,3.049823,3.049823,2023-04-13 10:46:02.047156-04
+2022-10-09,NIGHTLY_RUN,PolybenchC,bicg,wizard,393b92fda7c57140d462ac904892afca42aaf7e4,base,x86-64,execution_time,0.016016,0.016016,0.016016,0.016016,0.016016,2023-04-13 10:46:02.047156-04
+2022-10-09,NIGHTLY_RUN,PolybenchC,mvt,wizard,393b92fda7c57140d462ac904892afca42aaf7e4,base,x86-64,execution_time,0.018611,0.018611,0.018611,0.018611,0.018611,2023-04-13 10:46:02.047156-04
+2022-10-09,NIGHTLY_RUN,PolybenchC,atax,wizard,393b92fda7c57140d462ac904892afca42aaf7e4,base,x86-64,execution_time,0.019215,0.019215,0.019215,0.019215,0.019215,2023-04-13 10:46:02.047156-04
+2022-10-09,NIGHTLY_RUN,PolybenchC,gemver,wizard,393b92fda7c57140d462ac904892afca42aaf7e4,base,x86-64,execution_time,0.023975,0.023975,0.023975,0.023975,0.023975,2023-04-13 10:46:02.047156-04
+2022-10-09,NIGHTLY_RUN,PolybenchC,trmm,wizard,393b92fda7c57140d462ac904892afca42aaf7e4,base,x86-64,execution_time,0.143487,0.143487,0.143487,0.143487,0.143487,2023-04-13 10:46:02.047156-04
+2022-10-09,NIGHTLY_RUN,PolybenchC,doitgen,wizard,393b92fda7c57140d462ac904892afca42aaf7e4,base,x86-64,execution_time,0.16986,0.16986,0.16986,0.16986,0.16986,2023-04-13 10:46:02.047156-04
+2022-10-09,NIGHTLY_RUN,PolybenchC,syrk,wizard,393b92fda7c57140d462ac904892afca42aaf7e4,base,x86-64,execution_time,0.238606,0.238606,0.238606,0.238606,0.238606,2023-04-13 10:46:02.047156-04
+2022-10-09,NIGHTLY_RUN,PolybenchC,correlation,wizard,393b92fda7c57140d462ac904892afca42aaf7e4,base,x86-64,execution_time,0.270023,0.270023,0.270023,0.270023,0.270023,2023-04-13 10:46:02.047156-04
+2022-10-09,NIGHTLY_RUN,PolybenchC,covariance,wizard,393b92fda7c57140d462ac904892afca42aaf7e4,base,x86-64,execution_time,0.268873,0.268873,0.268873,0.268873,0.268873,2023-04-13 10:46:02.047156-04
+2022-10-09,NIGHTLY_RUN,PolybenchC,symm,wizard,393b92fda7c57140d462ac904892afca42aaf7e4,base,x86-64,execution_time,0.273278,0.273278,0.273278,0.273278,0.273278,2023-04-13 10:46:02.047156-04
+2022-10-09,NIGHTLY_RUN,PolybenchC,syr2k,wizard,393b92fda7c57140d462ac904892afca42aaf7e4,base,x86-64,execution_time,0.373654,0.373654,0.373654,0.373654,0.373654,2023-04-13 10:46:02.047156-04
+2022-10-09,NIGHTLY_RUN,PolybenchC,gemm,wizard,393b92fda7c57140d462ac904892afca42aaf7e4,base,x86-64,execution_time,0.368787,0.368787,0.368787,0.368787,0.368787,2023-04-13 10:46:02.047156-04
+2022-10-09,NIGHTLY_RUN,PolybenchC,gramschmidt,wizard,393b92fda7c57140d462ac904892afca42aaf7e4,base,x86-64,execution_time,0.433811,0.433811,0.433811,0.433811,0.433811,2023-04-13 10:46:02.047156-04
+2022-10-09,NIGHTLY_RUN,PolybenchC,2mm,wizard,393b92fda7c57140d462ac904892afca42aaf7e4,base,x86-64,execution_time,0.438329,0.438329,0.438329,0.438329,0.438329,2023-04-13 10:46:02.047156-04
+2022-10-09,NIGHTLY_RUN,PolybenchC,nussinov,wizard,393b92fda7c57140d462ac904892afca42aaf7e4,base,x86-64,execution_time,0.692218,0.692218,0.692218,0.692218,0.692218,2023-04-13 10:46:02.047156-04
+2022-10-09,NIGHTLY_RUN,PolybenchC,adi,wizard,393b92fda7c57140d462ac904892afca42aaf7e4,base,x86-64,execution_time,0.757652,0.757652,0.757652,0.757652,0.757652,2023-04-13 10:46:02.047156-04
+2022-10-09,NIGHTLY_RUN,PolybenchC,3mm,wizard,393b92fda7c57140d462ac904892afca42aaf7e4,base,x86-64,execution_time,0.812543,0.812543,0.812543,0.812543,0.812543,2023-04-13 10:46:02.047156-04
+2022-10-09,NIGHTLY_RUN,PolybenchC,fdtd-2d,wizard,393b92fda7c57140d462ac904892afca42aaf7e4,base,x86-64,execution_time,0.784643,0.784643,0.784643,0.784643,0.784643,2023-04-13 10:46:02.047156-04
+2022-10-09,NIGHTLY_RUN,PolybenchC,jacobi-2d,wizard,393b92fda7c57140d462ac904892afca42aaf7e4,base,x86-64,execution_time,0.960576,0.960576,0.960576,0.960576,0.960576,2023-04-13 10:46:02.047156-04
+2022-10-09,NIGHTLY_RUN,PolybenchC,seidel-2d,wizard,393b92fda7c57140d462ac904892afca42aaf7e4,base,x86-64,execution_time,1.106039,1.106039,1.106039,1.106039,1.106039,2023-04-13 10:46:02.047156-04
+2022-10-09,NIGHTLY_RUN,PolybenchC,heat-3d,wizard,393b92fda7c57140d462ac904892afca42aaf7e4,base,x86-64,execution_time,1.26794,1.26794,1.26794,1.26794,1.26794,2023-04-13 10:46:02.047156-04
+2022-10-09,NIGHTLY_RUN,PolybenchC,cholesky,wizard,393b92fda7c57140d462ac904892afca42aaf7e4,base,x86-64,execution_time,2.668818,2.668818,2.668818,2.668818,2.668818,2023-04-13 10:46:02.047156-04
+2022-10-09,NIGHTLY_RUN,PolybenchC,ludcmp,wizard,393b92fda7c57140d462ac904892afca42aaf7e4,base,x86-64,execution_time,2.961328,2.961328,2.961328,2.961328,2.961328,2023-04-13 10:46:02.047156-04
+2022-10-09,NIGHTLY_RUN,PolybenchC,lu,wizard,393b92fda7c57140d462ac904892afca42aaf7e4,base,x86-64,execution_time,3.049258,3.049258,3.049258,3.049258,3.049258,2023-04-13 10:46:02.047156-04
+2022-09-07,NIGHTLY_RUN,PolybenchC,bicg,wizard,9f816c4714a3f265a9786f07ca7595a70d581ed6,base,x86-64,execution_time,0.016907,0.016907,0.016907,0.016907,0.016907,2023-04-13 10:46:02.047156-04
+2022-09-07,NIGHTLY_RUN,PolybenchC,mvt,wizard,9f816c4714a3f265a9786f07ca7595a70d581ed6,base,x86-64,execution_time,0.018929,0.018929,0.018929,0.018929,0.018929,2023-04-13 10:46:02.047156-04
+2022-09-07,NIGHTLY_RUN,PolybenchC,atax,wizard,9f816c4714a3f265a9786f07ca7595a70d581ed6,base,x86-64,execution_time,0.018577,0.018577,0.018577,0.018577,0.018577,2023-04-13 10:46:02.047156-04
+2022-09-07,NIGHTLY_RUN,PolybenchC,gemver,wizard,9f816c4714a3f265a9786f07ca7595a70d581ed6,base,x86-64,execution_time,0.024989,0.024989,0.024989,0.024989,0.024989,2023-04-13 10:46:02.047156-04
+2022-09-07,NIGHTLY_RUN,PolybenchC,trmm,wizard,9f816c4714a3f265a9786f07ca7595a70d581ed6,base,x86-64,execution_time,0.144492,0.144492,0.144492,0.144492,0.144492,2023-04-13 10:46:02.047156-04
+2022-09-07,NIGHTLY_RUN,PolybenchC,doitgen,wizard,9f816c4714a3f265a9786f07ca7595a70d581ed6,base,x86-64,execution_time,0.169526,0.169526,0.169526,0.169526,0.169526,2023-04-13 10:46:02.047156-04
+2022-09-07,NIGHTLY_RUN,PolybenchC,syrk,wizard,9f816c4714a3f265a9786f07ca7595a70d581ed6,base,x86-64,execution_time,0.238716,0.238716,0.238716,0.238716,0.238716,2023-04-13 10:46:02.047156-04
+2022-09-07,NIGHTLY_RUN,PolybenchC,correlation,wizard,9f816c4714a3f265a9786f07ca7595a70d581ed6,base,x86-64,execution_time,0.270114,0.270114,0.270114,0.270114,0.270114,2023-04-13 10:46:02.047156-04
+2022-09-07,NIGHTLY_RUN,PolybenchC,covariance,wizard,9f816c4714a3f265a9786f07ca7595a70d581ed6,base,x86-64,execution_time,0.269246,0.269246,0.269246,0.269246,0.269246,2023-04-13 10:46:02.047156-04
+2022-09-07,NIGHTLY_RUN,PolybenchC,symm,wizard,9f816c4714a3f265a9786f07ca7595a70d581ed6,base,x86-64,execution_time,0.273724,0.273724,0.273724,0.273724,0.273724,2023-04-13 10:46:02.047156-04
+2022-09-07,NIGHTLY_RUN,PolybenchC,syr2k,wizard,9f816c4714a3f265a9786f07ca7595a70d581ed6,base,x86-64,execution_time,0.352797,0.352797,0.352797,0.352797,0.352797,2023-04-13 10:46:02.047156-04
+2022-09-07,NIGHTLY_RUN,PolybenchC,gemm,wizard,9f816c4714a3f265a9786f07ca7595a70d581ed6,base,x86-64,execution_time,0.36956,0.36956,0.36956,0.36956,0.36956,2023-04-13 10:46:02.047156-04
+2022-09-07,NIGHTLY_RUN,PolybenchC,gramschmidt,wizard,9f816c4714a3f265a9786f07ca7595a70d581ed6,base,x86-64,execution_time,0.43867,0.43867,0.43867,0.43867,0.43867,2023-04-13 10:46:02.047156-04
+2022-09-07,NIGHTLY_RUN,PolybenchC,2mm,wizard,9f816c4714a3f265a9786f07ca7595a70d581ed6,base,x86-64,execution_time,0.436443,0.436443,0.436443,0.436443,0.436443,2023-04-13 10:46:02.047156-04
+2022-09-07,NIGHTLY_RUN,PolybenchC,nussinov,wizard,9f816c4714a3f265a9786f07ca7595a70d581ed6,base,x86-64,execution_time,0.69217,0.69217,0.69217,0.69217,0.69217,2023-04-13 10:46:02.047156-04
+2022-09-07,NIGHTLY_RUN,PolybenchC,adi,wizard,9f816c4714a3f265a9786f07ca7595a70d581ed6,base,x86-64,execution_time,0.755189,0.755189,0.755189,0.755189,0.755189,2023-04-13 10:46:02.047156-04
+2022-09-07,NIGHTLY_RUN,PolybenchC,3mm,wizard,9f816c4714a3f265a9786f07ca7595a70d581ed6,base,x86-64,execution_time,0.807497,0.807497,0.807497,0.807497,0.807497,2023-04-13 10:46:02.047156-04
+2022-09-07,NIGHTLY_RUN,PolybenchC,fdtd-2d,wizard,9f816c4714a3f265a9786f07ca7595a70d581ed6,base,x86-64,execution_time,0.804383,0.804383,0.804383,0.804383,0.804383,2023-04-13 10:46:02.047156-04
+2022-09-07,NIGHTLY_RUN,PolybenchC,jacobi-2d,wizard,9f816c4714a3f265a9786f07ca7595a70d581ed6,base,x86-64,execution_time,0.960884,0.960884,0.960884,0.960884,0.960884,2023-04-13 10:46:02.047156-04
+2022-09-07,NIGHTLY_RUN,PolybenchC,seidel-2d,wizard,9f816c4714a3f265a9786f07ca7595a70d581ed6,base,x86-64,execution_time,1.099394,1.099394,1.099394,1.099394,1.099394,2023-04-13 10:46:02.047156-04
+2022-09-07,NIGHTLY_RUN,PolybenchC,heat-3d,wizard,9f816c4714a3f265a9786f07ca7595a70d581ed6,base,x86-64,execution_time,1.265846,1.265846,1.265846,1.265846,1.265846,2023-04-13 10:46:02.047156-04
+2022-09-07,NIGHTLY_RUN,PolybenchC,cholesky,wizard,9f816c4714a3f265a9786f07ca7595a70d581ed6,base,x86-64,execution_time,2.665971,2.665971,2.665971,2.665971,2.665971,2023-04-13 10:46:02.047156-04
+2022-09-07,NIGHTLY_RUN,PolybenchC,ludcmp,wizard,9f816c4714a3f265a9786f07ca7595a70d581ed6,base,x86-64,execution_time,2.959193,2.959193,2.959193,2.959193,2.959193,2023-04-13 10:46:02.047156-04
+2022-09-07,NIGHTLY_RUN,PolybenchC,lu,wizard,9f816c4714a3f265a9786f07ca7595a70d581ed6,base,x86-64,execution_time,3.048314,3.048314,3.048314,3.048314,3.048314,2023-04-13 10:46:02.047156-04
\ No newline at end of file
diff --git a/historical-data/jsc/.DS_Store b/historical-data/jsc/.DS_Store
new file mode 100644
index 0000000..ac4c34f
Binary files /dev/null and b/historical-data/jsc/.DS_Store differ
diff --git a/vegalite/multiview-exec.vl.json b/vegalite/multiview-exec.vl.json
index b309256..41b5259 100644
--- a/vegalite/multiview-exec.vl.json
+++ b/vegalite/multiview-exec.vl.json
@@ -1,55 +1,60 @@
{
- "$schema": "https://vega.github.io/schema/vega-lite/v5.json",
- "concat": [{
- "title": "Geometric mean of WASM engines",
- "height": 500,
- "width": 500,
- "data": { "url": "./inputExecutionData.csv", "format":{"type": "csv"}},
- "params": [{
- "name": "test",
- "select": {"type": "point", "fields": ["Benchmark"]},
- "bind": {"name": "Benchmark","input": "select", "options": ["PolybenchC", "Others"]}
- },{
- "name": "window",
- "select": {"type": "interval", "encodings": ["x"]
- }}],
- "transform": [{"filter": {"param": "test"}}],
- "mark": {"type": "point", "size": 3, "filled": true, "tooltip": true},
- "encoding": {
- "x": {"field": "Date", "type": "temporal", "title": "Year 2022"},
- "y": {"aggregate": "mean", "field": "Value", "type": "quantitative", "title": "Metric Value"},
- "color": {
- "field": "Engine"
- }
- }
- }, {
- "height": 500,
- "width": 500,
- "data": { "url": "./inputExecutionData.csv", "format":{"type": "csv"}},
- "mark": {"type": "point", "size": 25, "filled": false},
- "transform": [{"filter": {"param": "window", "empty": false}}],
- "params": [{
- "name": "clicker",
- "value": [{"Engine": "sm-base"}],
- "select": {"type": "point", "fields": ["Engine"]},
- "bind": "legend"
+ "$schema": "https://vega.github.io/schema/vega-lite/v5.json",
+ "concat": [{
+ "title": "Geometric mean of WASM engines",
+ "height": 500,
+ "width": 500,
+ "data": { "url": "./newData.csv", "format":{"type": "csv"}},
+ "params": [{
+ "name": "test",
+ "select": {"type": "point", "fields": ["Benchmark"]},
+ "bind": {"name": "Benchmark","input": "select", "options": ["PolybenchC", "Others"]}
+ },{
+ "name": "window",
+ "select": {"type": "interval", "encodings": ["x"]
+ }},
+ {
+ "name": "trial",
+ "select": {"type": "point", "fields": ["MetricType"]},
+ "bind": {"name": "MetricType","input": "select", "options": ["execution_time", "Others"]}
}],
- "encoding": {
- "x": {"field": "Date", "type": "temporal", "title": "Date"},
- "y": {"field": "Value", "type": "quantitative", "title": "Metric Value"},
- "color": {
- "condition": {
- "param": "clicker", "field": "Engine", "legend": {"direction": "vertical", "orient": "top"}
- }, "value": "lightgrey"
- },
- "shape": {"field": "Operation", "type": "nominal", "legend": {"direction": "vertical", "orient": "top"}},
- "opacity": {
- "condition": {
- "param": "clicker", "value": 1
- }, "value": 0.0
- },
- "tooltip": [{"field": "Date", "type": "temporal"}, {"field": "Operation", "type": "nominal"},
- {"field": "Engine", "type": "nominal"}, {"field": "Value", "type": "quantitative"}]
+ "transform": [{"filter": {"param": "test"}}, {"filter": {"param": "trial"}}],
+ "mark": {"type": "point", "size": 3, "filled": true, "tooltip": true},
+ "encoding": {
+ "x": {"field": "Date", "type": "temporal", "title": "Year 2022"},
+ "y": {"aggregate": "mean", "field": "Value", "type": "quantitative", "title": "Metric Value"},
+ "color": {
+ "field": "Engine"
}
- }]
+ }
+ }, {
+ "height": 500,
+ "width": 500,
+ "data": { "url": "./newData.csv", "format":{"type": "csv"}},
+ "mark": {"type": "point", "size": 25, "filled": false},
+ "transform": [{"filter": {"param": "window", "empty": false}}],
+ "params": [{
+ "name": "clicker",
+ "value": [{"Engine": "sm-base"}],
+ "select": {"type": "point", "fields": ["Engine"]},
+ "bind": "legend"
+ }],
+ "encoding": {
+ "x": {"field": "Date", "type": "temporal", "title": "Date"},
+ "y": {"field": "Value", "type": "quantitative", "title": "Metric Value"},
+ "color": {
+ "condition": {
+ "param": "clicker", "field": "Engine", "legend": {"direction": "vertical", "orient": "top"}
+ }, "value": "lightgrey"
+ },
+ "shape": {"field": "Operation", "type": "nominal", "legend": {"direction": "vertical", "orient": "top"}},
+ "opacity": {
+ "condition": {
+ "param": "clicker", "value": 1
+ }, "value": 0.0
+ },
+ "tooltip": [{"field": "Date", "type": "temporal"}, {"field": "Operation", "type": "nominal"},
+ {"field": "Engine", "type": "nominal"}, {"field": "Value", "type": "quantitative"}, {"field": "Version", "type": "nominal"}]
+ }
+ }]
}
\ No newline at end of file
diff --git a/vegalite/newData.csv b/vegalite/newData.csv
new file mode 100644
index 0000000..d05df03
--- /dev/null
+++ b/vegalite/newData.csv
@@ -0,0 +1,3286 @@
+Date,Engine,Benchmark,Operation,Value,MetricType,Version
+2022-01-01,wasm,PolybenchC,bicg,0.007379153202997971,execution_time,VersionABCD
+2022-01-02,wasm,PolybenchC,bicg,0.0074211455031388705,execution_time,VersionABCD
+2022-01-03,wasm,PolybenchC,bicg,0.007448955317398318,execution_time,VersionABCD
+2022-01-04,wasm,PolybenchC,bicg,0.00747531954597662,execution_time,VersionABCD
+2022-01-05,wasm,PolybenchC,bicg,0.0075140730325164735,execution_time,VersionABCD
+2022-01-06,wasm,PolybenchC,bicg,0.0075397610587706184,execution_time,VersionABCD
+2022-01-07,wasm,PolybenchC,bicg,0.0075768958620278095,execution_time,VersionABCD
+2022-01-08,wasm,PolybenchC,bicg,0.007601310751750636,execution_time,VersionABCD
+2022-01-09,wasm,PolybenchC,bicg,0.007626889302686571,execution_time,VersionABCD
+2022-01-10,wasm,PolybenchC,bicg,0.007631911576887884,execution_time,VersionABCD
+2022-01-11,wasm,PolybenchC,bicg,0.007653092470755468,execution_time,VersionABCD
+2022-01-12,wasm,PolybenchC,bicg,0.0076862552558852855,execution_time,VersionABCD
+2022-01-13,wasm,PolybenchC,bicg,0.0077133789398004,execution_time,VersionABCD
+2022-01-14,wasm,PolybenchC,bicg,0.007733226543173655,execution_time,VersionABCD
+2022-01-15,wasm,PolybenchC,bicg,0.007754986358970452,execution_time,VersionABCD
+2022-01-16,wasm,PolybenchC,bicg,0.007775768088263743,execution_time,VersionABCD
+2022-01-17,wasm,PolybenchC,bicg,0.00777752758808629,execution_time,VersionABCD
+2022-01-18,wasm,PolybenchC,bicg,0.0077938378556841595,execution_time,VersionABCD
+2022-01-19,wasm,PolybenchC,bicg,0.007802786341887511,execution_time,VersionABCD
+2022-01-20,wasm,PolybenchC,bicg,0.00781772891976636,execution_time,VersionABCD
+2022-01-21,wasm,PolybenchC,bicg,0.0078413591236984,execution_time,VersionABCD
+2022-01-22,wasm,PolybenchC,bicg,0.00788373060184527,execution_time,VersionABCD
+2022-01-23,wasm,PolybenchC,bicg,0.007918433947667542,execution_time,VersionABCD
+2022-01-24,wasm,PolybenchC,bicg,0.007957931103813265,execution_time,VersionABCD
+2022-01-25,wasm,PolybenchC,bicg,0.008003420072821888,execution_time,VersionABCD
+2022-01-26,wasm,PolybenchC,bicg,0.008026258802441183,execution_time,VersionABCD
+2022-01-27,wasm,PolybenchC,bicg,0.00805795181462251,execution_time,VersionABCD
+2022-01-28,wasm,PolybenchC,bicg,0.008097381231984805,execution_time,VersionABCD
+2022-01-29,wasm,PolybenchC,bicg,0.008137394824340085,execution_time,VersionABCD
+2022-01-30,wasm,PolybenchC,bicg,0.008147579420010449,execution_time,VersionABCD
+2022-01-31,wasm,PolybenchC,bicg,0.00816563492964256,execution_time,VersionABCD
+2022-02-01,wasm,PolybenchC,bicg,0.00820520563600311,execution_time,VersionABCD
+2022-02-02,wasm,PolybenchC,bicg,0.008250976333481349,execution_time,VersionABCD
+2022-02-03,wasm,PolybenchC,bicg,0.00829666688168916,execution_time,VersionABCD
+2022-02-04,wasm,PolybenchC,bicg,0.008302949072898554,execution_time,VersionABCD
+2022-02-05,wasm,PolybenchC,bicg,0.008311207556552052,execution_time,VersionABCD
+2022-02-06,wasm,PolybenchC,bicg,0.008317151503908724,execution_time,VersionABCD
+2022-02-07,wasm,PolybenchC,bicg,0.008346802309668788,execution_time,VersionABCD
+2022-02-08,wasm,PolybenchC,bicg,0.008382732548093153,execution_time,VersionABCD
+2022-02-09,wasm,PolybenchC,bicg,0.008388370728819155,execution_time,VersionABCD
+2022-02-10,wasm,PolybenchC,bicg,0.008420141574028156,execution_time,VersionABCD
+2022-02-11,wasm,PolybenchC,bicg,0.008419984357485795,execution_time,VersionABCD
+2022-02-12,wasm,PolybenchC,bicg,0.008429401805030714,execution_time,VersionABCD
+2022-02-13,wasm,PolybenchC,bicg,0.008431030349723423,execution_time,VersionABCD
+2022-02-14,wasm,PolybenchC,bicg,0.008464688064501093,execution_time,VersionABCD
+2022-02-15,wasm,PolybenchC,bicg,0.008479772449093839,execution_time,VersionABCD
+2022-02-16,wasm,PolybenchC,bicg,0.008510594149268882,execution_time,VersionABCD
+2022-02-17,wasm,PolybenchC,bicg,0.008547197935970035,execution_time,VersionABCD
+2022-02-18,wasm,PolybenchC,bicg,0.008546282557611707,execution_time,VersionABCD
+2022-02-19,wasm,PolybenchC,bicg,0.008554392150818928,execution_time,VersionABCD
+2022-02-20,wasm,PolybenchC,bicg,0.008563542777789021,execution_time,VersionABCD
+2022-02-21,wasm,PolybenchC,bicg,0.008578283745763037,execution_time,VersionABCD
+2022-02-22,wasm,PolybenchC,bicg,0.008610230327900419,execution_time,VersionABCD
+2022-02-23,wasm,PolybenchC,bicg,0.00861089454761525,execution_time,VersionABCD
+2022-02-24,wasm,PolybenchC,bicg,0.008644190732701201,execution_time,VersionABCD
+2022-02-25,wasm,PolybenchC,bicg,0.008644500813312075,execution_time,VersionABCD
+2022-02-26,wasm,PolybenchC,bicg,0.008673251333984312,execution_time,VersionABCD
+2022-02-27,wasm,PolybenchC,bicg,0.00871060091868999,execution_time,VersionABCD
+2022-02-28,wasm,PolybenchC,bicg,0.00875372323784287,execution_time,VersionABCD
+2022-03-01,wasm,PolybenchC,bicg,0.00879290594003921,execution_time,VersionABCD
+2022-03-02,wasm,PolybenchC,bicg,0.008810489662466392,execution_time,VersionABCD
+2022-03-03,wasm,PolybenchC,bicg,0.00883169394937744,execution_time,VersionABCD
+2022-03-04,wasm,PolybenchC,bicg,0.008833649281016875,execution_time,VersionABCD
+2022-03-05,wasm,PolybenchC,bicg,0.008865824939388907,execution_time,VersionABCD
+2022-03-06,wasm,PolybenchC,bicg,0.008905274219821215,execution_time,VersionABCD
+2022-03-07,wasm,PolybenchC,bicg,0.008952972293261044,execution_time,VersionABCD
+2022-03-08,wasm,PolybenchC,bicg,0.008966991072958997,execution_time,VersionABCD
+2022-03-09,wasm,PolybenchC,bicg,0.008973599294700924,execution_time,VersionABCD
+2022-03-10,wasm,PolybenchC,bicg,0.0090101514566065,execution_time,VersionABCD
+2022-03-11,wasm,PolybenchC,bicg,0.0090579164823202,execution_time,VersionABCD
+2022-03-12,wasm,PolybenchC,bicg,0.009066511371106254,execution_time,VersionABCD
+2022-03-13,wasm,PolybenchC,bicg,0.00909256330951547,execution_time,VersionABCD
+2022-03-14,wasm,PolybenchC,bicg,0.009098906514765165,execution_time,VersionABCD
+2022-03-15,wasm,PolybenchC,bicg,0.009129979817126621,execution_time,VersionABCD
+2022-03-16,wasm,PolybenchC,bicg,0.009164700641379463,execution_time,VersionABCD
+2022-03-17,wasm,PolybenchC,bicg,0.009179939092551916,execution_time,VersionABCD
+2022-03-18,wasm,PolybenchC,bicg,0.00918178125949574,execution_time,VersionABCD
+2022-03-19,wasm,PolybenchC,bicg,0.009220764320502268,execution_time,VersionABCD
+2022-03-20,wasm,PolybenchC,bicg,0.009251613767898707,execution_time,VersionABCD
+2022-03-21,wasm,PolybenchC,bicg,0.00928588032956427,execution_time,VersionABCD
+2022-03-22,wasm,PolybenchC,bicg,0.009303494651750774,execution_time,VersionABCD
+2022-03-23,wasm,PolybenchC,bicg,0.009314395176366444,execution_time,VersionABCD
+2022-03-24,wasm,PolybenchC,bicg,0.00933184579687609,execution_time,VersionABCD
+2022-03-25,wasm,PolybenchC,bicg,0.009367341369770674,execution_time,VersionABCD
+2022-03-26,wasm,PolybenchC,bicg,0.009367966811217992,execution_time,VersionABCD
+2022-03-27,wasm,PolybenchC,bicg,0.00939476167536712,execution_time,VersionABCD
+2022-03-28,wasm,PolybenchC,bicg,0.009423470623117838,execution_time,VersionABCD
+2022-03-29,wasm,PolybenchC,bicg,0.009453271446405119,execution_time,VersionABCD
+2022-03-30,wasm,PolybenchC,bicg,0.00950070681554607,execution_time,VersionABCD
+2022-03-31,wasm,PolybenchC,bicg,0.009519798763660362,execution_time,VersionABCD
+2022-04-01,wasm,PolybenchC,bicg,0.00952212844582737,execution_time,VersionABCD
+2022-04-02,wasm,PolybenchC,bicg,0.009568797071992277,execution_time,VersionABCD
+2022-04-03,wasm,PolybenchC,bicg,0.009605371124112935,execution_time,VersionABCD
+2022-04-04,wasm,PolybenchC,bicg,0.0096248788338231,execution_time,VersionABCD
+2022-04-05,wasm,PolybenchC,bicg,0.009671299853747786,execution_time,VersionABCD
+2022-04-06,wasm,PolybenchC,bicg,0.009700132960315586,execution_time,VersionABCD
+2022-04-07,wasm,PolybenchC,bicg,0.009714186766037759,execution_time,VersionABCD
+2022-04-08,wasm,PolybenchC,bicg,0.009760460952930752,execution_time,VersionABCD
+2022-04-09,wasm,PolybenchC,bicg,0.009771790246221006,execution_time,VersionABCD
+2022-04-10,wasm,PolybenchC,bicg,0.009792717774892015,execution_time,VersionABCD
+2022-04-11,wasm,PolybenchC,bicg,0.00984075164511063,execution_time,VersionABCD
+2022-04-12,wasm,PolybenchC,bicg,0.009885947090588343,execution_time,VersionABCD
+2022-04-13,wasm,PolybenchC,bicg,0.009933984140007289,execution_time,VersionABCD
+2022-04-14,wasm,PolybenchC,bicg,0.00995194823230776,execution_time,VersionABCD
+2022-04-15,wasm,PolybenchC,bicg,0.009977875995598984,execution_time,VersionABCD
+2022-04-16,wasm,PolybenchC,bicg,0.010014993438001725,execution_time,VersionABCD
+2022-04-17,wasm,PolybenchC,bicg,0.010051654390707378,execution_time,VersionABCD
+2022-04-18,wasm,PolybenchC,bicg,0.01009741498330074,execution_time,VersionABCD
+2022-04-19,wasm,PolybenchC,bicg,0.010121159599852481,execution_time,VersionABCD
+2022-04-20,wasm,PolybenchC,bicg,0.010143835588909153,execution_time,VersionABCD
+2022-04-21,wasm,PolybenchC,bicg,0.010162941964477454,execution_time,VersionABCD
+2022-04-22,wasm,PolybenchC,bicg,0.010167919437788967,execution_time,VersionABCD
+2022-04-23,wasm,PolybenchC,bicg,0.010193609194812417,execution_time,VersionABCD
+2022-04-24,wasm,PolybenchC,bicg,0.010243023247218298,execution_time,VersionABCD
+2022-04-25,wasm,PolybenchC,bicg,0.010245490921648634,execution_time,VersionABCD
+2022-04-26,wasm,PolybenchC,bicg,0.010270054357098017,execution_time,VersionABCD
+2022-04-27,wasm,PolybenchC,bicg,0.010292044915723957,execution_time,VersionABCD
+2022-04-28,wasm,PolybenchC,bicg,0.010296156489143192,execution_time,VersionABCD
+2022-04-29,wasm,PolybenchC,bicg,0.010336119807584183,execution_time,VersionABCD
+2022-04-30,wasm,PolybenchC,bicg,0.010346515739552652,execution_time,VersionABCD
+2022-05-01,wasm,PolybenchC,bicg,0.010359837395547848,execution_time,VersionABCD
+2022-05-02,wasm,PolybenchC,bicg,0.010364138900906135,execution_time,VersionABCD
+2022-05-03,wasm,PolybenchC,bicg,0.010372234777906187,execution_time,VersionABCD
+2022-05-04,wasm,PolybenchC,bicg,0.010371911739192394,execution_time,VersionABCD
+2022-05-05,wasm,PolybenchC,bicg,0.010418434077081457,execution_time,VersionABCD
+2022-05-06,wasm,PolybenchC,bicg,0.01045404958780317,execution_time,VersionABCD
+2022-05-07,wasm,PolybenchC,bicg,0.010475503020867133,execution_time,VersionABCD
+2022-05-08,wasm,PolybenchC,bicg,0.010500986895874843,execution_time,VersionABCD
+2022-05-09,wasm,PolybenchC,bicg,0.010506836570277045,execution_time,VersionABCD
+2022-05-10,wasm,PolybenchC,bicg,0.010536618770007106,execution_time,VersionABCD
+2022-05-11,wasm,PolybenchC,bicg,0.010538824525486452,execution_time,VersionABCD
+2022-05-12,wasm,PolybenchC,bicg,0.010563709743120256,execution_time,VersionABCD
+2022-05-13,wasm,PolybenchC,bicg,0.010572334215975086,execution_time,VersionABCD
+2022-05-14,wasm,PolybenchC,bicg,0.010613764846007552,execution_time,VersionABCD
+2022-05-15,wasm,PolybenchC,bicg,0.010646298825438886,execution_time,VersionABCD
+2022-05-16,wasm,PolybenchC,bicg,0.010672198869597657,execution_time,VersionABCD
+2022-05-17,wasm,PolybenchC,bicg,0.010705782970918764,execution_time,VersionABCD
+2022-05-18,wasm,PolybenchC,bicg,0.010731656324478988,execution_time,VersionABCD
+2022-05-19,wasm,PolybenchC,bicg,0.01076051492526541,execution_time,VersionABCD
+2022-05-20,wasm,PolybenchC,bicg,0.010787015680353732,execution_time,VersionABCD
+2022-05-21,wasm,PolybenchC,bicg,0.01078892067133754,execution_time,VersionABCD
+2022-05-22,wasm,PolybenchC,bicg,0.01080384059953872,execution_time,VersionABCD
+2022-05-23,wasm,PolybenchC,bicg,0.010831062047803697,execution_time,VersionABCD
+2022-05-24,wasm,PolybenchC,bicg,0.010874325650879361,execution_time,VersionABCD
+2022-05-25,wasm,PolybenchC,bicg,0.010906252235031746,execution_time,VersionABCD
+2022-05-26,wasm,PolybenchC,bicg,0.010946100137207015,execution_time,VersionABCD
+2022-05-27,wasm,PolybenchC,bicg,0.010983060014093587,execution_time,VersionABCD
+2022-05-28,wasm,PolybenchC,bicg,0.010983495631642316,execution_time,VersionABCD
+2022-05-29,wasm,PolybenchC,bicg,0.011011960208015694,execution_time,VersionABCD
+2022-05-30,wasm,PolybenchC,bicg,0.011026642488742742,execution_time,VersionABCD
+2022-05-31,wasm,PolybenchC,bicg,0.011039854073951576,execution_time,VersionABCD
+2022-06-01,wasm,PolybenchC,bicg,0.011068591322183179,execution_time,VersionABCD
+2022-06-02,wasm,PolybenchC,bicg,0.011111865616621785,execution_time,VersionABCD
+2022-06-03,wasm,PolybenchC,bicg,0.011134255016458039,execution_time,VersionABCD
+2022-06-04,wasm,PolybenchC,bicg,0.011165714516567827,execution_time,VersionABCD
+2022-06-05,wasm,PolybenchC,bicg,0.011179262198848154,execution_time,VersionABCD
+2022-06-06,wasm,PolybenchC,bicg,0.011199685123029383,execution_time,VersionABCD
+2022-06-07,wasm,PolybenchC,bicg,0.011223300896675472,execution_time,VersionABCD
+2022-06-08,wasm,PolybenchC,bicg,0.011257389121453161,execution_time,VersionABCD
+2022-06-09,wasm,PolybenchC,bicg,0.011282515652415497,execution_time,VersionABCD
+2022-06-10,wasm,PolybenchC,bicg,0.011321659375813083,execution_time,VersionABCD
+2022-06-11,wasm,PolybenchC,bicg,0.011327912727960292,execution_time,VersionABCD
+2022-06-12,wasm,PolybenchC,bicg,0.011336104839840407,execution_time,VersionABCD
+2022-06-13,wasm,PolybenchC,bicg,0.011345379768955029,execution_time,VersionABCD
+2022-06-14,wasm,PolybenchC,bicg,0.011387301130966402,execution_time,VersionABCD
+2022-06-15,wasm,PolybenchC,bicg,0.011398992672728574,execution_time,VersionABCD
+2022-06-16,wasm,PolybenchC,bicg,0.011421080479240125,execution_time,VersionABCD
+2022-06-17,wasm,PolybenchC,bicg,0.011440762350996076,execution_time,VersionABCD
+2022-06-18,wasm,PolybenchC,bicg,0.011461547349016318,execution_time,VersionABCD
+2022-06-19,wasm,PolybenchC,bicg,0.011462275309880077,execution_time,VersionABCD
+2022-06-20,wasm,PolybenchC,bicg,0.011487304149675982,execution_time,VersionABCD
+2022-06-21,wasm,PolybenchC,bicg,0.011520784605780938,execution_time,VersionABCD
+2022-06-22,wasm,PolybenchC,bicg,0.011521448830217024,execution_time,VersionABCD
+2022-06-23,wasm,PolybenchC,bicg,0.01153131996915448,execution_time,VersionABCD
+2022-06-24,wasm,PolybenchC,bicg,0.011569494915410884,execution_time,VersionABCD
+2022-06-25,wasm,PolybenchC,bicg,0.011600502537050358,execution_time,VersionABCD
+2022-06-26,wasm,PolybenchC,bicg,0.011622621677543767,execution_time,VersionABCD
+2022-06-27,wasm,PolybenchC,bicg,0.011657179842946036,execution_time,VersionABCD
+2022-06-28,wasm,PolybenchC,bicg,0.011668288723102221,execution_time,VersionABCD
+2022-06-29,wasm,PolybenchC,bicg,0.011695399073110008,execution_time,VersionABCD
+2022-06-30,wasm,PolybenchC,bicg,0.01170357351785959,execution_time,VersionABCD
+2022-07-01,wasm,PolybenchC,bicg,0.011704674993168199,execution_time,VersionABCD
+2022-07-02,wasm,PolybenchC,bicg,0.011725813672895987,execution_time,VersionABCD
+2022-07-03,wasm,PolybenchC,bicg,0.011731369416010053,execution_time,VersionABCD
+2022-07-04,wasm,PolybenchC,bicg,0.011778322688342639,execution_time,VersionABCD
+2022-07-05,wasm,PolybenchC,bicg,0.011825860068568948,execution_time,VersionABCD
+2022-07-06,wasm,PolybenchC,bicg,0.011825296289666418,execution_time,VersionABCD
+2022-07-07,wasm,PolybenchC,bicg,0.011824505772505996,execution_time,VersionABCD
+2022-07-08,wasm,PolybenchC,bicg,0.011823913130545852,execution_time,VersionABCD
+2022-07-09,wasm,PolybenchC,bicg,0.011823592611343662,execution_time,VersionABCD
+2022-07-10,wasm,PolybenchC,bicg,0.01182324995542339,execution_time,VersionABCD
+2022-07-11,wasm,PolybenchC,bicg,0.01182277083242165,execution_time,VersionABCD
+2022-07-12,wasm,PolybenchC,bicg,0.01182217575908248,execution_time,VersionABCD
+2022-07-13,wasm,PolybenchC,bicg,0.011821512392556835,execution_time,VersionABCD
+2022-07-14,wasm,PolybenchC,bicg,0.0118206092655804,execution_time,VersionABCD
+2022-07-15,wasm,PolybenchC,bicg,0.011820386992189229,execution_time,VersionABCD
+2022-07-16,wasm,PolybenchC,bicg,0.011819628446200254,execution_time,VersionABCD
+2022-07-17,wasm,PolybenchC,bicg,0.011819539390726263,execution_time,VersionABCD
+2022-07-18,wasm,PolybenchC,bicg,0.011818958785212788,execution_time,VersionABCD
+2022-07-19,wasm,PolybenchC,bicg,0.011818304571151437,execution_time,VersionABCD
+2022-07-20,wasm,PolybenchC,bicg,0.011818287161283131,execution_time,VersionABCD
+2022-07-21,wasm,PolybenchC,bicg,0.011817481234366165,execution_time,VersionABCD
+2022-07-22,wasm,PolybenchC,bicg,0.01181683690096747,execution_time,VersionABCD
+2022-07-23,wasm,PolybenchC,bicg,0.01181628321366555,execution_time,VersionABCD
+2022-07-24,wasm,PolybenchC,bicg,0.011816106344216287,execution_time,VersionABCD
+2022-07-25,wasm,PolybenchC,bicg,0.011815440853584496,execution_time,VersionABCD
+2022-07-26,wasm,PolybenchC,bicg,0.011814604571086443,execution_time,VersionABCD
+2022-07-27,wasm,PolybenchC,bicg,0.011814041838384302,execution_time,VersionABCD
+2022-07-28,wasm,PolybenchC,bicg,0.011813472680402635,execution_time,VersionABCD
+2022-07-29,wasm,PolybenchC,bicg,0.01181324709885982,execution_time,VersionABCD
+2022-07-30,wasm,PolybenchC,bicg,0.011813198565234948,execution_time,VersionABCD
+2022-07-31,wasm,PolybenchC,bicg,0.011812881170039384,execution_time,VersionABCD
+2022-08-01,wasm,PolybenchC,bicg,0.011812714018695608,execution_time,VersionABCD
+2022-08-02,wasm,PolybenchC,bicg,0.011811816249968733,execution_time,VersionABCD
+2022-08-03,wasm,PolybenchC,bicg,0.011811152951662254,execution_time,VersionABCD
+2022-08-04,wasm,PolybenchC,bicg,0.011810363635215567,execution_time,VersionABCD
+2022-08-05,wasm,PolybenchC,bicg,0.0118100989337544,execution_time,VersionABCD
+2022-08-06,wasm,PolybenchC,bicg,0.011809806823154289,execution_time,VersionABCD
+2022-08-07,wasm,PolybenchC,bicg,0.011809295051840763,execution_time,VersionABCD
+2022-08-08,wasm,PolybenchC,bicg,0.011808706413374916,execution_time,VersionABCD
+2022-08-09,wasm,PolybenchC,bicg,0.011808512212386576,execution_time,VersionABCD
+2022-08-10,wasm,PolybenchC,bicg,0.011807547185169081,execution_time,VersionABCD
+2022-08-11,wasm,PolybenchC,bicg,0.011806721273413995,execution_time,VersionABCD
+2022-08-12,wasm,PolybenchC,bicg,0.011806194214390033,execution_time,VersionABCD
+2022-08-13,wasm,PolybenchC,bicg,0.011805280754116219,execution_time,VersionABCD
+2022-08-14,wasm,PolybenchC,bicg,0.011804855795921136,execution_time,VersionABCD
+2022-08-15,wasm,PolybenchC,bicg,0.011804084831065419,execution_time,VersionABCD
+2022-08-16,wasm,PolybenchC,bicg,0.011804067472641552,execution_time,VersionABCD
+2022-08-17,wasm,PolybenchC,bicg,0.011803644714057152,execution_time,VersionABCD
+2022-08-18,wasm,PolybenchC,bicg,0.011803195473751703,execution_time,VersionABCD
+2022-08-19,wasm,PolybenchC,bicg,0.011802799564110563,execution_time,VersionABCD
+2022-08-20,wasm,PolybenchC,bicg,0.011802714022401467,execution_time,VersionABCD
+2022-08-21,wasm,PolybenchC,bicg,0.011802592803478718,execution_time,VersionABCD
+2022-08-22,wasm,PolybenchC,bicg,0.011802166534140604,execution_time,VersionABCD
+2022-08-23,wasm,PolybenchC,bicg,0.011802014619472197,execution_time,VersionABCD
+2022-08-24,wasm,PolybenchC,bicg,0.011801626044517946,execution_time,VersionABCD
+2022-08-25,wasm,PolybenchC,bicg,0.011801618153936001,execution_time,VersionABCD
+2022-08-26,wasm,PolybenchC,bicg,0.01180115039843017,execution_time,VersionABCD
+2022-08-27,wasm,PolybenchC,bicg,0.01180102408778942,execution_time,VersionABCD
+2022-08-28,wasm,PolybenchC,bicg,0.011800350592543822,execution_time,VersionABCD
+2022-08-29,wasm,PolybenchC,bicg,0.011799955458152524,execution_time,VersionABCD
+2022-08-30,wasm,PolybenchC,bicg,0.01179939717713826,execution_time,VersionABCD
+2022-08-31,wasm,PolybenchC,bicg,0.01179909926680524,execution_time,VersionABCD
+2022-09-01,wasm,PolybenchC,bicg,0.011798336647378106,execution_time,VersionABCD
+2022-09-02,wasm,PolybenchC,bicg,0.011797551357320071,execution_time,VersionABCD
+2022-09-03,wasm,PolybenchC,bicg,0.011797339366828552,execution_time,VersionABCD
+2022-09-04,wasm,PolybenchC,bicg,0.011796575980644661,execution_time,VersionABCD
+2022-09-05,wasm,PolybenchC,bicg,0.011796475320360903,execution_time,VersionABCD
+2022-09-06,wasm,PolybenchC,bicg,0.01179554696668293,execution_time,VersionABCD
+2022-09-07,wasm,PolybenchC,bicg,0.01179499373055609,execution_time,VersionABCD
+2022-09-08,wasm,PolybenchC,bicg,0.011794974221972548,execution_time,VersionABCD
+2022-09-09,wasm,PolybenchC,bicg,0.011794348509174967,execution_time,VersionABCD
+2022-09-10,wasm,PolybenchC,bicg,0.011794296495721798,execution_time,VersionABCD
+2022-09-11,wasm,PolybenchC,bicg,0.011793510878890533,execution_time,VersionABCD
+2022-09-12,wasm,PolybenchC,bicg,0.011793102832032151,execution_time,VersionABCD
+2022-09-13,wasm,PolybenchC,bicg,0.011793060401076383,execution_time,VersionABCD
+2022-09-14,wasm,PolybenchC,bicg,0.011792217240778237,execution_time,VersionABCD
+2022-09-15,wasm,PolybenchC,bicg,0.01179163233270335,execution_time,VersionABCD
+2022-09-16,wasm,PolybenchC,bicg,0.01179124701346996,execution_time,VersionABCD
+2022-09-17,wasm,PolybenchC,bicg,0.01179089789540191,execution_time,VersionABCD
+2022-09-18,wasm,PolybenchC,bicg,0.011790288331829778,execution_time,VersionABCD
+2022-09-19,wasm,PolybenchC,bicg,0.01178982222517908,execution_time,VersionABCD
+2022-09-20,wasm,PolybenchC,bicg,0.011789720928799211,execution_time,VersionABCD
+2022-09-21,wasm,PolybenchC,bicg,0.011789473702850994,execution_time,VersionABCD
+2022-09-22,wasm,PolybenchC,bicg,0.011788853431687023,execution_time,VersionABCD
+2022-09-23,wasm,PolybenchC,bicg,0.011787986245847573,execution_time,VersionABCD
+2022-09-24,wasm,PolybenchC,bicg,0.011787022778168166,execution_time,VersionABCD
+2022-09-25,wasm,PolybenchC,bicg,0.01178643769356618,execution_time,VersionABCD
+2022-09-26,wasm,PolybenchC,bicg,0.011786282474907818,execution_time,VersionABCD
+2022-09-27,wasm,PolybenchC,bicg,0.011785448742981777,execution_time,VersionABCD
+2022-09-28,wasm,PolybenchC,bicg,0.011785311287939493,execution_time,VersionABCD
+2022-09-29,wasm,PolybenchC,bicg,0.011784920914748396,execution_time,VersionABCD
+2022-09-30,wasm,PolybenchC,bicg,0.011784916170239131,execution_time,VersionABCD
+2022-10-01,wasm,PolybenchC,bicg,0.011784287091573581,execution_time,VersionABCD
+2022-10-02,wasm,PolybenchC,bicg,0.011784171107477518,execution_time,VersionABCD
+2022-10-03,wasm,PolybenchC,bicg,0.011783816980363876,execution_time,VersionABCD
+2022-10-04,wasm,PolybenchC,bicg,0.011783129792586292,execution_time,VersionABCD
+2022-10-05,wasm,PolybenchC,bicg,0.01178288177466549,execution_time,VersionABCD
+2022-10-06,wasm,PolybenchC,bicg,0.011782587802885228,execution_time,VersionABCD
+2022-10-07,wasm,PolybenchC,bicg,0.011781882530057153,execution_time,VersionABCD
+2022-10-08,wasm,PolybenchC,bicg,0.01178106421059826,execution_time,VersionABCD
+2022-10-09,wasm,PolybenchC,bicg,0.011780987785060702,execution_time,VersionABCD
+2022-10-10,wasm,PolybenchC,bicg,0.011780536594893264,execution_time,VersionABCD
+2022-10-11,wasm,PolybenchC,bicg,0.011779652680776112,execution_time,VersionABCD
+2022-10-12,wasm,PolybenchC,bicg,0.011779291978188562,execution_time,VersionABCD
+2022-10-13,wasm,PolybenchC,bicg,0.011778947346290088,execution_time,VersionABCD
+2022-10-14,wasm,PolybenchC,bicg,0.01177841488547473,execution_time,VersionABCD
+2022-10-15,wasm,PolybenchC,bicg,0.011778098526300428,execution_time,VersionABCD
+2022-10-16,wasm,PolybenchC,bicg,0.011778021301240239,execution_time,VersionABCD
+2022-10-17,wasm,PolybenchC,bicg,0.01177785500474032,execution_time,VersionABCD
+2022-10-18,wasm,PolybenchC,bicg,0.011777750030833237,execution_time,VersionABCD
+2022-10-19,wasm,PolybenchC,bicg,0.011777222006215022,execution_time,VersionABCD
+2022-10-20,wasm,PolybenchC,bicg,0.011777128459477055,execution_time,VersionABCD
+2022-10-21,wasm,PolybenchC,bicg,0.011776167971100255,execution_time,VersionABCD
+2022-10-22,wasm,PolybenchC,bicg,0.011775953056593843,execution_time,VersionABCD
+2022-10-23,wasm,PolybenchC,bicg,0.01177509810544939,execution_time,VersionABCD
+2022-10-24,wasm,PolybenchC,bicg,0.011774732735226374,execution_time,VersionABCD
+2022-10-25,wasm,PolybenchC,bicg,0.011773966708670045,execution_time,VersionABCD
+2022-10-26,wasm,PolybenchC,bicg,0.011773782430767245,execution_time,VersionABCD
+2022-10-27,wasm,PolybenchC,bicg,0.01177308514866262,execution_time,VersionABCD
+2022-10-28,wasm,PolybenchC,bicg,0.01177276344374041,execution_time,VersionABCD
+2022-10-29,wasm,PolybenchC,bicg,0.011771786051121735,execution_time,VersionABCD
+2022-10-30,wasm,PolybenchC,bicg,0.011770822773253038,execution_time,VersionABCD
+2022-10-31,wasm,PolybenchC,bicg,0.011770418136137925,execution_time,VersionABCD
+2022-11-01,wasm,PolybenchC,bicg,0.01176945894944885,execution_time,VersionABCD
+2022-11-02,wasm,PolybenchC,bicg,0.011769248088836151,execution_time,VersionABCD
+2022-11-03,wasm,PolybenchC,bicg,0.011768566934159614,execution_time,VersionABCD
+2022-11-04,wasm,PolybenchC,bicg,0.011768045901355412,execution_time,VersionABCD
+2022-11-05,wasm,PolybenchC,bicg,0.011767244461192676,execution_time,VersionABCD
+2022-11-06,wasm,PolybenchC,bicg,0.011766764007802731,execution_time,VersionABCD
+2022-11-07,wasm,PolybenchC,bicg,0.011765998370826735,execution_time,VersionABCD
+2022-11-08,wasm,PolybenchC,bicg,0.011765197553410158,execution_time,VersionABCD
+2022-11-09,wasm,PolybenchC,bicg,0.011764420284352848,execution_time,VersionABCD
+2022-11-10,wasm,PolybenchC,bicg,0.011763886493314904,execution_time,VersionABCD
+2022-11-11,wasm,PolybenchC,bicg,0.011763315976515455,execution_time,VersionABCD
+2022-11-12,wasm,PolybenchC,bicg,0.011762656975861657,execution_time,VersionABCD
+2022-11-13,wasm,PolybenchC,bicg,0.011762389836779515,execution_time,VersionABCD
+2022-11-14,wasm,PolybenchC,bicg,0.011762254698193163,execution_time,VersionABCD
+2022-11-15,wasm,PolybenchC,bicg,0.011761496958793851,execution_time,VersionABCD
+2022-11-16,wasm,PolybenchC,bicg,0.011760548232515678,execution_time,VersionABCD
+2022-11-17,wasm,PolybenchC,bicg,0.011759744158539896,execution_time,VersionABCD
+2022-11-18,wasm,PolybenchC,bicg,0.011758999710532576,execution_time,VersionABCD
+2022-11-19,wasm,PolybenchC,bicg,0.01175873569298906,execution_time,VersionABCD
+2022-11-20,wasm,PolybenchC,bicg,0.011758419372512407,execution_time,VersionABCD
+2022-11-21,wasm,PolybenchC,bicg,0.011757916341631612,execution_time,VersionABCD
+2022-11-22,wasm,PolybenchC,bicg,0.011757717326367692,execution_time,VersionABCD
+2022-11-23,wasm,PolybenchC,bicg,0.011757628986972555,execution_time,VersionABCD
+2022-11-24,wasm,PolybenchC,bicg,0.011757364140962701,execution_time,VersionABCD
+2022-11-25,wasm,PolybenchC,bicg,0.011756549764116093,execution_time,VersionABCD
+2022-11-26,wasm,PolybenchC,bicg,0.011755981288414437,execution_time,VersionABCD
+2022-11-27,wasm,PolybenchC,bicg,0.011755605357928883,execution_time,VersionABCD
+2022-11-28,wasm,PolybenchC,bicg,0.011755298742773902,execution_time,VersionABCD
+2022-11-29,wasm,PolybenchC,bicg,0.011754925461847747,execution_time,VersionABCD
+2022-11-30,wasm,PolybenchC,bicg,0.011754854025068982,execution_time,VersionABCD
+2022-12-01,wasm,PolybenchC,bicg,0.011754643195623665,execution_time,VersionABCD
+2022-12-02,wasm,PolybenchC,bicg,0.011753947488457586,execution_time,VersionABCD
+2022-12-03,wasm,PolybenchC,bicg,0.011753851458333752,execution_time,VersionABCD
+2022-12-04,wasm,PolybenchC,bicg,0.011753144001652222,execution_time,VersionABCD
+2022-12-05,wasm,PolybenchC,bicg,0.011753060299128882,execution_time,VersionABCD
+2022-12-06,wasm,PolybenchC,bicg,0.011752725732743325,execution_time,VersionABCD
+2022-12-07,wasm,PolybenchC,bicg,0.01175229060847576,execution_time,VersionABCD
+2022-12-08,wasm,PolybenchC,bicg,0.011752214892920564,execution_time,VersionABCD
+2022-12-09,wasm,PolybenchC,bicg,0.011751268524173466,execution_time,VersionABCD
+2022-12-10,wasm,PolybenchC,bicg,0.011750893160543157,execution_time,VersionABCD
+2022-12-11,wasm,PolybenchC,bicg,0.011750169658444772,execution_time,VersionABCD
+2022-12-12,wasm,PolybenchC,bicg,0.011749648315926916,execution_time,VersionABCD
+2022-12-13,wasm,PolybenchC,bicg,0.01174952550738006,execution_time,VersionABCD
+2022-12-14,wasm,PolybenchC,bicg,0.011749111401847067,execution_time,VersionABCD
+2022-12-15,wasm,PolybenchC,bicg,0.01174857772467883,execution_time,VersionABCD
+2022-12-16,wasm,PolybenchC,bicg,0.011748123478691516,execution_time,VersionABCD
+2022-12-17,wasm,PolybenchC,bicg,0.011747907408370306,execution_time,VersionABCD
+2022-12-18,wasm,PolybenchC,bicg,0.011747599264428378,execution_time,VersionABCD
+2022-12-19,wasm,PolybenchC,bicg,0.011747099464553698,execution_time,VersionABCD
+2022-12-20,wasm,PolybenchC,bicg,0.01174694900575816,execution_time,VersionABCD
+2022-12-21,wasm,PolybenchC,bicg,0.011746688488244903,execution_time,VersionABCD
+2022-12-22,wasm,PolybenchC,bicg,0.011746322088066311,execution_time,VersionABCD
+2022-12-23,wasm,PolybenchC,bicg,0.011745439242186882,execution_time,VersionABCD
+2022-12-24,wasm,PolybenchC,bicg,0.011744893432511413,execution_time,VersionABCD
+2022-12-25,wasm,PolybenchC,bicg,0.011744474775053169,execution_time,VersionABCD
+2022-12-26,wasm,PolybenchC,bicg,0.01174357527862703,execution_time,VersionABCD
+2022-12-27,wasm,PolybenchC,bicg,0.011743152382794499,execution_time,VersionABCD
+2022-12-28,wasm,PolybenchC,bicg,0.011742400072378834,execution_time,VersionABCD
+2022-12-29,wasm,PolybenchC,bicg,0.011741835244257098,execution_time,VersionABCD
+2022-12-30,wasm,PolybenchC,bicg,0.011741464289065667,execution_time,VersionABCD
+2022-12-31,wasm,PolybenchC,bicg,0.011740738706551348,execution_time,VersionABCD
+2022-01-01,sm-base,PolybenchC,bicg,0.015182801653032303,execution_time,VersionABCD
+2022-01-02,sm-base,PolybenchC,bicg,0.015198609746784195,execution_time,VersionABCD
+2022-01-03,sm-base,PolybenchC,bicg,0.015231940786491493,execution_time,VersionABCD
+2022-01-04,sm-base,PolybenchC,bicg,0.015236912885835023,execution_time,VersionABCD
+2022-01-05,sm-base,PolybenchC,bicg,0.01527352383044012,execution_time,VersionABCD
+2022-01-06,sm-base,PolybenchC,bicg,0.015297820959929978,execution_time,VersionABCD
+2022-01-07,sm-base,PolybenchC,bicg,0.015296845604295629,execution_time,VersionABCD
+2022-01-08,sm-base,PolybenchC,bicg,0.015315486995473488,execution_time,VersionABCD
+2022-01-09,sm-base,PolybenchC,bicg,0.015332289049333042,execution_time,VersionABCD
+2022-01-10,sm-base,PolybenchC,bicg,0.015331658483109956,execution_time,VersionABCD
+2022-01-11,sm-base,PolybenchC,bicg,0.015356744051464368,execution_time,VersionABCD
+2022-01-12,sm-base,PolybenchC,bicg,0.015371389194192293,execution_time,VersionABCD
+2022-01-13,sm-base,PolybenchC,bicg,0.015379155288497388,execution_time,VersionABCD
+2022-01-14,sm-base,PolybenchC,bicg,0.0154041453327731,execution_time,VersionABCD
+2022-01-15,sm-base,PolybenchC,bicg,0.015440626534881138,execution_time,VersionABCD
+2022-01-16,sm-base,PolybenchC,bicg,0.01547150314293188,execution_time,VersionABCD
+2022-01-17,sm-base,PolybenchC,bicg,0.015491854187782234,execution_time,VersionABCD
+2022-01-18,sm-base,PolybenchC,bicg,0.015529505451951274,execution_time,VersionABCD
+2022-01-19,sm-base,PolybenchC,bicg,0.015539626957300816,execution_time,VersionABCD
+2022-01-20,sm-base,PolybenchC,bicg,0.015555210362692907,execution_time,VersionABCD
+2022-01-21,sm-base,PolybenchC,bicg,0.015557478308967808,execution_time,VersionABCD
+2022-01-22,sm-base,PolybenchC,bicg,0.015563415271512298,execution_time,VersionABCD
+2022-01-23,sm-base,PolybenchC,bicg,0.015582161946385186,execution_time,VersionABCD
+2022-01-24,sm-base,PolybenchC,bicg,0.015621869609855375,execution_time,VersionABCD
+2022-01-25,sm-base,PolybenchC,bicg,0.015640029953847112,execution_time,VersionABCD
+2022-01-26,sm-base,PolybenchC,bicg,0.01566076907424045,execution_time,VersionABCD
+2022-01-27,sm-base,PolybenchC,bicg,0.015696959026937997,execution_time,VersionABCD
+2022-01-28,sm-base,PolybenchC,bicg,0.015698754341323652,execution_time,VersionABCD
+2022-01-29,sm-base,PolybenchC,bicg,0.015719826407496345,execution_time,VersionABCD
+2022-01-30,sm-base,PolybenchC,bicg,0.015757711262572843,execution_time,VersionABCD
+2022-01-31,sm-base,PolybenchC,bicg,0.015779333185091574,execution_time,VersionABCD
+2022-02-01,sm-base,PolybenchC,bicg,0.015779379733479384,execution_time,VersionABCD
+2022-02-02,sm-base,PolybenchC,bicg,0.015800113328864794,execution_time,VersionABCD
+2022-02-03,sm-base,PolybenchC,bicg,0.015801563117491656,execution_time,VersionABCD
+2022-02-04,sm-base,PolybenchC,bicg,0.015816749307423075,execution_time,VersionABCD
+2022-02-05,sm-base,PolybenchC,bicg,0.015840815274442904,execution_time,VersionABCD
+2022-02-06,sm-base,PolybenchC,bicg,0.015840250094914222,execution_time,VersionABCD
+2022-02-07,sm-base,PolybenchC,bicg,0.015843098441831786,execution_time,VersionABCD
+2022-02-08,sm-base,PolybenchC,bicg,0.015851785607488792,execution_time,VersionABCD
+2022-02-09,sm-base,PolybenchC,bicg,0.015867310690962356,execution_time,VersionABCD
+2022-02-10,sm-base,PolybenchC,bicg,0.015895804275701652,execution_time,VersionABCD
+2022-02-11,sm-base,PolybenchC,bicg,0.01590966556709122,execution_time,VersionABCD
+2022-02-12,sm-base,PolybenchC,bicg,0.015934172054742683,execution_time,VersionABCD
+2022-02-13,sm-base,PolybenchC,bicg,0.015973664877089472,execution_time,VersionABCD
+2022-02-14,sm-base,PolybenchC,bicg,0.015989650867517784,execution_time,VersionABCD
+2022-02-15,sm-base,PolybenchC,bicg,0.016011711991604557,execution_time,VersionABCD
+2022-02-16,sm-base,PolybenchC,bicg,0.016051219215154844,execution_time,VersionABCD
+2022-02-17,sm-base,PolybenchC,bicg,0.0160706593107739,execution_time,VersionABCD
+2022-02-18,sm-base,PolybenchC,bicg,0.01610882064537805,execution_time,VersionABCD
+2022-02-19,sm-base,PolybenchC,bicg,0.016147332970756156,execution_time,VersionABCD
+2022-02-20,sm-base,PolybenchC,bicg,0.016181778228906398,execution_time,VersionABCD
+2022-02-21,sm-base,PolybenchC,bicg,0.016219122648919143,execution_time,VersionABCD
+2022-02-22,sm-base,PolybenchC,bicg,0.01624480136279756,execution_time,VersionABCD
+2022-02-23,sm-base,PolybenchC,bicg,0.016247322999745305,execution_time,VersionABCD
+2022-02-24,sm-base,PolybenchC,bicg,0.016282482909885595,execution_time,VersionABCD
+2022-02-25,sm-base,PolybenchC,bicg,0.016303848825754755,execution_time,VersionABCD
+2022-02-26,sm-base,PolybenchC,bicg,0.01631562554579955,execution_time,VersionABCD
+2022-02-27,sm-base,PolybenchC,bicg,0.016316112184048086,execution_time,VersionABCD
+2022-02-28,sm-base,PolybenchC,bicg,0.0163525606307807,execution_time,VersionABCD
+2022-03-01,sm-base,PolybenchC,bicg,0.01635164700273783,execution_time,VersionABCD
+2022-03-02,sm-base,PolybenchC,bicg,0.016362061994472207,execution_time,VersionABCD
+2022-03-03,sm-base,PolybenchC,bicg,0.01638356243856738,execution_time,VersionABCD
+2022-03-04,sm-base,PolybenchC,bicg,0.016400072591572435,execution_time,VersionABCD
+2022-03-05,sm-base,PolybenchC,bicg,0.0163994297008795,execution_time,VersionABCD
+2022-03-06,sm-base,PolybenchC,bicg,0.016427648223514935,execution_time,VersionABCD
+2022-03-07,sm-base,PolybenchC,bicg,0.016432157694183703,execution_time,VersionABCD
+2022-03-08,sm-base,PolybenchC,bicg,0.01646143988661595,execution_time,VersionABCD
+2022-03-09,sm-base,PolybenchC,bicg,0.016475409923436463,execution_time,VersionABCD
+2022-03-10,sm-base,PolybenchC,bicg,0.016486745146276523,execution_time,VersionABCD
+2022-03-11,sm-base,PolybenchC,bicg,0.016517786302592506,execution_time,VersionABCD
+2022-03-12,sm-base,PolybenchC,bicg,0.016526235101194033,execution_time,VersionABCD
+2022-03-13,sm-base,PolybenchC,bicg,0.01652794639356521,execution_time,VersionABCD
+2022-03-14,sm-base,PolybenchC,bicg,0.016533326149504264,execution_time,VersionABCD
+2022-03-15,sm-base,PolybenchC,bicg,0.016565137781985487,execution_time,VersionABCD
+2022-03-16,sm-base,PolybenchC,bicg,0.016570840354919406,execution_time,VersionABCD
+2022-03-17,sm-base,PolybenchC,bicg,0.016575319134973187,execution_time,VersionABCD
+2022-03-18,sm-base,PolybenchC,bicg,0.01660744197185899,execution_time,VersionABCD
+2022-03-19,sm-base,PolybenchC,bicg,0.016631674500374102,execution_time,VersionABCD
+2022-03-20,sm-base,PolybenchC,bicg,0.016668513604137514,execution_time,VersionABCD
+2022-03-21,sm-base,PolybenchC,bicg,0.016695793139090972,execution_time,VersionABCD
+2022-03-22,sm-base,PolybenchC,bicg,0.01671471586060359,execution_time,VersionABCD
+2022-03-23,sm-base,PolybenchC,bicg,0.016752909442441545,execution_time,VersionABCD
+2022-03-24,sm-base,PolybenchC,bicg,0.016755667732671897,execution_time,VersionABCD
+2022-03-25,sm-base,PolybenchC,bicg,0.016774154022398704,execution_time,VersionABCD
+2022-03-26,sm-base,PolybenchC,bicg,0.01680379625709998,execution_time,VersionABCD
+2022-03-27,sm-base,PolybenchC,bicg,0.01681351486714876,execution_time,VersionABCD
+2022-03-28,sm-base,PolybenchC,bicg,0.01683147326421744,execution_time,VersionABCD
+2022-03-29,sm-base,PolybenchC,bicg,0.016855176171896278,execution_time,VersionABCD
+2022-03-30,sm-base,PolybenchC,bicg,0.016860390339122747,execution_time,VersionABCD
+2022-03-31,sm-base,PolybenchC,bicg,0.016876021305928482,execution_time,VersionABCD
+2022-04-01,sm-base,PolybenchC,bicg,0.01690463374693128,execution_time,VersionABCD
+2022-04-02,sm-base,PolybenchC,bicg,0.016929534021310703,execution_time,VersionABCD
+2022-04-03,sm-base,PolybenchC,bicg,0.01694807118548186,execution_time,VersionABCD
+2022-04-04,sm-base,PolybenchC,bicg,0.016987722451378265,execution_time,VersionABCD
+2022-04-05,sm-base,PolybenchC,bicg,0.016995365446405442,execution_time,VersionABCD
+2022-04-06,sm-base,PolybenchC,bicg,0.017019799459856755,execution_time,VersionABCD
+2022-04-07,sm-base,PolybenchC,bicg,0.017057722044220926,execution_time,VersionABCD
+2022-04-08,sm-base,PolybenchC,bicg,0.01707415987740851,execution_time,VersionABCD
+2022-04-09,sm-base,PolybenchC,bicg,0.017077695609444114,execution_time,VersionABCD
+2022-04-10,sm-base,PolybenchC,bicg,0.01710299651869365,execution_time,VersionABCD
+2022-04-11,sm-base,PolybenchC,bicg,0.017122955539555427,execution_time,VersionABCD
+2022-04-12,sm-base,PolybenchC,bicg,0.01713191729654268,execution_time,VersionABCD
+2022-04-13,sm-base,PolybenchC,bicg,0.01716062466260652,execution_time,VersionABCD
+2022-04-14,sm-base,PolybenchC,bicg,0.017182652738776623,execution_time,VersionABCD
+2022-04-15,sm-base,PolybenchC,bicg,0.01720550232298198,execution_time,VersionABCD
+2022-04-16,sm-base,PolybenchC,bicg,0.01724397686348891,execution_time,VersionABCD
+2022-04-17,sm-base,PolybenchC,bicg,0.017250496496991646,execution_time,VersionABCD
+2022-04-18,sm-base,PolybenchC,bicg,0.017281415797276285,execution_time,VersionABCD
+2022-04-19,sm-base,PolybenchC,bicg,0.017320899230515885,execution_time,VersionABCD
+2022-04-20,sm-base,PolybenchC,bicg,0.01735196747954676,execution_time,VersionABCD
+2022-04-21,sm-base,PolybenchC,bicg,0.017388346217950386,execution_time,VersionABCD
+2022-04-22,sm-base,PolybenchC,bicg,0.01739188331056279,execution_time,VersionABCD
+2022-04-23,sm-base,PolybenchC,bicg,0.01741714332753071,execution_time,VersionABCD
+2022-04-24,sm-base,PolybenchC,bicg,0.017428536892040554,execution_time,VersionABCD
+2022-04-25,sm-base,PolybenchC,bicg,0.017434701097115046,execution_time,VersionABCD
+2022-04-26,sm-base,PolybenchC,bicg,0.017451028600273626,execution_time,VersionABCD
+2022-04-27,sm-base,PolybenchC,bicg,0.017453169608965077,execution_time,VersionABCD
+2022-04-28,sm-base,PolybenchC,bicg,0.017470367426522297,execution_time,VersionABCD
+2022-04-29,sm-base,PolybenchC,bicg,0.01747961249681436,execution_time,VersionABCD
+2022-04-30,sm-base,PolybenchC,bicg,0.017498366035982923,execution_time,VersionABCD
+2022-05-01,sm-base,PolybenchC,bicg,0.017517738526289447,execution_time,VersionABCD
+2022-05-02,sm-base,PolybenchC,bicg,0.017535280457129637,execution_time,VersionABCD
+2022-05-03,sm-base,PolybenchC,bicg,0.01756476778618495,execution_time,VersionABCD
+2022-05-04,sm-base,PolybenchC,bicg,0.017585084411109494,execution_time,VersionABCD
+2022-05-05,sm-base,PolybenchC,bicg,0.01759664121812861,execution_time,VersionABCD
+2022-05-06,sm-base,PolybenchC,bicg,0.017635481333527325,execution_time,VersionABCD
+2022-05-07,sm-base,PolybenchC,bicg,0.0176670185026469,execution_time,VersionABCD
+2022-05-08,sm-base,PolybenchC,bicg,0.017690301517530538,execution_time,VersionABCD
+2022-05-09,sm-base,PolybenchC,bicg,0.017726333111512952,execution_time,VersionABCD
+2022-05-10,sm-base,PolybenchC,bicg,0.017733522787628592,execution_time,VersionABCD
+2022-05-11,sm-base,PolybenchC,bicg,0.01775629482671762,execution_time,VersionABCD
+2022-05-12,sm-base,PolybenchC,bicg,0.017795376999927406,execution_time,VersionABCD
+2022-05-13,sm-base,PolybenchC,bicg,0.017822944080796998,execution_time,VersionABCD
+2022-05-14,sm-base,PolybenchC,bicg,0.01784751291510995,execution_time,VersionABCD
+2022-05-15,sm-base,PolybenchC,bicg,0.0178868374366945,execution_time,VersionABCD
+2022-05-16,sm-base,PolybenchC,bicg,0.017910688561688988,execution_time,VersionABCD
+2022-05-17,sm-base,PolybenchC,bicg,0.01795009244078156,execution_time,VersionABCD
+2022-05-18,sm-base,PolybenchC,bicg,0.017978287996849904,execution_time,VersionABCD
+2022-05-19,sm-base,PolybenchC,bicg,0.017984394467413962,execution_time,VersionABCD
+2022-05-20,sm-base,PolybenchC,bicg,0.018007560619662175,execution_time,VersionABCD
+2022-05-21,sm-base,PolybenchC,bicg,0.018011139900845685,execution_time,VersionABCD
+2022-05-22,sm-base,PolybenchC,bicg,0.01802229180096751,execution_time,VersionABCD
+2022-05-23,sm-base,PolybenchC,bicg,0.018026595395595053,execution_time,VersionABCD
+2022-05-24,sm-base,PolybenchC,bicg,0.01806089457247254,execution_time,VersionABCD
+2022-05-25,sm-base,PolybenchC,bicg,0.018084825684788353,execution_time,VersionABCD
+2022-05-26,sm-base,PolybenchC,bicg,0.018117749930681538,execution_time,VersionABCD
+2022-05-27,sm-base,PolybenchC,bicg,0.01813341583770901,execution_time,VersionABCD
+2022-05-28,sm-base,PolybenchC,bicg,0.018171547256662927,execution_time,VersionABCD
+2022-05-29,sm-base,PolybenchC,bicg,0.018183403910233077,execution_time,VersionABCD
+2022-05-30,sm-base,PolybenchC,bicg,0.018217790691867637,execution_time,VersionABCD
+2022-05-31,sm-base,PolybenchC,bicg,0.0182419807935284,execution_time,VersionABCD
+2022-06-01,sm-base,PolybenchC,bicg,0.01828004597873074,execution_time,VersionABCD
+2022-06-02,sm-base,PolybenchC,bicg,0.018293465653277753,execution_time,VersionABCD
+2022-06-03,sm-base,PolybenchC,bicg,0.018308874256206156,execution_time,VersionABCD
+2022-06-04,sm-base,PolybenchC,bicg,0.018340149371463135,execution_time,VersionABCD
+2022-06-05,sm-base,PolybenchC,bicg,0.018351243694431526,execution_time,VersionABCD
+2022-06-06,sm-base,PolybenchC,bicg,0.018356791530929922,execution_time,VersionABCD
+2022-06-07,sm-base,PolybenchC,bicg,0.01838467967917138,execution_time,VersionABCD
+2022-06-08,sm-base,PolybenchC,bicg,0.018385923166657773,execution_time,VersionABCD
+2022-06-09,sm-base,PolybenchC,bicg,0.01838595050318594,execution_time,VersionABCD
+2022-06-10,sm-base,PolybenchC,bicg,0.01839880156640757,execution_time,VersionABCD
+2022-06-11,sm-base,PolybenchC,bicg,0.01842456192021218,execution_time,VersionABCD
+2022-06-12,sm-base,PolybenchC,bicg,0.018464377562224406,execution_time,VersionABCD
+2022-06-13,sm-base,PolybenchC,bicg,0.018501191234748634,execution_time,VersionABCD
+2022-06-14,sm-base,PolybenchC,bicg,0.01851960688936997,execution_time,VersionABCD
+2022-06-15,sm-base,PolybenchC,bicg,0.018539436546366198,execution_time,VersionABCD
+2022-06-16,sm-base,PolybenchC,bicg,0.018561623088307957,execution_time,VersionABCD
+2022-06-17,sm-base,PolybenchC,bicg,0.018577511433974,execution_time,VersionABCD
+2022-06-18,sm-base,PolybenchC,bicg,0.018596889435763587,execution_time,VersionABCD
+2022-06-19,sm-base,PolybenchC,bicg,0.018615547763613457,execution_time,VersionABCD
+2022-06-20,sm-base,PolybenchC,bicg,0.018619126719279098,execution_time,VersionABCD
+2022-06-21,sm-base,PolybenchC,bicg,0.018651021391835502,execution_time,VersionABCD
+2022-06-22,sm-base,PolybenchC,bicg,0.018656922293218296,execution_time,VersionABCD
+2022-06-23,sm-base,PolybenchC,bicg,0.018681927601353253,execution_time,VersionABCD
+2022-06-24,sm-base,PolybenchC,bicg,0.018718348296257317,execution_time,VersionABCD
+2022-06-25,sm-base,PolybenchC,bicg,0.018720623333169675,execution_time,VersionABCD
+2022-06-26,sm-base,PolybenchC,bicg,0.018731888352523693,execution_time,VersionABCD
+2022-06-27,sm-base,PolybenchC,bicg,0.018752717051694564,execution_time,VersionABCD
+2022-06-28,sm-base,PolybenchC,bicg,0.018789511189847206,execution_time,VersionABCD
+2022-06-29,sm-base,PolybenchC,bicg,0.018813412186645558,execution_time,VersionABCD
+2022-06-30,sm-base,PolybenchC,bicg,0.018834535947061935,execution_time,VersionABCD
+2022-07-01,sm-base,PolybenchC,bicg,0.018859671943142847,execution_time,VersionABCD
+2022-07-02,sm-base,PolybenchC,bicg,0.018889626270540062,execution_time,VersionABCD
+2022-07-03,sm-base,PolybenchC,bicg,0.0188943205829851,execution_time,VersionABCD
+2022-07-04,sm-base,PolybenchC,bicg,0.018923131865851667,execution_time,VersionABCD
+2022-07-05,sm-base,PolybenchC,bicg,0.018935322080698782,execution_time,VersionABCD
+2022-07-06,sm-base,PolybenchC,bicg,0.01896095269597662,execution_time,VersionABCD
+2022-07-07,sm-base,PolybenchC,bicg,0.01897285733330426,execution_time,VersionABCD
+2022-07-08,sm-base,PolybenchC,bicg,0.019003003955132512,execution_time,VersionABCD
+2022-07-09,sm-base,PolybenchC,bicg,0.01901480585623499,execution_time,VersionABCD
+2022-07-10,sm-base,PolybenchC,bicg,0.019030052926921538,execution_time,VersionABCD
+2022-07-11,sm-base,PolybenchC,bicg,0.019044702461133572,execution_time,VersionABCD
+2022-07-12,sm-base,PolybenchC,bicg,0.019067102800498024,execution_time,VersionABCD
+2022-07-13,sm-base,PolybenchC,bicg,0.01908042112315526,execution_time,VersionABCD
+2022-07-14,sm-base,PolybenchC,bicg,0.019081737922606073,execution_time,VersionABCD
+2022-07-15,sm-base,PolybenchC,bicg,0.019093055481867578,execution_time,VersionABCD
+2022-07-16,sm-base,PolybenchC,bicg,0.01910587853550698,execution_time,VersionABCD
+2022-07-17,sm-base,PolybenchC,bicg,0.019110200696310115,execution_time,VersionABCD
+2022-07-18,sm-base,PolybenchC,bicg,0.019131085464583284,execution_time,VersionABCD
+2022-07-19,sm-base,PolybenchC,bicg,0.019147253172979793,execution_time,VersionABCD
+2022-07-20,sm-base,PolybenchC,bicg,0.019166301762650828,execution_time,VersionABCD
+2022-07-21,sm-base,PolybenchC,bicg,0.01919451171017084,execution_time,VersionABCD
+2022-07-22,sm-base,PolybenchC,bicg,0.01922485987745486,execution_time,VersionABCD
+2022-07-23,sm-base,PolybenchC,bicg,0.019231994109023157,execution_time,VersionABCD
+2022-07-24,sm-base,PolybenchC,bicg,0.019258311378143208,execution_time,VersionABCD
+2022-07-25,sm-base,PolybenchC,bicg,0.01927605032150299,execution_time,VersionABCD
+2022-07-26,sm-base,PolybenchC,bicg,0.01930917721739693,execution_time,VersionABCD
+2022-07-27,sm-base,PolybenchC,bicg,0.019347010705217157,execution_time,VersionABCD
+2022-07-28,sm-base,PolybenchC,bicg,0.019368106166139952,execution_time,VersionABCD
+2022-07-29,sm-base,PolybenchC,bicg,0.019407835845810344,execution_time,VersionABCD
+2022-07-30,sm-base,PolybenchC,bicg,0.019423203203012253,execution_time,VersionABCD
+2022-07-31,sm-base,PolybenchC,bicg,0.019443512141249456,execution_time,VersionABCD
+2022-08-01,sm-base,PolybenchC,bicg,0.019462482253084747,execution_time,VersionABCD
+2022-08-02,sm-base,PolybenchC,bicg,0.019495503662621944,execution_time,VersionABCD
+2022-08-03,sm-base,PolybenchC,bicg,0.019501452128594676,execution_time,VersionABCD
+2022-08-04,sm-base,PolybenchC,bicg,0.019505586557226468,execution_time,VersionABCD
+2022-08-05,sm-base,PolybenchC,bicg,0.01950997648740825,execution_time,VersionABCD
+2022-08-06,sm-base,PolybenchC,bicg,0.019516387153283073,execution_time,VersionABCD
+2022-08-07,sm-base,PolybenchC,bicg,0.01953985942660283,execution_time,VersionABCD
+2022-08-08,sm-base,PolybenchC,bicg,0.01956579811935321,execution_time,VersionABCD
+2022-08-09,sm-base,PolybenchC,bicg,0.019576533710203608,execution_time,VersionABCD
+2022-08-10,sm-base,PolybenchC,bicg,0.01961135777149812,execution_time,VersionABCD
+2022-08-11,sm-base,PolybenchC,bicg,0.019637877749045997,execution_time,VersionABCD
+2022-08-12,sm-base,PolybenchC,bicg,0.019653872073836905,execution_time,VersionABCD
+2022-08-13,sm-base,PolybenchC,bicg,0.01969307687975828,execution_time,VersionABCD
+2022-08-14,sm-base,PolybenchC,bicg,0.01971633647839944,execution_time,VersionABCD
+2022-08-15,sm-base,PolybenchC,bicg,0.019743004490258367,execution_time,VersionABCD
+2022-08-16,sm-base,PolybenchC,bicg,0.0197425934218063,execution_time,VersionABCD
+2022-08-17,sm-base,PolybenchC,bicg,0.019781943034463772,execution_time,VersionABCD
+2022-08-18,sm-base,PolybenchC,bicg,0.019802953709708408,execution_time,VersionABCD
+2022-08-19,sm-base,PolybenchC,bicg,0.019807946422824522,execution_time,VersionABCD
+2022-08-20,sm-base,PolybenchC,bicg,0.019816574603468137,execution_time,VersionABCD
+2022-08-21,sm-base,PolybenchC,bicg,0.019821360104049196,execution_time,VersionABCD
+2022-08-22,sm-base,PolybenchC,bicg,0.019844552817187132,execution_time,VersionABCD
+2022-08-23,sm-base,PolybenchC,bicg,0.019872163241204277,execution_time,VersionABCD
+2022-08-24,sm-base,PolybenchC,bicg,0.019895585887955525,execution_time,VersionABCD
+2022-08-25,sm-base,PolybenchC,bicg,0.019934321761826895,execution_time,VersionABCD
+2022-08-26,sm-base,PolybenchC,bicg,0.019936036994971113,execution_time,VersionABCD
+2022-08-27,sm-base,PolybenchC,bicg,0.019939411494878875,execution_time,VersionABCD
+2022-08-28,sm-base,PolybenchC,bicg,0.019969731481057348,execution_time,VersionABCD
+2022-08-29,sm-base,PolybenchC,bicg,0.0200048817248072,execution_time,VersionABCD
+2022-08-30,sm-base,PolybenchC,bicg,0.020024107373143273,execution_time,VersionABCD
+2022-08-31,sm-base,PolybenchC,bicg,0.020053509543721735,execution_time,VersionABCD
+2022-09-01,sm-base,PolybenchC,bicg,0.020078556873510192,execution_time,VersionABCD
+2022-09-02,sm-base,PolybenchC,bicg,0.020094008241383476,execution_time,VersionABCD
+2022-09-03,sm-base,PolybenchC,bicg,0.020035524312814034,execution_time,VersionABCD
+2022-09-04,sm-base,PolybenchC,bicg,0.01997630362525285,execution_time,VersionABCD
+2022-09-05,sm-base,PolybenchC,bicg,0.019933486769979587,execution_time,VersionABCD
+2022-09-06,sm-base,PolybenchC,bicg,0.01987614291010444,execution_time,VersionABCD
+2022-09-07,sm-base,PolybenchC,bicg,0.019838879308307286,execution_time,VersionABCD
+2022-09-08,sm-base,PolybenchC,bicg,0.019796322271124295,execution_time,VersionABCD
+2022-09-09,sm-base,PolybenchC,bicg,0.019757286388181697,execution_time,VersionABCD
+2022-09-10,sm-base,PolybenchC,bicg,0.019697393128539114,execution_time,VersionABCD
+2022-09-11,sm-base,PolybenchC,bicg,0.019647240155920422,execution_time,VersionABCD
+2022-09-12,sm-base,PolybenchC,bicg,0.01960793130708444,execution_time,VersionABCD
+2022-09-13,sm-base,PolybenchC,bicg,0.019559687305168147,execution_time,VersionABCD
+2022-09-14,sm-base,PolybenchC,bicg,0.019519266929407024,execution_time,VersionABCD
+2022-09-15,sm-base,PolybenchC,bicg,0.01948005698224821,execution_time,VersionABCD
+2022-09-16,sm-base,PolybenchC,bicg,0.019433110021433296,execution_time,VersionABCD
+2022-09-17,sm-base,PolybenchC,bicg,0.01938945474490551,execution_time,VersionABCD
+2022-09-18,sm-base,PolybenchC,bicg,0.01934398204443113,execution_time,VersionABCD
+2022-09-19,sm-base,PolybenchC,bicg,0.01930983988850258,execution_time,VersionABCD
+2022-09-20,sm-base,PolybenchC,bicg,0.019274459652971976,execution_time,VersionABCD
+2022-09-21,sm-base,PolybenchC,bicg,0.019221519409566498,execution_time,VersionABCD
+2022-09-22,sm-base,PolybenchC,bicg,0.019170912321184175,execution_time,VersionABCD
+2022-09-23,sm-base,PolybenchC,bicg,0.019112069509939045,execution_time,VersionABCD
+2022-09-24,sm-base,PolybenchC,bicg,0.019079166373371634,execution_time,VersionABCD
+2022-09-25,sm-base,PolybenchC,bicg,0.019030458432064187,execution_time,VersionABCD
+2022-09-26,sm-base,PolybenchC,bicg,0.018976838616546456,execution_time,VersionABCD
+2022-09-27,sm-base,PolybenchC,bicg,0.018929468384561186,execution_time,VersionABCD
+2022-09-28,sm-base,PolybenchC,bicg,0.018886558240652062,execution_time,VersionABCD
+2022-09-29,sm-base,PolybenchC,bicg,0.018838604180474224,execution_time,VersionABCD
+2022-09-30,sm-base,PolybenchC,bicg,0.018808421791339857,execution_time,VersionABCD
+2022-10-01,sm-base,PolybenchC,bicg,0.01874901658682809,execution_time,VersionABCD
+2022-10-02,sm-base,PolybenchC,bicg,0.018694533933262057,execution_time,VersionABCD
+2022-10-03,sm-base,PolybenchC,bicg,0.018647539788854754,execution_time,VersionABCD
+2022-10-04,sm-base,PolybenchC,bicg,0.018598579671864863,execution_time,VersionABCD
+2022-10-05,sm-base,PolybenchC,bicg,0.01856141038755271,execution_time,VersionABCD
+2022-10-06,sm-base,PolybenchC,bicg,0.01852454732412056,execution_time,VersionABCD
+2022-10-07,sm-base,PolybenchC,bicg,0.018471386582176084,execution_time,VersionABCD
+2022-10-08,sm-base,PolybenchC,bicg,0.018417837450356148,execution_time,VersionABCD
+2022-10-09,sm-base,PolybenchC,bicg,0.01838203905292466,execution_time,VersionABCD
+2022-10-10,sm-base,PolybenchC,bicg,0.018336903059709118,execution_time,VersionABCD
+2022-10-11,sm-base,PolybenchC,bicg,0.018306625975391434,execution_time,VersionABCD
+2022-10-12,sm-base,PolybenchC,bicg,0.018267864736355208,execution_time,VersionABCD
+2022-10-13,sm-base,PolybenchC,bicg,0.018237815220675167,execution_time,VersionABCD
+2022-10-14,sm-base,PolybenchC,bicg,0.01820551540736062,execution_time,VersionABCD
+2022-10-15,sm-base,PolybenchC,bicg,0.018174296341402506,execution_time,VersionABCD
+2022-10-16,sm-base,PolybenchC,bicg,0.018140157876796667,execution_time,VersionABCD
+2022-10-17,sm-base,PolybenchC,bicg,0.018083679124200985,execution_time,VersionABCD
+2022-10-18,sm-base,PolybenchC,bicg,0.018033955597534807,execution_time,VersionABCD
+2022-10-19,sm-base,PolybenchC,bicg,0.01797954099809543,execution_time,VersionABCD
+2022-10-20,sm-base,PolybenchC,bicg,0.017942993236275986,execution_time,VersionABCD
+2022-10-21,sm-base,PolybenchC,bicg,0.017906588765352546,execution_time,VersionABCD
+2022-10-22,sm-base,PolybenchC,bicg,0.017864777062719408,execution_time,VersionABCD
+2022-10-23,sm-base,PolybenchC,bicg,0.01780575676402,execution_time,VersionABCD
+2022-10-24,sm-base,PolybenchC,bicg,0.017770981997588656,execution_time,VersionABCD
+2022-10-25,sm-base,PolybenchC,bicg,0.01771949998241898,execution_time,VersionABCD
+2022-10-26,sm-base,PolybenchC,bicg,0.017673276293872647,execution_time,VersionABCD
+2022-10-27,sm-base,PolybenchC,bicg,0.017616249713657578,execution_time,VersionABCD
+2022-10-28,sm-base,PolybenchC,bicg,0.01758245191739142,execution_time,VersionABCD
+2022-10-29,sm-base,PolybenchC,bicg,0.017549316807648135,execution_time,VersionABCD
+2022-10-30,sm-base,PolybenchC,bicg,0.017494813920621036,execution_time,VersionABCD
+2022-10-31,sm-base,PolybenchC,bicg,0.01743688822792672,execution_time,VersionABCD
+2022-11-01,sm-base,PolybenchC,bicg,0.017386526573306246,execution_time,VersionABCD
+2022-11-02,sm-base,PolybenchC,bicg,0.017345303565484343,execution_time,VersionABCD
+2022-11-03,sm-base,PolybenchC,bicg,0.017290055076733542,execution_time,VersionABCD
+2022-11-04,sm-base,PolybenchC,bicg,0.017236792818001133,execution_time,VersionABCD
+2022-11-05,sm-base,PolybenchC,bicg,0.01719626021700498,execution_time,VersionABCD
+2022-11-06,sm-base,PolybenchC,bicg,0.017147845164943297,execution_time,VersionABCD
+2022-11-07,sm-base,PolybenchC,bicg,0.017104167606362686,execution_time,VersionABCD
+2022-11-08,sm-base,PolybenchC,bicg,0.017062550522895327,execution_time,VersionABCD
+2022-11-09,sm-base,PolybenchC,bicg,0.017026720470010553,execution_time,VersionABCD
+2022-11-10,sm-base,PolybenchC,bicg,0.016984392790810317,execution_time,VersionABCD
+2022-11-11,sm-base,PolybenchC,bicg,0.01693497293223426,execution_time,VersionABCD
+2022-11-12,sm-base,PolybenchC,bicg,0.016887896201610728,execution_time,VersionABCD
+2022-11-13,sm-base,PolybenchC,bicg,0.016836463478558862,execution_time,VersionABCD
+2022-11-14,sm-base,PolybenchC,bicg,0.016784158873963773,execution_time,VersionABCD
+2022-11-15,sm-base,PolybenchC,bicg,0.016742919736121128,execution_time,VersionABCD
+2022-11-16,sm-base,PolybenchC,bicg,0.016707855564978797,execution_time,VersionABCD
+2022-11-17,sm-base,PolybenchC,bicg,0.016655192280527847,execution_time,VersionABCD
+2022-11-18,sm-base,PolybenchC,bicg,0.016601815954336182,execution_time,VersionABCD
+2022-11-19,sm-base,PolybenchC,bicg,0.016561370964213635,execution_time,VersionABCD
+2022-11-20,sm-base,PolybenchC,bicg,0.016530719054001088,execution_time,VersionABCD
+2022-11-21,sm-base,PolybenchC,bicg,0.016490511446833733,execution_time,VersionABCD
+2022-11-22,sm-base,PolybenchC,bicg,0.016457870948483985,execution_time,VersionABCD
+2022-11-23,sm-base,PolybenchC,bicg,0.01642517131357643,execution_time,VersionABCD
+2022-11-24,sm-base,PolybenchC,bicg,0.01639276291735361,execution_time,VersionABCD
+2022-11-25,sm-base,PolybenchC,bicg,0.016358121195830244,execution_time,VersionABCD
+2022-11-26,sm-base,PolybenchC,bicg,0.01632543767030878,execution_time,VersionABCD
+2022-11-27,sm-base,PolybenchC,bicg,0.016281454178096753,execution_time,VersionABCD
+2022-11-28,sm-base,PolybenchC,bicg,0.01623163475509592,execution_time,VersionABCD
+2022-11-29,sm-base,PolybenchC,bicg,0.01620054115726502,execution_time,VersionABCD
+2022-11-30,sm-base,PolybenchC,bicg,0.016141070093231676,execution_time,VersionABCD
+2022-12-01,sm-base,PolybenchC,bicg,0.016105466253497742,execution_time,VersionABCD
+2022-12-02,sm-base,PolybenchC,bicg,0.016052385795506146,execution_time,VersionABCD
+2022-12-03,sm-base,PolybenchC,bicg,0.016022033854477202,execution_time,VersionABCD
+2022-12-04,sm-base,PolybenchC,bicg,0.015963302464451067,execution_time,VersionABCD
+2022-12-05,sm-base,PolybenchC,bicg,0.01590760812494584,execution_time,VersionABCD
+2022-12-06,sm-base,PolybenchC,bicg,0.015848814652395165,execution_time,VersionABCD
+2022-12-07,sm-base,PolybenchC,bicg,0.01580408835238876,execution_time,VersionABCD
+2022-12-08,sm-base,PolybenchC,bicg,0.01575428584731409,execution_time,VersionABCD
+2022-12-09,sm-base,PolybenchC,bicg,0.015694511442458807,execution_time,VersionABCD
+2022-12-10,sm-base,PolybenchC,bicg,0.015651989178363683,execution_time,VersionABCD
+2022-12-11,sm-base,PolybenchC,bicg,0.015598194762911598,execution_time,VersionABCD
+2022-12-12,sm-base,PolybenchC,bicg,0.015562581247814206,execution_time,VersionABCD
+2022-12-13,sm-base,PolybenchC,bicg,0.015507800690662541,execution_time,VersionABCD
+2022-12-14,sm-base,PolybenchC,bicg,0.015462041001910768,execution_time,VersionABCD
+2022-12-15,sm-base,PolybenchC,bicg,0.015418600290070288,execution_time,VersionABCD
+2022-12-16,sm-base,PolybenchC,bicg,0.015362810284502407,execution_time,VersionABCD
+2022-12-17,sm-base,PolybenchC,bicg,0.015305994056568063,execution_time,VersionABCD
+2022-12-18,sm-base,PolybenchC,bicg,0.015248327021804588,execution_time,VersionABCD
+2022-12-19,sm-base,PolybenchC,bicg,0.015214789238060125,execution_time,VersionABCD
+2022-12-20,sm-base,PolybenchC,bicg,0.015168878456912862,execution_time,VersionABCD
+2022-12-21,sm-base,PolybenchC,bicg,0.01513071538087544,execution_time,VersionABCD
+2022-12-22,sm-base,PolybenchC,bicg,0.01507126885160243,execution_time,VersionABCD
+2022-12-23,sm-base,PolybenchC,bicg,0.01502350005575199,execution_time,VersionABCD
+2022-12-24,sm-base,PolybenchC,bicg,0.014975716866881221,execution_time,VersionABCD
+2022-12-25,sm-base,PolybenchC,bicg,0.014919030687145533,execution_time,VersionABCD
+2022-12-26,sm-base,PolybenchC,bicg,0.014877116251616631,execution_time,VersionABCD
+2022-12-27,sm-base,PolybenchC,bicg,0.014818250200732916,execution_time,VersionABCD
+2022-12-28,sm-base,PolybenchC,bicg,0.014782647675439037,execution_time,VersionABCD
+2022-12-29,sm-base,PolybenchC,bicg,0.01474738506024048,execution_time,VersionABCD
+2022-12-30,sm-base,PolybenchC,bicg,0.014713643520613261,execution_time,VersionABCD
+2022-12-31,sm-base,PolybenchC,bicg,0.014661916677055888,execution_time,VersionABCD
+2022-01-01,wizard,PolybenchC,bicg,0.011853175817524899,execution_time,VersionABCD
+2022-01-02,wizard,PolybenchC,bicg,0.011878642235417547,execution_time,VersionABCD
+2022-01-03,wizard,PolybenchC,bicg,0.011902773808958213,execution_time,VersionABCD
+2022-01-04,wizard,PolybenchC,bicg,0.011902261315486383,execution_time,VersionABCD
+2022-01-05,wizard,PolybenchC,bicg,0.011927112295295052,execution_time,VersionABCD
+2022-01-06,wizard,PolybenchC,bicg,0.011921443492036068,execution_time,VersionABCD
+2022-01-07,wizard,PolybenchC,bicg,0.011934816581844363,execution_time,VersionABCD
+2022-01-08,wizard,PolybenchC,bicg,0.011938274758042846,execution_time,VersionABCD
+2022-01-09,wizard,PolybenchC,bicg,0.011951156293099872,execution_time,VersionABCD
+2022-01-10,wizard,PolybenchC,bicg,0.01197379746674371,execution_time,VersionABCD
+2022-01-11,wizard,PolybenchC,bicg,0.011989453833206633,execution_time,VersionABCD
+2022-01-12,wizard,PolybenchC,bicg,0.012007117132872697,execution_time,VersionABCD
+2022-01-13,wizard,PolybenchC,bicg,0.01204069026678669,execution_time,VersionABCD
+2022-01-14,wizard,PolybenchC,bicg,0.012072162591090554,execution_time,VersionABCD
+2022-01-15,wizard,PolybenchC,bicg,0.012073321135867838,execution_time,VersionABCD
+2022-01-16,wizard,PolybenchC,bicg,0.01207249202337921,execution_time,VersionABCD
+2022-01-17,wizard,PolybenchC,bicg,0.012086798619676363,execution_time,VersionABCD
+2022-01-18,wizard,PolybenchC,bicg,0.012122325353187156,execution_time,VersionABCD
+2022-01-19,wizard,PolybenchC,bicg,0.01212072150363918,execution_time,VersionABCD
+2022-01-20,wizard,PolybenchC,bicg,0.012148989297968335,execution_time,VersionABCD
+2022-01-21,wizard,PolybenchC,bicg,0.01214652353895237,execution_time,VersionABCD
+2022-01-22,wizard,PolybenchC,bicg,0.012154955031861795,execution_time,VersionABCD
+2022-01-23,wizard,PolybenchC,bicg,0.012149490381965722,execution_time,VersionABCD
+2022-01-24,wizard,PolybenchC,bicg,0.012189020099261694,execution_time,VersionABCD
+2022-01-25,wizard,PolybenchC,bicg,0.012225025319049725,execution_time,VersionABCD
+2022-01-26,wizard,PolybenchC,bicg,0.012219768246378403,execution_time,VersionABCD
+2022-01-27,wizard,PolybenchC,bicg,0.012254891642630501,execution_time,VersionABCD
+2022-01-28,wizard,PolybenchC,bicg,0.01224982999788867,execution_time,VersionABCD
+2022-01-29,wizard,PolybenchC,bicg,0.012266531728873032,execution_time,VersionABCD
+2022-01-30,wizard,PolybenchC,bicg,0.0122824087128272,execution_time,VersionABCD
+2022-01-31,wizard,PolybenchC,bicg,0.012318940662504035,execution_time,VersionABCD
+2022-02-01,wizard,PolybenchC,bicg,0.012324556978469589,execution_time,VersionABCD
+2022-02-02,wizard,PolybenchC,bicg,0.012361399616230274,execution_time,VersionABCD
+2022-02-03,wizard,PolybenchC,bicg,0.012360230339989202,execution_time,VersionABCD
+2022-02-04,wizard,PolybenchC,bicg,0.012385310137617947,execution_time,VersionABCD
+2022-02-05,wizard,PolybenchC,bicg,0.012380603062424866,execution_time,VersionABCD
+2022-02-06,wizard,PolybenchC,bicg,0.012385473764706742,execution_time,VersionABCD
+2022-02-07,wizard,PolybenchC,bicg,0.012410963301733672,execution_time,VersionABCD
+2022-02-08,wizard,PolybenchC,bicg,0.012443691901660496,execution_time,VersionABCD
+2022-02-09,wizard,PolybenchC,bicg,0.012450270638605435,execution_time,VersionABCD
+2022-02-10,wizard,PolybenchC,bicg,0.01246201163161526,execution_time,VersionABCD
+2022-02-11,wizard,PolybenchC,bicg,0.012455877274190055,execution_time,VersionABCD
+2022-02-12,wizard,PolybenchC,bicg,0.012473974892637187,execution_time,VersionABCD
+2022-02-13,wizard,PolybenchC,bicg,0.012498794042145739,execution_time,VersionABCD
+2022-02-14,wizard,PolybenchC,bicg,0.012507923432430266,execution_time,VersionABCD
+2022-02-15,wizard,PolybenchC,bicg,0.012514005241414619,execution_time,VersionABCD
+2022-02-16,wizard,PolybenchC,bicg,0.01251224934555558,execution_time,VersionABCD
+2022-02-17,wizard,PolybenchC,bicg,0.012509139164330402,execution_time,VersionABCD
+2022-02-18,wizard,PolybenchC,bicg,0.012502680452610345,execution_time,VersionABCD
+2022-02-19,wizard,PolybenchC,bicg,0.01250908887759091,execution_time,VersionABCD
+2022-02-20,wizard,PolybenchC,bicg,0.012515605345315711,execution_time,VersionABCD
+2022-02-21,wizard,PolybenchC,bicg,0.012527967498190046,execution_time,VersionABCD
+2022-02-22,wizard,PolybenchC,bicg,0.012555059131675176,execution_time,VersionABCD
+2022-02-23,wizard,PolybenchC,bicg,0.012547614539834932,execution_time,VersionABCD
+2022-02-24,wizard,PolybenchC,bicg,0.01257453862963224,execution_time,VersionABCD
+2022-02-25,wizard,PolybenchC,bicg,0.012582341962067195,execution_time,VersionABCD
+2022-02-26,wizard,PolybenchC,bicg,0.012589856302419067,execution_time,VersionABCD
+2022-02-27,wizard,PolybenchC,bicg,0.012623118482338812,execution_time,VersionABCD
+2022-02-28,wizard,PolybenchC,bicg,0.012649070946075881,execution_time,VersionABCD
+2022-03-01,wizard,PolybenchC,bicg,0.012663624816863912,execution_time,VersionABCD
+2022-03-02,wizard,PolybenchC,bicg,0.012673628109473674,execution_time,VersionABCD
+2022-03-03,wizard,PolybenchC,bicg,0.01267937350804381,execution_time,VersionABCD
+2022-03-04,wizard,PolybenchC,bicg,0.012669922195533432,execution_time,VersionABCD
+2022-03-05,wizard,PolybenchC,bicg,0.012679425225714932,execution_time,VersionABCD
+2022-03-06,wizard,PolybenchC,bicg,0.012687184004310403,execution_time,VersionABCD
+2022-03-07,wizard,PolybenchC,bicg,0.012719203153005261,execution_time,VersionABCD
+2022-03-08,wizard,PolybenchC,bicg,0.012757430081754007,execution_time,VersionABCD
+2022-03-09,wizard,PolybenchC,bicg,0.012767667723348633,execution_time,VersionABCD
+2022-03-10,wizard,PolybenchC,bicg,0.012792850451790265,execution_time,VersionABCD
+2022-03-11,wizard,PolybenchC,bicg,0.012813490004388525,execution_time,VersionABCD
+2022-03-12,wizard,PolybenchC,bicg,0.012822625635159941,execution_time,VersionABCD
+2022-03-13,wizard,PolybenchC,bicg,0.012844538155646812,execution_time,VersionABCD
+2022-03-14,wizard,PolybenchC,bicg,0.012847902222591882,execution_time,VersionABCD
+2022-03-15,wizard,PolybenchC,bicg,0.012858758815416066,execution_time,VersionABCD
+2022-03-16,wizard,PolybenchC,bicg,0.01287307461901757,execution_time,VersionABCD
+2022-03-17,wizard,PolybenchC,bicg,0.012894782896286032,execution_time,VersionABCD
+2022-03-18,wizard,PolybenchC,bicg,0.01291503855200622,execution_time,VersionABCD
+2022-03-19,wizard,PolybenchC,bicg,0.012927926762556923,execution_time,VersionABCD
+2022-03-20,wizard,PolybenchC,bicg,0.012953123041662568,execution_time,VersionABCD
+2022-03-21,wizard,PolybenchC,bicg,0.012943730196535634,execution_time,VersionABCD
+2022-03-22,wizard,PolybenchC,bicg,0.01296326614041019,execution_time,VersionABCD
+2022-03-23,wizard,PolybenchC,bicg,0.01297333172694563,execution_time,VersionABCD
+2022-03-24,wizard,PolybenchC,bicg,0.012970276196152628,execution_time,VersionABCD
+2022-03-25,wizard,PolybenchC,bicg,0.01300399674027311,execution_time,VersionABCD
+2022-03-26,wizard,PolybenchC,bicg,0.013011214217555578,execution_time,VersionABCD
+2022-03-27,wizard,PolybenchC,bicg,0.013047338094717838,execution_time,VersionABCD
+2022-03-28,wizard,PolybenchC,bicg,0.013051303752178658,execution_time,VersionABCD
+2022-03-29,wizard,PolybenchC,bicg,0.013079568702442892,execution_time,VersionABCD
+2022-03-30,wizard,PolybenchC,bicg,0.013087286378907164,execution_time,VersionABCD
+2022-03-31,wizard,PolybenchC,bicg,0.013093640146027543,execution_time,VersionABCD
+2022-04-01,wizard,PolybenchC,bicg,0.013110504780278295,execution_time,VersionABCD
+2022-04-02,wizard,PolybenchC,bicg,0.013106187571916622,execution_time,VersionABCD
+2022-04-03,wizard,PolybenchC,bicg,0.013121561458598514,execution_time,VersionABCD
+2022-04-04,wizard,PolybenchC,bicg,0.013139342731769465,execution_time,VersionABCD
+2022-04-05,wizard,PolybenchC,bicg,0.013153616592521443,execution_time,VersionABCD
+2022-04-06,wizard,PolybenchC,bicg,0.013162482498614481,execution_time,VersionABCD
+2022-04-07,wizard,PolybenchC,bicg,0.01318524514732296,execution_time,VersionABCD
+2022-04-08,wizard,PolybenchC,bicg,0.0131958841265572,execution_time,VersionABCD
+2022-04-09,wizard,PolybenchC,bicg,0.013217164556708946,execution_time,VersionABCD
+2022-04-10,wizard,PolybenchC,bicg,0.013235463563072505,execution_time,VersionABCD
+2022-04-11,wizard,PolybenchC,bicg,0.013209884812711115,execution_time,VersionABCD
+2022-04-12,wizard,PolybenchC,bicg,0.013170400729107674,execution_time,VersionABCD
+2022-04-13,wizard,PolybenchC,bicg,0.013135329820708117,execution_time,VersionABCD
+2022-04-14,wizard,PolybenchC,bicg,0.013100523477152745,execution_time,VersionABCD
+2022-04-15,wizard,PolybenchC,bicg,0.013069955067680489,execution_time,VersionABCD
+2022-04-16,wizard,PolybenchC,bicg,0.013038135802396548,execution_time,VersionABCD
+2022-04-17,wizard,PolybenchC,bicg,0.013015320910424847,execution_time,VersionABCD
+2022-04-18,wizard,PolybenchC,bicg,0.012982608802591398,execution_time,VersionABCD
+2022-04-19,wizard,PolybenchC,bicg,0.012965371088580091,execution_time,VersionABCD
+2022-04-20,wizard,PolybenchC,bicg,0.012931167034392869,execution_time,VersionABCD
+2022-04-21,wizard,PolybenchC,bicg,0.012907215619530635,execution_time,VersionABCD
+2022-04-22,wizard,PolybenchC,bicg,0.012878357234449602,execution_time,VersionABCD
+2022-04-23,wizard,PolybenchC,bicg,0.012845977282543546,execution_time,VersionABCD
+2022-04-24,wizard,PolybenchC,bicg,0.012835574022927254,execution_time,VersionABCD
+2022-04-25,wizard,PolybenchC,bicg,0.012813457294612302,execution_time,VersionABCD
+2022-04-26,wizard,PolybenchC,bicg,0.012785448476720175,execution_time,VersionABCD
+2022-04-27,wizard,PolybenchC,bicg,0.012749535539579719,execution_time,VersionABCD
+2022-04-28,wizard,PolybenchC,bicg,0.012710478226871151,execution_time,VersionABCD
+2022-04-29,wizard,PolybenchC,bicg,0.012696031611587225,execution_time,VersionABCD
+2022-04-30,wizard,PolybenchC,bicg,0.012659786446785766,execution_time,VersionABCD
+2022-05-01,wizard,PolybenchC,bicg,0.012629077368621323,execution_time,VersionABCD
+2022-05-02,wizard,PolybenchC,bicg,0.012612612318117174,execution_time,VersionABCD
+2022-05-03,wizard,PolybenchC,bicg,0.012598988742086465,execution_time,VersionABCD
+2022-05-04,wizard,PolybenchC,bicg,0.01255965920106324,execution_time,VersionABCD
+2022-05-05,wizard,PolybenchC,bicg,0.012527183549760101,execution_time,VersionABCD
+2022-05-06,wizard,PolybenchC,bicg,0.012489759242372955,execution_time,VersionABCD
+2022-05-07,wizard,PolybenchC,bicg,0.012454611172197627,execution_time,VersionABCD
+2022-05-08,wizard,PolybenchC,bicg,0.012434086514949493,execution_time,VersionABCD
+2022-05-09,wizard,PolybenchC,bicg,0.012398483625730183,execution_time,VersionABCD
+2022-05-10,wizard,PolybenchC,bicg,0.012370208887038705,execution_time,VersionABCD
+2022-05-11,wizard,PolybenchC,bicg,0.012359626915260293,execution_time,VersionABCD
+2022-05-12,wizard,PolybenchC,bicg,0.012343141849539961,execution_time,VersionABCD
+2022-05-13,wizard,PolybenchC,bicg,0.012314217403247112,execution_time,VersionABCD
+2022-05-14,wizard,PolybenchC,bicg,0.012296755460526325,execution_time,VersionABCD
+2022-05-15,wizard,PolybenchC,bicg,0.01227003793245344,execution_time,VersionABCD
+2022-05-16,wizard,PolybenchC,bicg,0.012241971867515111,execution_time,VersionABCD
+2022-05-17,wizard,PolybenchC,bicg,0.012219461091956494,execution_time,VersionABCD
+2022-05-18,wizard,PolybenchC,bicg,0.01219231637034673,execution_time,VersionABCD
+2022-05-19,wizard,PolybenchC,bicg,0.012155447882271306,execution_time,VersionABCD
+2022-05-20,wizard,PolybenchC,bicg,0.012145080693934999,execution_time,VersionABCD
+2022-05-21,wizard,PolybenchC,bicg,0.012115618824412942,execution_time,VersionABCD
+2022-05-22,wizard,PolybenchC,bicg,0.012093179487321548,execution_time,VersionABCD
+2022-05-23,wizard,PolybenchC,bicg,0.012067231656854097,execution_time,VersionABCD
+2022-05-24,wizard,PolybenchC,bicg,0.012042438138167206,execution_time,VersionABCD
+2022-05-25,wizard,PolybenchC,bicg,0.012021020353867033,execution_time,VersionABCD
+2022-05-26,wizard,PolybenchC,bicg,0.012003302451208137,execution_time,VersionABCD
+2022-05-27,wizard,PolybenchC,bicg,0.011992542122878822,execution_time,VersionABCD
+2022-05-28,wizard,PolybenchC,bicg,0.011960074264673607,execution_time,VersionABCD
+2022-05-29,wizard,PolybenchC,bicg,0.011932006126843,execution_time,VersionABCD
+2022-05-30,wizard,PolybenchC,bicg,0.011912911410041563,execution_time,VersionABCD
+2022-05-31,wizard,PolybenchC,bicg,0.011879353985533338,execution_time,VersionABCD
+2022-06-01,wizard,PolybenchC,bicg,0.011841024133755878,execution_time,VersionABCD
+2022-06-02,wizard,PolybenchC,bicg,0.01182658419766786,execution_time,VersionABCD
+2022-06-03,wizard,PolybenchC,bicg,0.011789799407929819,execution_time,VersionABCD
+2022-06-04,wizard,PolybenchC,bicg,0.011757742807825827,execution_time,VersionABCD
+2022-06-05,wizard,PolybenchC,bicg,0.01172547661446966,execution_time,VersionABCD
+2022-06-06,wizard,PolybenchC,bicg,0.011711640558115945,execution_time,VersionABCD
+2022-06-07,wizard,PolybenchC,bicg,0.011681596373120487,execution_time,VersionABCD
+2022-06-08,wizard,PolybenchC,bicg,0.011662139234914208,execution_time,VersionABCD
+2022-06-09,wizard,PolybenchC,bicg,0.011637413818180219,execution_time,VersionABCD
+2022-06-10,wizard,PolybenchC,bicg,0.011606495089357275,execution_time,VersionABCD
+2022-06-11,wizard,PolybenchC,bicg,0.011595275180267773,execution_time,VersionABCD
+2022-06-12,wizard,PolybenchC,bicg,0.011582532036350545,execution_time,VersionABCD
+2022-06-13,wizard,PolybenchC,bicg,0.011554378005942969,execution_time,VersionABCD
+2022-06-14,wizard,PolybenchC,bicg,0.011543084557112416,execution_time,VersionABCD
+2022-06-15,wizard,PolybenchC,bicg,0.011518140277525934,execution_time,VersionABCD
+2022-06-16,wizard,PolybenchC,bicg,0.011506999948106835,execution_time,VersionABCD
+2022-06-17,wizard,PolybenchC,bicg,0.011469239483073395,execution_time,VersionABCD
+2022-06-18,wizard,PolybenchC,bicg,0.01142965695301493,execution_time,VersionABCD
+2022-06-19,wizard,PolybenchC,bicg,0.011394584400154659,execution_time,VersionABCD
+2022-06-20,wizard,PolybenchC,bicg,0.011359606284451809,execution_time,VersionABCD
+2022-06-21,wizard,PolybenchC,bicg,0.011335792548605448,execution_time,VersionABCD
+2022-06-22,wizard,PolybenchC,bicg,0.011316731369059972,execution_time,VersionABCD
+2022-06-23,wizard,PolybenchC,bicg,0.011285733860230723,execution_time,VersionABCD
+2022-06-24,wizard,PolybenchC,bicg,0.011272889279066238,execution_time,VersionABCD
+2022-06-25,wizard,PolybenchC,bicg,0.011234427018143783,execution_time,VersionABCD
+2022-06-26,wizard,PolybenchC,bicg,0.011223838966499032,execution_time,VersionABCD
+2022-06-27,wizard,PolybenchC,bicg,0.011206353595933036,execution_time,VersionABCD
+2022-06-28,wizard,PolybenchC,bicg,0.011169484903861453,execution_time,VersionABCD
+2022-06-29,wizard,PolybenchC,bicg,0.011151866543117471,execution_time,VersionABCD
+2022-06-30,wizard,PolybenchC,bicg,0.011141841366927365,execution_time,VersionABCD
+2022-07-01,wizard,PolybenchC,bicg,0.011122057245111967,execution_time,VersionABCD
+2022-07-02,wizard,PolybenchC,bicg,0.011083695467371415,execution_time,VersionABCD
+2022-07-03,wizard,PolybenchC,bicg,0.01104494332154304,execution_time,VersionABCD
+2022-07-04,wizard,PolybenchC,bicg,0.011011167468940727,execution_time,VersionABCD
+2022-07-05,wizard,PolybenchC,bicg,0.010979281522073246,execution_time,VersionABCD
+2022-07-06,wizard,PolybenchC,bicg,0.01096400850955559,execution_time,VersionABCD
+2022-07-07,wizard,PolybenchC,bicg,0.010926908868287585,execution_time,VersionABCD
+2022-07-08,wizard,PolybenchC,bicg,0.010897184269719619,execution_time,VersionABCD
+2022-07-09,wizard,PolybenchC,bicg,0.01086212240017063,execution_time,VersionABCD
+2022-07-10,wizard,PolybenchC,bicg,0.01082929706060163,execution_time,VersionABCD
+2022-07-11,wizard,PolybenchC,bicg,0.010805210784874182,execution_time,VersionABCD
+2022-07-12,wizard,PolybenchC,bicg,0.010792211297359513,execution_time,VersionABCD
+2022-07-13,wizard,PolybenchC,bicg,0.010774219088700392,execution_time,VersionABCD
+2022-07-14,wizard,PolybenchC,bicg,0.010752570940323,execution_time,VersionABCD
+2022-07-15,wizard,PolybenchC,bicg,0.010733870369798358,execution_time,VersionABCD
+2022-07-16,wizard,PolybenchC,bicg,0.010697247257176128,execution_time,VersionABCD
+2022-07-17,wizard,PolybenchC,bicg,0.010681896197051816,execution_time,VersionABCD
+2022-07-18,wizard,PolybenchC,bicg,0.010645018646225132,execution_time,VersionABCD
+2022-07-19,wizard,PolybenchC,bicg,0.010625753019350646,execution_time,VersionABCD
+2022-07-20,wizard,PolybenchC,bicg,0.010595266113133831,execution_time,VersionABCD
+2022-07-21,wizard,PolybenchC,bicg,0.010581791527652413,execution_time,VersionABCD
+2022-07-22,wizard,PolybenchC,bicg,0.010560880309640381,execution_time,VersionABCD
+2022-07-23,wizard,PolybenchC,bicg,0.010545287648180392,execution_time,VersionABCD
+2022-07-24,wizard,PolybenchC,bicg,0.01053200380491776,execution_time,VersionABCD
+2022-07-25,wizard,PolybenchC,bicg,0.010508265830133388,execution_time,VersionABCD
+2022-07-26,wizard,PolybenchC,bicg,0.010479860702359985,execution_time,VersionABCD
+2022-07-27,wizard,PolybenchC,bicg,0.01045960333895687,execution_time,VersionABCD
+2022-07-28,wizard,PolybenchC,bicg,0.010443814643803355,execution_time,VersionABCD
+2022-07-29,wizard,PolybenchC,bicg,0.010432330709184548,execution_time,VersionABCD
+2022-07-30,wizard,PolybenchC,bicg,0.01041403692642199,execution_time,VersionABCD
+2022-07-31,wizard,PolybenchC,bicg,0.010391853003891217,execution_time,VersionABCD
+2022-08-01,wizard,PolybenchC,bicg,0.010364276495252761,execution_time,VersionABCD
+2022-08-02,wizard,PolybenchC,bicg,0.010348049438994509,execution_time,VersionABCD
+2022-08-03,wizard,PolybenchC,bicg,0.010329225644288603,execution_time,VersionABCD
+2022-08-04,wizard,PolybenchC,bicg,0.010305588671941044,execution_time,VersionABCD
+2022-08-05,wizard,PolybenchC,bicg,0.010291862556304331,execution_time,VersionABCD
+2022-08-06,wizard,PolybenchC,bicg,0.010254185271989324,execution_time,VersionABCD
+2022-08-07,wizard,PolybenchC,bicg,0.010220892943179615,execution_time,VersionABCD
+2022-08-08,wizard,PolybenchC,bicg,0.010190096189953852,execution_time,VersionABCD
+2022-08-09,wizard,PolybenchC,bicg,0.010156906647383852,execution_time,VersionABCD
+2022-08-10,wizard,PolybenchC,bicg,0.010143748308217264,execution_time,VersionABCD
+2022-08-11,wizard,PolybenchC,bicg,0.01011398028370773,execution_time,VersionABCD
+2022-08-12,wizard,PolybenchC,bicg,0.010089680014827197,execution_time,VersionABCD
+2022-08-13,wizard,PolybenchC,bicg,0.010068788305033688,execution_time,VersionABCD
+2022-08-14,wizard,PolybenchC,bicg,0.010031313384251403,execution_time,VersionABCD
+2022-08-15,wizard,PolybenchC,bicg,0.01002117848721072,execution_time,VersionABCD
+2022-08-16,wizard,PolybenchC,bicg,0.010006955320020364,execution_time,VersionABCD
+2022-08-17,wizard,PolybenchC,bicg,0.009975316517930937,execution_time,VersionABCD
+2022-08-18,wizard,PolybenchC,bicg,0.009939367983896618,execution_time,VersionABCD
+2022-08-19,wizard,PolybenchC,bicg,0.009912403793852257,execution_time,VersionABCD
+2022-08-20,wizard,PolybenchC,bicg,0.009876768121889779,execution_time,VersionABCD
+2022-08-21,wizard,PolybenchC,bicg,0.009851231916084262,execution_time,VersionABCD
+2022-08-22,wizard,PolybenchC,bicg,0.009830100877654666,execution_time,VersionABCD
+2022-08-23,wizard,PolybenchC,bicg,0.00981522089175294,execution_time,VersionABCD
+2022-08-24,wizard,PolybenchC,bicg,0.009777786035953546,execution_time,VersionABCD
+2022-08-25,wizard,PolybenchC,bicg,0.009757796425791042,execution_time,VersionABCD
+2022-08-26,wizard,PolybenchC,bicg,0.009724574271298489,execution_time,VersionABCD
+2022-08-27,wizard,PolybenchC,bicg,0.0097080458377895,execution_time,VersionABCD
+2022-08-28,wizard,PolybenchC,bicg,0.009694347341007723,execution_time,VersionABCD
+2022-08-29,wizard,PolybenchC,bicg,0.009669468871682118,execution_time,VersionABCD
+2022-08-30,wizard,PolybenchC,bicg,0.009651302879705621,execution_time,VersionABCD
+2022-08-31,wizard,PolybenchC,bicg,0.00963399565911105,execution_time,VersionABCD
+2022-09-01,wizard,PolybenchC,bicg,0.009594385655692286,execution_time,VersionABCD
+2022-09-02,wizard,PolybenchC,bicg,0.00958002124113982,execution_time,VersionABCD
+2022-09-03,wizard,PolybenchC,bicg,0.00955692763167119,execution_time,VersionABCD
+2022-09-04,wizard,PolybenchC,bicg,0.009522256974214851,execution_time,VersionABCD
+2022-09-05,wizard,PolybenchC,bicg,0.009499857171651431,execution_time,VersionABCD
+2022-09-06,wizard,PolybenchC,bicg,0.009464822984917312,execution_time,VersionABCD
+2022-09-07,wizard,PolybenchC,bicg,0.009432797462579048,execution_time,VersionABCD
+2022-09-08,wizard,PolybenchC,bicg,0.009413966798852163,execution_time,VersionABCD
+2022-09-09,wizard,PolybenchC,bicg,0.009390076268253672,execution_time,VersionABCD
+2022-09-10,wizard,PolybenchC,bicg,0.009364046790135758,execution_time,VersionABCD
+2022-09-11,wizard,PolybenchC,bicg,0.009329030091852366,execution_time,VersionABCD
+2022-09-12,wizard,PolybenchC,bicg,0.009299291831802892,execution_time,VersionABCD
+2022-09-13,wizard,PolybenchC,bicg,0.009267894389836093,execution_time,VersionABCD
+2022-09-14,wizard,PolybenchC,bicg,0.00924676807860588,execution_time,VersionABCD
+2022-09-15,wizard,PolybenchC,bicg,0.009225325841439992,execution_time,VersionABCD
+2022-09-16,wizard,PolybenchC,bicg,0.00919594000400792,execution_time,VersionABCD
+2022-09-17,wizard,PolybenchC,bicg,0.009160596925365288,execution_time,VersionABCD
+2022-09-18,wizard,PolybenchC,bicg,0.009132391235465725,execution_time,VersionABCD
+2022-09-19,wizard,PolybenchC,bicg,0.009114415911074527,execution_time,VersionABCD
+2022-09-20,wizard,PolybenchC,bicg,0.009090892927880807,execution_time,VersionABCD
+2022-09-21,wizard,PolybenchC,bicg,0.009065305060479444,execution_time,VersionABCD
+2022-09-22,wizard,PolybenchC,bicg,0.009040022264818077,execution_time,VersionABCD
+2022-09-23,wizard,PolybenchC,bicg,0.009011930762877509,execution_time,VersionABCD
+2022-09-24,wizard,PolybenchC,bicg,0.008985381363130165,execution_time,VersionABCD
+2022-09-25,wizard,PolybenchC,bicg,0.008951352184672044,execution_time,VersionABCD
+2022-09-26,wizard,PolybenchC,bicg,0.008932630143113681,execution_time,VersionABCD
+2022-09-27,wizard,PolybenchC,bicg,0.008909597993992742,execution_time,VersionABCD
+2022-09-28,wizard,PolybenchC,bicg,0.008885343040376298,execution_time,VersionABCD
+2022-09-29,wizard,PolybenchC,bicg,0.008855736736661702,execution_time,VersionABCD
+2022-09-30,wizard,PolybenchC,bicg,0.008817998955835597,execution_time,VersionABCD
+2022-10-01,wizard,PolybenchC,bicg,0.008801546428111167,execution_time,VersionABCD
+2022-10-02,wizard,PolybenchC,bicg,0.008785486020843194,execution_time,VersionABCD
+2022-10-03,wizard,PolybenchC,bicg,0.008771100774999185,execution_time,VersionABCD
+2022-10-04,wizard,PolybenchC,bicg,0.008753024320082188,execution_time,VersionABCD
+2022-10-05,wizard,PolybenchC,bicg,0.008733351478535059,execution_time,VersionABCD
+2022-10-06,wizard,PolybenchC,bicg,0.008697919508698011,execution_time,VersionABCD
+2022-10-07,wizard,PolybenchC,bicg,0.008658689242581437,execution_time,VersionABCD
+2022-10-08,wizard,PolybenchC,bicg,0.00862700093081744,execution_time,VersionABCD
+2022-10-09,wizard,PolybenchC,bicg,0.008596540510235968,execution_time,VersionABCD
+2022-10-10,wizard,PolybenchC,bicg,0.008578532746519466,execution_time,VersionABCD
+2022-10-11,wizard,PolybenchC,bicg,0.008556134238591483,execution_time,VersionABCD
+2022-10-12,wizard,PolybenchC,bicg,0.008533319332821322,execution_time,VersionABCD
+2022-10-13,wizard,PolybenchC,bicg,0.00849346473349718,execution_time,VersionABCD
+2022-10-14,wizard,PolybenchC,bicg,0.008478377592600662,execution_time,VersionABCD
+2022-10-15,wizard,PolybenchC,bicg,0.008447758349880997,execution_time,VersionABCD
+2022-10-16,wizard,PolybenchC,bicg,0.008421998984568748,execution_time,VersionABCD
+2022-10-17,wizard,PolybenchC,bicg,0.008383540336098868,execution_time,VersionABCD
+2022-10-18,wizard,PolybenchC,bicg,0.008354166162418656,execution_time,VersionABCD
+2022-10-19,wizard,PolybenchC,bicg,0.008320816940745062,execution_time,VersionABCD
+2022-10-20,wizard,PolybenchC,bicg,0.00828084102001847,execution_time,VersionABCD
+2022-10-21,wizard,PolybenchC,bicg,0.00825429961063803,execution_time,VersionABCD
+2022-10-22,wizard,PolybenchC,bicg,0.008235240788684156,execution_time,VersionABCD
+2022-10-23,wizard,PolybenchC,bicg,0.008198266729254815,execution_time,VersionABCD
+2022-10-24,wizard,PolybenchC,bicg,0.008176515542854701,execution_time,VersionABCD
+2022-10-25,wizard,PolybenchC,bicg,0.008139360089652608,execution_time,VersionABCD
+2022-10-26,wizard,PolybenchC,bicg,0.008107347902174638,execution_time,VersionABCD
+2022-10-27,wizard,PolybenchC,bicg,0.008082077165194405,execution_time,VersionABCD
+2022-10-28,wizard,PolybenchC,bicg,0.008070161809730173,execution_time,VersionABCD
+2022-10-29,wizard,PolybenchC,bicg,0.008030712445475723,execution_time,VersionABCD
+2022-10-30,wizard,PolybenchC,bicg,0.00801525456217487,execution_time,VersionABCD
+2022-10-31,wizard,PolybenchC,bicg,0.007995769080501511,execution_time,VersionABCD
+2022-11-01,wizard,PolybenchC,bicg,0.007974851987831318,execution_time,VersionABCD
+2022-11-02,wizard,PolybenchC,bicg,0.007939070341296053,execution_time,VersionABCD
+2022-11-03,wizard,PolybenchC,bicg,0.00791467824573112,execution_time,VersionABCD
+2022-11-04,wizard,PolybenchC,bicg,0.007880819521855051,execution_time,VersionABCD
+2022-11-05,wizard,PolybenchC,bicg,0.007849366484536052,execution_time,VersionABCD
+2022-11-06,wizard,PolybenchC,bicg,0.007819011671673879,execution_time,VersionABCD
+2022-11-07,wizard,PolybenchC,bicg,0.0078066848224102965,execution_time,VersionABCD
+2022-11-08,wizard,PolybenchC,bicg,0.00777025349100167,execution_time,VersionABCD
+2022-11-09,wizard,PolybenchC,bicg,0.007754799655761121,execution_time,VersionABCD
+2022-11-10,wizard,PolybenchC,bicg,0.007740199985027872,execution_time,VersionABCD
+2022-11-11,wizard,PolybenchC,bicg,0.0077024194527460345,execution_time,VersionABCD
+2022-11-12,wizard,PolybenchC,bicg,0.0076663725431005214,execution_time,VersionABCD
+2022-11-13,wizard,PolybenchC,bicg,0.007633828618792614,execution_time,VersionABCD
+2022-11-14,wizard,PolybenchC,bicg,0.007615127911682417,execution_time,VersionABCD
+2022-11-15,wizard,PolybenchC,bicg,0.007585765240198897,execution_time,VersionABCD
+2022-11-16,wizard,PolybenchC,bicg,0.007571253940932773,execution_time,VersionABCD
+2022-11-17,wizard,PolybenchC,bicg,0.00755757961104513,execution_time,VersionABCD
+2022-11-18,wizard,PolybenchC,bicg,0.007536589337920747,execution_time,VersionABCD
+2022-11-19,wizard,PolybenchC,bicg,0.007525570567295144,execution_time,VersionABCD
+2022-11-20,wizard,PolybenchC,bicg,0.007504598126668688,execution_time,VersionABCD
+2022-11-21,wizard,PolybenchC,bicg,0.00748508570052119,execution_time,VersionABCD
+2022-11-22,wizard,PolybenchC,bicg,0.007464656050910222,execution_time,VersionABCD
+2022-11-23,wizard,PolybenchC,bicg,0.0074382063619165125,execution_time,VersionABCD
+2022-11-24,wizard,PolybenchC,bicg,0.007403155959105215,execution_time,VersionABCD
+2022-11-25,wizard,PolybenchC,bicg,0.007385193617413062,execution_time,VersionABCD
+2022-11-26,wizard,PolybenchC,bicg,0.007358488633847867,execution_time,VersionABCD
+2022-11-27,wizard,PolybenchC,bicg,0.007345066928401501,execution_time,VersionABCD
+2022-11-28,wizard,PolybenchC,bicg,0.007310881251020523,execution_time,VersionABCD
+2022-11-29,wizard,PolybenchC,bicg,0.007300652882240319,execution_time,VersionABCD
+2022-11-30,wizard,PolybenchC,bicg,0.0072648514706513305,execution_time,VersionABCD
+2022-12-01,wizard,PolybenchC,bicg,0.0072277420231776765,execution_time,VersionABCD
+2022-12-02,wizard,PolybenchC,bicg,0.007190711245677039,execution_time,VersionABCD
+2022-12-03,wizard,PolybenchC,bicg,0.00716662102093528,execution_time,VersionABCD
+2022-12-04,wizard,PolybenchC,bicg,0.007143622966699761,execution_time,VersionABCD
+2022-12-05,wizard,PolybenchC,bicg,0.007122810942555888,execution_time,VersionABCD
+2022-12-06,wizard,PolybenchC,bicg,0.007111573280250145,execution_time,VersionABCD
+2022-12-07,wizard,PolybenchC,bicg,0.007077727948665954,execution_time,VersionABCD
+2022-12-08,wizard,PolybenchC,bicg,0.007055529273253623,execution_time,VersionABCD
+2022-12-09,wizard,PolybenchC,bicg,0.007026751904365805,execution_time,VersionABCD
+2022-12-10,wizard,PolybenchC,bicg,0.006990830869283105,execution_time,VersionABCD
+2022-12-11,wizard,PolybenchC,bicg,0.006972774997667163,execution_time,VersionABCD
+2022-12-12,wizard,PolybenchC,bicg,0.006949303705484901,execution_time,VersionABCD
+2022-12-13,wizard,PolybenchC,bicg,0.006912830972983935,execution_time,VersionABCD
+2022-12-14,wizard,PolybenchC,bicg,0.006902480922008857,execution_time,VersionABCD
+2022-12-15,wizard,PolybenchC,bicg,0.006870872016291622,execution_time,VersionABCD
+2022-12-16,wizard,PolybenchC,bicg,0.0068341702830924025,execution_time,VersionABCD
+2022-12-17,wizard,PolybenchC,bicg,0.006798658283124176,execution_time,VersionABCD
+2022-12-18,wizard,PolybenchC,bicg,0.006783331236129367,execution_time,VersionABCD
+2022-12-19,wizard,PolybenchC,bicg,0.0067522511618724095,execution_time,VersionABCD
+2022-12-20,wizard,PolybenchC,bicg,0.006715505360265274,execution_time,VersionABCD
+2022-12-21,wizard,PolybenchC,bicg,0.006704887656162478,execution_time,VersionABCD
+2022-12-22,wizard,PolybenchC,bicg,0.006673937131027515,execution_time,VersionABCD
+2022-12-23,wizard,PolybenchC,bicg,0.006656834035950355,execution_time,VersionABCD
+2022-12-24,wizard,PolybenchC,bicg,0.006621032168287493,execution_time,VersionABCD
+2022-12-25,wizard,PolybenchC,bicg,0.006610578143611802,execution_time,VersionABCD
+2022-12-26,wizard,PolybenchC,bicg,0.006595740554098972,execution_time,VersionABCD
+2022-12-27,wizard,PolybenchC,bicg,0.006568608032853163,execution_time,VersionABCD
+2022-12-28,wizard,PolybenchC,bicg,0.006534930620518584,execution_time,VersionABCD
+2022-12-29,wizard,PolybenchC,bicg,0.00651886050744684,execution_time,VersionABCD
+2022-12-30,wizard,PolybenchC,bicg,0.0064827322038606885,execution_time,VersionABCD
+2022-12-31,wizard,PolybenchC,bicg,0.006448567329196106,execution_time,VersionABCD
+2022-01-01,wizard,PolybenchC,mvt,0.013318215152294774,execution_time,VersionABCD
+2022-01-02,wizard,PolybenchC,mvt,0.013320264148967559,execution_time,VersionABCD
+2022-01-03,wizard,PolybenchC,mvt,0.013322392355152349,execution_time,VersionABCD
+2022-01-04,wizard,PolybenchC,mvt,0.013356662596318299,execution_time,VersionABCD
+2022-01-05,wizard,PolybenchC,mvt,0.013350910140736177,execution_time,VersionABCD
+2022-01-06,wizard,PolybenchC,mvt,0.013352182978275538,execution_time,VersionABCD
+2022-01-07,wizard,PolybenchC,mvt,0.013376189432313754,execution_time,VersionABCD
+2022-01-08,wizard,PolybenchC,mvt,0.013374524809406355,execution_time,VersionABCD
+2022-01-09,wizard,PolybenchC,mvt,0.013403460752729865,execution_time,VersionABCD
+2022-01-10,wizard,PolybenchC,mvt,0.013406161137161948,execution_time,VersionABCD
+2022-01-11,wizard,PolybenchC,mvt,0.013418776570132816,execution_time,VersionABCD
+2022-01-12,wizard,PolybenchC,mvt,0.013436356994739293,execution_time,VersionABCD
+2022-01-13,wizard,PolybenchC,mvt,0.013432766777597391,execution_time,VersionABCD
+2022-01-14,wizard,PolybenchC,mvt,0.013466062925527033,execution_time,VersionABCD
+2022-01-15,wizard,PolybenchC,mvt,0.013482507401623118,execution_time,VersionABCD
+2022-01-16,wizard,PolybenchC,mvt,0.01350493954132626,execution_time,VersionABCD
+2022-01-17,wizard,PolybenchC,mvt,0.013499663296736263,execution_time,VersionABCD
+2022-01-18,wizard,PolybenchC,mvt,0.013537544008844228,execution_time,VersionABCD
+2022-01-19,wizard,PolybenchC,mvt,0.013539626387068866,execution_time,VersionABCD
+2022-01-20,wizard,PolybenchC,mvt,0.01357839002985628,execution_time,VersionABCD
+2022-01-21,wizard,PolybenchC,mvt,0.013575518206930532,execution_time,VersionABCD
+2022-01-22,wizard,PolybenchC,mvt,0.01360976787969869,execution_time,VersionABCD
+2022-01-23,wizard,PolybenchC,mvt,0.013618750427004033,execution_time,VersionABCD
+2022-01-24,wizard,PolybenchC,mvt,0.013616439707628266,execution_time,VersionABCD
+2022-01-25,wizard,PolybenchC,mvt,0.013655899579930835,execution_time,VersionABCD
+2022-01-26,wizard,PolybenchC,mvt,0.013679509278858039,execution_time,VersionABCD
+2022-01-27,wizard,PolybenchC,mvt,0.013680568364007098,execution_time,VersionABCD
+2022-01-28,wizard,PolybenchC,mvt,0.013694329672558408,execution_time,VersionABCD
+2022-01-29,wizard,PolybenchC,mvt,0.013711477316071615,execution_time,VersionABCD
+2022-01-30,wizard,PolybenchC,mvt,0.013720796859587681,execution_time,VersionABCD
+2022-01-31,wizard,PolybenchC,mvt,0.013755793443404603,execution_time,VersionABCD
+2022-02-01,wizard,PolybenchC,mvt,0.013782473722152156,execution_time,VersionABCD
+2022-02-02,wizard,PolybenchC,mvt,0.013796493937550077,execution_time,VersionABCD
+2022-02-03,wizard,PolybenchC,mvt,0.013832689894219099,execution_time,VersionABCD
+2022-02-04,wizard,PolybenchC,mvt,0.01386043681384361,execution_time,VersionABCD
+2022-02-05,wizard,PolybenchC,mvt,0.013875892509344347,execution_time,VersionABCD
+2022-02-06,wizard,PolybenchC,mvt,0.01386668579937181,execution_time,VersionABCD
+2022-02-07,wizard,PolybenchC,mvt,0.01388559861773768,execution_time,VersionABCD
+2022-02-08,wizard,PolybenchC,mvt,0.013897123292542772,execution_time,VersionABCD
+2022-02-09,wizard,PolybenchC,mvt,0.013893682151682475,execution_time,VersionABCD
+2022-02-10,wizard,PolybenchC,mvt,0.013889892440642163,execution_time,VersionABCD
+2022-02-11,wizard,PolybenchC,mvt,0.01388501961027903,execution_time,VersionABCD
+2022-02-12,wizard,PolybenchC,mvt,0.013910328553863946,execution_time,VersionABCD
+2022-02-13,wizard,PolybenchC,mvt,0.013931807719031008,execution_time,VersionABCD
+2022-02-14,wizard,PolybenchC,mvt,0.013971014871324471,execution_time,VersionABCD
+2022-02-15,wizard,PolybenchC,mvt,0.01397310887550118,execution_time,VersionABCD
+2022-02-16,wizard,PolybenchC,mvt,0.013968805338686217,execution_time,VersionABCD
+2022-02-17,wizard,PolybenchC,mvt,0.014005907483246347,execution_time,VersionABCD
+2022-02-18,wizard,PolybenchC,mvt,0.01403633654260505,execution_time,VersionABCD
+2022-02-19,wizard,PolybenchC,mvt,0.014036324624274716,execution_time,VersionABCD
+2022-02-20,wizard,PolybenchC,mvt,0.014070376170975254,execution_time,VersionABCD
+2022-02-21,wizard,PolybenchC,mvt,0.01406933962490269,execution_time,VersionABCD
+2022-02-22,wizard,PolybenchC,mvt,0.014070070620160316,execution_time,VersionABCD
+2022-02-23,wizard,PolybenchC,mvt,0.014075351273964226,execution_time,VersionABCD
+2022-02-24,wizard,PolybenchC,mvt,0.014082023922965961,execution_time,VersionABCD
+2022-02-25,wizard,PolybenchC,mvt,0.014093902185764458,execution_time,VersionABCD
+2022-02-26,wizard,PolybenchC,mvt,0.014097746648074463,execution_time,VersionABCD
+2022-02-27,wizard,PolybenchC,mvt,0.014100647275610657,execution_time,VersionABCD
+2022-02-28,wizard,PolybenchC,mvt,0.014092739114316258,execution_time,VersionABCD
+2022-03-01,wizard,PolybenchC,mvt,0.014123586084384266,execution_time,VersionABCD
+2022-03-02,wizard,PolybenchC,mvt,0.014116409089563617,execution_time,VersionABCD
+2022-03-03,wizard,PolybenchC,mvt,0.014109594793198555,execution_time,VersionABCD
+2022-03-04,wizard,PolybenchC,mvt,0.014107601041572564,execution_time,VersionABCD
+2022-03-05,wizard,PolybenchC,mvt,0.014141586679457188,execution_time,VersionABCD
+2022-03-06,wizard,PolybenchC,mvt,0.014133978858833003,execution_time,VersionABCD
+2022-03-07,wizard,PolybenchC,mvt,0.014166839168578863,execution_time,VersionABCD
+2022-03-08,wizard,PolybenchC,mvt,0.014196287003153521,execution_time,VersionABCD
+2022-03-09,wizard,PolybenchC,mvt,0.01423190911570145,execution_time,VersionABCD
+2022-03-10,wizard,PolybenchC,mvt,0.014223782362993556,execution_time,VersionABCD
+2022-03-11,wizard,PolybenchC,mvt,0.014228188055233529,execution_time,VersionABCD
+2022-03-12,wizard,PolybenchC,mvt,0.014218255354172172,execution_time,VersionABCD
+2022-03-13,wizard,PolybenchC,mvt,0.014242353747206412,execution_time,VersionABCD
+2022-03-14,wizard,PolybenchC,mvt,0.014261346342252566,execution_time,VersionABCD
+2022-03-15,wizard,PolybenchC,mvt,0.014294256392138589,execution_time,VersionABCD
+2022-03-16,wizard,PolybenchC,mvt,0.0143258493283579,execution_time,VersionABCD
+2022-03-17,wizard,PolybenchC,mvt,0.01435749506836223,execution_time,VersionABCD
+2022-03-18,wizard,PolybenchC,mvt,0.014396733392603184,execution_time,VersionABCD
+2022-03-19,wizard,PolybenchC,mvt,0.014401315312544915,execution_time,VersionABCD
+2022-03-20,wizard,PolybenchC,mvt,0.01442187126770625,execution_time,VersionABCD
+2022-03-21,wizard,PolybenchC,mvt,0.014445780497132025,execution_time,VersionABCD
+2022-03-22,wizard,PolybenchC,mvt,0.01445653409542779,execution_time,VersionABCD
+2022-03-23,wizard,PolybenchC,mvt,0.01445039639442858,execution_time,VersionABCD
+2022-03-24,wizard,PolybenchC,mvt,0.01445201613583968,execution_time,VersionABCD
+2022-03-25,wizard,PolybenchC,mvt,0.014482641827165355,execution_time,VersionABCD
+2022-03-26,wizard,PolybenchC,mvt,0.014485934386594892,execution_time,VersionABCD
+2022-03-27,wizard,PolybenchC,mvt,0.014477898596813532,execution_time,VersionABCD
+2022-03-28,wizard,PolybenchC,mvt,0.014487232756913323,execution_time,VersionABCD
+2022-03-29,wizard,PolybenchC,mvt,0.014510782771877543,execution_time,VersionABCD
+2022-03-30,wizard,PolybenchC,mvt,0.014505020699156575,execution_time,VersionABCD
+2022-03-31,wizard,PolybenchC,mvt,0.014505749500148515,execution_time,VersionABCD
+2022-04-01,wizard,PolybenchC,mvt,0.014518164222219073,execution_time,VersionABCD
+2022-04-02,wizard,PolybenchC,mvt,0.014517318258282615,execution_time,VersionABCD
+2022-04-03,wizard,PolybenchC,mvt,0.01452263289402233,execution_time,VersionABCD
+2022-04-04,wizard,PolybenchC,mvt,0.014512919087295977,execution_time,VersionABCD
+2022-04-05,wizard,PolybenchC,mvt,0.014520865632867372,execution_time,VersionABCD
+2022-04-06,wizard,PolybenchC,mvt,0.014522719382660037,execution_time,VersionABCD
+2022-04-07,wizard,PolybenchC,mvt,0.014518521165949028,execution_time,VersionABCD
+2022-04-08,wizard,PolybenchC,mvt,0.01452448228844056,execution_time,VersionABCD
+2022-04-09,wizard,PolybenchC,mvt,0.014520311941260381,execution_time,VersionABCD
+2022-04-10,wizard,PolybenchC,mvt,0.01453556667781159,execution_time,VersionABCD
+2022-04-11,wizard,PolybenchC,mvt,0.014508847795771896,execution_time,VersionABCD
+2022-04-12,wizard,PolybenchC,mvt,0.014498471059139517,execution_time,VersionABCD
+2022-04-13,wizard,PolybenchC,mvt,0.014475560892249656,execution_time,VersionABCD
+2022-04-14,wizard,PolybenchC,mvt,0.014437854399348209,execution_time,VersionABCD
+2022-04-15,wizard,PolybenchC,mvt,0.014402950108405737,execution_time,VersionABCD
+2022-04-16,wizard,PolybenchC,mvt,0.014374236350147784,execution_time,VersionABCD
+2022-04-17,wizard,PolybenchC,mvt,0.014342453741944896,execution_time,VersionABCD
+2022-04-18,wizard,PolybenchC,mvt,0.014316972799279747,execution_time,VersionABCD
+2022-04-19,wizard,PolybenchC,mvt,0.014289909575751252,execution_time,VersionABCD
+2022-04-20,wizard,PolybenchC,mvt,0.014277953193432068,execution_time,VersionABCD
+2022-04-21,wizard,PolybenchC,mvt,0.01426423988254618,execution_time,VersionABCD
+2022-04-22,wizard,PolybenchC,mvt,0.014246261826291946,execution_time,VersionABCD
+2022-04-23,wizard,PolybenchC,mvt,0.014207430568534338,execution_time,VersionABCD
+2022-04-24,wizard,PolybenchC,mvt,0.014180435853507024,execution_time,VersionABCD
+2022-04-25,wizard,PolybenchC,mvt,0.014147444098639677,execution_time,VersionABCD
+2022-04-26,wizard,PolybenchC,mvt,0.014119067001953742,execution_time,VersionABCD
+2022-04-27,wizard,PolybenchC,mvt,0.014096224229863086,execution_time,VersionABCD
+2022-04-28,wizard,PolybenchC,mvt,0.014080822360280203,execution_time,VersionABCD
+2022-04-29,wizard,PolybenchC,mvt,0.01404858942612008,execution_time,VersionABCD
+2022-04-30,wizard,PolybenchC,mvt,0.014028153830603214,execution_time,VersionABCD
+2022-05-01,wizard,PolybenchC,mvt,0.014006011375539033,execution_time,VersionABCD
+2022-05-02,wizard,PolybenchC,mvt,0.01397915694282417,execution_time,VersionABCD
+2022-05-03,wizard,PolybenchC,mvt,0.013964481105548458,execution_time,VersionABCD
+2022-05-04,wizard,PolybenchC,mvt,0.013926192676366373,execution_time,VersionABCD
+2022-05-05,wizard,PolybenchC,mvt,0.01391013130273963,execution_time,VersionABCD
+2022-05-06,wizard,PolybenchC,mvt,0.013878023377879599,execution_time,VersionABCD
+2022-05-07,wizard,PolybenchC,mvt,0.013867498022264923,execution_time,VersionABCD
+2022-05-08,wizard,PolybenchC,mvt,0.01383044536891202,execution_time,VersionABCD
+2022-05-09,wizard,PolybenchC,mvt,0.013810275444685662,execution_time,VersionABCD
+2022-05-10,wizard,PolybenchC,mvt,0.013770722228612708,execution_time,VersionABCD
+2022-05-11,wizard,PolybenchC,mvt,0.0137344715082581,execution_time,VersionABCD
+2022-05-12,wizard,PolybenchC,mvt,0.01370571238208922,execution_time,VersionABCD
+2022-05-13,wizard,PolybenchC,mvt,0.013686348246254282,execution_time,VersionABCD
+2022-05-14,wizard,PolybenchC,mvt,0.01366103314681001,execution_time,VersionABCD
+2022-05-15,wizard,PolybenchC,mvt,0.013626345989424337,execution_time,VersionABCD
+2022-05-16,wizard,PolybenchC,mvt,0.013591383174241583,execution_time,VersionABCD
+2022-05-17,wizard,PolybenchC,mvt,0.013559591156616467,execution_time,VersionABCD
+2022-05-18,wizard,PolybenchC,mvt,0.013527700671169955,execution_time,VersionABCD
+2022-05-19,wizard,PolybenchC,mvt,0.013502287626051521,execution_time,VersionABCD
+2022-05-20,wizard,PolybenchC,mvt,0.013472380093331609,execution_time,VersionABCD
+2022-05-21,wizard,PolybenchC,mvt,0.013445676855348278,execution_time,VersionABCD
+2022-05-22,wizard,PolybenchC,mvt,0.013428494604699994,execution_time,VersionABCD
+2022-05-23,wizard,PolybenchC,mvt,0.013401105911738624,execution_time,VersionABCD
+2022-05-24,wizard,PolybenchC,mvt,0.013384769682047775,execution_time,VersionABCD
+2022-05-25,wizard,PolybenchC,mvt,0.013349978028448395,execution_time,VersionABCD
+2022-05-26,wizard,PolybenchC,mvt,0.013318542671541641,execution_time,VersionABCD
+2022-05-27,wizard,PolybenchC,mvt,0.013302266497558158,execution_time,VersionABCD
+2022-05-28,wizard,PolybenchC,mvt,0.013288312028445975,execution_time,VersionABCD
+2022-05-29,wizard,PolybenchC,mvt,0.01326017770396912,execution_time,VersionABCD
+2022-05-30,wizard,PolybenchC,mvt,0.013244734943953392,execution_time,VersionABCD
+2022-05-31,wizard,PolybenchC,mvt,0.013209423663289664,execution_time,VersionABCD
+2022-06-01,wizard,PolybenchC,mvt,0.013194780710580698,execution_time,VersionABCD
+2022-06-02,wizard,PolybenchC,mvt,0.013174993012735847,execution_time,VersionABCD
+2022-06-03,wizard,PolybenchC,mvt,0.01316427217130158,execution_time,VersionABCD
+2022-06-04,wizard,PolybenchC,mvt,0.013140155092233466,execution_time,VersionABCD
+2022-06-05,wizard,PolybenchC,mvt,0.013118909932055455,execution_time,VersionABCD
+2022-06-06,wizard,PolybenchC,mvt,0.01308687774768267,execution_time,VersionABCD
+2022-06-07,wizard,PolybenchC,mvt,0.01305715803225394,execution_time,VersionABCD
+2022-06-08,wizard,PolybenchC,mvt,0.013036016228366648,execution_time,VersionABCD
+2022-06-09,wizard,PolybenchC,mvt,0.013005674068863857,execution_time,VersionABCD
+2022-06-10,wizard,PolybenchC,mvt,0.012978509332793979,execution_time,VersionABCD
+2022-06-11,wizard,PolybenchC,mvt,0.012955448363534686,execution_time,VersionABCD
+2022-06-12,wizard,PolybenchC,mvt,0.012929026350653263,execution_time,VersionABCD
+2022-06-13,wizard,PolybenchC,mvt,0.012891430762376518,execution_time,VersionABCD
+2022-06-14,wizard,PolybenchC,mvt,0.01287144285099636,execution_time,VersionABCD
+2022-06-15,wizard,PolybenchC,mvt,0.012841853951784226,execution_time,VersionABCD
+2022-06-16,wizard,PolybenchC,mvt,0.012817675021853074,execution_time,VersionABCD
+2022-06-17,wizard,PolybenchC,mvt,0.012791520427671208,execution_time,VersionABCD
+2022-06-18,wizard,PolybenchC,mvt,0.012768637320090112,execution_time,VersionABCD
+2022-06-19,wizard,PolybenchC,mvt,0.012746566460257737,execution_time,VersionABCD
+2022-06-20,wizard,PolybenchC,mvt,0.01271885380286746,execution_time,VersionABCD
+2022-06-21,wizard,PolybenchC,mvt,0.0127044287194946,execution_time,VersionABCD
+2022-06-22,wizard,PolybenchC,mvt,0.012667016913731394,execution_time,VersionABCD
+2022-06-23,wizard,PolybenchC,mvt,0.01262768340993712,execution_time,VersionABCD
+2022-06-24,wizard,PolybenchC,mvt,0.0126170416723913,execution_time,VersionABCD
+2022-06-25,wizard,PolybenchC,mvt,0.012599427947350342,execution_time,VersionABCD
+2022-06-26,wizard,PolybenchC,mvt,0.012568013637156861,execution_time,VersionABCD
+2022-06-27,wizard,PolybenchC,mvt,0.012537201924556289,execution_time,VersionABCD
+2022-06-28,wizard,PolybenchC,mvt,0.012511577321402238,execution_time,VersionABCD
+2022-06-29,wizard,PolybenchC,mvt,0.01249969632069166,execution_time,VersionABCD
+2022-06-30,wizard,PolybenchC,mvt,0.012462331561025546,execution_time,VersionABCD
+2022-07-01,wizard,PolybenchC,mvt,0.012441753735345605,execution_time,VersionABCD
+2022-07-02,wizard,PolybenchC,mvt,0.012421879701341848,execution_time,VersionABCD
+2022-07-03,wizard,PolybenchC,mvt,0.012395199678642806,execution_time,VersionABCD
+2022-07-04,wizard,PolybenchC,mvt,0.012380536830971556,execution_time,VersionABCD
+2022-07-05,wizard,PolybenchC,mvt,0.012364223833612534,execution_time,VersionABCD
+2022-07-06,wizard,PolybenchC,mvt,0.012345892707382709,execution_time,VersionABCD
+2022-07-07,wizard,PolybenchC,mvt,0.012330827995220386,execution_time,VersionABCD
+2022-07-08,wizard,PolybenchC,mvt,0.012317919389257592,execution_time,VersionABCD
+2022-07-09,wizard,PolybenchC,mvt,0.01230174396566505,execution_time,VersionABCD
+2022-07-10,wizard,PolybenchC,mvt,0.012281657221128388,execution_time,VersionABCD
+2022-07-11,wizard,PolybenchC,mvt,0.012269779294701433,execution_time,VersionABCD
+2022-07-12,wizard,PolybenchC,mvt,0.012246721073938819,execution_time,VersionABCD
+2022-07-13,wizard,PolybenchC,mvt,0.012221127784355057,execution_time,VersionABCD
+2022-07-14,wizard,PolybenchC,mvt,0.012192183713526651,execution_time,VersionABCD
+2022-07-15,wizard,PolybenchC,mvt,0.012169563034564188,execution_time,VersionABCD
+2022-07-16,wizard,PolybenchC,mvt,0.012154080470076982,execution_time,VersionABCD
+2022-07-17,wizard,PolybenchC,mvt,0.012141469187705253,execution_time,VersionABCD
+2022-07-18,wizard,PolybenchC,mvt,0.012103259617896508,execution_time,VersionABCD
+2022-07-19,wizard,PolybenchC,mvt,0.012065162392125803,execution_time,VersionABCD
+2022-07-20,wizard,PolybenchC,mvt,0.01203242482598024,execution_time,VersionABCD
+2022-07-21,wizard,PolybenchC,mvt,0.012012424297898299,execution_time,VersionABCD
+2022-07-22,wizard,PolybenchC,mvt,0.011988384423636126,execution_time,VersionABCD
+2022-07-23,wizard,PolybenchC,mvt,0.011970998284867045,execution_time,VersionABCD
+2022-07-24,wizard,PolybenchC,mvt,0.011936399780285227,execution_time,VersionABCD
+2022-07-25,wizard,PolybenchC,mvt,0.01191073462314739,execution_time,VersionABCD
+2022-07-26,wizard,PolybenchC,mvt,0.011874514840531886,execution_time,VersionABCD
+2022-07-27,wizard,PolybenchC,mvt,0.011847325671513026,execution_time,VersionABCD
+2022-07-28,wizard,PolybenchC,mvt,0.011829141834679655,execution_time,VersionABCD
+2022-07-29,wizard,PolybenchC,mvt,0.011815191877127148,execution_time,VersionABCD
+2022-07-30,wizard,PolybenchC,mvt,0.011798293762071223,execution_time,VersionABCD
+2022-07-31,wizard,PolybenchC,mvt,0.011765747129919426,execution_time,VersionABCD
+2022-08-01,wizard,PolybenchC,mvt,0.011740679896317363,execution_time,VersionABCD
+2022-08-02,wizard,PolybenchC,mvt,0.01172681867725624,execution_time,VersionABCD
+2022-08-03,wizard,PolybenchC,mvt,0.011698949357361293,execution_time,VersionABCD
+2022-08-04,wizard,PolybenchC,mvt,0.011688666611230443,execution_time,VersionABCD
+2022-08-05,wizard,PolybenchC,mvt,0.011649923698178426,execution_time,VersionABCD
+2022-08-06,wizard,PolybenchC,mvt,0.011637747820427336,execution_time,VersionABCD
+2022-08-07,wizard,PolybenchC,mvt,0.011609902794039778,execution_time,VersionABCD
+2022-08-08,wizard,PolybenchC,mvt,0.011598195122219645,execution_time,VersionABCD
+2022-08-09,wizard,PolybenchC,mvt,0.011558941629974888,execution_time,VersionABCD
+2022-08-10,wizard,PolybenchC,mvt,0.011538451481136197,execution_time,VersionABCD
+2022-08-11,wizard,PolybenchC,mvt,0.011515403848194177,execution_time,VersionABCD
+2022-08-12,wizard,PolybenchC,mvt,0.011500048438280492,execution_time,VersionABCD
+2022-08-13,wizard,PolybenchC,mvt,0.01147507133896315,execution_time,VersionABCD
+2022-08-14,wizard,PolybenchC,mvt,0.011459138702858819,execution_time,VersionABCD
+2022-08-15,wizard,PolybenchC,mvt,0.011431523418255967,execution_time,VersionABCD
+2022-08-16,wizard,PolybenchC,mvt,0.011417236212019247,execution_time,VersionABCD
+2022-08-17,wizard,PolybenchC,mvt,0.011393641603506812,execution_time,VersionABCD
+2022-08-18,wizard,PolybenchC,mvt,0.011374797528128975,execution_time,VersionABCD
+2022-08-19,wizard,PolybenchC,mvt,0.011341199819649457,execution_time,VersionABCD
+2022-08-20,wizard,PolybenchC,mvt,0.011304929913362302,execution_time,VersionABCD
+2022-08-21,wizard,PolybenchC,mvt,0.01129080917227697,execution_time,VersionABCD
+2022-08-22,wizard,PolybenchC,mvt,0.011255372806301416,execution_time,VersionABCD
+2022-08-23,wizard,PolybenchC,mvt,0.011227225411002687,execution_time,VersionABCD
+2022-08-24,wizard,PolybenchC,mvt,0.011199701582268693,execution_time,VersionABCD
+2022-08-25,wizard,PolybenchC,mvt,0.011159841772322368,execution_time,VersionABCD
+2022-08-26,wizard,PolybenchC,mvt,0.011131608338844847,execution_time,VersionABCD
+2022-08-27,wizard,PolybenchC,mvt,0.011097558430464012,execution_time,VersionABCD
+2022-08-28,wizard,PolybenchC,mvt,0.011085921491010607,execution_time,VersionABCD
+2022-08-29,wizard,PolybenchC,mvt,0.011054855661781441,execution_time,VersionABCD
+2022-08-30,wizard,PolybenchC,mvt,0.011026508259818648,execution_time,VersionABCD
+2022-08-31,wizard,PolybenchC,mvt,0.01101329607899432,execution_time,VersionABCD
+2022-09-01,wizard,PolybenchC,mvt,0.01098596645544513,execution_time,VersionABCD
+2022-09-02,wizard,PolybenchC,mvt,0.010974502373347312,execution_time,VersionABCD
+2022-09-03,wizard,PolybenchC,mvt,0.010961928842869983,execution_time,VersionABCD
+2022-09-04,wizard,PolybenchC,mvt,0.010940076006817824,execution_time,VersionABCD
+2022-09-05,wizard,PolybenchC,mvt,0.010908208415001256,execution_time,VersionABCD
+2022-09-06,wizard,PolybenchC,mvt,0.010871684636967088,execution_time,VersionABCD
+2022-09-07,wizard,PolybenchC,mvt,0.010842593661682672,execution_time,VersionABCD
+2022-09-08,wizard,PolybenchC,mvt,0.01083246870131041,execution_time,VersionABCD
+2022-09-09,wizard,PolybenchC,mvt,0.010812658016149796,execution_time,VersionABCD
+2022-09-10,wizard,PolybenchC,mvt,0.010780039482956067,execution_time,VersionABCD
+2022-09-11,wizard,PolybenchC,mvt,0.01076971368551128,execution_time,VersionABCD
+2022-09-12,wizard,PolybenchC,mvt,0.010742718310769847,execution_time,VersionABCD
+2022-09-13,wizard,PolybenchC,mvt,0.010727303212359322,execution_time,VersionABCD
+2022-09-14,wizard,PolybenchC,mvt,0.010703366210793227,execution_time,VersionABCD
+2022-09-15,wizard,PolybenchC,mvt,0.010675180037614116,execution_time,VersionABCD
+2022-09-16,wizard,PolybenchC,mvt,0.010643647591886622,execution_time,VersionABCD
+2022-09-17,wizard,PolybenchC,mvt,0.010617856619993407,execution_time,VersionABCD
+2022-09-18,wizard,PolybenchC,mvt,0.010584552650548699,execution_time,VersionABCD
+2022-09-19,wizard,PolybenchC,mvt,0.010556566434742818,execution_time,VersionABCD
+2022-09-20,wizard,PolybenchC,mvt,0.010522824836333803,execution_time,VersionABCD
+2022-09-21,wizard,PolybenchC,mvt,0.010490492328921519,execution_time,VersionABCD
+2022-09-22,wizard,PolybenchC,mvt,0.010456627454671085,execution_time,VersionABCD
+2022-09-23,wizard,PolybenchC,mvt,0.010444236361180486,execution_time,VersionABCD
+2022-09-24,wizard,PolybenchC,mvt,0.010428106886486866,execution_time,VersionABCD
+2022-09-25,wizard,PolybenchC,mvt,0.01040429983434285,execution_time,VersionABCD
+2022-09-26,wizard,PolybenchC,mvt,0.010378898645116166,execution_time,VersionABCD
+2022-09-27,wizard,PolybenchC,mvt,0.010343381587765516,execution_time,VersionABCD
+2022-09-28,wizard,PolybenchC,mvt,0.010323147638688832,execution_time,VersionABCD
+2022-09-29,wizard,PolybenchC,mvt,0.010301842618519503,execution_time,VersionABCD
+2022-09-30,wizard,PolybenchC,mvt,0.010289370571801473,execution_time,VersionABCD
+2022-10-01,wizard,PolybenchC,mvt,0.010267371903314641,execution_time,VersionABCD
+2022-10-02,wizard,PolybenchC,mvt,0.010257043194735381,execution_time,VersionABCD
+2022-10-03,wizard,PolybenchC,mvt,0.010246726484543252,execution_time,VersionABCD
+2022-10-04,wizard,PolybenchC,mvt,0.010229045939307681,execution_time,VersionABCD
+2022-10-05,wizard,PolybenchC,mvt,0.01021837507845516,execution_time,VersionABCD
+2022-10-06,wizard,PolybenchC,mvt,0.010199140146124162,execution_time,VersionABCD
+2022-10-07,wizard,PolybenchC,mvt,0.010183301319748587,execution_time,VersionABCD
+2022-10-08,wizard,PolybenchC,mvt,0.010150834075585154,execution_time,VersionABCD
+2022-10-09,wizard,PolybenchC,mvt,0.010136971458321587,execution_time,VersionABCD
+2022-10-10,wizard,PolybenchC,mvt,0.01011614507795092,execution_time,VersionABCD
+2022-10-11,wizard,PolybenchC,mvt,0.010083872798692385,execution_time,VersionABCD
+2022-10-12,wizard,PolybenchC,mvt,0.010052110868175382,execution_time,VersionABCD
+2022-10-13,wizard,PolybenchC,mvt,0.010030548615761163,execution_time,VersionABCD
+2022-10-14,wizard,PolybenchC,mvt,0.01000092076112443,execution_time,VersionABCD
+2022-10-15,wizard,PolybenchC,mvt,0.009978652273417328,execution_time,VersionABCD
+2022-10-16,wizard,PolybenchC,mvt,0.009958448787153917,execution_time,VersionABCD
+2022-10-17,wizard,PolybenchC,mvt,0.009930891786313295,execution_time,VersionABCD
+2022-10-18,wizard,PolybenchC,mvt,0.009894090361750374,execution_time,VersionABCD
+2022-10-19,wizard,PolybenchC,mvt,0.009861159498691978,execution_time,VersionABCD
+2022-10-20,wizard,PolybenchC,mvt,0.0098470338940655,execution_time,VersionABCD
+2022-10-21,wizard,PolybenchC,mvt,0.009808430187103912,execution_time,VersionABCD
+2022-10-22,wizard,PolybenchC,mvt,0.00978524901150105,execution_time,VersionABCD
+2022-10-23,wizard,PolybenchC,mvt,0.009752923393404833,execution_time,VersionABCD
+2022-10-24,wizard,PolybenchC,mvt,0.009713825541886177,execution_time,VersionABCD
+2022-10-25,wizard,PolybenchC,mvt,0.009691517951577956,execution_time,VersionABCD
+2022-10-26,wizard,PolybenchC,mvt,0.009670298407959788,execution_time,VersionABCD
+2022-10-27,wizard,PolybenchC,mvt,0.009651843558461444,execution_time,VersionABCD
+2022-10-28,wizard,PolybenchC,mvt,0.009618455936383791,execution_time,VersionABCD
+2022-10-29,wizard,PolybenchC,mvt,0.009583265110418836,execution_time,VersionABCD
+2022-10-30,wizard,PolybenchC,mvt,0.009570334006610521,execution_time,VersionABCD
+2022-10-31,wizard,PolybenchC,mvt,0.009549295990300816,execution_time,VersionABCD
+2022-11-01,wizard,PolybenchC,mvt,0.009533371502061714,execution_time,VersionABCD
+2022-11-02,wizard,PolybenchC,mvt,0.009500493032080441,execution_time,VersionABCD
+2022-11-03,wizard,PolybenchC,mvt,0.009489976002861835,execution_time,VersionABCD
+2022-11-04,wizard,PolybenchC,mvt,0.009471480285114462,execution_time,VersionABCD
+2022-11-05,wizard,PolybenchC,mvt,0.009452942292439774,execution_time,VersionABCD
+2022-11-06,wizard,PolybenchC,mvt,0.009432082194969037,execution_time,VersionABCD
+2022-11-07,wizard,PolybenchC,mvt,0.009401003937685426,execution_time,VersionABCD
+2022-11-08,wizard,PolybenchC,mvt,0.009376025076943628,execution_time,VersionABCD
+2022-11-09,wizard,PolybenchC,mvt,0.009358368796919597,execution_time,VersionABCD
+2022-11-10,wizard,PolybenchC,mvt,0.00933539056923159,execution_time,VersionABCD
+2022-11-11,wizard,PolybenchC,mvt,0.009322892974798077,execution_time,VersionABCD
+2022-11-12,wizard,PolybenchC,mvt,0.009291294096927676,execution_time,VersionABCD
+2022-11-13,wizard,PolybenchC,mvt,0.009266886252409541,execution_time,VersionABCD
+2022-11-14,wizard,PolybenchC,mvt,0.00924418971840629,execution_time,VersionABCD
+2022-11-15,wizard,PolybenchC,mvt,0.00921192398021804,execution_time,VersionABCD
+2022-11-16,wizard,PolybenchC,mvt,0.009174354046767141,execution_time,VersionABCD
+2022-11-17,wizard,PolybenchC,mvt,0.009154841551248221,execution_time,VersionABCD
+2022-11-18,wizard,PolybenchC,mvt,0.00913911315623472,execution_time,VersionABCD
+2022-11-19,wizard,PolybenchC,mvt,0.009109676942824921,execution_time,VersionABCD
+2022-11-20,wizard,PolybenchC,mvt,0.009080910232408692,execution_time,VersionABCD
+2022-11-21,wizard,PolybenchC,mvt,0.009057923633126654,execution_time,VersionABCD
+2022-11-22,wizard,PolybenchC,mvt,0.00902007108157416,execution_time,VersionABCD
+2022-11-23,wizard,PolybenchC,mvt,0.008996690933624435,execution_time,VersionABCD
+2022-11-24,wizard,PolybenchC,mvt,0.008981989823140482,execution_time,VersionABCD
+2022-11-25,wizard,PolybenchC,mvt,0.008967020405434964,execution_time,VersionABCD
+2022-11-26,wizard,PolybenchC,mvt,0.008933658809440009,execution_time,VersionABCD
+2022-11-27,wizard,PolybenchC,mvt,0.008918621577578351,execution_time,VersionABCD
+2022-11-28,wizard,PolybenchC,mvt,0.008908412022414151,execution_time,VersionABCD
+2022-11-29,wizard,PolybenchC,mvt,0.008880781187024324,execution_time,VersionABCD
+2022-11-30,wizard,PolybenchC,mvt,0.0088587970776848,execution_time,VersionABCD
+2022-12-01,wizard,PolybenchC,mvt,0.00883221119881859,execution_time,VersionABCD
+2022-12-02,wizard,PolybenchC,mvt,0.00880642542505179,execution_time,VersionABCD
+2022-12-03,wizard,PolybenchC,mvt,0.008791729574945966,execution_time,VersionABCD
+2022-12-04,wizard,PolybenchC,mvt,0.008770460815560975,execution_time,VersionABCD
+2022-12-05,wizard,PolybenchC,mvt,0.008745760671635546,execution_time,VersionABCD
+2022-12-06,wizard,PolybenchC,mvt,0.00871523779148149,execution_time,VersionABCD
+2022-12-07,wizard,PolybenchC,mvt,0.008681531936257916,execution_time,VersionABCD
+2022-12-08,wizard,PolybenchC,mvt,0.008642097808250069,execution_time,VersionABCD
+2022-12-09,wizard,PolybenchC,mvt,0.00861338809626617,execution_time,VersionABCD
+2022-12-10,wizard,PolybenchC,mvt,0.008595052150508873,execution_time,VersionABCD
+2022-12-11,wizard,PolybenchC,mvt,0.008582729080112574,execution_time,VersionABCD
+2022-12-12,wizard,PolybenchC,mvt,0.00855229880732782,execution_time,VersionABCD
+2022-12-13,wizard,PolybenchC,mvt,0.008518482229942505,execution_time,VersionABCD
+2022-12-14,wizard,PolybenchC,mvt,0.008490217217047912,execution_time,VersionABCD
+2022-12-15,wizard,PolybenchC,mvt,0.008471798104659995,execution_time,VersionABCD
+2022-12-16,wizard,PolybenchC,mvt,0.008443067816355425,execution_time,VersionABCD
+2022-12-17,wizard,PolybenchC,mvt,0.00841237209028729,execution_time,VersionABCD
+2022-12-18,wizard,PolybenchC,mvt,0.008393503472835469,execution_time,VersionABCD
+2022-12-19,wizard,PolybenchC,mvt,0.008356317078470477,execution_time,VersionABCD
+2022-12-20,wizard,PolybenchC,mvt,0.00831887874302146,execution_time,VersionABCD
+2022-12-21,wizard,PolybenchC,mvt,0.00830550430816893,execution_time,VersionABCD
+2022-12-22,wizard,PolybenchC,mvt,0.008292490598400447,execution_time,VersionABCD
+2022-12-23,wizard,PolybenchC,mvt,0.008280239801374578,execution_time,VersionABCD
+2022-12-24,wizard,PolybenchC,mvt,0.008250666110472047,execution_time,VersionABCD
+2022-12-25,wizard,PolybenchC,mvt,0.00821640662271027,execution_time,VersionABCD
+2022-12-26,wizard,PolybenchC,mvt,0.00817962520244267,execution_time,VersionABCD
+2022-12-27,wizard,PolybenchC,mvt,0.008161203345478926,execution_time,VersionABCD
+2022-12-28,wizard,PolybenchC,mvt,0.008145407184907943,execution_time,VersionABCD
+2022-12-29,wizard,PolybenchC,mvt,0.008115841326507008,execution_time,VersionABCD
+2022-12-30,wizard,PolybenchC,mvt,0.008084364921623172,execution_time,VersionABCD
+2022-12-31,wizard,PolybenchC,mvt,0.008063480016398861,execution_time,VersionABCD
+2022-01-01,wasm,PolybenchC,mvt,0.007339046778144125,execution_time,VersionABCD
+2022-01-02,wasm,PolybenchC,mvt,0.007368744628171206,execution_time,VersionABCD
+2022-01-03,wasm,PolybenchC,mvt,0.007387133972843139,execution_time,VersionABCD
+2022-01-04,wasm,PolybenchC,mvt,0.007435785586076162,execution_time,VersionABCD
+2022-01-05,wasm,PolybenchC,mvt,0.0074615648099496815,execution_time,VersionABCD
+2022-01-06,wasm,PolybenchC,mvt,0.007479241174516908,execution_time,VersionABCD
+2022-01-07,wasm,PolybenchC,mvt,0.007518547477827397,execution_time,VersionABCD
+2022-01-08,wasm,PolybenchC,mvt,0.0075553151514001346,execution_time,VersionABCD
+2022-01-09,wasm,PolybenchC,mvt,0.007583895333426664,execution_time,VersionABCD
+2022-01-10,wasm,PolybenchC,mvt,0.007601542484218944,execution_time,VersionABCD
+2022-01-11,wasm,PolybenchC,mvt,0.007648063013759835,execution_time,VersionABCD
+2022-01-12,wasm,PolybenchC,mvt,0.0076752256763291185,execution_time,VersionABCD
+2022-01-13,wasm,PolybenchC,mvt,0.007688644265554396,execution_time,VersionABCD
+2022-01-14,wasm,PolybenchC,mvt,0.0077177275868011465,execution_time,VersionABCD
+2022-01-15,wasm,PolybenchC,mvt,0.007739779079357818,execution_time,VersionABCD
+2022-01-16,wasm,PolybenchC,mvt,0.007769679414236828,execution_time,VersionABCD
+2022-01-17,wasm,PolybenchC,mvt,0.007801031914677782,execution_time,VersionABCD
+2022-01-18,wasm,PolybenchC,mvt,0.007834415442154378,execution_time,VersionABCD
+2022-01-19,wasm,PolybenchC,mvt,0.007872590156449453,execution_time,VersionABCD
+2022-01-20,wasm,PolybenchC,mvt,0.007913611137915135,execution_time,VersionABCD
+2022-01-21,wasm,PolybenchC,mvt,0.007961618475142382,execution_time,VersionABCD
+2022-01-22,wasm,PolybenchC,mvt,0.007971693916164516,execution_time,VersionABCD
+2022-01-23,wasm,PolybenchC,mvt,0.00798697987479409,execution_time,VersionABCD
+2022-01-24,wasm,PolybenchC,mvt,0.008028268348817088,execution_time,VersionABCD
+2022-01-25,wasm,PolybenchC,mvt,0.008070776156069711,execution_time,VersionABCD
+2022-01-26,wasm,PolybenchC,mvt,0.008111440728057204,execution_time,VersionABCD
+2022-01-27,wasm,PolybenchC,mvt,0.008151777861856512,execution_time,VersionABCD
+2022-01-28,wasm,PolybenchC,mvt,0.008171078144694447,execution_time,VersionABCD
+2022-01-29,wasm,PolybenchC,mvt,0.00818963168202149,execution_time,VersionABCD
+2022-01-30,wasm,PolybenchC,mvt,0.008238369876751531,execution_time,VersionABCD
+2022-01-31,wasm,PolybenchC,mvt,0.008274747692938619,execution_time,VersionABCD
+2022-02-01,wasm,PolybenchC,mvt,0.008292430116609609,execution_time,VersionABCD
+2022-02-02,wasm,PolybenchC,mvt,0.008341602878261412,execution_time,VersionABCD
+2022-02-03,wasm,PolybenchC,mvt,0.008360358502435258,execution_time,VersionABCD
+2022-02-04,wasm,PolybenchC,mvt,0.00837599369491667,execution_time,VersionABCD
+2022-02-05,wasm,PolybenchC,mvt,0.008404470725141874,execution_time,VersionABCD
+2022-02-06,wasm,PolybenchC,mvt,0.00844522328327218,execution_time,VersionABCD
+2022-02-07,wasm,PolybenchC,mvt,0.008456002391616877,execution_time,VersionABCD
+2022-02-08,wasm,PolybenchC,mvt,0.008494571481233155,execution_time,VersionABCD
+2022-02-09,wasm,PolybenchC,mvt,0.008541016382158245,execution_time,VersionABCD
+2022-02-10,wasm,PolybenchC,mvt,0.008582268089526973,execution_time,VersionABCD
+2022-02-11,wasm,PolybenchC,mvt,0.008601505298212856,execution_time,VersionABCD
+2022-02-12,wasm,PolybenchC,mvt,0.008616259934159272,execution_time,VersionABCD
+2022-02-13,wasm,PolybenchC,mvt,0.00865994311106783,execution_time,VersionABCD
+2022-02-14,wasm,PolybenchC,mvt,0.008678147696867072,execution_time,VersionABCD
+2022-02-15,wasm,PolybenchC,mvt,0.00872652618912697,execution_time,VersionABCD
+2022-02-16,wasm,PolybenchC,mvt,0.008776198700716933,execution_time,VersionABCD
+2022-02-17,wasm,PolybenchC,mvt,0.00881087104087541,execution_time,VersionABCD
+2022-02-18,wasm,PolybenchC,mvt,0.008860607880447671,execution_time,VersionABCD
+2022-02-19,wasm,PolybenchC,mvt,0.008882415783001495,execution_time,VersionABCD
+2022-02-20,wasm,PolybenchC,mvt,0.008932321143666792,execution_time,VersionABCD
+2022-02-21,wasm,PolybenchC,mvt,0.00897594413508041,execution_time,VersionABCD
+2022-02-22,wasm,PolybenchC,mvt,0.008996422823321646,execution_time,VersionABCD
+2022-02-23,wasm,PolybenchC,mvt,0.009012130027023007,execution_time,VersionABCD
+2022-02-24,wasm,PolybenchC,mvt,0.009044961402615835,execution_time,VersionABCD
+2022-02-25,wasm,PolybenchC,mvt,0.009074196954489312,execution_time,VersionABCD
+2022-02-26,wasm,PolybenchC,mvt,0.009084347137815621,execution_time,VersionABCD
+2022-02-27,wasm,PolybenchC,mvt,0.009126585431724923,execution_time,VersionABCD
+2022-02-28,wasm,PolybenchC,mvt,0.009143813048654637,execution_time,VersionABCD
+2022-03-01,wasm,PolybenchC,mvt,0.009187088176133534,execution_time,VersionABCD
+2022-03-02,wasm,PolybenchC,mvt,0.009229844059042234,execution_time,VersionABCD
+2022-03-03,wasm,PolybenchC,mvt,0.009247555350873139,execution_time,VersionABCD
+2022-03-04,wasm,PolybenchC,mvt,0.009284214713280418,execution_time,VersionABCD
+2022-03-05,wasm,PolybenchC,mvt,0.00931887178148502,execution_time,VersionABCD
+2022-03-06,wasm,PolybenchC,mvt,0.009363793169152493,execution_time,VersionABCD
+2022-03-07,wasm,PolybenchC,mvt,0.009410344023237415,execution_time,VersionABCD
+2022-03-08,wasm,PolybenchC,mvt,0.009453384416363394,execution_time,VersionABCD
+2022-03-09,wasm,PolybenchC,mvt,0.009484987814005561,execution_time,VersionABCD
+2022-03-10,wasm,PolybenchC,mvt,0.009495232387199104,execution_time,VersionABCD
+2022-03-11,wasm,PolybenchC,mvt,0.009542544416548074,execution_time,VersionABCD
+2022-03-12,wasm,PolybenchC,mvt,0.009564775753034166,execution_time,VersionABCD
+2022-03-13,wasm,PolybenchC,mvt,0.009591386009279357,execution_time,VersionABCD
+2022-03-14,wasm,PolybenchC,mvt,0.009632990296100272,execution_time,VersionABCD
+2022-03-15,wasm,PolybenchC,mvt,0.009661093811817713,execution_time,VersionABCD
+2022-03-16,wasm,PolybenchC,mvt,0.009686479400823216,execution_time,VersionABCD
+2022-03-17,wasm,PolybenchC,mvt,0.009736287442311491,execution_time,VersionABCD
+2022-03-18,wasm,PolybenchC,mvt,0.009758556017309348,execution_time,VersionABCD
+2022-03-19,wasm,PolybenchC,mvt,0.009768849031493321,execution_time,VersionABCD
+2022-03-20,wasm,PolybenchC,mvt,0.009791178538303802,execution_time,VersionABCD
+2022-03-21,wasm,PolybenchC,mvt,0.009815187154870184,execution_time,VersionABCD
+2022-03-22,wasm,PolybenchC,mvt,0.009835220132250414,execution_time,VersionABCD
+2022-03-23,wasm,PolybenchC,mvt,0.00985397428433224,execution_time,VersionABCD
+2022-03-24,wasm,PolybenchC,mvt,0.009894696770472194,execution_time,VersionABCD
+2022-03-25,wasm,PolybenchC,mvt,0.009916514544171508,execution_time,VersionABCD
+2022-03-26,wasm,PolybenchC,mvt,0.009929881319087046,execution_time,VersionABCD
+2022-03-27,wasm,PolybenchC,mvt,0.009959929107603337,execution_time,VersionABCD
+2022-03-28,wasm,PolybenchC,mvt,0.00999133940406805,execution_time,VersionABCD
+2022-03-29,wasm,PolybenchC,mvt,0.010032788890333265,execution_time,VersionABCD
+2022-03-30,wasm,PolybenchC,mvt,0.010054918598575106,execution_time,VersionABCD
+2022-03-31,wasm,PolybenchC,mvt,0.010090372094222479,execution_time,VersionABCD
+2022-04-01,wasm,PolybenchC,mvt,0.010123276013409068,execution_time,VersionABCD
+2022-04-02,wasm,PolybenchC,mvt,0.010157746256901787,execution_time,VersionABCD
+2022-04-03,wasm,PolybenchC,mvt,0.010169823438374588,execution_time,VersionABCD
+2022-04-04,wasm,PolybenchC,mvt,0.01019813426658303,execution_time,VersionABCD
+2022-04-05,wasm,PolybenchC,mvt,0.010231672065279246,execution_time,VersionABCD
+2022-04-06,wasm,PolybenchC,mvt,0.010266344508013125,execution_time,VersionABCD
+2022-04-07,wasm,PolybenchC,mvt,0.010294101626522261,execution_time,VersionABCD
+2022-04-08,wasm,PolybenchC,mvt,0.01031929791008791,execution_time,VersionABCD
+2022-04-09,wasm,PolybenchC,mvt,0.010333289931541647,execution_time,VersionABCD
+2022-04-10,wasm,PolybenchC,mvt,0.01035033052199021,execution_time,VersionABCD
+2022-04-11,wasm,PolybenchC,mvt,0.010372484635053993,execution_time,VersionABCD
+2022-04-12,wasm,PolybenchC,mvt,0.010406603480117195,execution_time,VersionABCD
+2022-04-13,wasm,PolybenchC,mvt,0.010430017064580846,execution_time,VersionABCD
+2022-04-14,wasm,PolybenchC,mvt,0.010467399068319835,execution_time,VersionABCD
+2022-04-15,wasm,PolybenchC,mvt,0.010503933564717996,execution_time,VersionABCD
+2022-04-16,wasm,PolybenchC,mvt,0.010537721932342432,execution_time,VersionABCD
+2022-04-17,wasm,PolybenchC,mvt,0.010561819798946888,execution_time,VersionABCD
+2022-04-18,wasm,PolybenchC,mvt,0.010593898543710076,execution_time,VersionABCD
+2022-04-19,wasm,PolybenchC,mvt,0.010639385681800591,execution_time,VersionABCD
+2022-04-20,wasm,PolybenchC,mvt,0.010650338336642822,execution_time,VersionABCD
+2022-04-21,wasm,PolybenchC,mvt,0.010669827788911119,execution_time,VersionABCD
+2022-04-22,wasm,PolybenchC,mvt,0.010686955374291351,execution_time,VersionABCD
+2022-04-23,wasm,PolybenchC,mvt,0.01072606369743333,execution_time,VersionABCD
+2022-04-24,wasm,PolybenchC,mvt,0.010751664089522819,execution_time,VersionABCD
+2022-04-25,wasm,PolybenchC,mvt,0.010796982166520563,execution_time,VersionABCD
+2022-04-26,wasm,PolybenchC,mvt,0.010826601054841043,execution_time,VersionABCD
+2022-04-27,wasm,PolybenchC,mvt,0.010874483111779711,execution_time,VersionABCD
+2022-04-28,wasm,PolybenchC,mvt,0.010909014088328142,execution_time,VersionABCD
+2022-04-29,wasm,PolybenchC,mvt,0.010941551179658313,execution_time,VersionABCD
+2022-04-30,wasm,PolybenchC,mvt,0.010974918699608113,execution_time,VersionABCD
+2022-05-01,wasm,PolybenchC,mvt,0.011002329039925235,execution_time,VersionABCD
+2022-05-02,wasm,PolybenchC,mvt,0.011049454569165802,execution_time,VersionABCD
+2022-05-03,wasm,PolybenchC,mvt,0.011096392953564764,execution_time,VersionABCD
+2022-05-04,wasm,PolybenchC,mvt,0.01113051775745672,execution_time,VersionABCD
+2022-05-05,wasm,PolybenchC,mvt,0.011163278115254504,execution_time,VersionABCD
+2022-05-06,wasm,PolybenchC,mvt,0.011210514685097506,execution_time,VersionABCD
+2022-05-07,wasm,PolybenchC,mvt,0.011239844516513593,execution_time,VersionABCD
+2022-05-08,wasm,PolybenchC,mvt,0.011283570183674839,execution_time,VersionABCD
+2022-05-09,wasm,PolybenchC,mvt,0.011301979240581019,execution_time,VersionABCD
+2022-05-10,wasm,PolybenchC,mvt,0.011328057716217732,execution_time,VersionABCD
+2022-05-11,wasm,PolybenchC,mvt,0.011361054001015594,execution_time,VersionABCD
+2022-05-12,wasm,PolybenchC,mvt,0.011409604846823487,execution_time,VersionABCD
+2022-05-13,wasm,PolybenchC,mvt,0.011441595780858644,execution_time,VersionABCD
+2022-05-14,wasm,PolybenchC,mvt,0.011463468750088716,execution_time,VersionABCD
+2022-05-15,wasm,PolybenchC,mvt,0.011508386873577003,execution_time,VersionABCD
+2022-05-16,wasm,PolybenchC,mvt,0.01155035122662573,execution_time,VersionABCD
+2022-05-17,wasm,PolybenchC,mvt,0.011566074129882609,execution_time,VersionABCD
+2022-05-18,wasm,PolybenchC,mvt,0.011577814838889573,execution_time,VersionABCD
+2022-05-19,wasm,PolybenchC,mvt,0.011602676826541567,execution_time,VersionABCD
+2022-05-20,wasm,PolybenchC,mvt,0.011645302757244957,execution_time,VersionABCD
+2022-05-21,wasm,PolybenchC,mvt,0.01169042276000589,execution_time,VersionABCD
+2022-05-22,wasm,PolybenchC,mvt,0.011717054493599569,execution_time,VersionABCD
+2022-05-23,wasm,PolybenchC,mvt,0.011734188632345077,execution_time,VersionABCD
+2022-05-24,wasm,PolybenchC,mvt,0.011775425586216335,execution_time,VersionABCD
+2022-05-25,wasm,PolybenchC,mvt,0.011810486495175583,execution_time,VersionABCD
+2022-05-26,wasm,PolybenchC,mvt,0.011830568275451082,execution_time,VersionABCD
+2022-05-27,wasm,PolybenchC,mvt,0.011863475799845842,execution_time,VersionABCD
+2022-05-28,wasm,PolybenchC,mvt,0.011889089668538832,execution_time,VersionABCD
+2022-05-29,wasm,PolybenchC,mvt,0.011903244647165927,execution_time,VersionABCD
+2022-05-30,wasm,PolybenchC,mvt,0.011921671964134153,execution_time,VersionABCD
+2022-05-31,wasm,PolybenchC,mvt,0.011957585809351063,execution_time,VersionABCD
+2022-06-01,wasm,PolybenchC,mvt,0.011996242829879872,execution_time,VersionABCD
+2022-06-02,wasm,PolybenchC,mvt,0.01202259316763809,execution_time,VersionABCD
+2022-06-03,wasm,PolybenchC,mvt,0.012047012812721516,execution_time,VersionABCD
+2022-06-04,wasm,PolybenchC,mvt,0.012096977763898635,execution_time,VersionABCD
+2022-06-05,wasm,PolybenchC,mvt,0.012107443297532206,execution_time,VersionABCD
+2022-06-06,wasm,PolybenchC,mvt,0.012127947219541003,execution_time,VersionABCD
+2022-06-07,wasm,PolybenchC,mvt,0.01216591695415347,execution_time,VersionABCD
+2022-06-08,wasm,PolybenchC,mvt,0.012211159762725982,execution_time,VersionABCD
+2022-06-09,wasm,PolybenchC,mvt,0.012243644668224871,execution_time,VersionABCD
+2022-06-10,wasm,PolybenchC,mvt,0.012266518183606885,execution_time,VersionABCD
+2022-06-11,wasm,PolybenchC,mvt,0.012278027335130266,execution_time,VersionABCD
+2022-06-12,wasm,PolybenchC,mvt,0.01228986739132867,execution_time,VersionABCD
+2022-06-13,wasm,PolybenchC,mvt,0.012337362143716253,execution_time,VersionABCD
+2022-06-14,wasm,PolybenchC,mvt,0.012348047642695216,execution_time,VersionABCD
+2022-06-15,wasm,PolybenchC,mvt,0.012396497307004524,execution_time,VersionABCD
+2022-06-16,wasm,PolybenchC,mvt,0.012407821075165056,execution_time,VersionABCD
+2022-06-17,wasm,PolybenchC,mvt,0.012420929115223998,execution_time,VersionABCD
+2022-06-18,wasm,PolybenchC,mvt,0.012437293223561564,execution_time,VersionABCD
+2022-06-19,wasm,PolybenchC,mvt,0.012486218645783375,execution_time,VersionABCD
+2022-06-20,wasm,PolybenchC,mvt,0.01252812072510531,execution_time,VersionABCD
+2022-06-21,wasm,PolybenchC,mvt,0.012571645542747464,execution_time,VersionABCD
+2022-06-22,wasm,PolybenchC,mvt,0.012617111058986274,execution_time,VersionABCD
+2022-06-23,wasm,PolybenchC,mvt,0.01264052696818728,execution_time,VersionABCD
+2022-06-24,wasm,PolybenchC,mvt,0.012675846527642202,execution_time,VersionABCD
+2022-06-25,wasm,PolybenchC,mvt,0.012712653384213875,execution_time,VersionABCD
+2022-06-26,wasm,PolybenchC,mvt,0.012746383286887559,execution_time,VersionABCD
+2022-06-27,wasm,PolybenchC,mvt,0.012773074850748875,execution_time,VersionABCD
+2022-06-28,wasm,PolybenchC,mvt,0.012822109861743116,execution_time,VersionABCD
+2022-06-29,wasm,PolybenchC,mvt,0.012869122376435825,execution_time,VersionABCD
+2022-06-30,wasm,PolybenchC,mvt,0.012888867599068593,execution_time,VersionABCD
+2022-07-01,wasm,PolybenchC,mvt,0.012935733602529304,execution_time,VersionABCD
+2022-07-02,wasm,PolybenchC,mvt,0.012972968619661587,execution_time,VersionABCD
+2022-07-03,wasm,PolybenchC,mvt,0.01299569875102962,execution_time,VersionABCD
+2022-07-04,wasm,PolybenchC,mvt,0.013010204523258443,execution_time,VersionABCD
+2022-07-05,wasm,PolybenchC,mvt,0.013044326339598969,execution_time,VersionABCD
+2022-07-06,wasm,PolybenchC,mvt,0.0130434718245724,execution_time,VersionABCD
+2022-07-07,wasm,PolybenchC,mvt,0.013042864721504498,execution_time,VersionABCD
+2022-07-08,wasm,PolybenchC,mvt,0.013042026824607537,execution_time,VersionABCD
+2022-07-09,wasm,PolybenchC,mvt,0.01304139563803232,execution_time,VersionABCD
+2022-07-10,wasm,PolybenchC,mvt,0.01304042546865143,execution_time,VersionABCD
+2022-07-11,wasm,PolybenchC,mvt,0.013039677442435423,execution_time,VersionABCD
+2022-07-12,wasm,PolybenchC,mvt,0.013038858830976023,execution_time,VersionABCD
+2022-07-13,wasm,PolybenchC,mvt,0.013038388833628359,execution_time,VersionABCD
+2022-07-14,wasm,PolybenchC,mvt,0.013038371607353076,execution_time,VersionABCD
+2022-07-15,wasm,PolybenchC,mvt,0.013037896522542147,execution_time,VersionABCD
+2022-07-16,wasm,PolybenchC,mvt,0.013037586223165455,execution_time,VersionABCD
+2022-07-17,wasm,PolybenchC,mvt,0.013037189910383782,execution_time,VersionABCD
+2022-07-18,wasm,PolybenchC,mvt,0.013036316348728053,execution_time,VersionABCD
+2022-07-19,wasm,PolybenchC,mvt,0.013035546945231008,execution_time,VersionABCD
+2022-07-20,wasm,PolybenchC,mvt,0.013035388348983016,execution_time,VersionABCD
+2022-07-21,wasm,PolybenchC,mvt,0.01303524752121139,execution_time,VersionABCD
+2022-07-22,wasm,PolybenchC,mvt,0.013034848213412466,execution_time,VersionABCD
+2022-07-23,wasm,PolybenchC,mvt,0.013034580671923719,execution_time,VersionABCD
+2022-07-24,wasm,PolybenchC,mvt,0.013034050509520306,execution_time,VersionABCD
+2022-07-25,wasm,PolybenchC,mvt,0.01303352583605127,execution_time,VersionABCD
+2022-07-26,wasm,PolybenchC,mvt,0.013032969449357118,execution_time,VersionABCD
+2022-07-27,wasm,PolybenchC,mvt,0.013032027216389042,execution_time,VersionABCD
+2022-07-28,wasm,PolybenchC,mvt,0.013031509695878735,execution_time,VersionABCD
+2022-07-29,wasm,PolybenchC,mvt,0.013031385830153456,execution_time,VersionABCD
+2022-07-30,wasm,PolybenchC,mvt,0.013030632494391356,execution_time,VersionABCD
+2022-07-31,wasm,PolybenchC,mvt,0.013029892690674953,execution_time,VersionABCD
+2022-08-01,wasm,PolybenchC,mvt,0.013029076458384546,execution_time,VersionABCD
+2022-08-02,wasm,PolybenchC,mvt,0.01302867008856697,execution_time,VersionABCD
+2022-08-03,wasm,PolybenchC,mvt,0.013027721218457949,execution_time,VersionABCD
+2022-08-04,wasm,PolybenchC,mvt,0.013027620590779387,execution_time,VersionABCD
+2022-08-05,wasm,PolybenchC,mvt,0.013027511973843012,execution_time,VersionABCD
+2022-08-06,wasm,PolybenchC,mvt,0.013027469561953452,execution_time,VersionABCD
+2022-08-07,wasm,PolybenchC,mvt,0.013027406323701102,execution_time,VersionABCD
+2022-08-08,wasm,PolybenchC,mvt,0.013026673688129223,execution_time,VersionABCD
+2022-08-09,wasm,PolybenchC,mvt,0.013026175888643033,execution_time,VersionABCD
+2022-08-10,wasm,PolybenchC,mvt,0.013025632654841144,execution_time,VersionABCD
+2022-08-11,wasm,PolybenchC,mvt,0.013025009236858972,execution_time,VersionABCD
+2022-08-12,wasm,PolybenchC,mvt,0.013024795950763226,execution_time,VersionABCD
+2022-08-13,wasm,PolybenchC,mvt,0.0130245794701329,execution_time,VersionABCD
+2022-08-14,wasm,PolybenchC,mvt,0.013024554363860503,execution_time,VersionABCD
+2022-08-15,wasm,PolybenchC,mvt,0.013024457718197014,execution_time,VersionABCD
+2022-08-16,wasm,PolybenchC,mvt,0.013023941060663801,execution_time,VersionABCD
+2022-08-17,wasm,PolybenchC,mvt,0.013023210741484015,execution_time,VersionABCD
+2022-08-18,wasm,PolybenchC,mvt,0.013022936569228158,execution_time,VersionABCD
+2022-08-19,wasm,PolybenchC,mvt,0.013022293259680306,execution_time,VersionABCD
+2022-08-20,wasm,PolybenchC,mvt,0.013021842310239602,execution_time,VersionABCD
+2022-08-21,wasm,PolybenchC,mvt,0.013021000261704217,execution_time,VersionABCD
+2022-08-22,wasm,PolybenchC,mvt,0.013020293939544188,execution_time,VersionABCD
+2022-08-23,wasm,PolybenchC,mvt,0.013019299250026083,execution_time,VersionABCD
+2022-08-24,wasm,PolybenchC,mvt,0.013018962539006392,execution_time,VersionABCD
+2022-08-25,wasm,PolybenchC,mvt,0.013018807708149723,execution_time,VersionABCD
+2022-08-26,wasm,PolybenchC,mvt,0.01301810116580042,execution_time,VersionABCD
+2022-08-27,wasm,PolybenchC,mvt,0.013017674646115104,execution_time,VersionABCD
+2022-08-28,wasm,PolybenchC,mvt,0.013017057206122402,execution_time,VersionABCD
+2022-08-29,wasm,PolybenchC,mvt,0.013016946483920822,execution_time,VersionABCD
+2022-08-30,wasm,PolybenchC,mvt,0.013016806743762207,execution_time,VersionABCD
+2022-08-31,wasm,PolybenchC,mvt,0.013016256234025268,execution_time,VersionABCD
+2022-09-01,wasm,PolybenchC,mvt,0.013015432658194956,execution_time,VersionABCD
+2022-09-02,wasm,PolybenchC,mvt,0.013014742989560511,execution_time,VersionABCD
+2022-09-03,wasm,PolybenchC,mvt,0.013014649026967001,execution_time,VersionABCD
+2022-09-04,wasm,PolybenchC,mvt,0.013014038708899072,execution_time,VersionABCD
+2022-09-05,wasm,PolybenchC,mvt,0.013013528754752196,execution_time,VersionABCD
+2022-09-06,wasm,PolybenchC,mvt,0.013012898320486691,execution_time,VersionABCD
+2022-09-07,wasm,PolybenchC,mvt,0.013012154492443036,execution_time,VersionABCD
+2022-09-08,wasm,PolybenchC,mvt,0.013011776327035197,execution_time,VersionABCD
+2022-09-09,wasm,PolybenchC,mvt,0.01301102552638069,execution_time,VersionABCD
+2022-09-10,wasm,PolybenchC,mvt,0.013010033310069382,execution_time,VersionABCD
+2022-09-11,wasm,PolybenchC,mvt,0.013009502489109816,execution_time,VersionABCD
+2022-09-12,wasm,PolybenchC,mvt,0.013008723446967104,execution_time,VersionABCD
+2022-09-13,wasm,PolybenchC,mvt,0.013008448000493169,execution_time,VersionABCD
+2022-09-14,wasm,PolybenchC,mvt,0.013007632607272506,execution_time,VersionABCD
+2022-09-15,wasm,PolybenchC,mvt,0.013006894847542609,execution_time,VersionABCD
+2022-09-16,wasm,PolybenchC,mvt,0.013005999491586238,execution_time,VersionABCD
+2022-09-17,wasm,PolybenchC,mvt,0.013005641584285112,execution_time,VersionABCD
+2022-09-18,wasm,PolybenchC,mvt,0.013004665361092021,execution_time,VersionABCD
+2022-09-19,wasm,PolybenchC,mvt,0.013003853086065597,execution_time,VersionABCD
+2022-09-20,wasm,PolybenchC,mvt,0.013003741220582255,execution_time,VersionABCD
+2022-09-21,wasm,PolybenchC,mvt,0.013002788213651587,execution_time,VersionABCD
+2022-09-22,wasm,PolybenchC,mvt,0.013002374469744919,execution_time,VersionABCD
+2022-09-23,wasm,PolybenchC,mvt,0.013002113803853707,execution_time,VersionABCD
+2022-09-24,wasm,PolybenchC,mvt,0.013001813222693462,execution_time,VersionABCD
+2022-09-25,wasm,PolybenchC,mvt,0.01300167902944186,execution_time,VersionABCD
+2022-09-26,wasm,PolybenchC,mvt,0.013000961522619155,execution_time,VersionABCD
+2022-09-27,wasm,PolybenchC,mvt,0.01300026502367279,execution_time,VersionABCD
+2022-09-28,wasm,PolybenchC,mvt,0.013000140286521373,execution_time,VersionABCD
+2022-09-29,wasm,PolybenchC,mvt,0.01299933044530994,execution_time,VersionABCD
+2022-09-30,wasm,PolybenchC,mvt,0.012998432717430087,execution_time,VersionABCD
+2022-10-01,wasm,PolybenchC,mvt,0.012998195874142275,execution_time,VersionABCD
+2022-10-02,wasm,PolybenchC,mvt,0.012998090124692855,execution_time,VersionABCD
+2022-10-03,wasm,PolybenchC,mvt,0.012997417111337013,execution_time,VersionABCD
+2022-10-04,wasm,PolybenchC,mvt,0.012997351897238435,execution_time,VersionABCD
+2022-10-05,wasm,PolybenchC,mvt,0.012997344843446387,execution_time,VersionABCD
+2022-10-06,wasm,PolybenchC,mvt,0.012996728327824069,execution_time,VersionABCD
+2022-10-07,wasm,PolybenchC,mvt,0.01299605734560889,execution_time,VersionABCD
+2022-10-08,wasm,PolybenchC,mvt,0.012995898220949832,execution_time,VersionABCD
+2022-10-09,wasm,PolybenchC,mvt,0.012995222606209595,execution_time,VersionABCD
+2022-10-10,wasm,PolybenchC,mvt,0.01299490373045985,execution_time,VersionABCD
+2022-10-11,wasm,PolybenchC,mvt,0.01299483679159921,execution_time,VersionABCD
+2022-10-12,wasm,PolybenchC,mvt,0.012994490750135656,execution_time,VersionABCD
+2022-10-13,wasm,PolybenchC,mvt,0.012994415462366885,execution_time,VersionABCD
+2022-10-14,wasm,PolybenchC,mvt,0.012994135661209293,execution_time,VersionABCD
+2022-10-15,wasm,PolybenchC,mvt,0.012993257739582105,execution_time,VersionABCD
+2022-10-16,wasm,PolybenchC,mvt,0.012992632763410311,execution_time,VersionABCD
+2022-10-17,wasm,PolybenchC,mvt,0.012991841778723787,execution_time,VersionABCD
+2022-10-18,wasm,PolybenchC,mvt,0.01299097068734815,execution_time,VersionABCD
+2022-10-19,wasm,PolybenchC,mvt,0.01299033996798625,execution_time,VersionABCD
+2022-10-20,wasm,PolybenchC,mvt,0.012990243995272563,execution_time,VersionABCD
+2022-10-21,wasm,PolybenchC,mvt,0.012989457336206434,execution_time,VersionABCD
+2022-10-22,wasm,PolybenchC,mvt,0.012989298751944317,execution_time,VersionABCD
+2022-10-23,wasm,PolybenchC,mvt,0.012988514061278671,execution_time,VersionABCD
+2022-10-24,wasm,PolybenchC,mvt,0.01298753548188879,execution_time,VersionABCD
+2022-10-25,wasm,PolybenchC,mvt,0.012986697280608738,execution_time,VersionABCD
+2022-10-26,wasm,PolybenchC,mvt,0.012986555565870118,execution_time,VersionABCD
+2022-10-27,wasm,PolybenchC,mvt,0.012985603726251904,execution_time,VersionABCD
+2022-10-28,wasm,PolybenchC,mvt,0.012985542970364961,execution_time,VersionABCD
+2022-10-29,wasm,PolybenchC,mvt,0.012984692477627622,execution_time,VersionABCD
+2022-10-30,wasm,PolybenchC,mvt,0.012983899688804722,execution_time,VersionABCD
+2022-10-31,wasm,PolybenchC,mvt,0.012983802180835419,execution_time,VersionABCD
+2022-11-01,wasm,PolybenchC,mvt,0.012983129131095521,execution_time,VersionABCD
+2022-11-02,wasm,PolybenchC,mvt,0.012982860324819703,execution_time,VersionABCD
+2022-11-03,wasm,PolybenchC,mvt,0.012981934229720186,execution_time,VersionABCD
+2022-11-04,wasm,PolybenchC,mvt,0.012981021729221229,execution_time,VersionABCD
+2022-11-05,wasm,PolybenchC,mvt,0.012980877488724436,execution_time,VersionABCD
+2022-11-06,wasm,PolybenchC,mvt,0.012980401696820259,execution_time,VersionABCD
+2022-11-07,wasm,PolybenchC,mvt,0.012980119220728272,execution_time,VersionABCD
+2022-11-08,wasm,PolybenchC,mvt,0.012979379846581715,execution_time,VersionABCD
+2022-11-09,wasm,PolybenchC,mvt,0.012978532550045297,execution_time,VersionABCD
+2022-11-10,wasm,PolybenchC,mvt,0.012978238532003226,execution_time,VersionABCD
+2022-11-11,wasm,PolybenchC,mvt,0.012977534411178129,execution_time,VersionABCD
+2022-11-12,wasm,PolybenchC,mvt,0.012977030674880909,execution_time,VersionABCD
+2022-11-13,wasm,PolybenchC,mvt,0.012976638736370465,execution_time,VersionABCD
+2022-11-14,wasm,PolybenchC,mvt,0.012976361916014484,execution_time,VersionABCD
+2022-11-15,wasm,PolybenchC,mvt,0.01297620353294565,execution_time,VersionABCD
+2022-11-16,wasm,PolybenchC,mvt,0.012975500629899536,execution_time,VersionABCD
+2022-11-17,wasm,PolybenchC,mvt,0.012975390693273239,execution_time,VersionABCD
+2022-11-18,wasm,PolybenchC,mvt,0.012975028212867808,execution_time,VersionABCD
+2022-11-19,wasm,PolybenchC,mvt,0.012974513502914188,execution_time,VersionABCD
+2022-11-20,wasm,PolybenchC,mvt,0.012974173060981708,execution_time,VersionABCD
+2022-11-21,wasm,PolybenchC,mvt,0.01297321922158435,execution_time,VersionABCD
+2022-11-22,wasm,PolybenchC,mvt,0.012973070867015657,execution_time,VersionABCD
+2022-11-23,wasm,PolybenchC,mvt,0.012972814679346498,execution_time,VersionABCD
+2022-11-24,wasm,PolybenchC,mvt,0.012972070120483884,execution_time,VersionABCD
+2022-11-25,wasm,PolybenchC,mvt,0.012971999317625939,execution_time,VersionABCD
+2022-11-26,wasm,PolybenchC,mvt,0.012971496889998334,execution_time,VersionABCD
+2022-11-27,wasm,PolybenchC,mvt,0.01297107003008001,execution_time,VersionABCD
+2022-11-28,wasm,PolybenchC,mvt,0.012970752727064373,execution_time,VersionABCD
+2022-11-29,wasm,PolybenchC,mvt,0.012969994809195312,execution_time,VersionABCD
+2022-11-30,wasm,PolybenchC,mvt,0.012969381384384032,execution_time,VersionABCD
+2022-12-01,wasm,PolybenchC,mvt,0.01296893463306325,execution_time,VersionABCD
+2022-12-02,wasm,PolybenchC,mvt,0.012968691333117125,execution_time,VersionABCD
+2022-12-03,wasm,PolybenchC,mvt,0.012968365693252406,execution_time,VersionABCD
+2022-12-04,wasm,PolybenchC,mvt,0.012968226186336085,execution_time,VersionABCD
+2022-12-05,wasm,PolybenchC,mvt,0.012968110860896866,execution_time,VersionABCD
+2022-12-06,wasm,PolybenchC,mvt,0.012967502184658787,execution_time,VersionABCD
+2022-12-07,wasm,PolybenchC,mvt,0.012967454237507316,execution_time,VersionABCD
+2022-12-08,wasm,PolybenchC,mvt,0.012966488934676201,execution_time,VersionABCD
+2022-12-09,wasm,PolybenchC,mvt,0.01296633090073683,execution_time,VersionABCD
+2022-12-10,wasm,PolybenchC,mvt,0.012965910634987147,execution_time,VersionABCD
+2022-12-11,wasm,PolybenchC,mvt,0.012965370359685223,execution_time,VersionABCD
+2022-12-12,wasm,PolybenchC,mvt,0.012964896977601234,execution_time,VersionABCD
+2022-12-13,wasm,PolybenchC,mvt,0.012964678616456171,execution_time,VersionABCD
+2022-12-14,wasm,PolybenchC,mvt,0.012963825087619296,execution_time,VersionABCD
+2022-12-15,wasm,PolybenchC,mvt,0.012963694219637393,execution_time,VersionABCD
+2022-12-16,wasm,PolybenchC,mvt,0.012963046810708825,execution_time,VersionABCD
+2022-12-17,wasm,PolybenchC,mvt,0.012962680822655349,execution_time,VersionABCD
+2022-12-18,wasm,PolybenchC,mvt,0.01296208752516499,execution_time,VersionABCD
+2022-12-19,wasm,PolybenchC,mvt,0.012961420540778715,execution_time,VersionABCD
+2022-12-20,wasm,PolybenchC,mvt,0.012960620123171462,execution_time,VersionABCD
+2022-12-21,wasm,PolybenchC,mvt,0.012960614825106883,execution_time,VersionABCD
+2022-12-22,wasm,PolybenchC,mvt,0.0129603924527629,execution_time,VersionABCD
+2022-12-23,wasm,PolybenchC,mvt,0.012959584508574457,execution_time,VersionABCD
+2022-12-24,wasm,PolybenchC,mvt,0.012959397007702995,execution_time,VersionABCD
+2022-12-25,wasm,PolybenchC,mvt,0.012958923057102036,execution_time,VersionABCD
+2022-12-26,wasm,PolybenchC,mvt,0.012958609390586564,execution_time,VersionABCD
+2022-12-27,wasm,PolybenchC,mvt,0.012958169765301576,execution_time,VersionABCD
+2022-12-28,wasm,PolybenchC,mvt,0.012957540861247183,execution_time,VersionABCD
+2022-12-29,wasm,PolybenchC,mvt,0.012957389343156945,execution_time,VersionABCD
+2022-12-30,wasm,PolybenchC,mvt,0.012956580473711071,execution_time,VersionABCD
+2022-12-31,wasm,PolybenchC,mvt,0.01295657318150868,execution_time,VersionABCD
+2022-01-01,sm-base,PolybenchC,mvt,0.015324796188290817,execution_time,VersionABCD
+2022-01-02,sm-base,PolybenchC,mvt,0.015351621739634533,execution_time,VersionABCD
+2022-01-03,sm-base,PolybenchC,mvt,0.015373105662782832,execution_time,VersionABCD
+2022-01-04,sm-base,PolybenchC,mvt,0.015407740582450804,execution_time,VersionABCD
+2022-01-05,sm-base,PolybenchC,mvt,0.015445424378202946,execution_time,VersionABCD
+2022-01-06,sm-base,PolybenchC,mvt,0.015435786158911677,execution_time,VersionABCD
+2022-01-07,sm-base,PolybenchC,mvt,0.015438598329271613,execution_time,VersionABCD
+2022-01-08,sm-base,PolybenchC,mvt,0.015461157974986968,execution_time,VersionABCD
+2022-01-09,sm-base,PolybenchC,mvt,0.015464330915068802,execution_time,VersionABCD
+2022-01-10,sm-base,PolybenchC,mvt,0.015471775847086281,execution_time,VersionABCD
+2022-01-11,sm-base,PolybenchC,mvt,0.015492686978964639,execution_time,VersionABCD
+2022-01-12,sm-base,PolybenchC,mvt,0.015501815789647867,execution_time,VersionABCD
+2022-01-13,sm-base,PolybenchC,mvt,0.015509581106909035,execution_time,VersionABCD
+2022-01-14,sm-base,PolybenchC,mvt,0.015523440446323736,execution_time,VersionABCD
+2022-01-15,sm-base,PolybenchC,mvt,0.015527330366311171,execution_time,VersionABCD
+2022-01-16,sm-base,PolybenchC,mvt,0.015556750485771714,execution_time,VersionABCD
+2022-01-17,sm-base,PolybenchC,mvt,0.01554855979330188,execution_time,VersionABCD
+2022-01-18,sm-base,PolybenchC,mvt,0.015573757988997272,execution_time,VersionABCD
+2022-01-19,sm-base,PolybenchC,mvt,0.015582894337363316,execution_time,VersionABCD
+2022-01-20,sm-base,PolybenchC,mvt,0.015608184905465517,execution_time,VersionABCD
+2022-01-21,sm-base,PolybenchC,mvt,0.01563525007396179,execution_time,VersionABCD
+2022-01-22,sm-base,PolybenchC,mvt,0.01563755852457942,execution_time,VersionABCD
+2022-01-23,sm-base,PolybenchC,mvt,0.015642564717153046,execution_time,VersionABCD
+2022-01-24,sm-base,PolybenchC,mvt,0.015637605457234093,execution_time,VersionABCD
+2022-01-25,sm-base,PolybenchC,mvt,0.01563825764524134,execution_time,VersionABCD
+2022-01-26,sm-base,PolybenchC,mvt,0.015667072378721277,execution_time,VersionABCD
+2022-01-27,sm-base,PolybenchC,mvt,0.015686205920415388,execution_time,VersionABCD
+2022-01-28,sm-base,PolybenchC,mvt,0.015715377435276328,execution_time,VersionABCD
+2022-01-29,sm-base,PolybenchC,mvt,0.015713679242117643,execution_time,VersionABCD
+2022-01-30,sm-base,PolybenchC,mvt,0.01574068508358925,execution_time,VersionABCD
+2022-01-31,sm-base,PolybenchC,mvt,0.015757706290020785,execution_time,VersionABCD
+2022-02-01,sm-base,PolybenchC,mvt,0.015797099771196702,execution_time,VersionABCD
+2022-02-02,sm-base,PolybenchC,mvt,0.01581892709839684,execution_time,VersionABCD
+2022-02-03,sm-base,PolybenchC,mvt,0.015854066974018925,execution_time,VersionABCD
+2022-02-04,sm-base,PolybenchC,mvt,0.015845117911047594,execution_time,VersionABCD
+2022-02-05,sm-base,PolybenchC,mvt,0.015851570428272243,execution_time,VersionABCD
+2022-02-06,sm-base,PolybenchC,mvt,0.015867243554789755,execution_time,VersionABCD
+2022-02-07,sm-base,PolybenchC,mvt,0.015886890208829857,execution_time,VersionABCD
+2022-02-08,sm-base,PolybenchC,mvt,0.015914926814525974,execution_time,VersionABCD
+2022-02-09,sm-base,PolybenchC,mvt,0.015929150579297082,execution_time,VersionABCD
+2022-02-10,sm-base,PolybenchC,mvt,0.015941079477965827,execution_time,VersionABCD
+2022-02-11,sm-base,PolybenchC,mvt,0.01597403344978095,execution_time,VersionABCD
+2022-02-12,sm-base,PolybenchC,mvt,0.015973575029791093,execution_time,VersionABCD
+2022-02-13,sm-base,PolybenchC,mvt,0.015978054469625812,execution_time,VersionABCD
+2022-02-14,sm-base,PolybenchC,mvt,0.015997589142082852,execution_time,VersionABCD
+2022-02-15,sm-base,PolybenchC,mvt,0.01599552038764296,execution_time,VersionABCD
+2022-02-16,sm-base,PolybenchC,mvt,0.016021004976875506,execution_time,VersionABCD
+2022-02-17,sm-base,PolybenchC,mvt,0.01602284894444472,execution_time,VersionABCD
+2022-02-18,sm-base,PolybenchC,mvt,0.016043746599094723,execution_time,VersionABCD
+2022-02-19,sm-base,PolybenchC,mvt,0.01606765790280896,execution_time,VersionABCD
+2022-02-20,sm-base,PolybenchC,mvt,0.016058220005228267,execution_time,VersionABCD
+2022-02-21,sm-base,PolybenchC,mvt,0.01608254190589812,execution_time,VersionABCD
+2022-02-22,sm-base,PolybenchC,mvt,0.016073388620199698,execution_time,VersionABCD
+2022-02-23,sm-base,PolybenchC,mvt,0.01607534207802134,execution_time,VersionABCD
+2022-02-24,sm-base,PolybenchC,mvt,0.01611493438507663,execution_time,VersionABCD
+2022-02-25,sm-base,PolybenchC,mvt,0.016114507579735905,execution_time,VersionABCD
+2022-02-26,sm-base,PolybenchC,mvt,0.016121116413661655,execution_time,VersionABCD
+2022-02-27,sm-base,PolybenchC,mvt,0.01613137262213833,execution_time,VersionABCD
+2022-02-28,sm-base,PolybenchC,mvt,0.016160075780384805,execution_time,VersionABCD
+2022-03-01,sm-base,PolybenchC,mvt,0.016154369744691466,execution_time,VersionABCD
+2022-03-02,sm-base,PolybenchC,mvt,0.016166435774206896,execution_time,VersionABCD
+2022-03-03,sm-base,PolybenchC,mvt,0.016181312935065504,execution_time,VersionABCD
+2022-03-04,sm-base,PolybenchC,mvt,0.016197081178790703,execution_time,VersionABCD
+2022-03-05,sm-base,PolybenchC,mvt,0.016196359739994275,execution_time,VersionABCD
+2022-03-06,sm-base,PolybenchC,mvt,0.016188764208316393,execution_time,VersionABCD
+2022-03-07,sm-base,PolybenchC,mvt,0.01620270155057398,execution_time,VersionABCD
+2022-03-08,sm-base,PolybenchC,mvt,0.016219523404030958,execution_time,VersionABCD
+2022-03-09,sm-base,PolybenchC,mvt,0.01625087663047515,execution_time,VersionABCD
+2022-03-10,sm-base,PolybenchC,mvt,0.016266574277769973,execution_time,VersionABCD
+2022-03-11,sm-base,PolybenchC,mvt,0.01628779634689741,execution_time,VersionABCD
+2022-03-12,sm-base,PolybenchC,mvt,0.016316971441919983,execution_time,VersionABCD
+2022-03-13,sm-base,PolybenchC,mvt,0.01634954494466973,execution_time,VersionABCD
+2022-03-14,sm-base,PolybenchC,mvt,0.016367562671547212,execution_time,VersionABCD
+2022-03-15,sm-base,PolybenchC,mvt,0.01638928722811631,execution_time,VersionABCD
+2022-03-16,sm-base,PolybenchC,mvt,0.01640535979331075,execution_time,VersionABCD
+2022-03-17,sm-base,PolybenchC,mvt,0.016410186650004228,execution_time,VersionABCD
+2022-03-18,sm-base,PolybenchC,mvt,0.016448830916171348,execution_time,VersionABCD
+2022-03-19,sm-base,PolybenchC,mvt,0.016449659945312983,execution_time,VersionABCD
+2022-03-20,sm-base,PolybenchC,mvt,0.016480228878061998,execution_time,VersionABCD
+2022-03-21,sm-base,PolybenchC,mvt,0.01648627257588495,execution_time,VersionABCD
+2022-03-22,sm-base,PolybenchC,mvt,0.016511775193920726,execution_time,VersionABCD
+2022-03-23,sm-base,PolybenchC,mvt,0.01654788675847449,execution_time,VersionABCD
+2022-03-24,sm-base,PolybenchC,mvt,0.016569660081865806,execution_time,VersionABCD
+2022-03-25,sm-base,PolybenchC,mvt,0.016565512919215045,execution_time,VersionABCD
+2022-03-26,sm-base,PolybenchC,mvt,0.016577457727223403,execution_time,VersionABCD
+2022-03-27,sm-base,PolybenchC,mvt,0.016617131049712637,execution_time,VersionABCD
+2022-03-28,sm-base,PolybenchC,mvt,0.016622851487955306,execution_time,VersionABCD
+2022-03-29,sm-base,PolybenchC,mvt,0.01661455271131072,execution_time,VersionABCD
+2022-03-30,sm-base,PolybenchC,mvt,0.01664606358181904,execution_time,VersionABCD
+2022-03-31,sm-base,PolybenchC,mvt,0.016655526633895728,execution_time,VersionABCD
+2022-04-01,sm-base,PolybenchC,mvt,0.0166746432342965,execution_time,VersionABCD
+2022-04-02,sm-base,PolybenchC,mvt,0.016670194431307926,execution_time,VersionABCD
+2022-04-03,sm-base,PolybenchC,mvt,0.01667870045211129,execution_time,VersionABCD
+2022-04-04,sm-base,PolybenchC,mvt,0.016704779720455875,execution_time,VersionABCD
+2022-04-05,sm-base,PolybenchC,mvt,0.01671099439615777,execution_time,VersionABCD
+2022-04-06,sm-base,PolybenchC,mvt,0.016739010781894454,execution_time,VersionABCD
+2022-04-07,sm-base,PolybenchC,mvt,0.01673175440977059,execution_time,VersionABCD
+2022-04-08,sm-base,PolybenchC,mvt,0.016746113973431183,execution_time,VersionABCD
+2022-04-09,sm-base,PolybenchC,mvt,0.016781079900475695,execution_time,VersionABCD
+2022-04-10,sm-base,PolybenchC,mvt,0.016792584484576982,execution_time,VersionABCD
+2022-04-11,sm-base,PolybenchC,mvt,0.01682950058180808,execution_time,VersionABCD
+2022-04-12,sm-base,PolybenchC,mvt,0.016861434902704857,execution_time,VersionABCD
+2022-04-13,sm-base,PolybenchC,mvt,0.01688343629088747,execution_time,VersionABCD
+2022-04-14,sm-base,PolybenchC,mvt,0.01690891952022187,execution_time,VersionABCD
+2022-04-15,sm-base,PolybenchC,mvt,0.01693746419502302,execution_time,VersionABCD
+2022-04-16,sm-base,PolybenchC,mvt,0.01696019812728054,execution_time,VersionABCD
+2022-04-17,sm-base,PolybenchC,mvt,0.016974480319720493,execution_time,VersionABCD
+2022-04-18,sm-base,PolybenchC,mvt,0.0170059024076515,execution_time,VersionABCD
+2022-04-19,sm-base,PolybenchC,mvt,0.01699997996670937,execution_time,VersionABCD
+2022-04-20,sm-base,PolybenchC,mvt,0.01701845432599288,execution_time,VersionABCD
+2022-04-21,sm-base,PolybenchC,mvt,0.017041987906722855,execution_time,VersionABCD
+2022-04-22,sm-base,PolybenchC,mvt,0.017066050934942838,execution_time,VersionABCD
+2022-04-23,sm-base,PolybenchC,mvt,0.01709856250560118,execution_time,VersionABCD
+2022-04-24,sm-base,PolybenchC,mvt,0.01710144345277289,execution_time,VersionABCD
+2022-04-25,sm-base,PolybenchC,mvt,0.017100005456991054,execution_time,VersionABCD
+2022-04-26,sm-base,PolybenchC,mvt,0.017091479168258983,execution_time,VersionABCD
+2022-04-27,sm-base,PolybenchC,mvt,0.017090038016378258,execution_time,VersionABCD
+2022-04-28,sm-base,PolybenchC,mvt,0.017128428083843027,execution_time,VersionABCD
+2022-04-29,sm-base,PolybenchC,mvt,0.017138665952495972,execution_time,VersionABCD
+2022-04-30,sm-base,PolybenchC,mvt,0.01717003798993223,execution_time,VersionABCD
+2022-05-01,sm-base,PolybenchC,mvt,0.017201176289044443,execution_time,VersionABCD
+2022-05-02,sm-base,PolybenchC,mvt,0.0171963813891233,execution_time,VersionABCD
+2022-05-03,sm-base,PolybenchC,mvt,0.017201010448262048,execution_time,VersionABCD
+2022-05-04,sm-base,PolybenchC,mvt,0.01719809233885164,execution_time,VersionABCD
+2022-05-05,sm-base,PolybenchC,mvt,0.01723389834284073,execution_time,VersionABCD
+2022-05-06,sm-base,PolybenchC,mvt,0.017244061854764646,execution_time,VersionABCD
+2022-05-07,sm-base,PolybenchC,mvt,0.017244160774129665,execution_time,VersionABCD
+2022-05-08,sm-base,PolybenchC,mvt,0.017265888746210926,execution_time,VersionABCD
+2022-05-09,sm-base,PolybenchC,mvt,0.01730494035802921,execution_time,VersionABCD
+2022-05-10,sm-base,PolybenchC,mvt,0.0172958690519046,execution_time,VersionABCD
+2022-05-11,sm-base,PolybenchC,mvt,0.017299921357249417,execution_time,VersionABCD
+2022-05-12,sm-base,PolybenchC,mvt,0.01733383629280471,execution_time,VersionABCD
+2022-05-13,sm-base,PolybenchC,mvt,0.017366588747941825,execution_time,VersionABCD
+2022-05-14,sm-base,PolybenchC,mvt,0.01740579897436879,execution_time,VersionABCD
+2022-05-15,sm-base,PolybenchC,mvt,0.017405141474426716,execution_time,VersionABCD
+2022-05-16,sm-base,PolybenchC,mvt,0.01740764614929204,execution_time,VersionABCD
+2022-05-17,sm-base,PolybenchC,mvt,0.017425050529461136,execution_time,VersionABCD
+2022-05-18,sm-base,PolybenchC,mvt,0.017463702748657686,execution_time,VersionABCD
+2022-05-19,sm-base,PolybenchC,mvt,0.01745494438139749,execution_time,VersionABCD
+2022-05-20,sm-base,PolybenchC,mvt,0.01749381826579651,execution_time,VersionABCD
+2022-05-21,sm-base,PolybenchC,mvt,0.017523999197320544,execution_time,VersionABCD
+2022-05-22,sm-base,PolybenchC,mvt,0.017551189907515138,execution_time,VersionABCD
+2022-05-23,sm-base,PolybenchC,mvt,0.017586118603377186,execution_time,VersionABCD
+2022-05-24,sm-base,PolybenchC,mvt,0.017588630178423954,execution_time,VersionABCD
+2022-05-25,sm-base,PolybenchC,mvt,0.01759086915624457,execution_time,VersionABCD
+2022-05-26,sm-base,PolybenchC,mvt,0.017601860826954377,execution_time,VersionABCD
+2022-05-27,sm-base,PolybenchC,mvt,0.017593146133693182,execution_time,VersionABCD
+2022-05-28,sm-base,PolybenchC,mvt,0.017593404192958774,execution_time,VersionABCD
+2022-05-29,sm-base,PolybenchC,mvt,0.017616348922665337,execution_time,VersionABCD
+2022-05-30,sm-base,PolybenchC,mvt,0.01762646537613224,execution_time,VersionABCD
+2022-05-31,sm-base,PolybenchC,mvt,0.017638644380045337,execution_time,VersionABCD
+2022-06-01,sm-base,PolybenchC,mvt,0.01764047128603829,execution_time,VersionABCD
+2022-06-02,sm-base,PolybenchC,mvt,0.017661349371406884,execution_time,VersionABCD
+2022-06-03,sm-base,PolybenchC,mvt,0.01767184105335173,execution_time,VersionABCD
+2022-06-04,sm-base,PolybenchC,mvt,0.01769035194443467,execution_time,VersionABCD
+2022-06-05,sm-base,PolybenchC,mvt,0.01770061174877739,execution_time,VersionABCD
+2022-06-06,sm-base,PolybenchC,mvt,0.017690672674662514,execution_time,VersionABCD
+2022-06-07,sm-base,PolybenchC,mvt,0.017691543465590515,execution_time,VersionABCD
+2022-06-08,sm-base,PolybenchC,mvt,0.017701479139028538,execution_time,VersionABCD
+2022-06-09,sm-base,PolybenchC,mvt,0.017693843788304117,execution_time,VersionABCD
+2022-06-10,sm-base,PolybenchC,mvt,0.017695342222863626,execution_time,VersionABCD
+2022-06-11,sm-base,PolybenchC,mvt,0.017710615966995,execution_time,VersionABCD
+2022-06-12,sm-base,PolybenchC,mvt,0.017705037363173706,execution_time,VersionABCD
+2022-06-13,sm-base,PolybenchC,mvt,0.01772541436411364,execution_time,VersionABCD
+2022-06-14,sm-base,PolybenchC,mvt,0.017721103043491657,execution_time,VersionABCD
+2022-06-15,sm-base,PolybenchC,mvt,0.01773927597978772,execution_time,VersionABCD
+2022-06-16,sm-base,PolybenchC,mvt,0.017745720088158282,execution_time,VersionABCD
+2022-06-17,sm-base,PolybenchC,mvt,0.017750737318211408,execution_time,VersionABCD
+2022-06-18,sm-base,PolybenchC,mvt,0.017786829634282863,execution_time,VersionABCD
+2022-06-19,sm-base,PolybenchC,mvt,0.017812500807610168,execution_time,VersionABCD
+2022-06-20,sm-base,PolybenchC,mvt,0.01781878798614731,execution_time,VersionABCD
+2022-06-21,sm-base,PolybenchC,mvt,0.017825439716563068,execution_time,VersionABCD
+2022-06-22,sm-base,PolybenchC,mvt,0.01782620951334195,execution_time,VersionABCD
+2022-06-23,sm-base,PolybenchC,mvt,0.017830934154589678,execution_time,VersionABCD
+2022-06-24,sm-base,PolybenchC,mvt,0.01787068296432836,execution_time,VersionABCD
+2022-06-25,sm-base,PolybenchC,mvt,0.017885856898411493,execution_time,VersionABCD
+2022-06-26,sm-base,PolybenchC,mvt,0.017918945704939997,execution_time,VersionABCD
+2022-06-27,sm-base,PolybenchC,mvt,0.017928145139492577,execution_time,VersionABCD
+2022-06-28,sm-base,PolybenchC,mvt,0.017955994342396257,execution_time,VersionABCD
+2022-06-29,sm-base,PolybenchC,mvt,0.01799507237897172,execution_time,VersionABCD
+2022-06-30,sm-base,PolybenchC,mvt,0.017992380696453803,execution_time,VersionABCD
+2022-07-01,sm-base,PolybenchC,mvt,0.01802014423342029,execution_time,VersionABCD
+2022-07-02,sm-base,PolybenchC,mvt,0.01805198416060602,execution_time,VersionABCD
+2022-07-03,sm-base,PolybenchC,mvt,0.018066794076413976,execution_time,VersionABCD
+2022-07-04,sm-base,PolybenchC,mvt,0.018093867187631018,execution_time,VersionABCD
+2022-07-05,sm-base,PolybenchC,mvt,0.01810373098849453,execution_time,VersionABCD
+2022-07-06,sm-base,PolybenchC,mvt,0.018103822654075973,execution_time,VersionABCD
+2022-07-07,sm-base,PolybenchC,mvt,0.018096843888524134,execution_time,VersionABCD
+2022-07-08,sm-base,PolybenchC,mvt,0.018089975204973973,execution_time,VersionABCD
+2022-07-09,sm-base,PolybenchC,mvt,0.018100902101097934,execution_time,VersionABCD
+2022-07-10,sm-base,PolybenchC,mvt,0.018136355323512522,execution_time,VersionABCD
+2022-07-11,sm-base,PolybenchC,mvt,0.018129665039024315,execution_time,VersionABCD
+2022-07-12,sm-base,PolybenchC,mvt,0.01816114837445528,execution_time,VersionABCD
+2022-07-13,sm-base,PolybenchC,mvt,0.01817618977247136,execution_time,VersionABCD
+2022-07-14,sm-base,PolybenchC,mvt,0.018174261246125076,execution_time,VersionABCD
+2022-07-15,sm-base,PolybenchC,mvt,0.018180615410800093,execution_time,VersionABCD
+2022-07-16,sm-base,PolybenchC,mvt,0.01818862855245333,execution_time,VersionABCD
+2022-07-17,sm-base,PolybenchC,mvt,0.018211362060995596,execution_time,VersionABCD
+2022-07-18,sm-base,PolybenchC,mvt,0.018218918248022183,execution_time,VersionABCD
+2022-07-19,sm-base,PolybenchC,mvt,0.018229020329927483,execution_time,VersionABCD
+2022-07-20,sm-base,PolybenchC,mvt,0.018267965371436528,execution_time,VersionABCD
+2022-07-21,sm-base,PolybenchC,mvt,0.01830538698191377,execution_time,VersionABCD
+2022-07-22,sm-base,PolybenchC,mvt,0.018308543345691514,execution_time,VersionABCD
+2022-07-23,sm-base,PolybenchC,mvt,0.018306423969088773,execution_time,VersionABCD
+2022-07-24,sm-base,PolybenchC,mvt,0.018332763850524965,execution_time,VersionABCD
+2022-07-25,sm-base,PolybenchC,mvt,0.018371138191448595,execution_time,VersionABCD
+2022-07-26,sm-base,PolybenchC,mvt,0.018383078709495973,execution_time,VersionABCD
+2022-07-27,sm-base,PolybenchC,mvt,0.018411974752867398,execution_time,VersionABCD
+2022-07-28,sm-base,PolybenchC,mvt,0.018433418332752666,execution_time,VersionABCD
+2022-07-29,sm-base,PolybenchC,mvt,0.018455171769632434,execution_time,VersionABCD
+2022-07-30,sm-base,PolybenchC,mvt,0.018460349532956742,execution_time,VersionABCD
+2022-07-31,sm-base,PolybenchC,mvt,0.018464512980843832,execution_time,VersionABCD
+2022-08-01,sm-base,PolybenchC,mvt,0.018480238890087455,execution_time,VersionABCD
+2022-08-02,sm-base,PolybenchC,mvt,0.018504762978780554,execution_time,VersionABCD
+2022-08-03,sm-base,PolybenchC,mvt,0.018525002480435072,execution_time,VersionABCD
+2022-08-04,sm-base,PolybenchC,mvt,0.01855973475515885,execution_time,VersionABCD
+2022-08-05,sm-base,PolybenchC,mvt,0.01858990224206928,execution_time,VersionABCD
+2022-08-06,sm-base,PolybenchC,mvt,0.0186293999299867,execution_time,VersionABCD
+2022-08-07,sm-base,PolybenchC,mvt,0.018619426235573798,execution_time,VersionABCD
+2022-08-08,sm-base,PolybenchC,mvt,0.01862290505604389,execution_time,VersionABCD
+2022-08-09,sm-base,PolybenchC,mvt,0.018625699020210426,execution_time,VersionABCD
+2022-08-10,sm-base,PolybenchC,mvt,0.01864305747905673,execution_time,VersionABCD
+2022-08-11,sm-base,PolybenchC,mvt,0.018641678356870382,execution_time,VersionABCD
+2022-08-12,sm-base,PolybenchC,mvt,0.01865690870071824,execution_time,VersionABCD
+2022-08-13,sm-base,PolybenchC,mvt,0.01865079708212507,execution_time,VersionABCD
+2022-08-14,sm-base,PolybenchC,mvt,0.018654348918036957,execution_time,VersionABCD
+2022-08-15,sm-base,PolybenchC,mvt,0.01867754141750494,execution_time,VersionABCD
+2022-08-16,sm-base,PolybenchC,mvt,0.018708969895287194,execution_time,VersionABCD
+2022-08-17,sm-base,PolybenchC,mvt,0.018724172388829813,execution_time,VersionABCD
+2022-08-18,sm-base,PolybenchC,mvt,0.018744769195156476,execution_time,VersionABCD
+2022-08-19,sm-base,PolybenchC,mvt,0.01876999846809169,execution_time,VersionABCD
+2022-08-20,sm-base,PolybenchC,mvt,0.01879685356052102,execution_time,VersionABCD
+2022-08-21,sm-base,PolybenchC,mvt,0.01882645552505529,execution_time,VersionABCD
+2022-08-22,sm-base,PolybenchC,mvt,0.018865032208762057,execution_time,VersionABCD
+2022-08-23,sm-base,PolybenchC,mvt,0.01887634725383813,execution_time,VersionABCD
+2022-08-24,sm-base,PolybenchC,mvt,0.018895173289505816,execution_time,VersionABCD
+2022-08-25,sm-base,PolybenchC,mvt,0.01892941646001101,execution_time,VersionABCD
+2022-08-26,sm-base,PolybenchC,mvt,0.01892350291613199,execution_time,VersionABCD
+2022-08-27,sm-base,PolybenchC,mvt,0.018937038799638706,execution_time,VersionABCD
+2022-08-28,sm-base,PolybenchC,mvt,0.018960019295717334,execution_time,VersionABCD
+2022-08-29,sm-base,PolybenchC,mvt,0.018967153166306996,execution_time,VersionABCD
+2022-08-30,sm-base,PolybenchC,mvt,0.018964049524522443,execution_time,VersionABCD
+2022-08-31,sm-base,PolybenchC,mvt,0.01900353561316238,execution_time,VersionABCD
+2022-09-01,sm-base,PolybenchC,mvt,0.01903928325362515,execution_time,VersionABCD
+2022-09-02,sm-base,PolybenchC,mvt,0.019068383436682115,execution_time,VersionABCD
+2022-09-03,sm-base,PolybenchC,mvt,0.01902974834848672,execution_time,VersionABCD
+2022-09-04,sm-base,PolybenchC,mvt,0.019005366924136142,execution_time,VersionABCD
+2022-09-05,sm-base,PolybenchC,mvt,0.018995102061208583,execution_time,VersionABCD
+2022-09-06,sm-base,PolybenchC,mvt,0.018958995589872078,execution_time,VersionABCD
+2022-09-07,sm-base,PolybenchC,mvt,0.018928641691733215,execution_time,VersionABCD
+2022-09-08,sm-base,PolybenchC,mvt,0.01890462400170075,execution_time,VersionABCD
+2022-09-09,sm-base,PolybenchC,mvt,0.018887066906046253,execution_time,VersionABCD
+2022-09-10,sm-base,PolybenchC,mvt,0.018868683012055437,execution_time,VersionABCD
+2022-09-11,sm-base,PolybenchC,mvt,0.0188458601110121,execution_time,VersionABCD
+2022-09-12,sm-base,PolybenchC,mvt,0.018828663575033374,execution_time,VersionABCD
+2022-09-13,sm-base,PolybenchC,mvt,0.01878962049097759,execution_time,VersionABCD
+2022-09-14,sm-base,PolybenchC,mvt,0.018778697733023476,execution_time,VersionABCD
+2022-09-15,sm-base,PolybenchC,mvt,0.01875770115593769,execution_time,VersionABCD
+2022-09-16,sm-base,PolybenchC,mvt,0.01872928789965896,execution_time,VersionABCD
+2022-09-17,sm-base,PolybenchC,mvt,0.018717314464989705,execution_time,VersionABCD
+2022-09-18,sm-base,PolybenchC,mvt,0.018680114973560192,execution_time,VersionABCD
+2022-09-19,sm-base,PolybenchC,mvt,0.018652975432162978,execution_time,VersionABCD
+2022-09-20,sm-base,PolybenchC,mvt,0.018632822222496962,execution_time,VersionABCD
+2022-09-21,sm-base,PolybenchC,mvt,0.01861203654177699,execution_time,VersionABCD
+2022-09-22,sm-base,PolybenchC,mvt,0.01858517164156735,execution_time,VersionABCD
+2022-09-23,sm-base,PolybenchC,mvt,0.01856226726179586,execution_time,VersionABCD
+2022-09-24,sm-base,PolybenchC,mvt,0.018529268346885414,execution_time,VersionABCD
+2022-09-25,sm-base,PolybenchC,mvt,0.01849572108199493,execution_time,VersionABCD
+2022-09-26,sm-base,PolybenchC,mvt,0.018484563804457625,execution_time,VersionABCD
+2022-09-27,sm-base,PolybenchC,mvt,0.018448195849940584,execution_time,VersionABCD
+2022-09-28,sm-base,PolybenchC,mvt,0.018425144016054988,execution_time,VersionABCD
+2022-09-29,sm-base,PolybenchC,mvt,0.018410785451127728,execution_time,VersionABCD
+2022-09-30,sm-base,PolybenchC,mvt,0.018391150707334172,execution_time,VersionABCD
+2022-10-01,sm-base,PolybenchC,mvt,0.01838095412277793,execution_time,VersionABCD
+2022-10-02,sm-base,PolybenchC,mvt,0.018348441675561218,execution_time,VersionABCD
+2022-10-03,sm-base,PolybenchC,mvt,0.01831223272897781,execution_time,VersionABCD
+2022-10-04,sm-base,PolybenchC,mvt,0.018281603779944255,execution_time,VersionABCD
+2022-10-05,sm-base,PolybenchC,mvt,0.018266864943001324,execution_time,VersionABCD
+2022-10-06,sm-base,PolybenchC,mvt,0.01824896943753475,execution_time,VersionABCD
+2022-10-07,sm-base,PolybenchC,mvt,0.018213291463002785,execution_time,VersionABCD
+2022-10-08,sm-base,PolybenchC,mvt,0.018187693259868642,execution_time,VersionABCD
+2022-10-09,sm-base,PolybenchC,mvt,0.018153607879792512,execution_time,VersionABCD
+2022-10-10,sm-base,PolybenchC,mvt,0.018125338982915892,execution_time,VersionABCD
+2022-10-11,sm-base,PolybenchC,mvt,0.018091040105952746,execution_time,VersionABCD
+2022-10-12,sm-base,PolybenchC,mvt,0.01807905550660203,execution_time,VersionABCD
+2022-10-13,sm-base,PolybenchC,mvt,0.018067203317400783,execution_time,VersionABCD
+2022-10-14,sm-base,PolybenchC,mvt,0.018052799176785286,execution_time,VersionABCD
+2022-10-15,sm-base,PolybenchC,mvt,0.018041337888023985,execution_time,VersionABCD
+2022-10-16,sm-base,PolybenchC,mvt,0.01801084832454246,execution_time,VersionABCD
+2022-10-17,sm-base,PolybenchC,mvt,0.017992346707501612,execution_time,VersionABCD
+2022-10-18,sm-base,PolybenchC,mvt,0.017964468320246667,execution_time,VersionABCD
+2022-10-19,sm-base,PolybenchC,mvt,0.01795109057006606,execution_time,VersionABCD
+2022-10-20,sm-base,PolybenchC,mvt,0.01792689186821708,execution_time,VersionABCD
+2022-10-21,sm-base,PolybenchC,mvt,0.01791124284848728,execution_time,VersionABCD
+2022-10-22,sm-base,PolybenchC,mvt,0.0178877917489448,execution_time,VersionABCD
+2022-10-23,sm-base,PolybenchC,mvt,0.0178674746893659,execution_time,VersionABCD
+2022-10-24,sm-base,PolybenchC,mvt,0.017830933124669174,execution_time,VersionABCD
+2022-10-25,sm-base,PolybenchC,mvt,0.01780212010892338,execution_time,VersionABCD
+2022-10-26,sm-base,PolybenchC,mvt,0.01776889623498251,execution_time,VersionABCD
+2022-10-27,sm-base,PolybenchC,mvt,0.017746565867527982,execution_time,VersionABCD
+2022-10-28,sm-base,PolybenchC,mvt,0.017707534515178792,execution_time,VersionABCD
+2022-10-29,sm-base,PolybenchC,mvt,0.01769249297478652,execution_time,VersionABCD
+2022-10-30,sm-base,PolybenchC,mvt,0.017664611813516695,execution_time,VersionABCD
+2022-10-31,sm-base,PolybenchC,mvt,0.017638046578361447,execution_time,VersionABCD
+2022-11-01,sm-base,PolybenchC,mvt,0.01760188492691235,execution_time,VersionABCD
+2022-11-02,sm-base,PolybenchC,mvt,0.017564338391592844,execution_time,VersionABCD
+2022-11-03,sm-base,PolybenchC,mvt,0.0175387453424032,execution_time,VersionABCD
+2022-11-04,sm-base,PolybenchC,mvt,0.017527045044343957,execution_time,VersionABCD
+2022-11-05,sm-base,PolybenchC,mvt,0.017495525325117382,execution_time,VersionABCD
+2022-11-06,sm-base,PolybenchC,mvt,0.01746030494262208,execution_time,VersionABCD
+2022-11-07,sm-base,PolybenchC,mvt,0.017423373507695367,execution_time,VersionABCD
+2022-11-08,sm-base,PolybenchC,mvt,0.01739677806848148,execution_time,VersionABCD
+2022-11-09,sm-base,PolybenchC,mvt,0.01737065260824633,execution_time,VersionABCD
+2022-11-10,sm-base,PolybenchC,mvt,0.017355569551681275,execution_time,VersionABCD
+2022-11-11,sm-base,PolybenchC,mvt,0.017339624872051915,execution_time,VersionABCD
+2022-11-12,sm-base,PolybenchC,mvt,0.017305189261158125,execution_time,VersionABCD
+2022-11-13,sm-base,PolybenchC,mvt,0.01726855563260737,execution_time,VersionABCD
+2022-11-14,sm-base,PolybenchC,mvt,0.017253638873702612,execution_time,VersionABCD
+2022-11-15,sm-base,PolybenchC,mvt,0.01722179799429557,execution_time,VersionABCD
+2022-11-16,sm-base,PolybenchC,mvt,0.017206670813072755,execution_time,VersionABCD
+2022-11-17,sm-base,PolybenchC,mvt,0.017173616183449515,execution_time,VersionABCD
+2022-11-18,sm-base,PolybenchC,mvt,0.017144549263238117,execution_time,VersionABCD
+2022-11-19,sm-base,PolybenchC,mvt,0.017117941678685918,execution_time,VersionABCD
+2022-11-20,sm-base,PolybenchC,mvt,0.01708772047717224,execution_time,VersionABCD
+2022-11-21,sm-base,PolybenchC,mvt,0.017059404087601766,execution_time,VersionABCD
+2022-11-22,sm-base,PolybenchC,mvt,0.017036123916549028,execution_time,VersionABCD
+2022-11-23,sm-base,PolybenchC,mvt,0.01702339813525145,execution_time,VersionABCD
+2022-11-24,sm-base,PolybenchC,mvt,0.01698621101031431,execution_time,VersionABCD
+2022-11-25,sm-base,PolybenchC,mvt,0.016975674376315367,execution_time,VersionABCD
+2022-11-26,sm-base,PolybenchC,mvt,0.01693957355694808,execution_time,VersionABCD
+2022-11-27,sm-base,PolybenchC,mvt,0.0169087739060315,execution_time,VersionABCD
+2022-11-28,sm-base,PolybenchC,mvt,0.016888179588160572,execution_time,VersionABCD
+2022-11-29,sm-base,PolybenchC,mvt,0.01684925452123422,execution_time,VersionABCD
+2022-11-30,sm-base,PolybenchC,mvt,0.01683066956089861,execution_time,VersionABCD
+2022-12-01,sm-base,PolybenchC,mvt,0.016805648337039517,execution_time,VersionABCD
+2022-12-02,sm-base,PolybenchC,mvt,0.01676648437921543,execution_time,VersionABCD
+2022-12-03,sm-base,PolybenchC,mvt,0.01675178279878694,execution_time,VersionABCD
+2022-12-04,sm-base,PolybenchC,mvt,0.01672208658559156,execution_time,VersionABCD
+2022-12-05,sm-base,PolybenchC,mvt,0.016702034399875335,execution_time,VersionABCD
+2022-12-06,sm-base,PolybenchC,mvt,0.01667531151598971,execution_time,VersionABCD
+2022-12-07,sm-base,PolybenchC,mvt,0.016652732686535176,execution_time,VersionABCD
+2022-12-08,sm-base,PolybenchC,mvt,0.016640391432153165,execution_time,VersionABCD
+2022-12-09,sm-base,PolybenchC,mvt,0.01661152504470118,execution_time,VersionABCD
+2022-12-10,sm-base,PolybenchC,mvt,0.01658682687379752,execution_time,VersionABCD
+2022-12-11,sm-base,PolybenchC,mvt,0.016570923401844722,execution_time,VersionABCD
+2022-12-12,sm-base,PolybenchC,mvt,0.016553440434114202,execution_time,VersionABCD
+2022-12-13,sm-base,PolybenchC,mvt,0.016535001225694235,execution_time,VersionABCD
+2022-12-14,sm-base,PolybenchC,mvt,0.016508521023226138,execution_time,VersionABCD
+2022-12-15,sm-base,PolybenchC,mvt,0.016494992416878382,execution_time,VersionABCD
+2022-12-16,sm-base,PolybenchC,mvt,0.016469899519387213,execution_time,VersionABCD
+2022-12-17,sm-base,PolybenchC,mvt,0.016438146536982615,execution_time,VersionABCD
+2022-12-18,sm-base,PolybenchC,mvt,0.016428107625794632,execution_time,VersionABCD
+2022-12-19,sm-base,PolybenchC,mvt,0.01639778118351934,execution_time,VersionABCD
+2022-12-20,sm-base,PolybenchC,mvt,0.01637832388478201,execution_time,VersionABCD
+2022-12-21,sm-base,PolybenchC,mvt,0.016357080772706235,execution_time,VersionABCD
+2022-12-22,sm-base,PolybenchC,mvt,0.016338867974659506,execution_time,VersionABCD
+2022-12-23,sm-base,PolybenchC,mvt,0.01630667832601748,execution_time,VersionABCD
+2022-12-24,sm-base,PolybenchC,mvt,0.01629328120043293,execution_time,VersionABCD
+2022-12-25,sm-base,PolybenchC,mvt,0.01626539541215036,execution_time,VersionABCD
+2022-12-26,sm-base,PolybenchC,mvt,0.01625513633754345,execution_time,VersionABCD
+2022-12-27,sm-base,PolybenchC,mvt,0.01622826670496186,execution_time,VersionABCD
+2022-12-28,sm-base,PolybenchC,mvt,0.01620381805012878,execution_time,VersionABCD
+2022-12-29,sm-base,PolybenchC,mvt,0.01618682042981913,execution_time,VersionABCD
+2022-12-30,sm-base,PolybenchC,mvt,0.01615943163444839,execution_time,VersionABCD
+2022-12-31,sm-base,PolybenchC,mvt,0.016123451246041903,execution_time,VersionABCD
+2022-01-01,sm-base,PolybenchC,trmm,0.0244537740349382,execution_time,VersionABCD
+2022-01-02,sm-base,PolybenchC,trmm,0.02448708772342008,execution_time,VersionABCD
+2022-01-03,sm-base,PolybenchC,trmm,0.0245103838429805,execution_time,VersionABCD
+2022-01-04,sm-base,PolybenchC,trmm,0.02452940429712221,execution_time,VersionABCD
+2022-01-05,sm-base,PolybenchC,trmm,0.024547416226301612,execution_time,VersionABCD
+2022-01-06,sm-base,PolybenchC,trmm,0.024538443609275113,execution_time,VersionABCD
+2022-01-07,sm-base,PolybenchC,trmm,0.024535898479569142,execution_time,VersionABCD
+2022-01-08,sm-base,PolybenchC,trmm,0.024552882876555413,execution_time,VersionABCD
+2022-01-09,sm-base,PolybenchC,trmm,0.02456710722155941,execution_time,VersionABCD
+2022-01-10,sm-base,PolybenchC,trmm,0.02459847920673058,execution_time,VersionABCD
+2022-01-11,sm-base,PolybenchC,trmm,0.024598299694133973,execution_time,VersionABCD
+2022-01-12,sm-base,PolybenchC,trmm,0.024601613558259582,execution_time,VersionABCD
+2022-01-13,sm-base,PolybenchC,trmm,0.024597873856696068,execution_time,VersionABCD
+2022-01-14,sm-base,PolybenchC,trmm,0.024590167667774047,execution_time,VersionABCD
+2022-01-15,sm-base,PolybenchC,trmm,0.02460491256050687,execution_time,VersionABCD
+2022-01-16,sm-base,PolybenchC,trmm,0.02463680820304524,execution_time,VersionABCD
+2022-01-17,sm-base,PolybenchC,trmm,0.024627883118449913,execution_time,VersionABCD
+2022-01-18,sm-base,PolybenchC,trmm,0.02462475081500501,execution_time,VersionABCD
+2022-01-19,sm-base,PolybenchC,trmm,0.02461584107792369,execution_time,VersionABCD
+2022-01-20,sm-base,PolybenchC,trmm,0.024653653049357644,execution_time,VersionABCD
+2022-01-21,sm-base,PolybenchC,trmm,0.024659466111461678,execution_time,VersionABCD
+2022-01-22,sm-base,PolybenchC,trmm,0.024688677518472677,execution_time,VersionABCD
+2022-01-23,sm-base,PolybenchC,trmm,0.024703806659388455,execution_time,VersionABCD
+2022-01-24,sm-base,PolybenchC,trmm,0.024695247504741828,execution_time,VersionABCD
+2022-01-25,sm-base,PolybenchC,trmm,0.024733024526826068,execution_time,VersionABCD
+2022-01-26,sm-base,PolybenchC,trmm,0.024764061251670546,execution_time,VersionABCD
+2022-01-27,sm-base,PolybenchC,trmm,0.024785138686312602,execution_time,VersionABCD
+2022-01-28,sm-base,PolybenchC,trmm,0.024788108443671377,execution_time,VersionABCD
+2022-01-29,sm-base,PolybenchC,trmm,0.024818165210434007,execution_time,VersionABCD
+2022-01-30,sm-base,PolybenchC,trmm,0.02483384935497038,execution_time,VersionABCD
+2022-01-31,sm-base,PolybenchC,trmm,0.024824522132145914,execution_time,VersionABCD
+2022-02-01,sm-base,PolybenchC,trmm,0.024842255561959955,execution_time,VersionABCD
+2022-02-02,sm-base,PolybenchC,trmm,0.02486348131844135,execution_time,VersionABCD
+2022-02-03,sm-base,PolybenchC,trmm,0.024855757060781976,execution_time,VersionABCD
+2022-02-04,sm-base,PolybenchC,trmm,0.024849609973362732,execution_time,VersionABCD
+2022-02-05,sm-base,PolybenchC,trmm,0.024851677284790687,execution_time,VersionABCD
+2022-02-06,sm-base,PolybenchC,trmm,0.024860907159658153,execution_time,VersionABCD
+2022-02-07,sm-base,PolybenchC,trmm,0.024879045054780065,execution_time,VersionABCD
+2022-02-08,sm-base,PolybenchC,trmm,0.024895913071862685,execution_time,VersionABCD
+2022-02-09,sm-base,PolybenchC,trmm,0.024899641454508577,execution_time,VersionABCD
+2022-02-10,sm-base,PolybenchC,trmm,0.024898319697064634,execution_time,VersionABCD
+2022-02-11,sm-base,PolybenchC,trmm,0.024894944422002928,execution_time,VersionABCD
+2022-02-12,sm-base,PolybenchC,trmm,0.02492577312946759,execution_time,VersionABCD
+2022-02-13,sm-base,PolybenchC,trmm,0.024917622819729812,execution_time,VersionABCD
+2022-02-14,sm-base,PolybenchC,trmm,0.02495608171119396,execution_time,VersionABCD
+2022-02-15,sm-base,PolybenchC,trmm,0.024954034690836725,execution_time,VersionABCD
+2022-02-16,sm-base,PolybenchC,trmm,0.024954301518875247,execution_time,VersionABCD
+2022-02-17,sm-base,PolybenchC,trmm,0.024987072684708365,execution_time,VersionABCD
+2022-02-18,sm-base,PolybenchC,trmm,0.02500106892685503,execution_time,VersionABCD
+2022-02-19,sm-base,PolybenchC,trmm,0.025020406436948143,execution_time,VersionABCD
+2022-02-20,sm-base,PolybenchC,trmm,0.025051824629253937,execution_time,VersionABCD
+2022-02-21,sm-base,PolybenchC,trmm,0.025082389641382104,execution_time,VersionABCD
+2022-02-22,sm-base,PolybenchC,trmm,0.025074472567777662,execution_time,VersionABCD
+2022-02-23,sm-base,PolybenchC,trmm,0.02511003915105024,execution_time,VersionABCD
+2022-02-24,sm-base,PolybenchC,trmm,0.02514495536102467,execution_time,VersionABCD
+2022-02-25,sm-base,PolybenchC,trmm,0.025150176456289725,execution_time,VersionABCD
+2022-02-26,sm-base,PolybenchC,trmm,0.025155438512613815,execution_time,VersionABCD
+2022-02-27,sm-base,PolybenchC,trmm,0.02518183353701942,execution_time,VersionABCD
+2022-02-28,sm-base,PolybenchC,trmm,0.02522084745114124,execution_time,VersionABCD
+2022-03-01,sm-base,PolybenchC,trmm,0.025255835568989565,execution_time,VersionABCD
+2022-03-02,sm-base,PolybenchC,trmm,0.025255961878859996,execution_time,VersionABCD
+2022-03-03,sm-base,PolybenchC,trmm,0.025264984618890856,execution_time,VersionABCD
+2022-03-04,sm-base,PolybenchC,trmm,0.02527478754376651,execution_time,VersionABCD
+2022-03-05,sm-base,PolybenchC,trmm,0.02528485959640551,execution_time,VersionABCD
+2022-03-06,sm-base,PolybenchC,trmm,0.025299988266951727,execution_time,VersionABCD
+2022-03-07,sm-base,PolybenchC,trmm,0.025316832430008776,execution_time,VersionABCD
+2022-03-08,sm-base,PolybenchC,trmm,0.025324378737848242,execution_time,VersionABCD
+2022-03-09,sm-base,PolybenchC,trmm,0.02533810243698859,execution_time,VersionABCD
+2022-03-10,sm-base,PolybenchC,trmm,0.025348204029724507,execution_time,VersionABCD
+2022-03-11,sm-base,PolybenchC,trmm,0.025374224651477383,execution_time,VersionABCD
+2022-03-12,sm-base,PolybenchC,trmm,0.025405240776458407,execution_time,VersionABCD
+2022-03-13,sm-base,PolybenchC,trmm,0.02543779353561828,execution_time,VersionABCD
+2022-03-14,sm-base,PolybenchC,trmm,0.025477548088188477,execution_time,VersionABCD
+2022-03-15,sm-base,PolybenchC,trmm,0.02551572956886858,execution_time,VersionABCD
+2022-03-16,sm-base,PolybenchC,trmm,0.025517838297501306,execution_time,VersionABCD
+2022-03-17,sm-base,PolybenchC,trmm,0.02555052297901233,execution_time,VersionABCD
+2022-03-18,sm-base,PolybenchC,trmm,0.025583778448844824,execution_time,VersionABCD
+2022-03-19,sm-base,PolybenchC,trmm,0.025605296666143765,execution_time,VersionABCD
+2022-03-20,sm-base,PolybenchC,trmm,0.025604010422661184,execution_time,VersionABCD
+2022-03-21,sm-base,PolybenchC,trmm,0.0256040093279097,execution_time,VersionABCD
+2022-03-22,sm-base,PolybenchC,trmm,0.02559588337888883,execution_time,VersionABCD
+2022-03-23,sm-base,PolybenchC,trmm,0.02558868331332744,execution_time,VersionABCD
+2022-03-24,sm-base,PolybenchC,trmm,0.025604863810223772,execution_time,VersionABCD
+2022-03-25,sm-base,PolybenchC,trmm,0.02559973720120129,execution_time,VersionABCD
+2022-03-26,sm-base,PolybenchC,trmm,0.02562358175746263,execution_time,VersionABCD
+2022-03-27,sm-base,PolybenchC,trmm,0.025635009588570793,execution_time,VersionABCD
+2022-03-28,sm-base,PolybenchC,trmm,0.025644889807205046,execution_time,VersionABCD
+2022-03-29,sm-base,PolybenchC,trmm,0.025663114673022326,execution_time,VersionABCD
+2022-03-30,sm-base,PolybenchC,trmm,0.025698092570362784,execution_time,VersionABCD
+2022-03-31,sm-base,PolybenchC,trmm,0.02573586309312551,execution_time,VersionABCD
+2022-04-01,sm-base,PolybenchC,trmm,0.02575355351811546,execution_time,VersionABCD
+2022-04-02,sm-base,PolybenchC,trmm,0.02578688314511302,execution_time,VersionABCD
+2022-04-03,sm-base,PolybenchC,trmm,0.0257838670521778,execution_time,VersionABCD
+2022-04-04,sm-base,PolybenchC,trmm,0.02579764182725579,execution_time,VersionABCD
+2022-04-05,sm-base,PolybenchC,trmm,0.025808727793834457,execution_time,VersionABCD
+2022-04-06,sm-base,PolybenchC,trmm,0.02583737932138167,execution_time,VersionABCD
+2022-04-07,sm-base,PolybenchC,trmm,0.025860637316879303,execution_time,VersionABCD
+2022-04-08,sm-base,PolybenchC,trmm,0.025883208888402807,execution_time,VersionABCD
+2022-04-09,sm-base,PolybenchC,trmm,0.025919417839381915,execution_time,VersionABCD
+2022-04-10,sm-base,PolybenchC,trmm,0.02591106721971329,execution_time,VersionABCD
+2022-04-11,sm-base,PolybenchC,trmm,0.025917239478324163,execution_time,VersionABCD
+2022-04-12,sm-base,PolybenchC,trmm,0.025954010345518322,execution_time,VersionABCD
+2022-04-13,sm-base,PolybenchC,trmm,0.025976652575667634,execution_time,VersionABCD
+2022-04-14,sm-base,PolybenchC,trmm,0.02600289629571643,execution_time,VersionABCD
+2022-04-15,sm-base,PolybenchC,trmm,0.02600995396065653,execution_time,VersionABCD
+2022-04-16,sm-base,PolybenchC,trmm,0.026020765580885622,execution_time,VersionABCD
+2022-04-17,sm-base,PolybenchC,trmm,0.026050801642553304,execution_time,VersionABCD
+2022-04-18,sm-base,PolybenchC,trmm,0.02607047016308234,execution_time,VersionABCD
+2022-04-19,sm-base,PolybenchC,trmm,0.026068891629107343,execution_time,VersionABCD
+2022-04-20,sm-base,PolybenchC,trmm,0.026064582779782228,execution_time,VersionABCD
+2022-04-21,sm-base,PolybenchC,trmm,0.026079014435704855,execution_time,VersionABCD
+2022-04-22,sm-base,PolybenchC,trmm,0.026095055598872752,execution_time,VersionABCD
+2022-04-23,sm-base,PolybenchC,trmm,0.026125435626589998,execution_time,VersionABCD
+2022-04-24,sm-base,PolybenchC,trmm,0.026120593358218702,execution_time,VersionABCD
+2022-04-25,sm-base,PolybenchC,trmm,0.026148407967372334,execution_time,VersionABCD
+2022-04-26,sm-base,PolybenchC,trmm,0.026138706525440286,execution_time,VersionABCD
+2022-04-27,sm-base,PolybenchC,trmm,0.026167471330139015,execution_time,VersionABCD
+2022-04-28,sm-base,PolybenchC,trmm,0.026174819537239335,execution_time,VersionABCD
+2022-04-29,sm-base,PolybenchC,trmm,0.02617631346710612,execution_time,VersionABCD
+2022-04-30,sm-base,PolybenchC,trmm,0.026183499043477203,execution_time,VersionABCD
+2022-05-01,sm-base,PolybenchC,trmm,0.026180259895174737,execution_time,VersionABCD
+2022-05-02,sm-base,PolybenchC,trmm,0.026214776839132512,execution_time,VersionABCD
+2022-05-03,sm-base,PolybenchC,trmm,0.026212231100439725,execution_time,VersionABCD
+2022-05-04,sm-base,PolybenchC,trmm,0.026221998893197054,execution_time,VersionABCD
+2022-05-05,sm-base,PolybenchC,trmm,0.02624388594198681,execution_time,VersionABCD
+2022-05-06,sm-base,PolybenchC,trmm,0.026272848874854905,execution_time,VersionABCD
+2022-05-07,sm-base,PolybenchC,trmm,0.02626355952017818,execution_time,VersionABCD
+2022-05-08,sm-base,PolybenchC,trmm,0.026285026540291103,execution_time,VersionABCD
+2022-05-09,sm-base,PolybenchC,trmm,0.026275614801724547,execution_time,VersionABCD
+2022-05-10,sm-base,PolybenchC,trmm,0.026276563263118436,execution_time,VersionABCD
+2022-05-11,sm-base,PolybenchC,trmm,0.026301735605920633,execution_time,VersionABCD
+2022-05-12,sm-base,PolybenchC,trmm,0.02629826830058879,execution_time,VersionABCD
+2022-05-13,sm-base,PolybenchC,trmm,0.02630290208202373,execution_time,VersionABCD
+2022-05-14,sm-base,PolybenchC,trmm,0.026316832962428826,execution_time,VersionABCD
+2022-05-15,sm-base,PolybenchC,trmm,0.026308009611985775,execution_time,VersionABCD
+2022-05-16,sm-base,PolybenchC,trmm,0.026344925532952243,execution_time,VersionABCD
+2022-05-17,sm-base,PolybenchC,trmm,0.026380238003785656,execution_time,VersionABCD
+2022-05-18,sm-base,PolybenchC,trmm,0.02641847133568025,execution_time,VersionABCD
+2022-05-19,sm-base,PolybenchC,trmm,0.026454950201950492,execution_time,VersionABCD
+2022-05-20,sm-base,PolybenchC,trmm,0.026469910357344764,execution_time,VersionABCD
+2022-05-21,sm-base,PolybenchC,trmm,0.02646524884602073,execution_time,VersionABCD
+2022-05-22,sm-base,PolybenchC,trmm,0.026464157801727586,execution_time,VersionABCD
+2022-05-23,sm-base,PolybenchC,trmm,0.026497250215166118,execution_time,VersionABCD
+2022-05-24,sm-base,PolybenchC,trmm,0.026524816653761118,execution_time,VersionABCD
+2022-05-25,sm-base,PolybenchC,trmm,0.026538994479156582,execution_time,VersionABCD
+2022-05-26,sm-base,PolybenchC,trmm,0.026541669708372632,execution_time,VersionABCD
+2022-05-27,sm-base,PolybenchC,trmm,0.02653689258849622,execution_time,VersionABCD
+2022-05-28,sm-base,PolybenchC,trmm,0.026563848326013512,execution_time,VersionABCD
+2022-05-29,sm-base,PolybenchC,trmm,0.026591813187487292,execution_time,VersionABCD
+2022-05-30,sm-base,PolybenchC,trmm,0.026630760516082225,execution_time,VersionABCD
+2022-05-31,sm-base,PolybenchC,trmm,0.026624058349999227,execution_time,VersionABCD
+2022-06-01,sm-base,PolybenchC,trmm,0.026634167929347256,execution_time,VersionABCD
+2022-06-02,sm-base,PolybenchC,trmm,0.026665135619998646,execution_time,VersionABCD
+2022-06-03,sm-base,PolybenchC,trmm,0.026678114023970346,execution_time,VersionABCD
+2022-06-04,sm-base,PolybenchC,trmm,0.02671288767041684,execution_time,VersionABCD
+2022-06-05,sm-base,PolybenchC,trmm,0.02672797149301115,execution_time,VersionABCD
+2022-06-06,sm-base,PolybenchC,trmm,0.026759920627792255,execution_time,VersionABCD
+2022-06-07,sm-base,PolybenchC,trmm,0.0267723867887159,execution_time,VersionABCD
+2022-06-08,sm-base,PolybenchC,trmm,0.026764606398667207,execution_time,VersionABCD
+2022-06-09,sm-base,PolybenchC,trmm,0.026794802035481576,execution_time,VersionABCD
+2022-06-10,sm-base,PolybenchC,trmm,0.026829391924663094,execution_time,VersionABCD
+2022-06-11,sm-base,PolybenchC,trmm,0.02684111506585794,execution_time,VersionABCD
+2022-06-12,sm-base,PolybenchC,trmm,0.026854565748543256,execution_time,VersionABCD
+2022-06-13,sm-base,PolybenchC,trmm,0.026882577689495882,execution_time,VersionABCD
+2022-06-14,sm-base,PolybenchC,trmm,0.026918629124327065,execution_time,VersionABCD
+2022-06-15,sm-base,PolybenchC,trmm,0.026934322923226894,execution_time,VersionABCD
+2022-06-16,sm-base,PolybenchC,trmm,0.026924345900626978,execution_time,VersionABCD
+2022-06-17,sm-base,PolybenchC,trmm,0.026950165954604074,execution_time,VersionABCD
+2022-06-18,sm-base,PolybenchC,trmm,0.026945522043602663,execution_time,VersionABCD
+2022-06-19,sm-base,PolybenchC,trmm,0.02695416594722869,execution_time,VersionABCD
+2022-06-20,sm-base,PolybenchC,trmm,0.02696507725080725,execution_time,VersionABCD
+2022-06-21,sm-base,PolybenchC,trmm,0.027001277108354132,execution_time,VersionABCD
+2022-06-22,sm-base,PolybenchC,trmm,0.02699227054590681,execution_time,VersionABCD
+2022-06-23,sm-base,PolybenchC,trmm,0.026993486709641856,execution_time,VersionABCD
+2022-06-24,sm-base,PolybenchC,trmm,0.027023500071745123,execution_time,VersionABCD
+2022-06-25,sm-base,PolybenchC,trmm,0.02701727663071265,execution_time,VersionABCD
+2022-06-26,sm-base,PolybenchC,trmm,0.02701558188671646,execution_time,VersionABCD
+2022-06-27,sm-base,PolybenchC,trmm,0.02704784415518857,execution_time,VersionABCD
+2022-06-28,sm-base,PolybenchC,trmm,0.027053772837473136,execution_time,VersionABCD
+2022-06-29,sm-base,PolybenchC,trmm,0.027065033777914596,execution_time,VersionABCD
+2022-06-30,sm-base,PolybenchC,trmm,0.027101016156403777,execution_time,VersionABCD
+2022-07-01,sm-base,PolybenchC,trmm,0.02709440253793182,execution_time,VersionABCD
+2022-07-02,sm-base,PolybenchC,trmm,0.02713186103410752,execution_time,VersionABCD
+2022-07-03,sm-base,PolybenchC,trmm,0.027157459002681107,execution_time,VersionABCD
+2022-07-04,sm-base,PolybenchC,trmm,0.02718004456885298,execution_time,VersionABCD
+2022-07-05,sm-base,PolybenchC,trmm,0.027197199011367572,execution_time,VersionABCD
+2022-07-06,sm-base,PolybenchC,trmm,0.027203956082018338,execution_time,VersionABCD
+2022-07-07,sm-base,PolybenchC,trmm,0.027225057568114806,execution_time,VersionABCD
+2022-07-08,sm-base,PolybenchC,trmm,0.027257124459771104,execution_time,VersionABCD
+2022-07-09,sm-base,PolybenchC,trmm,0.027292063493802973,execution_time,VersionABCD
+2022-07-10,sm-base,PolybenchC,trmm,0.02731010552915521,execution_time,VersionABCD
+2022-07-11,sm-base,PolybenchC,trmm,0.027301899095728884,execution_time,VersionABCD
+2022-07-12,sm-base,PolybenchC,trmm,0.027301927313501454,execution_time,VersionABCD
+2022-07-13,sm-base,PolybenchC,trmm,0.027304938154830663,execution_time,VersionABCD
+2022-07-14,sm-base,PolybenchC,trmm,0.02729912664988558,execution_time,VersionABCD
+2022-07-15,sm-base,PolybenchC,trmm,0.027310067466922425,execution_time,VersionABCD
+2022-07-16,sm-base,PolybenchC,trmm,0.027327122479747702,execution_time,VersionABCD
+2022-07-17,sm-base,PolybenchC,trmm,0.027324027696159065,execution_time,VersionABCD
+2022-07-18,sm-base,PolybenchC,trmm,0.02734083838535783,execution_time,VersionABCD
+2022-07-19,sm-base,PolybenchC,trmm,0.027371262887068676,execution_time,VersionABCD
+2022-07-20,sm-base,PolybenchC,trmm,0.027393961709825883,execution_time,VersionABCD
+2022-07-21,sm-base,PolybenchC,trmm,0.027416247861646533,execution_time,VersionABCD
+2022-07-22,sm-base,PolybenchC,trmm,0.027409632590117992,execution_time,VersionABCD
+2022-07-23,sm-base,PolybenchC,trmm,0.027431409072673035,execution_time,VersionABCD
+2022-07-24,sm-base,PolybenchC,trmm,0.027431278465730066,execution_time,VersionABCD
+2022-07-25,sm-base,PolybenchC,trmm,0.027435705695627807,execution_time,VersionABCD
+2022-07-26,sm-base,PolybenchC,trmm,0.027445139740788327,execution_time,VersionABCD
+2022-07-27,sm-base,PolybenchC,trmm,0.027454816140099057,execution_time,VersionABCD
+2022-07-28,sm-base,PolybenchC,trmm,0.02745148622200809,execution_time,VersionABCD
+2022-07-29,sm-base,PolybenchC,trmm,0.02746125305037993,execution_time,VersionABCD
+2022-07-30,sm-base,PolybenchC,trmm,0.027497441339757484,execution_time,VersionABCD
+2022-07-31,sm-base,PolybenchC,trmm,0.02753125059398372,execution_time,VersionABCD
+2022-08-01,sm-base,PolybenchC,trmm,0.027525480512405068,execution_time,VersionABCD
+2022-08-02,sm-base,PolybenchC,trmm,0.027519747341678193,execution_time,VersionABCD
+2022-08-03,sm-base,PolybenchC,trmm,0.027535775352515803,execution_time,VersionABCD
+2022-08-04,sm-base,PolybenchC,trmm,0.027563527200049554,execution_time,VersionABCD
+2022-08-05,sm-base,PolybenchC,trmm,0.027566825360487934,execution_time,VersionABCD
+2022-08-06,sm-base,PolybenchC,trmm,0.02760585264429172,execution_time,VersionABCD
+2022-08-07,sm-base,PolybenchC,trmm,0.02763682634674548,execution_time,VersionABCD
+2022-08-08,sm-base,PolybenchC,trmm,0.02764212883826901,execution_time,VersionABCD
+2022-08-09,sm-base,PolybenchC,trmm,0.02763571940159932,execution_time,VersionABCD
+2022-08-10,sm-base,PolybenchC,trmm,0.027635274317928574,execution_time,VersionABCD
+2022-08-11,sm-base,PolybenchC,trmm,0.027667235344090914,execution_time,VersionABCD
+2022-08-12,sm-base,PolybenchC,trmm,0.02767796935420516,execution_time,VersionABCD
+2022-08-13,sm-base,PolybenchC,trmm,0.02767166421510576,execution_time,VersionABCD
+2022-08-14,sm-base,PolybenchC,trmm,0.027666300320939634,execution_time,VersionABCD
+2022-08-15,sm-base,PolybenchC,trmm,0.027671663916578444,execution_time,VersionABCD
+2022-08-16,sm-base,PolybenchC,trmm,0.027689127718444763,execution_time,VersionABCD
+2022-08-17,sm-base,PolybenchC,trmm,0.027714953779455008,execution_time,VersionABCD
+2022-08-18,sm-base,PolybenchC,trmm,0.02771954276716264,execution_time,VersionABCD
+2022-08-19,sm-base,PolybenchC,trmm,0.027739072018952565,execution_time,VersionABCD
+2022-08-20,sm-base,PolybenchC,trmm,0.02772957592648851,execution_time,VersionABCD
+2022-08-21,sm-base,PolybenchC,trmm,0.02776216434750693,execution_time,VersionABCD
+2022-08-22,sm-base,PolybenchC,trmm,0.027773442877236515,execution_time,VersionABCD
+2022-08-23,sm-base,PolybenchC,trmm,0.027803642129071403,execution_time,VersionABCD
+2022-08-24,sm-base,PolybenchC,trmm,0.027838358536359492,execution_time,VersionABCD
+2022-08-25,sm-base,PolybenchC,trmm,0.027831453534007622,execution_time,VersionABCD
+2022-08-26,sm-base,PolybenchC,trmm,0.02785464959633542,execution_time,VersionABCD
+2022-08-27,sm-base,PolybenchC,trmm,0.0278524336065997,execution_time,VersionABCD
+2022-08-28,sm-base,PolybenchC,trmm,0.027875410726345237,execution_time,VersionABCD
+2022-08-29,sm-base,PolybenchC,trmm,0.027891136430539643,execution_time,VersionABCD
+2022-08-30,sm-base,PolybenchC,trmm,0.027919247309102,execution_time,VersionABCD
+2022-08-31,sm-base,PolybenchC,trmm,0.027912852551731517,execution_time,VersionABCD
+2022-09-01,sm-base,PolybenchC,trmm,0.02793341123748916,execution_time,VersionABCD
+2022-09-02,sm-base,PolybenchC,trmm,0.027965331845813197,execution_time,VersionABCD
+2022-09-03,sm-base,PolybenchC,trmm,0.027939284719971095,execution_time,VersionABCD
+2022-09-04,sm-base,PolybenchC,trmm,0.02792673566654134,execution_time,VersionABCD
+2022-09-05,sm-base,PolybenchC,trmm,0.02790245360989903,execution_time,VersionABCD
+2022-09-06,sm-base,PolybenchC,trmm,0.02787578093028139,execution_time,VersionABCD
+2022-09-07,sm-base,PolybenchC,trmm,0.027850061658234247,execution_time,VersionABCD
+2022-09-08,sm-base,PolybenchC,trmm,0.027826065783963377,execution_time,VersionABCD
+2022-09-09,sm-base,PolybenchC,trmm,0.027789405246843084,execution_time,VersionABCD
+2022-09-10,sm-base,PolybenchC,trmm,0.02776712101171962,execution_time,VersionABCD
+2022-09-11,sm-base,PolybenchC,trmm,0.02775161172827387,execution_time,VersionABCD
+2022-09-12,sm-base,PolybenchC,trmm,0.027734218561882563,execution_time,VersionABCD
+2022-09-13,sm-base,PolybenchC,trmm,0.027705382511004007,execution_time,VersionABCD
+2022-09-14,sm-base,PolybenchC,trmm,0.027688829614023955,execution_time,VersionABCD
+2022-09-15,sm-base,PolybenchC,trmm,0.02766608839253884,execution_time,VersionABCD
+2022-09-16,sm-base,PolybenchC,trmm,0.02762844354413902,execution_time,VersionABCD
+2022-09-17,sm-base,PolybenchC,trmm,0.027589446231544724,execution_time,VersionABCD
+2022-09-18,sm-base,PolybenchC,trmm,0.027558007964600142,execution_time,VersionABCD
+2022-09-19,sm-base,PolybenchC,trmm,0.027544656660088093,execution_time,VersionABCD
+2022-09-20,sm-base,PolybenchC,trmm,0.027506824940687957,execution_time,VersionABCD
+2022-09-21,sm-base,PolybenchC,trmm,0.027492924288036794,execution_time,VersionABCD
+2022-09-22,sm-base,PolybenchC,trmm,0.027458312334099847,execution_time,VersionABCD
+2022-09-23,sm-base,PolybenchC,trmm,0.027440823675821166,execution_time,VersionABCD
+2022-09-24,sm-base,PolybenchC,trmm,0.027414419447554912,execution_time,VersionABCD
+2022-09-25,sm-base,PolybenchC,trmm,0.027388029177517398,execution_time,VersionABCD
+2022-09-26,sm-base,PolybenchC,trmm,0.027373559173403464,execution_time,VersionABCD
+2022-09-27,sm-base,PolybenchC,trmm,0.02735658341244921,execution_time,VersionABCD
+2022-09-28,sm-base,PolybenchC,trmm,0.027326048831256656,execution_time,VersionABCD
+2022-09-29,sm-base,PolybenchC,trmm,0.027296920644839084,execution_time,VersionABCD
+2022-09-30,sm-base,PolybenchC,trmm,0.027282054817942873,execution_time,VersionABCD
+2022-10-01,sm-base,PolybenchC,trmm,0.02726732516285046,execution_time,VersionABCD
+2022-10-02,sm-base,PolybenchC,trmm,0.027242202873142926,execution_time,VersionABCD
+2022-10-03,sm-base,PolybenchC,trmm,0.027229641215330915,execution_time,VersionABCD
+2022-10-04,sm-base,PolybenchC,trmm,0.02719472203207963,execution_time,VersionABCD
+2022-10-05,sm-base,PolybenchC,trmm,0.027160855040787826,execution_time,VersionABCD
+2022-10-06,sm-base,PolybenchC,trmm,0.027150709982183475,execution_time,VersionABCD
+2022-10-07,sm-base,PolybenchC,trmm,0.027137575389562883,execution_time,VersionABCD
+2022-10-08,sm-base,PolybenchC,trmm,0.02711909175575244,execution_time,VersionABCD
+2022-10-09,sm-base,PolybenchC,trmm,0.02709634554021132,execution_time,VersionABCD
+2022-10-10,sm-base,PolybenchC,trmm,0.02707773816468539,execution_time,VersionABCD
+2022-10-11,sm-base,PolybenchC,trmm,0.027043342142667577,execution_time,VersionABCD
+2022-10-12,sm-base,PolybenchC,trmm,0.02700417609840256,execution_time,VersionABCD
+2022-10-13,sm-base,PolybenchC,trmm,0.026988086632721488,execution_time,VersionABCD
+2022-10-14,sm-base,PolybenchC,trmm,0.026965824429295727,execution_time,VersionABCD
+2022-10-15,sm-base,PolybenchC,trmm,0.02694885589765136,execution_time,VersionABCD
+2022-10-16,sm-base,PolybenchC,trmm,0.026930853517307906,execution_time,VersionABCD
+2022-10-17,sm-base,PolybenchC,trmm,0.02691261732667273,execution_time,VersionABCD
+2022-10-18,sm-base,PolybenchC,trmm,0.026901458278976543,execution_time,VersionABCD
+2022-10-19,sm-base,PolybenchC,trmm,0.0268872606181136,execution_time,VersionABCD
+2022-10-20,sm-base,PolybenchC,trmm,0.026857493756597125,execution_time,VersionABCD
+2022-10-21,sm-base,PolybenchC,trmm,0.026822694119242353,execution_time,VersionABCD
+2022-10-22,sm-base,PolybenchC,trmm,0.026804632570521854,execution_time,VersionABCD
+2022-10-23,sm-base,PolybenchC,trmm,0.026783067887019965,execution_time,VersionABCD
+2022-10-24,sm-base,PolybenchC,trmm,0.026749196395413143,execution_time,VersionABCD
+2022-10-25,sm-base,PolybenchC,trmm,0.026723578869855755,execution_time,VersionABCD
+2022-10-26,sm-base,PolybenchC,trmm,0.026711995304529522,execution_time,VersionABCD
+2022-10-27,sm-base,PolybenchC,trmm,0.026684612566308667,execution_time,VersionABCD
+2022-10-28,sm-base,PolybenchC,trmm,0.02666885757466351,execution_time,VersionABCD
+2022-10-29,sm-base,PolybenchC,trmm,0.02663661030045528,execution_time,VersionABCD
+2022-10-30,sm-base,PolybenchC,trmm,0.02661714752672283,execution_time,VersionABCD
+2022-10-31,sm-base,PolybenchC,trmm,0.026588479809013424,execution_time,VersionABCD
+2022-11-01,sm-base,PolybenchC,trmm,0.026556608859268326,execution_time,VersionABCD
+2022-11-02,sm-base,PolybenchC,trmm,0.02651837531050741,execution_time,VersionABCD
+2022-11-03,sm-base,PolybenchC,trmm,0.026481344335768098,execution_time,VersionABCD
+2022-11-04,sm-base,PolybenchC,trmm,0.026463626336254712,execution_time,VersionABCD
+2022-11-05,sm-base,PolybenchC,trmm,0.026431702244688552,execution_time,VersionABCD
+2022-11-06,sm-base,PolybenchC,trmm,0.026396854870576296,execution_time,VersionABCD
+2022-11-07,sm-base,PolybenchC,trmm,0.0263616831037354,execution_time,VersionABCD
+2022-11-08,sm-base,PolybenchC,trmm,0.026330868469313436,execution_time,VersionABCD
+2022-11-09,sm-base,PolybenchC,trmm,0.02629137023019483,execution_time,VersionABCD
+2022-11-10,sm-base,PolybenchC,trmm,0.026276485644407536,execution_time,VersionABCD
+2022-11-11,sm-base,PolybenchC,trmm,0.026265667049783597,execution_time,VersionABCD
+2022-11-12,sm-base,PolybenchC,trmm,0.026234361478771485,execution_time,VersionABCD
+2022-11-13,sm-base,PolybenchC,trmm,0.02620409035784978,execution_time,VersionABCD
+2022-11-14,sm-base,PolybenchC,trmm,0.02617274357075279,execution_time,VersionABCD
+2022-11-15,sm-base,PolybenchC,trmm,0.02614378892405829,execution_time,VersionABCD
+2022-11-16,sm-base,PolybenchC,trmm,0.026112926652832606,execution_time,VersionABCD
+2022-11-17,sm-base,PolybenchC,trmm,0.026097937416421742,execution_time,VersionABCD
+2022-11-18,sm-base,PolybenchC,trmm,0.026066293332399508,execution_time,VersionABCD
+2022-11-19,sm-base,PolybenchC,trmm,0.026042557978970354,execution_time,VersionABCD
+2022-11-20,sm-base,PolybenchC,trmm,0.026025246893470806,execution_time,VersionABCD
+2022-11-21,sm-base,PolybenchC,trmm,0.026008913327927385,execution_time,VersionABCD
+2022-11-22,sm-base,PolybenchC,trmm,0.025992098017844512,execution_time,VersionABCD
+2022-11-23,sm-base,PolybenchC,trmm,0.025976000407927205,execution_time,VersionABCD
+2022-11-24,sm-base,PolybenchC,trmm,0.0259489907475773,execution_time,VersionABCD
+2022-11-25,sm-base,PolybenchC,trmm,0.025921187963640548,execution_time,VersionABCD
+2022-11-26,sm-base,PolybenchC,trmm,0.02591030376212349,execution_time,VersionABCD
+2022-11-27,sm-base,PolybenchC,trmm,0.0258719660418653,execution_time,VersionABCD
+2022-11-28,sm-base,PolybenchC,trmm,0.025836219849103562,execution_time,VersionABCD
+2022-11-29,sm-base,PolybenchC,trmm,0.025815293194793223,execution_time,VersionABCD
+2022-11-30,sm-base,PolybenchC,trmm,0.0257841937289163,execution_time,VersionABCD
+2022-12-01,sm-base,PolybenchC,trmm,0.025750147012511305,execution_time,VersionABCD
+2022-12-02,sm-base,PolybenchC,trmm,0.025735173068201958,execution_time,VersionABCD
+2022-12-03,sm-base,PolybenchC,trmm,0.02571500853861305,execution_time,VersionABCD
+2022-12-04,sm-base,PolybenchC,trmm,0.025684862053956654,execution_time,VersionABCD
+2022-12-05,sm-base,PolybenchC,trmm,0.025668787435999655,execution_time,VersionABCD
+2022-12-06,sm-base,PolybenchC,trmm,0.025656964340025686,execution_time,VersionABCD
+2022-12-07,sm-base,PolybenchC,trmm,0.025621307087778662,execution_time,VersionABCD
+2022-12-08,sm-base,PolybenchC,trmm,0.02558665133235917,execution_time,VersionABCD
+2022-12-09,sm-base,PolybenchC,trmm,0.02555072267922761,execution_time,VersionABCD
+2022-12-10,sm-base,PolybenchC,trmm,0.02552309967045635,execution_time,VersionABCD
+2022-12-11,sm-base,PolybenchC,trmm,0.025496859477574536,execution_time,VersionABCD
+2022-12-12,sm-base,PolybenchC,trmm,0.02546395581066831,execution_time,VersionABCD
+2022-12-13,sm-base,PolybenchC,trmm,0.025441458669619152,execution_time,VersionABCD
+2022-12-14,sm-base,PolybenchC,trmm,0.02540256003695673,execution_time,VersionABCD
+2022-12-15,sm-base,PolybenchC,trmm,0.025390832078306863,execution_time,VersionABCD
+2022-12-16,sm-base,PolybenchC,trmm,0.025369751468529746,execution_time,VersionABCD
+2022-12-17,sm-base,PolybenchC,trmm,0.025345909694728237,execution_time,VersionABCD
+2022-12-18,sm-base,PolybenchC,trmm,0.025334922509116762,execution_time,VersionABCD
+2022-12-19,sm-base,PolybenchC,trmm,0.025314361807004852,execution_time,VersionABCD
+2022-12-20,sm-base,PolybenchC,trmm,0.025284812228827582,execution_time,VersionABCD
+2022-12-21,sm-base,PolybenchC,trmm,0.02524625633952162,execution_time,VersionABCD
+2022-12-22,sm-base,PolybenchC,trmm,0.025209174473607657,execution_time,VersionABCD
+2022-12-23,sm-base,PolybenchC,trmm,0.025174441090104773,execution_time,VersionABCD
+2022-12-24,sm-base,PolybenchC,trmm,0.025150271495937602,execution_time,VersionABCD
+2022-12-25,sm-base,PolybenchC,trmm,0.02511718283785931,execution_time,VersionABCD
+2022-12-26,sm-base,PolybenchC,trmm,0.025105357571345965,execution_time,VersionABCD
+2022-12-27,sm-base,PolybenchC,trmm,0.025086527684840168,execution_time,VersionABCD
+2022-12-28,sm-base,PolybenchC,trmm,0.025067313871105494,execution_time,VersionABCD
+2022-12-29,sm-base,PolybenchC,trmm,0.02503694383559593,execution_time,VersionABCD
+2022-12-30,sm-base,PolybenchC,trmm,0.024999986845127328,execution_time,VersionABCD
+2022-12-31,sm-base,PolybenchC,trmm,0.024975075753878584,execution_time,VersionABCD
+2022-01-01,wasm,PolybenchC,trmm,0.041955651589984044,execution_time,VersionABCD
+2022-01-02,wasm,PolybenchC,trmm,0.04196524514450744,execution_time,VersionABCD
+2022-01-03,wasm,PolybenchC,trmm,0.04197653065746098,execution_time,VersionABCD
+2022-01-04,wasm,PolybenchC,trmm,0.041988300154838135,execution_time,VersionABCD
+2022-01-05,wasm,PolybenchC,trmm,0.04198752895356343,execution_time,VersionABCD
+2022-01-06,wasm,PolybenchC,trmm,0.042006563366801336,execution_time,VersionABCD
+2022-01-07,wasm,PolybenchC,trmm,0.04203829119872858,execution_time,VersionABCD
+2022-01-08,wasm,PolybenchC,trmm,0.04206140167281285,execution_time,VersionABCD
+2022-01-09,wasm,PolybenchC,trmm,0.04206277608838343,execution_time,VersionABCD
+2022-01-10,wasm,PolybenchC,trmm,0.04205967995525702,execution_time,VersionABCD
+2022-01-11,wasm,PolybenchC,trmm,0.04206623241478195,execution_time,VersionABCD
+2022-01-12,wasm,PolybenchC,trmm,0.04209598865769145,execution_time,VersionABCD
+2022-01-13,wasm,PolybenchC,trmm,0.04209756666589276,execution_time,VersionABCD
+2022-01-14,wasm,PolybenchC,trmm,0.04209707863060396,execution_time,VersionABCD
+2022-01-15,wasm,PolybenchC,trmm,0.042111138230597735,execution_time,VersionABCD
+2022-01-16,wasm,PolybenchC,trmm,0.042103033355909314,execution_time,VersionABCD
+2022-01-17,wasm,PolybenchC,trmm,0.04210856418788555,execution_time,VersionABCD
+2022-01-18,wasm,PolybenchC,trmm,0.04212011881292299,execution_time,VersionABCD
+2022-01-19,wasm,PolybenchC,trmm,0.042126244191376894,execution_time,VersionABCD
+2022-01-20,wasm,PolybenchC,trmm,0.042164198199562505,execution_time,VersionABCD
+2022-01-21,wasm,PolybenchC,trmm,0.0421969859300757,execution_time,VersionABCD
+2022-01-22,wasm,PolybenchC,trmm,0.04218700052608322,execution_time,VersionABCD
+2022-01-23,wasm,PolybenchC,trmm,0.04219311751654383,execution_time,VersionABCD
+2022-01-24,wasm,PolybenchC,trmm,0.04220557063240774,execution_time,VersionABCD
+2022-01-25,wasm,PolybenchC,trmm,0.04222072628670144,execution_time,VersionABCD
+2022-01-26,wasm,PolybenchC,trmm,0.04225674463155918,execution_time,VersionABCD
+2022-01-27,wasm,PolybenchC,trmm,0.042269767184273756,execution_time,VersionABCD
+2022-01-28,wasm,PolybenchC,trmm,0.042302429174362895,execution_time,VersionABCD
+2022-01-29,wasm,PolybenchC,trmm,0.04230803966250068,execution_time,VersionABCD
+2022-01-30,wasm,PolybenchC,trmm,0.04233972808300421,execution_time,VersionABCD
+2022-01-31,wasm,PolybenchC,trmm,0.04234921633599933,execution_time,VersionABCD
+2022-02-01,wasm,PolybenchC,trmm,0.04238461893753343,execution_time,VersionABCD
+2022-02-02,wasm,PolybenchC,trmm,0.04238146487877302,execution_time,VersionABCD
+2022-02-03,wasm,PolybenchC,trmm,0.04237722169797632,execution_time,VersionABCD
+2022-02-04,wasm,PolybenchC,trmm,0.04241418452246376,execution_time,VersionABCD
+2022-02-05,wasm,PolybenchC,trmm,0.042410022183137254,execution_time,VersionABCD
+2022-02-06,wasm,PolybenchC,trmm,0.04240144707911033,execution_time,VersionABCD
+2022-02-07,wasm,PolybenchC,trmm,0.04243803665895817,execution_time,VersionABCD
+2022-02-08,wasm,PolybenchC,trmm,0.04244416186330695,execution_time,VersionABCD
+2022-02-09,wasm,PolybenchC,trmm,0.042475312370907174,execution_time,VersionABCD
+2022-02-10,wasm,PolybenchC,trmm,0.042503901194452354,execution_time,VersionABCD
+2022-02-11,wasm,PolybenchC,trmm,0.04250611096679434,execution_time,VersionABCD
+2022-02-12,wasm,PolybenchC,trmm,0.042503116038706254,execution_time,VersionABCD
+2022-02-13,wasm,PolybenchC,trmm,0.04250030581772945,execution_time,VersionABCD
+2022-02-14,wasm,PolybenchC,trmm,0.04252679566896352,execution_time,VersionABCD
+2022-02-15,wasm,PolybenchC,trmm,0.042550917459833325,execution_time,VersionABCD
+2022-02-16,wasm,PolybenchC,trmm,0.04254633469494317,execution_time,VersionABCD
+2022-02-17,wasm,PolybenchC,trmm,0.04256525732928272,execution_time,VersionABCD
+2022-02-18,wasm,PolybenchC,trmm,0.04259991892973373,execution_time,VersionABCD
+2022-02-19,wasm,PolybenchC,trmm,0.042599009527523775,execution_time,VersionABCD
+2022-02-20,wasm,PolybenchC,trmm,0.042614384748781785,execution_time,VersionABCD
+2022-02-21,wasm,PolybenchC,trmm,0.042653977199285605,execution_time,VersionABCD
+2022-02-22,wasm,PolybenchC,trmm,0.04265620552305208,execution_time,VersionABCD
+2022-02-23,wasm,PolybenchC,trmm,0.04267971457227843,execution_time,VersionABCD
+2022-02-24,wasm,PolybenchC,trmm,0.042672578502962945,execution_time,VersionABCD
+2022-02-25,wasm,PolybenchC,trmm,0.04268534098778284,execution_time,VersionABCD
+2022-02-26,wasm,PolybenchC,trmm,0.042680321287903236,execution_time,VersionABCD
+2022-02-27,wasm,PolybenchC,trmm,0.04267713361051739,execution_time,VersionABCD
+2022-02-28,wasm,PolybenchC,trmm,0.04267242872998605,execution_time,VersionABCD
+2022-03-01,wasm,PolybenchC,trmm,0.042706924407590975,execution_time,VersionABCD
+2022-03-02,wasm,PolybenchC,trmm,0.04272158758440882,execution_time,VersionABCD
+2022-03-03,wasm,PolybenchC,trmm,0.042740116167539144,execution_time,VersionABCD
+2022-03-04,wasm,PolybenchC,trmm,0.04273635555059122,execution_time,VersionABCD
+2022-03-05,wasm,PolybenchC,trmm,0.04276414645857642,execution_time,VersionABCD
+2022-03-06,wasm,PolybenchC,trmm,0.04277452182129567,execution_time,VersionABCD
+2022-03-07,wasm,PolybenchC,trmm,0.04276473048227552,execution_time,VersionABCD
+2022-03-08,wasm,PolybenchC,trmm,0.042773282861675546,execution_time,VersionABCD
+2022-03-09,wasm,PolybenchC,trmm,0.04277637632670794,execution_time,VersionABCD
+2022-03-10,wasm,PolybenchC,trmm,0.042769256728888504,execution_time,VersionABCD
+2022-03-11,wasm,PolybenchC,trmm,0.04280160105653758,execution_time,VersionABCD
+2022-03-12,wasm,PolybenchC,trmm,0.042811355141103666,execution_time,VersionABCD
+2022-03-13,wasm,PolybenchC,trmm,0.04282741281854953,execution_time,VersionABCD
+2022-03-14,wasm,PolybenchC,trmm,0.042849836101073076,execution_time,VersionABCD
+2022-03-15,wasm,PolybenchC,trmm,0.04287463404792144,execution_time,VersionABCD
+2022-03-16,wasm,PolybenchC,trmm,0.04291110005172311,execution_time,VersionABCD
+2022-03-17,wasm,PolybenchC,trmm,0.042911971637139425,execution_time,VersionABCD
+2022-03-18,wasm,PolybenchC,trmm,0.042920372678821025,execution_time,VersionABCD
+2022-03-19,wasm,PolybenchC,trmm,0.04295166011472013,execution_time,VersionABCD
+2022-03-20,wasm,PolybenchC,trmm,0.04295414026386895,execution_time,VersionABCD
+2022-03-21,wasm,PolybenchC,trmm,0.04297053454881019,execution_time,VersionABCD
+2022-03-22,wasm,PolybenchC,trmm,0.04300488754275036,execution_time,VersionABCD
+2022-03-23,wasm,PolybenchC,trmm,0.043034511546765034,execution_time,VersionABCD
+2022-03-24,wasm,PolybenchC,trmm,0.04303998099980234,execution_time,VersionABCD
+2022-03-25,wasm,PolybenchC,trmm,0.04304582957218233,execution_time,VersionABCD
+2022-03-26,wasm,PolybenchC,trmm,0.043064949127799144,execution_time,VersionABCD
+2022-03-27,wasm,PolybenchC,trmm,0.04307069012490443,execution_time,VersionABCD
+2022-03-28,wasm,PolybenchC,trmm,0.043061706145191454,execution_time,VersionABCD
+2022-03-29,wasm,PolybenchC,trmm,0.0430745519592762,execution_time,VersionABCD
+2022-03-30,wasm,PolybenchC,trmm,0.043082536974795554,execution_time,VersionABCD
+2022-03-31,wasm,PolybenchC,trmm,0.04309159623508355,execution_time,VersionABCD
+2022-04-01,wasm,PolybenchC,trmm,0.04309405856508573,execution_time,VersionABCD
+2022-04-02,wasm,PolybenchC,trmm,0.043097056786844355,execution_time,VersionABCD
+2022-04-03,wasm,PolybenchC,trmm,0.04310022057592456,execution_time,VersionABCD
+2022-04-04,wasm,PolybenchC,trmm,0.043129585768194194,execution_time,VersionABCD
+2022-04-05,wasm,PolybenchC,trmm,0.043153005069512904,execution_time,VersionABCD
+2022-04-06,wasm,PolybenchC,trmm,0.04316186729463002,execution_time,VersionABCD
+2022-04-07,wasm,PolybenchC,trmm,0.04319622107922648,execution_time,VersionABCD
+2022-04-08,wasm,PolybenchC,trmm,0.04318686921014365,execution_time,VersionABCD
+2022-04-09,wasm,PolybenchC,trmm,0.04322122412172536,execution_time,VersionABCD
+2022-04-10,wasm,PolybenchC,trmm,0.04322515486393222,execution_time,VersionABCD
+2022-04-11,wasm,PolybenchC,trmm,0.04324020545792045,execution_time,VersionABCD
+2022-04-12,wasm,PolybenchC,trmm,0.04326296555554565,execution_time,VersionABCD
+2022-04-13,wasm,PolybenchC,trmm,0.043262018203303186,execution_time,VersionABCD
+2022-04-14,wasm,PolybenchC,trmm,0.04327133539088592,execution_time,VersionABCD
+2022-04-15,wasm,PolybenchC,trmm,0.04327365321216426,execution_time,VersionABCD
+2022-04-16,wasm,PolybenchC,trmm,0.04328134634009669,execution_time,VersionABCD
+2022-04-17,wasm,PolybenchC,trmm,0.04327815275002084,execution_time,VersionABCD
+2022-04-18,wasm,PolybenchC,trmm,0.04329962130886201,execution_time,VersionABCD
+2022-04-19,wasm,PolybenchC,trmm,0.04333348372532373,execution_time,VersionABCD
+2022-04-20,wasm,PolybenchC,trmm,0.04334337684885628,execution_time,VersionABCD
+2022-04-21,wasm,PolybenchC,trmm,0.043355628441095494,execution_time,VersionABCD
+2022-04-22,wasm,PolybenchC,trmm,0.04335489467317879,execution_time,VersionABCD
+2022-04-23,wasm,PolybenchC,trmm,0.04336563182820046,execution_time,VersionABCD
+2022-04-24,wasm,PolybenchC,trmm,0.04337623779578198,execution_time,VersionABCD
+2022-04-25,wasm,PolybenchC,trmm,0.04337819106661745,execution_time,VersionABCD
+2022-04-26,wasm,PolybenchC,trmm,0.0433959573605202,execution_time,VersionABCD
+2022-04-27,wasm,PolybenchC,trmm,0.04340719289137509,execution_time,VersionABCD
+2022-04-28,wasm,PolybenchC,trmm,0.043412190803239124,execution_time,VersionABCD
+2022-04-29,wasm,PolybenchC,trmm,0.04342740084159654,execution_time,VersionABCD
+2022-04-30,wasm,PolybenchC,trmm,0.04346682892011159,execution_time,VersionABCD
+2022-05-01,wasm,PolybenchC,trmm,0.043488592876727315,execution_time,VersionABCD
+2022-05-02,wasm,PolybenchC,trmm,0.043522596891883376,execution_time,VersionABCD
+2022-05-03,wasm,PolybenchC,trmm,0.043521577955573,execution_time,VersionABCD
+2022-05-04,wasm,PolybenchC,trmm,0.0435266905043954,execution_time,VersionABCD
+2022-05-05,wasm,PolybenchC,trmm,0.04351670878093414,execution_time,VersionABCD
+2022-05-06,wasm,PolybenchC,trmm,0.04351251566424793,execution_time,VersionABCD
+2022-05-07,wasm,PolybenchC,trmm,0.04353548551877958,execution_time,VersionABCD
+2022-05-08,wasm,PolybenchC,trmm,0.04353004589651095,execution_time,VersionABCD
+2022-05-09,wasm,PolybenchC,trmm,0.043557435487084774,execution_time,VersionABCD
+2022-05-10,wasm,PolybenchC,trmm,0.04359462888568069,execution_time,VersionABCD
+2022-05-11,wasm,PolybenchC,trmm,0.04358599245042327,execution_time,VersionABCD
+2022-05-12,wasm,PolybenchC,trmm,0.043621557494587536,execution_time,VersionABCD
+2022-05-13,wasm,PolybenchC,trmm,0.04363060312575135,execution_time,VersionABCD
+2022-05-14,wasm,PolybenchC,trmm,0.043659302082259245,execution_time,VersionABCD
+2022-05-15,wasm,PolybenchC,trmm,0.04367404013475827,execution_time,VersionABCD
+2022-05-16,wasm,PolybenchC,trmm,0.043685864084852685,execution_time,VersionABCD
+2022-05-17,wasm,PolybenchC,trmm,0.04370359496011426,execution_time,VersionABCD
+2022-05-18,wasm,PolybenchC,trmm,0.043727655641704465,execution_time,VersionABCD
+2022-05-19,wasm,PolybenchC,trmm,0.04375095060912073,execution_time,VersionABCD
+2022-05-20,wasm,PolybenchC,trmm,0.04375906724229508,execution_time,VersionABCD
+2022-05-21,wasm,PolybenchC,trmm,0.04379502071759911,execution_time,VersionABCD
+2022-05-22,wasm,PolybenchC,trmm,0.04379260919090661,execution_time,VersionABCD
+2022-05-23,wasm,PolybenchC,trmm,0.0438166226238388,execution_time,VersionABCD
+2022-05-24,wasm,PolybenchC,trmm,0.043820915150048496,execution_time,VersionABCD
+2022-05-25,wasm,PolybenchC,trmm,0.04385124348926531,execution_time,VersionABCD
+2022-05-26,wasm,PolybenchC,trmm,0.043874806088410934,execution_time,VersionABCD
+2022-05-27,wasm,PolybenchC,trmm,0.04389422255579212,execution_time,VersionABCD
+2022-05-28,wasm,PolybenchC,trmm,0.04390142828086011,execution_time,VersionABCD
+2022-05-29,wasm,PolybenchC,trmm,0.04390983173987264,execution_time,VersionABCD
+2022-05-30,wasm,PolybenchC,trmm,0.043923325845394406,execution_time,VersionABCD
+2022-05-31,wasm,PolybenchC,trmm,0.04392918458384771,execution_time,VersionABCD
+2022-06-01,wasm,PolybenchC,trmm,0.043956634663540786,execution_time,VersionABCD
+2022-06-02,wasm,PolybenchC,trmm,0.04399381281867052,execution_time,VersionABCD
+2022-06-03,wasm,PolybenchC,trmm,0.044028270564373716,execution_time,VersionABCD
+2022-06-04,wasm,PolybenchC,trmm,0.04403001226935502,execution_time,VersionABCD
+2022-06-05,wasm,PolybenchC,trmm,0.04402440815096907,execution_time,VersionABCD
+2022-06-06,wasm,PolybenchC,trmm,0.04401746178697426,execution_time,VersionABCD
+2022-06-07,wasm,PolybenchC,trmm,0.04405688450352817,execution_time,VersionABCD
+2022-06-08,wasm,PolybenchC,trmm,0.04405776261857394,execution_time,VersionABCD
+2022-06-09,wasm,PolybenchC,trmm,0.0440677036938011,execution_time,VersionABCD
+2022-06-10,wasm,PolybenchC,trmm,0.044102509824330054,execution_time,VersionABCD
+2022-06-11,wasm,PolybenchC,trmm,0.044124415538948095,execution_time,VersionABCD
+2022-06-12,wasm,PolybenchC,trmm,0.04415210733239705,execution_time,VersionABCD
+2022-06-13,wasm,PolybenchC,trmm,0.04418372426583399,execution_time,VersionABCD
+2022-06-14,wasm,PolybenchC,trmm,0.0442181795479977,execution_time,VersionABCD
+2022-06-15,wasm,PolybenchC,trmm,0.04421697242904267,execution_time,VersionABCD
+2022-06-16,wasm,PolybenchC,trmm,0.04422853096850433,execution_time,VersionABCD
+2022-06-17,wasm,PolybenchC,trmm,0.0442430331967709,execution_time,VersionABCD
+2022-06-18,wasm,PolybenchC,trmm,0.04423678251904343,execution_time,VersionABCD
+2022-06-19,wasm,PolybenchC,trmm,0.044257451625839356,execution_time,VersionABCD
+2022-06-20,wasm,PolybenchC,trmm,0.04427974612402422,execution_time,VersionABCD
+2022-06-21,wasm,PolybenchC,trmm,0.04427725244770207,execution_time,VersionABCD
+2022-06-22,wasm,PolybenchC,trmm,0.044301877468979844,execution_time,VersionABCD
+2022-06-23,wasm,PolybenchC,trmm,0.04430351915951169,execution_time,VersionABCD
+2022-06-24,wasm,PolybenchC,trmm,0.04430062113787524,execution_time,VersionABCD
+2022-06-25,wasm,PolybenchC,trmm,0.04430000117041998,execution_time,VersionABCD
+2022-06-26,wasm,PolybenchC,trmm,0.0442931529903679,execution_time,VersionABCD
+2022-06-27,wasm,PolybenchC,trmm,0.0443203575860595,execution_time,VersionABCD
+2022-06-28,wasm,PolybenchC,trmm,0.0443484112645534,execution_time,VersionABCD
+2022-06-29,wasm,PolybenchC,trmm,0.04435605857380645,execution_time,VersionABCD
+2022-06-30,wasm,PolybenchC,trmm,0.04439087206276165,execution_time,VersionABCD
+2022-07-01,wasm,PolybenchC,trmm,0.04439078886640889,execution_time,VersionABCD
+2022-07-02,wasm,PolybenchC,trmm,0.04439492498915704,execution_time,VersionABCD
+2022-07-03,wasm,PolybenchC,trmm,0.04443015579298814,execution_time,VersionABCD
+2022-07-04,wasm,PolybenchC,trmm,0.044462463075738014,execution_time,VersionABCD
+2022-07-05,wasm,PolybenchC,trmm,0.044481236862779376,execution_time,VersionABCD
+2022-07-06,wasm,PolybenchC,trmm,0.044480954308421604,execution_time,VersionABCD
+2022-07-07,wasm,PolybenchC,trmm,0.04448072109685231,execution_time,VersionABCD
+2022-07-08,wasm,PolybenchC,trmm,0.04448054222618468,execution_time,VersionABCD
+2022-07-09,wasm,PolybenchC,trmm,0.044479600674390975,execution_time,VersionABCD
+2022-07-10,wasm,PolybenchC,trmm,0.04447864684510005,execution_time,VersionABCD
+2022-07-11,wasm,PolybenchC,trmm,0.044478589588472964,execution_time,VersionABCD
+2022-07-12,wasm,PolybenchC,trmm,0.0444778609854676,execution_time,VersionABCD
+2022-07-13,wasm,PolybenchC,trmm,0.04447745843608991,execution_time,VersionABCD
+2022-07-14,wasm,PolybenchC,trmm,0.04447686684160635,execution_time,VersionABCD
+2022-07-15,wasm,PolybenchC,trmm,0.044476170500753656,execution_time,VersionABCD
+2022-07-16,wasm,PolybenchC,trmm,0.04447533574762894,execution_time,VersionABCD
+2022-07-17,wasm,PolybenchC,trmm,0.04447459196654024,execution_time,VersionABCD
+2022-07-18,wasm,PolybenchC,trmm,0.04447423815555729,execution_time,VersionABCD
+2022-07-19,wasm,PolybenchC,trmm,0.044474104264992306,execution_time,VersionABCD
+2022-07-20,wasm,PolybenchC,trmm,0.04447346943099096,execution_time,VersionABCD
+2022-07-21,wasm,PolybenchC,trmm,0.04447283261174515,execution_time,VersionABCD
+2022-07-22,wasm,PolybenchC,trmm,0.04447216669549359,execution_time,VersionABCD
+2022-07-23,wasm,PolybenchC,trmm,0.04447165557669882,execution_time,VersionABCD
+2022-07-24,wasm,PolybenchC,trmm,0.04447133757033904,execution_time,VersionABCD
+2022-07-25,wasm,PolybenchC,trmm,0.04447110172543008,execution_time,VersionABCD
+2022-07-26,wasm,PolybenchC,trmm,0.044470695149863744,execution_time,VersionABCD
+2022-07-27,wasm,PolybenchC,trmm,0.04446969962915226,execution_time,VersionABCD
+2022-07-28,wasm,PolybenchC,trmm,0.04446892633042617,execution_time,VersionABCD
+2022-07-29,wasm,PolybenchC,trmm,0.04446885118639907,execution_time,VersionABCD
+2022-07-30,wasm,PolybenchC,trmm,0.04446808552429925,execution_time,VersionABCD
+2022-07-31,wasm,PolybenchC,trmm,0.04446766624857801,execution_time,VersionABCD
+2022-08-01,wasm,PolybenchC,trmm,0.04446743705943671,execution_time,VersionABCD
+2022-08-02,wasm,PolybenchC,trmm,0.04446682005915774,execution_time,VersionABCD
+2022-08-03,wasm,PolybenchC,trmm,0.0444659683519484,execution_time,VersionABCD
+2022-08-04,wasm,PolybenchC,trmm,0.04446571803775313,execution_time,VersionABCD
+2022-08-05,wasm,PolybenchC,trmm,0.04446526498008863,execution_time,VersionABCD
+2022-08-06,wasm,PolybenchC,trmm,0.044465150085430075,execution_time,VersionABCD
+2022-08-07,wasm,PolybenchC,trmm,0.04446468159258765,execution_time,VersionABCD
+2022-08-08,wasm,PolybenchC,trmm,0.04446440067880877,execution_time,VersionABCD
+2022-08-09,wasm,PolybenchC,trmm,0.04446428423621522,execution_time,VersionABCD
+2022-08-10,wasm,PolybenchC,trmm,0.04446386597694757,execution_time,VersionABCD
+2022-08-11,wasm,PolybenchC,trmm,0.04446301094360236,execution_time,VersionABCD
+2022-08-12,wasm,PolybenchC,trmm,0.04446229735126174,execution_time,VersionABCD
+2022-08-13,wasm,PolybenchC,trmm,0.044461614290021816,execution_time,VersionABCD
+2022-08-14,wasm,PolybenchC,trmm,0.044460821288038466,execution_time,VersionABCD
+2022-08-15,wasm,PolybenchC,trmm,0.04446025282641125,execution_time,VersionABCD
+2022-08-16,wasm,PolybenchC,trmm,0.044459465531023215,execution_time,VersionABCD
+2022-08-17,wasm,PolybenchC,trmm,0.0444584950197237,execution_time,VersionABCD
+2022-08-18,wasm,PolybenchC,trmm,0.04445766439898887,execution_time,VersionABCD
+2022-08-19,wasm,PolybenchC,trmm,0.04445675005141533,execution_time,VersionABCD
+2022-08-20,wasm,PolybenchC,trmm,0.0444566000293157,execution_time,VersionABCD
+2022-08-21,wasm,PolybenchC,trmm,0.04445586670350836,execution_time,VersionABCD
+2022-08-22,wasm,PolybenchC,trmm,0.04445580745026948,execution_time,VersionABCD
+2022-08-23,wasm,PolybenchC,trmm,0.04445510725412679,execution_time,VersionABCD
+2022-08-24,wasm,PolybenchC,trmm,0.04445458565205554,execution_time,VersionABCD
+2022-08-25,wasm,PolybenchC,trmm,0.044454121988747576,execution_time,VersionABCD
+2022-08-26,wasm,PolybenchC,trmm,0.04445332321085372,execution_time,VersionABCD
+2022-08-27,wasm,PolybenchC,trmm,0.04445330422171268,execution_time,VersionABCD
+2022-08-28,wasm,PolybenchC,trmm,0.04445313370283732,execution_time,VersionABCD
+2022-08-29,wasm,PolybenchC,trmm,0.044453124044188545,execution_time,VersionABCD
+2022-08-30,wasm,PolybenchC,trmm,0.04445269991449245,execution_time,VersionABCD
+2022-08-31,wasm,PolybenchC,trmm,0.04445215183942075,execution_time,VersionABCD
+2022-09-01,wasm,PolybenchC,trmm,0.04445204336610677,execution_time,VersionABCD
+2022-09-02,wasm,PolybenchC,trmm,0.044451908624769235,execution_time,VersionABCD
+2022-09-03,wasm,PolybenchC,trmm,0.04445115617564043,execution_time,VersionABCD
+2022-09-04,wasm,PolybenchC,trmm,0.04445031191191079,execution_time,VersionABCD
+2022-09-05,wasm,PolybenchC,trmm,0.04444963282449677,execution_time,VersionABCD
+2022-09-06,wasm,PolybenchC,trmm,0.044449410507212433,execution_time,VersionABCD
+2022-09-07,wasm,PolybenchC,trmm,0.0444486741834789,execution_time,VersionABCD
+2022-09-08,wasm,PolybenchC,trmm,0.04444774491430864,execution_time,VersionABCD
+2022-09-09,wasm,PolybenchC,trmm,0.04444697447402383,execution_time,VersionABCD
+2022-09-10,wasm,PolybenchC,trmm,0.04444605850146463,execution_time,VersionABCD
+2022-09-11,wasm,PolybenchC,trmm,0.04444525529753401,execution_time,VersionABCD
+2022-09-12,wasm,PolybenchC,trmm,0.04444465615025428,execution_time,VersionABCD
+2022-09-13,wasm,PolybenchC,trmm,0.04444416113111259,execution_time,VersionABCD
+2022-09-14,wasm,PolybenchC,trmm,0.04444384337021142,execution_time,VersionABCD
+2022-09-15,wasm,PolybenchC,trmm,0.04444312114811514,execution_time,VersionABCD
+2022-09-16,wasm,PolybenchC,trmm,0.04444293195092481,execution_time,VersionABCD
+2022-09-17,wasm,PolybenchC,trmm,0.044442344621797775,execution_time,VersionABCD
+2022-09-18,wasm,PolybenchC,trmm,0.04444199205675717,execution_time,VersionABCD
+2022-09-19,wasm,PolybenchC,trmm,0.044441967421471544,execution_time,VersionABCD
+2022-09-20,wasm,PolybenchC,trmm,0.04444135993213955,execution_time,VersionABCD
+2022-09-21,wasm,PolybenchC,trmm,0.044440372882943696,execution_time,VersionABCD
+2022-09-22,wasm,PolybenchC,trmm,0.04444014919181499,execution_time,VersionABCD
+2022-09-23,wasm,PolybenchC,trmm,0.0444400094777658,execution_time,VersionABCD
+2022-09-24,wasm,PolybenchC,trmm,0.04443947003499191,execution_time,VersionABCD
+2022-09-25,wasm,PolybenchC,trmm,0.04443876057972302,execution_time,VersionABCD
+2022-09-26,wasm,PolybenchC,trmm,0.044438034883522555,execution_time,VersionABCD
+2022-09-27,wasm,PolybenchC,trmm,0.04443794219324846,execution_time,VersionABCD
+2022-09-28,wasm,PolybenchC,trmm,0.04443747922590226,execution_time,VersionABCD
+2022-09-29,wasm,PolybenchC,trmm,0.04443712826380058,execution_time,VersionABCD
+2022-09-30,wasm,PolybenchC,trmm,0.04443649712863375,execution_time,VersionABCD
+2022-10-01,wasm,PolybenchC,trmm,0.0444361883063784,execution_time,VersionABCD
+2022-10-02,wasm,PolybenchC,trmm,0.04443526796431289,execution_time,VersionABCD
+2022-10-03,wasm,PolybenchC,trmm,0.04443452640629568,execution_time,VersionABCD
+2022-10-04,wasm,PolybenchC,trmm,0.044433715663629914,execution_time,VersionABCD
+2022-10-05,wasm,PolybenchC,trmm,0.04443343952005436,execution_time,VersionABCD
+2022-10-06,wasm,PolybenchC,trmm,0.044432983477524945,execution_time,VersionABCD
+2022-10-07,wasm,PolybenchC,trmm,0.044432273258843205,execution_time,VersionABCD
+2022-10-08,wasm,PolybenchC,trmm,0.0444319618829176,execution_time,VersionABCD
+2022-10-09,wasm,PolybenchC,trmm,0.044431155306789406,execution_time,VersionABCD
+2022-10-10,wasm,PolybenchC,trmm,0.04443072925140042,execution_time,VersionABCD
+2022-10-11,wasm,PolybenchC,trmm,0.044430121337749665,execution_time,VersionABCD
+2022-10-12,wasm,PolybenchC,trmm,0.0444297256310618,execution_time,VersionABCD
+2022-10-13,wasm,PolybenchC,trmm,0.04442952304384158,execution_time,VersionABCD
+2022-10-14,wasm,PolybenchC,trmm,0.044428740334061065,execution_time,VersionABCD
+2022-10-15,wasm,PolybenchC,trmm,0.044428495430484556,execution_time,VersionABCD
+2022-10-16,wasm,PolybenchC,trmm,0.04442760532172624,execution_time,VersionABCD
+2022-10-17,wasm,PolybenchC,trmm,0.044426722060117003,execution_time,VersionABCD
+2022-10-18,wasm,PolybenchC,trmm,0.04442671455104217,execution_time,VersionABCD
+2022-10-19,wasm,PolybenchC,trmm,0.04442628606718484,execution_time,VersionABCD
+2022-10-20,wasm,PolybenchC,trmm,0.04442624471174847,execution_time,VersionABCD
+2022-10-21,wasm,PolybenchC,trmm,0.04442562542781997,execution_time,VersionABCD
+2022-10-22,wasm,PolybenchC,trmm,0.044425502443110755,execution_time,VersionABCD
+2022-10-23,wasm,PolybenchC,trmm,0.04442545912950734,execution_time,VersionABCD
+2022-10-24,wasm,PolybenchC,trmm,0.04442522530963482,execution_time,VersionABCD
+2022-10-25,wasm,PolybenchC,trmm,0.04442459527285223,execution_time,VersionABCD
+2022-10-26,wasm,PolybenchC,trmm,0.044424191727779554,execution_time,VersionABCD
+2022-10-27,wasm,PolybenchC,trmm,0.04442414946415094,execution_time,VersionABCD
+2022-10-28,wasm,PolybenchC,trmm,0.04442365799023689,execution_time,VersionABCD
+2022-10-29,wasm,PolybenchC,trmm,0.04442355776219199,execution_time,VersionABCD
+2022-10-30,wasm,PolybenchC,trmm,0.044423057745528766,execution_time,VersionABCD
+2022-10-31,wasm,PolybenchC,trmm,0.04442255810703932,execution_time,VersionABCD
+2022-11-01,wasm,PolybenchC,trmm,0.04442224327274296,execution_time,VersionABCD
+2022-11-02,wasm,PolybenchC,trmm,0.044421600929370045,execution_time,VersionABCD
+2022-11-03,wasm,PolybenchC,trmm,0.04442088795446747,execution_time,VersionABCD
+2022-11-04,wasm,PolybenchC,trmm,0.04442067607239079,execution_time,VersionABCD
+2022-11-05,wasm,PolybenchC,trmm,0.044419686286439386,execution_time,VersionABCD
+2022-11-06,wasm,PolybenchC,trmm,0.044419465745311075,execution_time,VersionABCD
+2022-11-07,wasm,PolybenchC,trmm,0.04441924464399055,execution_time,VersionABCD
+2022-11-08,wasm,PolybenchC,trmm,0.044418723965566356,execution_time,VersionABCD
+2022-11-09,wasm,PolybenchC,trmm,0.04441845262929083,execution_time,VersionABCD
+2022-11-10,wasm,PolybenchC,trmm,0.04441840676586304,execution_time,VersionABCD
+2022-11-11,wasm,PolybenchC,trmm,0.04441797277368831,execution_time,VersionABCD
+2022-11-12,wasm,PolybenchC,trmm,0.044417204415464054,execution_time,VersionABCD
+2022-11-13,wasm,PolybenchC,trmm,0.04441678194017424,execution_time,VersionABCD
+2022-11-14,wasm,PolybenchC,trmm,0.04441616757616505,execution_time,VersionABCD
+2022-11-15,wasm,PolybenchC,trmm,0.044415433951446676,execution_time,VersionABCD
+2022-11-16,wasm,PolybenchC,trmm,0.04441473281357593,execution_time,VersionABCD
+2022-11-17,wasm,PolybenchC,trmm,0.04441394787491413,execution_time,VersionABCD
+2022-11-18,wasm,PolybenchC,trmm,0.04441387083169948,execution_time,VersionABCD
+2022-11-19,wasm,PolybenchC,trmm,0.04441370769072176,execution_time,VersionABCD
+2022-11-20,wasm,PolybenchC,trmm,0.04441304561258856,execution_time,VersionABCD
+2022-11-21,wasm,PolybenchC,trmm,0.04441240106592497,execution_time,VersionABCD
+2022-11-22,wasm,PolybenchC,trmm,0.04441187642018497,execution_time,VersionABCD
+2022-11-23,wasm,PolybenchC,trmm,0.044411661278161006,execution_time,VersionABCD
+2022-11-24,wasm,PolybenchC,trmm,0.04441069231480664,execution_time,VersionABCD
+2022-11-25,wasm,PolybenchC,trmm,0.04441005156393721,execution_time,VersionABCD
+2022-11-26,wasm,PolybenchC,trmm,0.04440965500010554,execution_time,VersionABCD
+2022-11-27,wasm,PolybenchC,trmm,0.04440909193393439,execution_time,VersionABCD
+2022-11-28,wasm,PolybenchC,trmm,0.04440848826573261,execution_time,VersionABCD
+2022-11-29,wasm,PolybenchC,trmm,0.04440778813817931,execution_time,VersionABCD
+2022-11-30,wasm,PolybenchC,trmm,0.0444069224698072,execution_time,VersionABCD
+2022-12-01,wasm,PolybenchC,trmm,0.04440629363213386,execution_time,VersionABCD
+2022-12-02,wasm,PolybenchC,trmm,0.044405651564972476,execution_time,VersionABCD
+2022-12-03,wasm,PolybenchC,trmm,0.044405025228499456,execution_time,VersionABCD
+2022-12-04,wasm,PolybenchC,trmm,0.04440421452199344,execution_time,VersionABCD
+2022-12-05,wasm,PolybenchC,trmm,0.044403660279937765,execution_time,VersionABCD
+2022-12-06,wasm,PolybenchC,trmm,0.04440268342207393,execution_time,VersionABCD
+2022-12-07,wasm,PolybenchC,trmm,0.044402180646290534,execution_time,VersionABCD
+2022-12-08,wasm,PolybenchC,trmm,0.04440162103542907,execution_time,VersionABCD
+2022-12-09,wasm,PolybenchC,trmm,0.04440090372825904,execution_time,VersionABCD
+2022-12-10,wasm,PolybenchC,trmm,0.044400228259808217,execution_time,VersionABCD
+2022-12-11,wasm,PolybenchC,trmm,0.0443999068471326,execution_time,VersionABCD
+2022-12-12,wasm,PolybenchC,trmm,0.044399212379055315,execution_time,VersionABCD
+2022-12-13,wasm,PolybenchC,trmm,0.044399000822765974,execution_time,VersionABCD
+2022-12-14,wasm,PolybenchC,trmm,0.04439810365488537,execution_time,VersionABCD
+2022-12-15,wasm,PolybenchC,trmm,0.0443973512648207,execution_time,VersionABCD
+2022-12-16,wasm,PolybenchC,trmm,0.04439699900312147,execution_time,VersionABCD
+2022-12-17,wasm,PolybenchC,trmm,0.044396613175736344,execution_time,VersionABCD
+2022-12-18,wasm,PolybenchC,trmm,0.04439619477802923,execution_time,VersionABCD
+2022-12-19,wasm,PolybenchC,trmm,0.04439571623873724,execution_time,VersionABCD
+2022-12-20,wasm,PolybenchC,trmm,0.04439498689172009,execution_time,VersionABCD
+2022-12-21,wasm,PolybenchC,trmm,0.04439482426995325,execution_time,VersionABCD
+2022-12-22,wasm,PolybenchC,trmm,0.04439450312994362,execution_time,VersionABCD
+2022-12-23,wasm,PolybenchC,trmm,0.044393702245716114,execution_time,VersionABCD
+2022-12-24,wasm,PolybenchC,trmm,0.04439363297357898,execution_time,VersionABCD
+2022-12-25,wasm,PolybenchC,trmm,0.044393250212573954,execution_time,VersionABCD
+2022-12-26,wasm,PolybenchC,trmm,0.044392301676936856,execution_time,VersionABCD
+2022-12-27,wasm,PolybenchC,trmm,0.04439209450551133,execution_time,VersionABCD
+2022-12-28,wasm,PolybenchC,trmm,0.04439130352140165,execution_time,VersionABCD
+2022-12-29,wasm,PolybenchC,trmm,0.04439060330233486,execution_time,VersionABCD
+2022-12-30,wasm,PolybenchC,trmm,0.044390217597772556,execution_time,VersionABCD
+2022-12-31,wasm,PolybenchC,trmm,0.044389935448843336,execution_time,VersionABCD
+2022-01-01,wizard,PolybenchC,trmm,0.11876260143538912,execution_time,VersionABCD
+2022-01-02,wizard,PolybenchC,trmm,0.11879159745006596,execution_time,VersionABCD
+2022-01-03,wizard,PolybenchC,trmm,0.11882529363042106,execution_time,VersionABCD
+2022-01-04,wizard,PolybenchC,trmm,0.11883650975836688,execution_time,VersionABCD
+2022-01-05,wizard,PolybenchC,trmm,0.11884712334007425,execution_time,VersionABCD
+2022-01-06,wizard,PolybenchC,trmm,0.11884840454340609,execution_time,VersionABCD
+2022-01-07,wizard,PolybenchC,trmm,0.11886584362518482,execution_time,VersionABCD
+2022-01-08,wizard,PolybenchC,trmm,0.11887446650002728,execution_time,VersionABCD
+2022-01-09,wizard,PolybenchC,trmm,0.11888194729849966,execution_time,VersionABCD
+2022-01-10,wizard,PolybenchC,trmm,0.11888214643236454,execution_time,VersionABCD
+2022-01-11,wizard,PolybenchC,trmm,0.11888260646059796,execution_time,VersionABCD
+2022-01-12,wizard,PolybenchC,trmm,0.11891392871194625,execution_time,VersionABCD
+2022-01-13,wizard,PolybenchC,trmm,0.11891797437929096,execution_time,VersionABCD
+2022-01-14,wizard,PolybenchC,trmm,0.11893616299178525,execution_time,VersionABCD
+2022-01-15,wizard,PolybenchC,trmm,0.11896135575809726,execution_time,VersionABCD
+2022-01-16,wizard,PolybenchC,trmm,0.11897327763759752,execution_time,VersionABCD
+2022-01-17,wizard,PolybenchC,trmm,0.11896411478003643,execution_time,VersionABCD
+2022-01-18,wizard,PolybenchC,trmm,0.11899523799126019,execution_time,VersionABCD
+2022-01-19,wizard,PolybenchC,trmm,0.11902205335826524,execution_time,VersionABCD
+2022-01-20,wizard,PolybenchC,trmm,0.11905653707341023,execution_time,VersionABCD
+2022-01-21,wizard,PolybenchC,trmm,0.1190634839237177,execution_time,VersionABCD
+2022-01-22,wizard,PolybenchC,trmm,0.11909789021618186,execution_time,VersionABCD
+2022-01-23,wizard,PolybenchC,trmm,0.11911041499990521,execution_time,VersionABCD
+2022-01-24,wizard,PolybenchC,trmm,0.11912328508752842,execution_time,VersionABCD
+2022-01-25,wizard,PolybenchC,trmm,0.11911934900525686,execution_time,VersionABCD
+2022-01-26,wizard,PolybenchC,trmm,0.1191542632221211,execution_time,VersionABCD
+2022-01-27,wizard,PolybenchC,trmm,0.1191802978856959,execution_time,VersionABCD
+2022-01-28,wizard,PolybenchC,trmm,0.1192167210933174,execution_time,VersionABCD
+2022-01-29,wizard,PolybenchC,trmm,0.11923228654160231,execution_time,VersionABCD
+2022-01-30,wizard,PolybenchC,trmm,0.11926814493803976,execution_time,VersionABCD
+2022-01-31,wizard,PolybenchC,trmm,0.11927005984714315,execution_time,VersionABCD
+2022-02-01,wizard,PolybenchC,trmm,0.11928086534503574,execution_time,VersionABCD
+2022-02-02,wizard,PolybenchC,trmm,0.11927136383848398,execution_time,VersionABCD
+2022-02-03,wizard,PolybenchC,trmm,0.11926687116057044,execution_time,VersionABCD
+2022-02-04,wizard,PolybenchC,trmm,0.1192814345190336,execution_time,VersionABCD
+2022-02-05,wizard,PolybenchC,trmm,0.11931328052227319,execution_time,VersionABCD
+2022-02-06,wizard,PolybenchC,trmm,0.11932722694666328,execution_time,VersionABCD
+2022-02-07,wizard,PolybenchC,trmm,0.11934931907620305,execution_time,VersionABCD
+2022-02-08,wizard,PolybenchC,trmm,0.11935691042499667,execution_time,VersionABCD
+2022-02-09,wizard,PolybenchC,trmm,0.11939281460573942,execution_time,VersionABCD
+2022-02-10,wizard,PolybenchC,trmm,0.11941198278434963,execution_time,VersionABCD
+2022-02-11,wizard,PolybenchC,trmm,0.11944699993742292,execution_time,VersionABCD
+2022-02-12,wizard,PolybenchC,trmm,0.11947651745774174,execution_time,VersionABCD
+2022-02-13,wizard,PolybenchC,trmm,0.11951151766383446,execution_time,VersionABCD
+2022-02-14,wizard,PolybenchC,trmm,0.11952811239912191,execution_time,VersionABCD
+2022-02-15,wizard,PolybenchC,trmm,0.11954618767618867,execution_time,VersionABCD
+2022-02-16,wizard,PolybenchC,trmm,0.11956835947638919,execution_time,VersionABCD
+2022-02-17,wizard,PolybenchC,trmm,0.11960703317312647,execution_time,VersionABCD
+2022-02-18,wizard,PolybenchC,trmm,0.11962796400029421,execution_time,VersionABCD
+2022-02-19,wizard,PolybenchC,trmm,0.11962817665219815,execution_time,VersionABCD
+2022-02-20,wizard,PolybenchC,trmm,0.11966609180136333,execution_time,VersionABCD
+2022-02-21,wizard,PolybenchC,trmm,0.11966815667681568,execution_time,VersionABCD
+2022-02-22,wizard,PolybenchC,trmm,0.11966133669353944,execution_time,VersionABCD
+2022-02-23,wizard,PolybenchC,trmm,0.11967097467267195,execution_time,VersionABCD
+2022-02-24,wizard,PolybenchC,trmm,0.1196693955318826,execution_time,VersionABCD
+2022-02-25,wizard,PolybenchC,trmm,0.11969359791815358,execution_time,VersionABCD
+2022-02-26,wizard,PolybenchC,trmm,0.1197270140400863,execution_time,VersionABCD
+2022-02-27,wizard,PolybenchC,trmm,0.11972585935075471,execution_time,VersionABCD
+2022-02-28,wizard,PolybenchC,trmm,0.11974201751172148,execution_time,VersionABCD
+2022-03-01,wizard,PolybenchC,trmm,0.11974671811225812,execution_time,VersionABCD
+2022-03-02,wizard,PolybenchC,trmm,0.11978243320414218,execution_time,VersionABCD
+2022-03-03,wizard,PolybenchC,trmm,0.11981417604180013,execution_time,VersionABCD
+2022-03-04,wizard,PolybenchC,trmm,0.11981055286850466,execution_time,VersionABCD
+2022-03-05,wizard,PolybenchC,trmm,0.11984244292607868,execution_time,VersionABCD
+2022-03-06,wizard,PolybenchC,trmm,0.11987833495057942,execution_time,VersionABCD
+2022-03-07,wizard,PolybenchC,trmm,0.11987514867986913,execution_time,VersionABCD
+2022-03-08,wizard,PolybenchC,trmm,0.11988323917155777,execution_time,VersionABCD
+2022-03-09,wizard,PolybenchC,trmm,0.1198853092342729,execution_time,VersionABCD
+2022-03-10,wizard,PolybenchC,trmm,0.11988596947793263,execution_time,VersionABCD
+2022-03-11,wizard,PolybenchC,trmm,0.11991705608033769,execution_time,VersionABCD
+2022-03-12,wizard,PolybenchC,trmm,0.11992999401454936,execution_time,VersionABCD
+2022-03-13,wizard,PolybenchC,trmm,0.11993356863431893,execution_time,VersionABCD
+2022-03-14,wizard,PolybenchC,trmm,0.11995837296335696,execution_time,VersionABCD
+2022-03-15,wizard,PolybenchC,trmm,0.11996625106382014,execution_time,VersionABCD
+2022-03-16,wizard,PolybenchC,trmm,0.11999327352116691,execution_time,VersionABCD
+2022-03-17,wizard,PolybenchC,trmm,0.12001063445693269,execution_time,VersionABCD
+2022-03-18,wizard,PolybenchC,trmm,0.12004974367540411,execution_time,VersionABCD
+2022-03-19,wizard,PolybenchC,trmm,0.12004131913599027,execution_time,VersionABCD
+2022-03-20,wizard,PolybenchC,trmm,0.12007013294685118,execution_time,VersionABCD
+2022-03-21,wizard,PolybenchC,trmm,0.1200714864355474,execution_time,VersionABCD
+2022-03-22,wizard,PolybenchC,trmm,0.12008413795245679,execution_time,VersionABCD
+2022-03-23,wizard,PolybenchC,trmm,0.12010966682312453,execution_time,VersionABCD
+2022-03-24,wizard,PolybenchC,trmm,0.12013806907655854,execution_time,VersionABCD
+2022-03-25,wizard,PolybenchC,trmm,0.12013441227421023,execution_time,VersionABCD
+2022-03-26,wizard,PolybenchC,trmm,0.12012699438594417,execution_time,VersionABCD
+2022-03-27,wizard,PolybenchC,trmm,0.1201215543871735,execution_time,VersionABCD
+2022-03-28,wizard,PolybenchC,trmm,0.12011562659171525,execution_time,VersionABCD
+2022-03-29,wizard,PolybenchC,trmm,0.12010852083171861,execution_time,VersionABCD
+2022-03-30,wizard,PolybenchC,trmm,0.12013751453817466,execution_time,VersionABCD
+2022-03-31,wizard,PolybenchC,trmm,0.12014744031462456,execution_time,VersionABCD
+2022-04-01,wizard,PolybenchC,trmm,0.12014198032564785,execution_time,VersionABCD
+2022-04-02,wizard,PolybenchC,trmm,0.12013510910453916,execution_time,VersionABCD
+2022-04-03,wizard,PolybenchC,trmm,0.12016781523491603,execution_time,VersionABCD
+2022-04-04,wizard,PolybenchC,trmm,0.12016262655997827,execution_time,VersionABCD
+2022-04-05,wizard,PolybenchC,trmm,0.12018588935805342,execution_time,VersionABCD
+2022-04-06,wizard,PolybenchC,trmm,0.12019028168969605,execution_time,VersionABCD
+2022-04-07,wizard,PolybenchC,trmm,0.12019509601693613,execution_time,VersionABCD
+2022-04-08,wizard,PolybenchC,trmm,0.1202211029776444,execution_time,VersionABCD
+2022-04-09,wizard,PolybenchC,trmm,0.12022739460214138,execution_time,VersionABCD
+2022-04-10,wizard,PolybenchC,trmm,0.12023477212031498,execution_time,VersionABCD
+2022-04-11,wizard,PolybenchC,trmm,0.12022293521958759,execution_time,VersionABCD
+2022-04-12,wizard,PolybenchC,trmm,0.12018634647964262,execution_time,VersionABCD
+2022-04-13,wizard,PolybenchC,trmm,0.12016008020084853,execution_time,VersionABCD
+2022-04-14,wizard,PolybenchC,trmm,0.12012299170573634,execution_time,VersionABCD
+2022-04-15,wizard,PolybenchC,trmm,0.120099411249987,execution_time,VersionABCD
+2022-04-16,wizard,PolybenchC,trmm,0.12007397133888295,execution_time,VersionABCD
+2022-04-17,wizard,PolybenchC,trmm,0.12006117846925343,execution_time,VersionABCD
+2022-04-18,wizard,PolybenchC,trmm,0.12003960910837373,execution_time,VersionABCD
+2022-04-19,wizard,PolybenchC,trmm,0.12000348674028767,execution_time,VersionABCD
+2022-04-20,wizard,PolybenchC,trmm,0.11997440750144334,execution_time,VersionABCD
+2022-04-21,wizard,PolybenchC,trmm,0.1199437784104246,execution_time,VersionABCD
+2022-04-22,wizard,PolybenchC,trmm,0.11991835992592703,execution_time,VersionABCD
+2022-04-23,wizard,PolybenchC,trmm,0.1199027590645711,execution_time,VersionABCD
+2022-04-24,wizard,PolybenchC,trmm,0.11988935111803418,execution_time,VersionABCD
+2022-04-25,wizard,PolybenchC,trmm,0.11985914424951993,execution_time,VersionABCD
+2022-04-26,wizard,PolybenchC,trmm,0.11982940761719614,execution_time,VersionABCD
+2022-04-27,wizard,PolybenchC,trmm,0.11980936101253735,execution_time,VersionABCD
+2022-04-28,wizard,PolybenchC,trmm,0.11979169452470843,execution_time,VersionABCD
+2022-04-29,wizard,PolybenchC,trmm,0.11977979127193085,execution_time,VersionABCD
+2022-04-30,wizard,PolybenchC,trmm,0.11974893449719398,execution_time,VersionABCD
+2022-05-01,wizard,PolybenchC,trmm,0.11972449277855286,execution_time,VersionABCD
+2022-05-02,wizard,PolybenchC,trmm,0.11971095494828518,execution_time,VersionABCD
+2022-05-03,wizard,PolybenchC,trmm,0.11968077923962722,execution_time,VersionABCD
+2022-05-04,wizard,PolybenchC,trmm,0.11964666917141376,execution_time,VersionABCD
+2022-05-05,wizard,PolybenchC,trmm,0.11960788839372945,execution_time,VersionABCD
+2022-05-06,wizard,PolybenchC,trmm,0.11959021185398692,execution_time,VersionABCD
+2022-05-07,wizard,PolybenchC,trmm,0.11956286722986606,execution_time,VersionABCD
+2022-05-08,wizard,PolybenchC,trmm,0.11953525549378426,execution_time,VersionABCD
+2022-05-09,wizard,PolybenchC,trmm,0.11951412932767243,execution_time,VersionABCD
+2022-05-10,wizard,PolybenchC,trmm,0.11948230508874423,execution_time,VersionABCD
+2022-05-11,wizard,PolybenchC,trmm,0.1194489316681921,execution_time,VersionABCD
+2022-05-12,wizard,PolybenchC,trmm,0.11942737861164548,execution_time,VersionABCD
+2022-05-13,wizard,PolybenchC,trmm,0.11941065021119258,execution_time,VersionABCD
+2022-05-14,wizard,PolybenchC,trmm,0.11939914709432231,execution_time,VersionABCD
+2022-05-15,wizard,PolybenchC,trmm,0.11938793130566083,execution_time,VersionABCD
+2022-05-16,wizard,PolybenchC,trmm,0.11937461304143394,execution_time,VersionABCD
+2022-05-17,wizard,PolybenchC,trmm,0.11935656720299381,execution_time,VersionABCD
+2022-05-18,wizard,PolybenchC,trmm,0.11931905849591645,execution_time,VersionABCD
+2022-05-19,wizard,PolybenchC,trmm,0.11928280761676219,execution_time,VersionABCD
+2022-05-20,wizard,PolybenchC,trmm,0.11925151850475396,execution_time,VersionABCD
+2022-05-21,wizard,PolybenchC,trmm,0.11923589172791077,execution_time,VersionABCD
+2022-05-22,wizard,PolybenchC,trmm,0.1192076651281782,execution_time,VersionABCD
+2022-05-23,wizard,PolybenchC,trmm,0.11917855027616903,execution_time,VersionABCD
+2022-05-24,wizard,PolybenchC,trmm,0.11914692559610202,execution_time,VersionABCD
+2022-05-25,wizard,PolybenchC,trmm,0.11912041334718182,execution_time,VersionABCD
+2022-05-26,wizard,PolybenchC,trmm,0.11909009520742596,execution_time,VersionABCD
+2022-05-27,wizard,PolybenchC,trmm,0.11907709721111294,execution_time,VersionABCD
+2022-05-28,wizard,PolybenchC,trmm,0.11903921939292467,execution_time,VersionABCD
+2022-05-29,wizard,PolybenchC,trmm,0.11901273023114188,execution_time,VersionABCD
+2022-05-30,wizard,PolybenchC,trmm,0.11898922409577867,execution_time,VersionABCD
+2022-05-31,wizard,PolybenchC,trmm,0.11896354215340628,execution_time,VersionABCD
+2022-06-01,wizard,PolybenchC,trmm,0.11893687578381192,execution_time,VersionABCD
+2022-06-02,wizard,PolybenchC,trmm,0.11892158468871573,execution_time,VersionABCD
+2022-06-03,wizard,PolybenchC,trmm,0.11888271623154187,execution_time,VersionABCD
+2022-06-04,wizard,PolybenchC,trmm,0.11886186716057376,execution_time,VersionABCD
+2022-06-05,wizard,PolybenchC,trmm,0.1188425335891452,execution_time,VersionABCD
+2022-06-06,wizard,PolybenchC,trmm,0.11881401471283932,execution_time,VersionABCD
+2022-06-07,wizard,PolybenchC,trmm,0.11880290370357414,execution_time,VersionABCD
+2022-06-08,wizard,PolybenchC,trmm,0.11876985921162243,execution_time,VersionABCD
+2022-06-09,wizard,PolybenchC,trmm,0.11874642653838187,execution_time,VersionABCD
+2022-06-10,wizard,PolybenchC,trmm,0.11871542587566172,execution_time,VersionABCD
+2022-06-11,wizard,PolybenchC,trmm,0.11869086692814687,execution_time,VersionABCD
+2022-06-12,wizard,PolybenchC,trmm,0.11866640191056622,execution_time,VersionABCD
+2022-06-13,wizard,PolybenchC,trmm,0.1186344873490718,execution_time,VersionABCD
+2022-06-14,wizard,PolybenchC,trmm,0.11861767261801211,execution_time,VersionABCD
+2022-06-15,wizard,PolybenchC,trmm,0.11859075664431061,execution_time,VersionABCD
+2022-06-16,wizard,PolybenchC,trmm,0.118579193376031,execution_time,VersionABCD
+2022-06-17,wizard,PolybenchC,trmm,0.1185586587514016,execution_time,VersionABCD
+2022-06-18,wizard,PolybenchC,trmm,0.11853134308143705,execution_time,VersionABCD
+2022-06-19,wizard,PolybenchC,trmm,0.1185211518200836,execution_time,VersionABCD
+2022-06-20,wizard,PolybenchC,trmm,0.11850032748932605,execution_time,VersionABCD
+2022-06-21,wizard,PolybenchC,trmm,0.1184681960959401,execution_time,VersionABCD
+2022-06-22,wizard,PolybenchC,trmm,0.1184476558924139,execution_time,VersionABCD
+2022-06-23,wizard,PolybenchC,trmm,0.11843178576545846,execution_time,VersionABCD
+2022-06-24,wizard,PolybenchC,trmm,0.11839620457447943,execution_time,VersionABCD
+2022-06-25,wizard,PolybenchC,trmm,0.11835978047154526,execution_time,VersionABCD
+2022-06-26,wizard,PolybenchC,trmm,0.11834928853791389,execution_time,VersionABCD
+2022-06-27,wizard,PolybenchC,trmm,0.11831331713012144,execution_time,VersionABCD
+2022-06-28,wizard,PolybenchC,trmm,0.11827729909425128,execution_time,VersionABCD
+2022-06-29,wizard,PolybenchC,trmm,0.11826716580208314,execution_time,VersionABCD
+2022-06-30,wizard,PolybenchC,trmm,0.11823418390840955,execution_time,VersionABCD
+2022-07-01,wizard,PolybenchC,trmm,0.11820143161900208,execution_time,VersionABCD
+2022-07-02,wizard,PolybenchC,trmm,0.11818999948949019,execution_time,VersionABCD
+2022-07-03,wizard,PolybenchC,trmm,0.11815256081789591,execution_time,VersionABCD
+2022-07-04,wizard,PolybenchC,trmm,0.11812224826087833,execution_time,VersionABCD
+2022-07-05,wizard,PolybenchC,trmm,0.11809030893726086,execution_time,VersionABCD
+2022-07-06,wizard,PolybenchC,trmm,0.11807005516817741,execution_time,VersionABCD
+2022-07-07,wizard,PolybenchC,trmm,0.11803962504265665,execution_time,VersionABCD
+2022-07-08,wizard,PolybenchC,trmm,0.11802753864220614,execution_time,VersionABCD
+2022-07-09,wizard,PolybenchC,trmm,0.11798848151377905,execution_time,VersionABCD
+2022-07-10,wizard,PolybenchC,trmm,0.11797115023729535,execution_time,VersionABCD
+2022-07-11,wizard,PolybenchC,trmm,0.11794881648723872,execution_time,VersionABCD
+2022-07-12,wizard,PolybenchC,trmm,0.11791019144590237,execution_time,VersionABCD
+2022-07-13,wizard,PolybenchC,trmm,0.1178764366412331,execution_time,VersionABCD
+2022-07-14,wizard,PolybenchC,trmm,0.11786458261403751,execution_time,VersionABCD
+2022-07-15,wizard,PolybenchC,trmm,0.11784485990894318,execution_time,VersionABCD
+2022-07-16,wizard,PolybenchC,trmm,0.11781736987984794,execution_time,VersionABCD
+2022-07-17,wizard,PolybenchC,trmm,0.11780159887083606,execution_time,VersionABCD
+2022-07-18,wizard,PolybenchC,trmm,0.11777606811575819,execution_time,VersionABCD
+2022-07-19,wizard,PolybenchC,trmm,0.11775124282223387,execution_time,VersionABCD
+2022-07-20,wizard,PolybenchC,trmm,0.11772816923280828,execution_time,VersionABCD
+2022-07-21,wizard,PolybenchC,trmm,0.11769760242663815,execution_time,VersionABCD
+2022-07-22,wizard,PolybenchC,trmm,0.11768181079598736,execution_time,VersionABCD
+2022-07-23,wizard,PolybenchC,trmm,0.11765862998301424,execution_time,VersionABCD
+2022-07-24,wizard,PolybenchC,trmm,0.11763340973593742,execution_time,VersionABCD
+2022-07-25,wizard,PolybenchC,trmm,0.1176067360407675,execution_time,VersionABCD
+2022-07-26,wizard,PolybenchC,trmm,0.11757418663643213,execution_time,VersionABCD
+2022-07-27,wizard,PolybenchC,trmm,0.11755369892457941,execution_time,VersionABCD
+2022-07-28,wizard,PolybenchC,trmm,0.11753500526875386,execution_time,VersionABCD
+2022-07-29,wizard,PolybenchC,trmm,0.1175153555557154,execution_time,VersionABCD
+2022-07-30,wizard,PolybenchC,trmm,0.11748961293745239,execution_time,VersionABCD
+2022-07-31,wizard,PolybenchC,trmm,0.11745698923551375,execution_time,VersionABCD
+2022-08-01,wizard,PolybenchC,trmm,0.11741739516831376,execution_time,VersionABCD
+2022-08-02,wizard,PolybenchC,trmm,0.11739150769715183,execution_time,VersionABCD
+2022-08-03,wizard,PolybenchC,trmm,0.11735374620743898,execution_time,VersionABCD
+2022-08-04,wizard,PolybenchC,trmm,0.11733083561054325,execution_time,VersionABCD
+2022-08-05,wizard,PolybenchC,trmm,0.11731119496314697,execution_time,VersionABCD
+2022-08-06,wizard,PolybenchC,trmm,0.11728654879505133,execution_time,VersionABCD
+2022-08-07,wizard,PolybenchC,trmm,0.11724762147935935,execution_time,VersionABCD
+2022-08-08,wizard,PolybenchC,trmm,0.11722214076905396,execution_time,VersionABCD
+2022-08-09,wizard,PolybenchC,trmm,0.1171954883341583,execution_time,VersionABCD
+2022-08-10,wizard,PolybenchC,trmm,0.11718098026910441,execution_time,VersionABCD
+2022-08-11,wizard,PolybenchC,trmm,0.11716138772686228,execution_time,VersionABCD
+2022-08-12,wizard,PolybenchC,trmm,0.11713523311903935,execution_time,VersionABCD
+2022-08-13,wizard,PolybenchC,trmm,0.1171090076253205,execution_time,VersionABCD
+2022-08-14,wizard,PolybenchC,trmm,0.11708704386904142,execution_time,VersionABCD
+2022-08-15,wizard,PolybenchC,trmm,0.11705758666848691,execution_time,VersionABCD
+2022-08-16,wizard,PolybenchC,trmm,0.1170308824211008,execution_time,VersionABCD
+2022-08-17,wizard,PolybenchC,trmm,0.11700773638407301,execution_time,VersionABCD
+2022-08-18,wizard,PolybenchC,trmm,0.11696920945251285,execution_time,VersionABCD
+2022-08-19,wizard,PolybenchC,trmm,0.1169390229501456,execution_time,VersionABCD
+2022-08-20,wizard,PolybenchC,trmm,0.11692885015627315,execution_time,VersionABCD
+2022-08-21,wizard,PolybenchC,trmm,0.11690675438743434,execution_time,VersionABCD
+2022-08-22,wizard,PolybenchC,trmm,0.11687692900188143,execution_time,VersionABCD
+2022-08-23,wizard,PolybenchC,trmm,0.11684956047681591,execution_time,VersionABCD
+2022-08-24,wizard,PolybenchC,trmm,0.11680994557088897,execution_time,VersionABCD
+2022-08-25,wizard,PolybenchC,trmm,0.11678048208259031,execution_time,VersionABCD
+2022-08-26,wizard,PolybenchC,trmm,0.11675819291029156,execution_time,VersionABCD
+2022-08-27,wizard,PolybenchC,trmm,0.11672927551325304,execution_time,VersionABCD
+2022-08-28,wizard,PolybenchC,trmm,0.11671409837303927,execution_time,VersionABCD
+2022-08-29,wizard,PolybenchC,trmm,0.1166943463484302,execution_time,VersionABCD
+2022-08-30,wizard,PolybenchC,trmm,0.11667011756746098,execution_time,VersionABCD
+2022-08-31,wizard,PolybenchC,trmm,0.11663278938459178,execution_time,VersionABCD
+2022-09-01,wizard,PolybenchC,trmm,0.11659906175757091,execution_time,VersionABCD
+2022-09-02,wizard,PolybenchC,trmm,0.11656943146319788,execution_time,VersionABCD
+2022-09-03,wizard,PolybenchC,trmm,0.11654821711643332,execution_time,VersionABCD
+2022-09-04,wizard,PolybenchC,trmm,0.11650971090023612,execution_time,VersionABCD
+2022-09-05,wizard,PolybenchC,trmm,0.1164723691609782,execution_time,VersionABCD
+2022-09-06,wizard,PolybenchC,trmm,0.11645467660230978,execution_time,VersionABCD
+2022-09-07,wizard,PolybenchC,trmm,0.1164215933622693,execution_time,VersionABCD
+2022-09-08,wizard,PolybenchC,trmm,0.11640139281631731,execution_time,VersionABCD
+2022-09-09,wizard,PolybenchC,trmm,0.11638636213610838,execution_time,VersionABCD
+2022-09-10,wizard,PolybenchC,trmm,0.11637248146481698,execution_time,VersionABCD
+2022-09-11,wizard,PolybenchC,trmm,0.11635675263937897,execution_time,VersionABCD
+2022-09-12,wizard,PolybenchC,trmm,0.11633219643437681,execution_time,VersionABCD
+2022-09-13,wizard,PolybenchC,trmm,0.11631742171679159,execution_time,VersionABCD
+2022-09-14,wizard,PolybenchC,trmm,0.11628255469420053,execution_time,VersionABCD
+2022-09-15,wizard,PolybenchC,trmm,0.11624695761107912,execution_time,VersionABCD
+2022-09-16,wizard,PolybenchC,trmm,0.1162141638953925,execution_time,VersionABCD
+2022-09-17,wizard,PolybenchC,trmm,0.11618957270052965,execution_time,VersionABCD
+2022-09-18,wizard,PolybenchC,trmm,0.11616196144128349,execution_time,VersionABCD
+2022-09-19,wizard,PolybenchC,trmm,0.11613464173127451,execution_time,VersionABCD
+2022-09-20,wizard,PolybenchC,trmm,0.11609534619010142,execution_time,VersionABCD
+2022-09-21,wizard,PolybenchC,trmm,0.11605983472365215,execution_time,VersionABCD
+2022-09-22,wizard,PolybenchC,trmm,0.11604957358719288,execution_time,VersionABCD
+2022-09-23,wizard,PolybenchC,trmm,0.11603335759020889,execution_time,VersionABCD
+2022-09-24,wizard,PolybenchC,trmm,0.11600688301444961,execution_time,VersionABCD
+2022-09-25,wizard,PolybenchC,trmm,0.11598241931126703,execution_time,VersionABCD
+2022-09-26,wizard,PolybenchC,trmm,0.11596301350189085,execution_time,VersionABCD
+2022-09-27,wizard,PolybenchC,trmm,0.11593504559170428,execution_time,VersionABCD
+2022-09-28,wizard,PolybenchC,trmm,0.1158981982527172,execution_time,VersionABCD
+2022-09-29,wizard,PolybenchC,trmm,0.11586150474275235,execution_time,VersionABCD
+2022-09-30,wizard,PolybenchC,trmm,0.11584080568628682,execution_time,VersionABCD
+2022-10-01,wizard,PolybenchC,trmm,0.11582129105801482,execution_time,VersionABCD
+2022-10-02,wizard,PolybenchC,trmm,0.11580788693374479,execution_time,VersionABCD
+2022-10-03,wizard,PolybenchC,trmm,0.1157790737811421,execution_time,VersionABCD
+2022-10-04,wizard,PolybenchC,trmm,0.11574704173170001,execution_time,VersionABCD
+2022-10-05,wizard,PolybenchC,trmm,0.11572357485738012,execution_time,VersionABCD
+2022-10-06,wizard,PolybenchC,trmm,0.1156930679354915,execution_time,VersionABCD
+2022-10-07,wizard,PolybenchC,trmm,0.11567922774221694,execution_time,VersionABCD
+2022-10-08,wizard,PolybenchC,trmm,0.11565941630169324,execution_time,VersionABCD
+2022-10-09,wizard,PolybenchC,trmm,0.1156415063532078,execution_time,VersionABCD
+2022-10-10,wizard,PolybenchC,trmm,0.11562651242646191,execution_time,VersionABCD
+2022-10-11,wizard,PolybenchC,trmm,0.11561263455954236,execution_time,VersionABCD
+2022-10-12,wizard,PolybenchC,trmm,0.11558411852024868,execution_time,VersionABCD
+2022-10-13,wizard,PolybenchC,trmm,0.11557066609285764,execution_time,VersionABCD
+2022-10-14,wizard,PolybenchC,trmm,0.115530955153021,execution_time,VersionABCD
+2022-10-15,wizard,PolybenchC,trmm,0.11552087555992754,execution_time,VersionABCD
+2022-10-16,wizard,PolybenchC,trmm,0.11548804655071478,execution_time,VersionABCD
+2022-10-17,wizard,PolybenchC,trmm,0.11545976882569993,execution_time,VersionABCD
+2022-10-18,wizard,PolybenchC,trmm,0.11544211558429363,execution_time,VersionABCD
+2022-10-19,wizard,PolybenchC,trmm,0.11541439599985266,execution_time,VersionABCD
+2022-10-20,wizard,PolybenchC,trmm,0.11538693867180155,execution_time,VersionABCD
+2022-10-21,wizard,PolybenchC,trmm,0.11536194040462383,execution_time,VersionABCD
+2022-10-22,wizard,PolybenchC,trmm,0.11534184606938258,execution_time,VersionABCD
+2022-10-23,wizard,PolybenchC,trmm,0.11531155557590729,execution_time,VersionABCD
+2022-10-24,wizard,PolybenchC,trmm,0.1152762019348042,execution_time,VersionABCD
+2022-10-25,wizard,PolybenchC,trmm,0.11525817031325486,execution_time,VersionABCD
+2022-10-26,wizard,PolybenchC,trmm,0.11524637873844007,execution_time,VersionABCD
+2022-10-27,wizard,PolybenchC,trmm,0.1152202109616344,execution_time,VersionABCD
+2022-10-28,wizard,PolybenchC,trmm,0.11519087070710254,execution_time,VersionABCD
+2022-10-29,wizard,PolybenchC,trmm,0.115159034588242,execution_time,VersionABCD
+2022-10-30,wizard,PolybenchC,trmm,0.11512692318545441,execution_time,VersionABCD
+2022-10-31,wizard,PolybenchC,trmm,0.11511476502018288,execution_time,VersionABCD
+2022-11-01,wizard,PolybenchC,trmm,0.11507932684074976,execution_time,VersionABCD
+2022-11-02,wizard,PolybenchC,trmm,0.1150657435576735,execution_time,VersionABCD
+2022-11-03,wizard,PolybenchC,trmm,0.11504981937260436,execution_time,VersionABCD
+2022-11-04,wizard,PolybenchC,trmm,0.11501427276284323,execution_time,VersionABCD
+2022-11-05,wizard,PolybenchC,trmm,0.11497996705660536,execution_time,VersionABCD
+2022-11-06,wizard,PolybenchC,trmm,0.1149628705734865,execution_time,VersionABCD
+2022-11-07,wizard,PolybenchC,trmm,0.1149277219331879,execution_time,VersionABCD
+2022-11-08,wizard,PolybenchC,trmm,0.11489460537223246,execution_time,VersionABCD
+2022-11-09,wizard,PolybenchC,trmm,0.11487914466426301,execution_time,VersionABCD
+2022-11-10,wizard,PolybenchC,trmm,0.11485666245793713,execution_time,VersionABCD
+2022-11-11,wizard,PolybenchC,trmm,0.11482892452909671,execution_time,VersionABCD
+2022-11-12,wizard,PolybenchC,trmm,0.11479544427462185,execution_time,VersionABCD
+2022-11-13,wizard,PolybenchC,trmm,0.11476671074755304,execution_time,VersionABCD
+2022-11-14,wizard,PolybenchC,trmm,0.11474966810367129,execution_time,VersionABCD
+2022-11-15,wizard,PolybenchC,trmm,0.11473225178488339,execution_time,VersionABCD
+2022-11-16,wizard,PolybenchC,trmm,0.11472068022015755,execution_time,VersionABCD
+2022-11-17,wizard,PolybenchC,trmm,0.11468865146270812,execution_time,VersionABCD
+2022-11-18,wizard,PolybenchC,trmm,0.11465589160701789,execution_time,VersionABCD
+2022-11-19,wizard,PolybenchC,trmm,0.11463349494179448,execution_time,VersionABCD
+2022-11-20,wizard,PolybenchC,trmm,0.11461848565504061,execution_time,VersionABCD
+2022-11-21,wizard,PolybenchC,trmm,0.11458796566065732,execution_time,VersionABCD
+2022-11-22,wizard,PolybenchC,trmm,0.11456331573788295,execution_time,VersionABCD
+2022-11-23,wizard,PolybenchC,trmm,0.11454180355924727,execution_time,VersionABCD
+2022-11-24,wizard,PolybenchC,trmm,0.11450339657363809,execution_time,VersionABCD
+2022-11-25,wizard,PolybenchC,trmm,0.11447211429846402,execution_time,VersionABCD
+2022-11-26,wizard,PolybenchC,trmm,0.11445870138512164,execution_time,VersionABCD
+2022-11-27,wizard,PolybenchC,trmm,0.114434341186126,execution_time,VersionABCD
+2022-11-28,wizard,PolybenchC,trmm,0.11441289506929721,execution_time,VersionABCD
+2022-11-29,wizard,PolybenchC,trmm,0.1143983178904789,execution_time,VersionABCD
+2022-11-30,wizard,PolybenchC,trmm,0.11436594717612354,execution_time,VersionABCD
+2022-12-01,wizard,PolybenchC,trmm,0.1143459660413997,execution_time,VersionABCD
+2022-12-02,wizard,PolybenchC,trmm,0.1143215034248253,execution_time,VersionABCD
+2022-12-03,wizard,PolybenchC,trmm,0.1143079273239754,execution_time,VersionABCD
+2022-12-04,wizard,PolybenchC,trmm,0.11429111657429157,execution_time,VersionABCD
+2022-12-05,wizard,PolybenchC,trmm,0.11426774358486506,execution_time,VersionABCD
+2022-12-06,wizard,PolybenchC,trmm,0.11423501634722244,execution_time,VersionABCD
+2022-12-07,wizard,PolybenchC,trmm,0.11421586504328408,execution_time,VersionABCD
+2022-12-08,wizard,PolybenchC,trmm,0.11418225716025834,execution_time,VersionABCD
+2022-12-09,wizard,PolybenchC,trmm,0.11414397387532524,execution_time,VersionABCD
+2022-12-10,wizard,PolybenchC,trmm,0.11411549509562065,execution_time,VersionABCD
+2022-12-11,wizard,PolybenchC,trmm,0.11410281333046075,execution_time,VersionABCD
+2022-12-12,wizard,PolybenchC,trmm,0.11407821040027419,execution_time,VersionABCD
+2022-12-13,wizard,PolybenchC,trmm,0.11404934949023271,execution_time,VersionABCD
+2022-12-14,wizard,PolybenchC,trmm,0.11402808146504669,execution_time,VersionABCD
+2022-12-15,wizard,PolybenchC,trmm,0.11399105102923159,execution_time,VersionABCD
+2022-12-16,wizard,PolybenchC,trmm,0.11395955547539954,execution_time,VersionABCD
+2022-12-17,wizard,PolybenchC,trmm,0.11393325553367377,execution_time,VersionABCD
+2022-12-18,wizard,PolybenchC,trmm,0.11392000072591908,execution_time,VersionABCD
+2022-12-19,wizard,PolybenchC,trmm,0.11390342133010845,execution_time,VersionABCD
+2022-12-20,wizard,PolybenchC,trmm,0.11388093837337604,execution_time,VersionABCD
+2022-12-21,wizard,PolybenchC,trmm,0.11385648142847475,execution_time,VersionABCD
+2022-12-22,wizard,PolybenchC,trmm,0.1138331409140967,execution_time,VersionABCD
+2022-12-23,wizard,PolybenchC,trmm,0.11380228425445911,execution_time,VersionABCD
+2022-12-24,wizard,PolybenchC,trmm,0.11378172253813636,execution_time,VersionABCD
+2022-12-25,wizard,PolybenchC,trmm,0.1137491427319337,execution_time,VersionABCD
+2022-12-26,wizard,PolybenchC,trmm,0.11373694057864571,execution_time,VersionABCD
+2022-12-27,wizard,PolybenchC,trmm,0.11371074261369706,execution_time,VersionABCD
+2022-12-28,wizard,PolybenchC,trmm,0.11369172888308485,execution_time,VersionABCD
+2022-12-29,wizard,PolybenchC,trmm,0.11367740505690307,execution_time,VersionABCD
+2022-12-30,wizard,PolybenchC,trmm,0.11364685513687478,execution_time,VersionABCD
+2022-12-31,wizard,PolybenchC,trmm,0.11362765138431556,execution_time,VersionABCD