@@ -29879,12 +29879,12 @@ const kernel = [
2987929879 [2, 1, 2],
2988029880 [1, 2, 1]
2988129881]
29882+
2988229883const kernelX = kernel[0].length,
2988329884 kernelY = kernel.length,
2988429885 paddingX = Math.floor(kernelX / 2),
2988529886 paddingY = Math.floor(kernelY / 2);
2988629887
29887-
2988829888/**
2988929889 * @method paddificate
2989029890 * @description Pads a JavaScript array.
@@ -30085,7 +30085,6 @@ const run = options => {
3008530085 options.output = [options.matrix_size, options.matrix_size];
3008630086
3008730087 const getTexture = getgetTextureKernel(options.gpu, options.matrix_size, options.matrix_size);
30088-
3008930088 const mat = benchIt(() => generateMatrices(options.matrix_size)),
3009030089 padded = benchIt(() => paddificate(mat.ret[0], paddingX, paddingY));
3009130090
@@ -30176,11 +30175,9 @@ const run = options => {
3017630175 mat_pad: padded.time,
3017730176
3017830177 build_time,
30179-
3018030178 run_time,
3018130179
3018230180 stats,
30183-
3018430181 score: getScore(run_time, options.matrix_size),
3018530182
3018630183 options
@@ -30468,15 +30465,15 @@ class BenchmarkOut {
3046830465 getPlotlyJSON(compareFields = [
3046930466 {
3047030467 x: 'matrix_size',
30471- y: 'gpu_run_time-mat_mult '
30468+ y: 'gpu_run_time_mat_mult '
3047230469 },
3047330470 {
3047430471 x: 'matrix_size',
3047530472 y: 'pipe_run_time'
3047630473 },
3047730474 {
3047830475 x: 'matrix_size',
30479- y: 'score '
30476+ y: 'gpu_score '
3048030477 }
3048130478 ]) {
3048230479 if (!this.singleData){
@@ -30500,15 +30497,15 @@ class BenchmarkOut {
3050030497 getChartistJSON(compareFields = [
3050130498 {
3050230499 x: 'matrix_size',
30503- y: 'gpu_run_time-mat_mult '
30500+ y: 'gpu_run_time_mat_mult '
3050430501 },
3050530502 {
3050630503 x: 'matrix_size',
3050730504 y: 'pipe_run_time'
3050830505 },
3050930506 {
3051030507 x: 'matrix_size',
30511- y: 'score '
30508+ y: 'gpu_score '
3051230509 }
3051330510 ]) {
3051430511 if (!this.singleData){
0 commit comments