Skip to content
Open
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
d811c8c
feat: add blas/base/dsbmv
ShabiShett07 Apr 11, 2025
6e2483c
chore: add complete implementation
ShabiShett07 Apr 12, 2025
0a25c0d
chore: update copyright years
stdlib-bot Apr 12, 2025
409d821
chore: add test cases
ShabiShett07 Apr 12, 2025
16a9063
chore: add test cases
ShabiShett07 Apr 12, 2025
30e624d
chore: update test cases
ShabiShett07 Apr 13, 2025
a4a8183
chore: update examples
ShabiShett07 Apr 14, 2025
e25f528
chore: update examples
ShabiShett07 Apr 14, 2025
5f6910a
chore: update fixtures
ShabiShett07 Apr 16, 2025
4fd0fcd
chore: update jsdoc
ShabiShett07 Apr 16, 2025
7475eff
chore: update examples
ShabiShett07 Apr 16, 2025
55a7239
chore: fix test fixtures
ShabiShett07 Apr 24, 2025
56ff685
chore: fix test fixtures
ShabiShett07 Apr 24, 2025
87bd6e9
test: update test cases
ShabiShett07 Apr 29, 2025
3f6abe6
remove: indentation
ShabiShett07 Apr 30, 2025
541a527
bench: update variable declarations
Jul 23, 2025
0e094de
chore: update repl.txt
Jul 23, 2025
6739244
chore: update jsdoc
Jul 23, 2025
bc5a88f
chore: update test cases
Jul 24, 2025
673ff3b
chore: update example
Jul 24, 2025
210b9a1
refactor: update jsdoc and reduce arithmetic operations
Jul 24, 2025
5fb6caf
chore: update jsdoc
Jul 24, 2025
9b116b9
chore: use alpha and beta symbols
Jul 24, 2025
506ba6b
test: update fixtures
Jul 24, 2025
f6e13a0
test: update fixtures
Jul 24, 2025
d3e5a48
test: update test description
Jul 24, 2025
6d52968
test: update test description
Jul 24, 2025
1270d7c
chore: update description
Jul 24, 2025
c7f20c0
chore: update markdown file
Jul 24, 2025
a4cb271
test: complete test coverage
Jul 24, 2025
1ebeb8a
test: fix test cases
Jul 24, 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
test: update fixtures
--- 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: na - 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 ---
  • Loading branch information
Shabareesh Shetty authored and Shabareesh Shetty committed Jul 24, 2025
commit f6e13a0e36da335fbb5e5720935b647771522df4
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"uplo": "upper",
"order": "row-major",
"uplo": "upper",
"N": 3,
"K": 1,
"alpha": 1.0,
Expand Down