Skip to content

feat: add JavaScript implementation and clean-up blas/base/dger #6395

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 40 commits into from
Jun 26, 2025
Merged
Changes from 1 commit
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
37909ad
fix: add javascript implementation for /blas/base/dger
ShabiShett07 Mar 26, 2025
0f8696e
chore: update copyright years
stdlib-bot Mar 26, 2025
f1792dc
remove: c examples
ShabiShett07 Mar 26, 2025
c773adf
fix: changed file permissions
ShabiShett07 Mar 26, 2025
0d43dbd
fix: package.json lint error
ShabiShett07 Mar 26, 2025
ff417f4
chore: minor clean-up
ShabiShett07 Jun 12, 2025
1f03887
chore: minor clean-up
ShabiShett07 Jun 12, 2025
b589cc3
chore: add lda check
ShabiShett07 Jun 12, 2025
82da916
chore: minor clean-up
ShabiShett07 Jun 12, 2025
f40407f
chore: add matrix representation
ShabiShett07 Jun 12, 2025
74ba82f
chore: add matrix representations
ShabiShett07 Jun 12, 2025
2613453
chore: add test cases
ShabiShett07 Jun 13, 2025
1799083
chore: remove files
ShabiShett07 Jun 23, 2025
869375b
chore: revert deleted files
ShabiShett07 Jun 24, 2025
156ef20
chore: update package.json
ShabiShett07 Jun 24, 2025
427d8e7
chore: update package.json
ShabiShett07 Jun 24, 2025
697b398
chore: update package.json
ShabiShett07 Jun 24, 2025
de5b1af
chore: update implementation
ShabiShett07 Jun 24, 2025
6319005
chore: initial clean-up
kgryte Jun 25, 2025
4f2d6e3
Merge branch 'fix/dger' of https://github.com/shabishett07/stdlib int…
kgryte Jun 25, 2025
fb6a928
refactor: implement loop interchange
kgryte Jun 25, 2025
ad1bad0
docs: update extended comment
kgryte Jun 25, 2025
35b9284
docs: update comment and add comment
kgryte Jun 25, 2025
2f588bc
fix: include invalid arguments in error messages
kgryte Jun 25, 2025
6e0cd15
chore: clean-up
kgryte Jun 25, 2025
7ecd138
docs: fix markup
kgryte Jun 25, 2025
98ab999
docs: add empty intro section
kgryte Jun 25, 2025
256b684
refactor: perform consistent error handling
kgryte Jun 25, 2025
4e5206a
chore: update native implementation and fix test fixtures
kgryte Jun 25, 2025
b140344
docs: fix copyright year
kgryte Jun 25, 2025
9f1f11d
test: add native add-on tests
kgryte Jun 25, 2025
80f0061
chore: fix missing directories
kgryte Jun 25, 2025
aebe53b
bench: add native add-on benchmarks
kgryte Jun 25, 2025
45c9525
bench: add C benchmarks
kgryte Jun 25, 2025
24226d8
bench: add Fortran benchmark
kgryte Jun 25, 2025
303db0b
chore: revert package.json
ShabiShett07 Jun 24, 2025
59b0f32
chore: clean-up
ShabiShett07 Jun 25, 2025
edc384c
chore: minor clean-up
ShabiShett07 Jun 25, 2025
87b6637
chore: add test cases
ShabiShett07 Jun 25, 2025
525f4f6
test: fix test description and add tests
kgryte Jun 26, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions lib/node_modules/@stdlib/blas/base/dger/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@stdlib/blas/base/dger",
"version": "0.0.0",
"description": "Perform the rank 1 operation `A = α*x*y^T + A`.",
"description": "Perform the rank 1 operation A = alpha⋅x⋅y^T + A.",
"license": "Apache-2.0",
"author": {
"name": "The Stdlib Authors",
Expand All @@ -17,8 +17,6 @@
"browser": "./lib/main.js",
"gypfile": true,
"directories": {
"benchmark": "./benchmark",
"doc": "./docs",
"example": "./examples",
"include": "./include",
"lib": "./lib",
Expand Down