Skip to content

Commit

Permalink
Addressed PR comments
Browse files Browse the repository at this point in the history
  • Loading branch information
OuadiElfarouki committed Jan 8, 2024
1 parent 0a98405 commit 497abf6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -220,17 +220,17 @@ For all these operations:
| `_asum` | `sb_handle`, `N`, `vx`, `incx` [, `rs`] | Absolute sum of the vector `x`; written in `rs` if passed, else returned |
| `_axpy` | `sb_handle`, `N`, `alpha`, `vx`, `incx`, `vy`, `incy` | Vector multiply-add: `y = alpha * x + y` |
| `_copy` | `sb_handle`, `N`, `vx`, `incx`, `vy`, `incy` | Copies a vector to another: `y = x` |
| `_dot` | `sb_handle`, `N`, `sb`, `vx`, `incx`, `vy`, `incy` [, `rs`] | Dot product of two vectors `x` and `y`; added to `sb` and written to `rs` if passed, else returned |
| `_sdsdot` | `sb_handle`, `N`, `vx`, `incx`, `vy`, `incy` [, `rs`] | Dot product of two vectors with double precision `x` and `y`; written in `rs` if passed, else returned |
| `_dot` | `sb_handle`, `N`, `vx`, `incx`, `vy`, `incy` [, `rs`] | Dot product of two vectors `x` and `y`; written to `rs` if passed, else returned |
| `_sdsdot` | `sb_handle`, `N`, `sb`, `vx`, `incx`, `vy`, `incy`[, `rs`] | Compute sum of a constant `sb` with the double precision dot product of two single precision vectors `x` and `y`; written in `rs` if passed, else returned |
| `_nrm2` | `sb_handle`, `N`, `vx`, `incx` [, `rs`] | Euclidean norm of the vector `x`; written in `rs` if passed, else returned |
| `_rot` | `sb_handle`, `N`, `vx`, `incx`, `vy`, `incy`, `c`, `s` | Applies a plane rotation to `x` and `y` with a cosine `c` and a sine `s` |
| `_rotg` | `sb_handle`, `a`, `b`, `c`, `s` | Given the Cartesian coordinates (`a`, `b`) of a point, return the parameters `c`, `s`, `r`, and `z` associated with the Givens rotation. |
| `_rotm` | `sb_handle`, `N`, `vx`, `incx`, `vy`, `incy`, `param` | Applies a modified Givens rotation to `x` and `y`. |
| `_rotmg` | `sb_handle`, `d1`, `d2`, `x1`, `y1` `param` | Given the Cartesian coordinates (`x1`, `y1`) of a point, return the components of a modified Givens transformation matrix that zeros the y-component of the resulting point. |
| `_scal` | `sb_handle`, `N`, `alpha`, `vx`, `incx` | Scalar product of a vector: `x = alpha * x` |
| `_swap` | `sb_handle`, `N`, `vx`, `incx`, `vy`, `incy` | Interchanges two vectors: `y = x` and `x = y` |
| `_iamax` | `sb_handle`, `N`, `vx`, `incx` [, `rs`] | First index and value of the maximum element of `x`; written in `rs` if passed, else the index only is returned |
| `_iamin` | `sb_handle`, `N`, `vx`, `incx` [, `rs`] | First index and value of the minimum element of `x`; written in `rs` if passed, else the index only is returned |
| `_iamax` | `sb_handle`, `N`, `vx`, `incx` [, `rs`] | Index of the first occurence of the maximum element in `x`; written to `rs` if passed, else returned. |
| `_iamin` | `sb_handle`, `N`, `vx`, `incx` [, `rs`] | Index of the first occurence of the minimum element in `x`; written to `rs` if passed, else returned. |

### BLAS 2

Expand Down

0 comments on commit 497abf6

Please sign in to comment.