Skip to content
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

feat: add blas/base/drot #1823

Merged
merged 27 commits into from
Apr 19, 2024
Merged
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
ccd0c39
chore: in-process
aman-095 Mar 10, 2024
64788f5
feat: add BLAS Level 1 drot routine
aman-095 Mar 11, 2024
e064ac3
chore: apply error changes
aman-095 Mar 11, 2024
9960599
chore: solve lint error
aman-095 Mar 11, 2024
37dd267
chore: apply changes for lint error and tests
aman-095 Mar 11, 2024
de92f4a
chore: apply readme changes
aman-095 Mar 12, 2024
9e371a5
chore: apply review changes
aman-095 Mar 12, 2024
25d7542
Apply suggestions from code review
kgryte Mar 14, 2024
18681d4
Apply suggestions from code review
kgryte Mar 14, 2024
df45a1a
Apply suggestions from code review
kgryte Mar 14, 2024
7fb5d2c
Apply suggestions from code review
kgryte Mar 14, 2024
fec516f
Apply suggestions from code review
kgryte Mar 14, 2024
fd7978d
chore: apply review changes
aman-095 Mar 14, 2024
639ea83
chore: apply review changes
aman-095 Mar 14, 2024
e18d183
chore: apply review changes
aman-095 Mar 14, 2024
4cf3434
Apply suggestions from code review
kgryte Mar 15, 2024
1f34b38
Apply suggestions from code review
kgryte Mar 15, 2024
bd544ea
chore: apply review changes
aman-095 Mar 15, 2024
47361ef
chore: apply suggestions from code review
Pranavchiku Mar 16, 2024
21002f9
chore: apply review changes
aman-095 Mar 17, 2024
3c73b2c
chore: apply review changes
aman-095 Mar 25, 2024
e005888
chore: apply review changes
aman-095 Mar 26, 2024
23b03d1
feat: add C / Fortran implementation for drot
aman-095 Apr 12, 2024
7e37513
chore: apply review changes
aman-095 Apr 12, 2024
818ede6
chore: resolve lint errors
aman-095 Apr 12, 2024
c8e7dea
refactor: replace use of 'double precision' and update tests
kgryte Apr 19, 2024
43f62d8
docs: update example
kgryte Apr 19, 2024
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
Prev Previous commit
docs: update example
  • Loading branch information
kgryte committed Apr 19, 2024
commit 43f62d88cd1babe6409458a33654e017fad4e395
3 changes: 1 addition & 2 deletions lib/node_modules/@stdlib/blas/base/drot/examples/c/example.c
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ int main( void ) {

// Print the result:
for ( int i = 0; i < 5; i++ ) {
printf( "x[ %i ] = %lf\n", i, x[ i ] );
printf( "y[ %i ] = %lf\n", i, y[ i ] );
printf( "x[ %i ] = %lf, y[ %i ] = %lf\n", i, x[ i ], i, y[ i ] );
}
}
Loading