Skip to content

Commit 2e42b60

Browse files
committed
fix: benchmark
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: passed - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed --- --- type: pre_push_report description: Results of running various checks prior to pushing changes. report: - task: run_javascript_examples status: na - task: run_c_examples status: na - task: run_cpp_examples status: na - task: run_javascript_readme_examples status: na - task: run_c_benchmarks status: na - task: run_cpp_benchmarks status: na - task: run_fortran_benchmarks status: na - task: run_javascript_benchmarks status: passed - task: run_julia_benchmarks status: na - task: run_python_benchmarks status: na - task: run_r_benchmarks status: na - task: run_javascript_tests status: na ---
1 parent 5587544 commit 2e42b60

File tree

2 files changed

+19
-6
lines changed

2 files changed

+19
-6
lines changed

lib/node_modules/@stdlib/blas/base/sgbmv/benchmark/benchmark.js

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,16 @@ var options = {
4848
function createBenchmark( N ) {
4949
var x = uniform( N, -10.0, 10.0, options );
5050
var y = uniform( N, -10.0, 10.0, options );
51-
var A = [ 0, 9, 10,
52-
11, 12, 5,
53-
1, 2, 0 ];
51+
52+
var A = [ 0,
53+
9,
54+
10,
55+
11,
56+
12,
57+
5,
58+
1,
59+
2,
60+
0 ];
5461
return benchmark;
5562

5663
/**

lib/node_modules/@stdlib/blas/base/sgbmv/benchmark/benchmark.ndarray.js

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,15 @@ var options = {
4848
function createBenchmark( N ) {
4949
var x = uniform( N, -10.0, 10.0, options );
5050
var y = uniform( N, -10.0, 10.0, options );
51-
var A = [ 0, 9, 10,
52-
11, 12, 5,
53-
1, 2, 0 ];
51+
var A = [ 0,
52+
9,
53+
10,
54+
11,
55+
12,
56+
5,
57+
1,
58+
2,
59+
0 ];
5460
return benchmark;
5561

5662
/**

0 commit comments

Comments
 (0)