Skip to content
Open
Changes from 1 commit
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
ee627b9
feat: add blas/base/dgbmv
ShabiShett07 Mar 17, 2025
283fa31
chore: update copyright years
stdlib-bot Mar 17, 2025
6b21054
fix: base.js
ShabiShett07 Mar 17, 2025
0e12f13
fix: benchmark
ShabiShett07 Mar 17, 2025
39d57a0
fix: test.ndarray.js
ShabiShett07 Mar 17, 2025
514e3a9
fix: test.ndarray.js
ShabiShett07 Mar 17, 2025
1d2b031
fix: benchmark.js
ShabiShett07 Mar 17, 2025
a0218f6
fix: benchmark.ndarray.js
ShabiShett07 Mar 17, 2025
d295ff9
fix: benchmark.ndarray.js
ShabiShett07 Mar 17, 2025
303c143
fix: lint errors
ShabiShett07 Mar 18, 2025
8954e1d
chore: add documented test fixtures
ShabiShett07 Mar 18, 2025
3ccc05e
fix: rename test.sgbmv.js to test.dgbmv.js
ShabiShett07 Mar 18, 2025
45f1cbb
fix: column_major_t.json
ShabiShett07 Mar 18, 2025
002565e
fix: update row_major_t.json
ShabiShett07 Mar 18, 2025
54c09e0
fix: update row_major_t.json
ShabiShett07 Mar 18, 2025
edf7ed1
fix: row_major_t.json error
ShabiShett07 Mar 18, 2025
19f60ae
fix: column_major_t.json error
ShabiShett07 Mar 18, 2025
6c2745e
chore: update isnanf to isnan
ShabiShett07 Apr 11, 2025
17860b4
chore: update isnanf to isnan
ShabiShett07 Apr 11, 2025
9f3788c
fix: error condition
ShabiShett07 Apr 11, 2025
0906bc7
chore: disable max length
ShabiShett07 Apr 11, 2025
b513243
chore: update base.js
ShabiShett07 Apr 11, 2025
6aa53d7
chore: remove indentation
ShabiShett07 Apr 20, 2025
78daeb7
bench: change variable naming and declaration
ShabiShett07 Jul 17, 2025
c53d921
docs: update jsdoc
ShabiShett07 Jul 17, 2025
d818820
chore: update test.ts
ShabiShett07 Jul 17, 2025
c35d036
chore: update repl.txt
ShabiShett07 Jul 17, 2025
085dff4
refactor: reduce arithmetic operations
ShabiShett07 Jul 17, 2025
dc9e6f7
chore: update example
ShabiShett07 Jul 17, 2025
d51b2c2
test: update fixtures structure
ShabiShett07 Jul 18, 2025
20c6df0
chore: use ndarray example
ShabiShett07 Jul 18, 2025
d4798c8
bench: fix failing benchmarks
ShabiShett07 Jul 18, 2025
0a9161c
bench: use banded matrix
Jul 26, 2025
591f7c7
chore: use banded matrix
Jul 26, 2025
1e4ddb9
test: restructure banded matrices
Jul 26, 2025
3cd60ba
chore: update A_mat
Jul 29, 2025
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: test.ndarray.js
--- 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 ---
  • Loading branch information
ShabiShett07 committed Mar 17, 2025
commit 514e3a9d2f9c60fdf51a3fe666c9e46c98dc5566
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,10 @@
function createBenchmark( N ) {
var x = uniform( N, -10.0, 10.0, options );
var y = uniform( N, -10.0, 10.0, options );

var A = [ 0, 9, 10,

Check failure on line 52 in lib/node_modules/@stdlib/blas/base/dgbmv/benchmark/benchmark.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

There should be a linebreak after this element

Check failure on line 52 in lib/node_modules/@stdlib/blas/base/dgbmv/benchmark/benchmark.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

There should be a linebreak after this element
11, 12, 5,

Check failure on line 53 in lib/node_modules/@stdlib/blas/base/dgbmv/benchmark/benchmark.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

There should be a linebreak after this element

Check failure on line 53 in lib/node_modules/@stdlib/blas/base/dgbmv/benchmark/benchmark.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

There should be a linebreak after this element
1, 2, 0 ];

Check failure on line 54 in lib/node_modules/@stdlib/blas/base/dgbmv/benchmark/benchmark.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

There should be a linebreak after this element

Check failure on line 54 in lib/node_modules/@stdlib/blas/base/dgbmv/benchmark/benchmark.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

There should be a linebreak after this element
return benchmark;

/**
Expand Down
Loading