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
Next Next commit
Apply suggestions from code review
Signed-off-by: Athan <kgryte@gmail.com>
  • Loading branch information
kgryte committed Mar 14, 2024
commit 18681d4f6aac3f73e3eb563e2cbbae65b0efd5ef
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/blas/base/drot/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ limitations under the License.

<section class="intro">

This BLAS level 1 routine applies a real plane rotation to real vectors. The plane rotation is applied to `N` points, where the points to be rotated are contained in vectors `x` and `y` and where the cosine and sine of the angle of rotation are `c` and `s`, respectively. The operation is as follows:
This BLAS level 1 routine applies a real plane rotation to real double-precision floating-point vectors. The plane rotation is applied to `N` points, where the points to be rotated are contained in vectors `x` and `y` and where the cosine and sine of the angle of rotation are `c` and `s`, respectively. The operation is as follows:

<!-- <equation class="equation" label="eq:drot" align="center" raw="\begin{bmatrix}x_i \\ y_i\end{bmatrix} = \begin{bmatrix} c & s \\ -s & c\end{bmatrix}\begin{bmatrix} x_i \\ y_i \end{bmatrix}" alt="Plane rotation"> -->

Expand Down
Loading