From 497abf6b67defea9c085c64d4a572c9393be2c88 Mon Sep 17 00:00:00 2001 From: Ouadie EL FAROUKI Date: Mon, 8 Jan 2024 16:43:46 +0000 Subject: [PATCH] Addressed PR comments --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index a3028e9f6..f2af6fc2c 100644 --- a/README.md +++ b/README.md @@ -220,8 +220,8 @@ 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. | @@ -229,8 +229,8 @@ For all these operations: | `_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