Skip to content

Commit 8364911

Browse files
committed
Auto-generated commit
1 parent de68156 commit 8364911

39 files changed

+245
-326
lines changed

CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2024-08-18)
7+
## Unreleased (2024-09-02)
88

99
<section class="packages">
1010

@@ -62,10 +62,12 @@
6262

6363
### Contributors
6464

65-
A total of 2 people contributed to this release. Thank you to the following contributors:
65+
A total of 4 people contributed to this release. Thank you to the following contributors:
6666

6767
- Aman Bhansali
6868
- Athan Reines
69+
- Philipp Burckhardt
70+
- yaswanth
6971

7072
</section>
7173

@@ -77,6 +79,8 @@ A total of 2 people contributed to this release. Thank you to the following cont
7779

7880
<details>
7981

82+
- [`e9f4e07`](https://github.com/stdlib-js/stdlib/commit/e9f4e0759a14b8da93d4e0837b886d8ed56bc696) - **refactor:** update `blas/ext/base/dsnansumpw` to follow current conventions _(by yaswanth, Philipp Burckhardt)_
83+
- [`e0cef99`](https://github.com/stdlib-js/stdlib/commit/e0cef995e884021db3001dc1a3cfef0ca7b368c2) - **style:** remove extra spaces for regular expressions in publish script _(by Philipp Burckhardt)_
8084
- [`da12183`](https://github.com/stdlib-js/stdlib/commit/da121832eca80c36e1e32929e994fef44ca8a4cc) - **feat:** add `blas/base/dspr` [(#2794)](https://github.com/stdlib-js/stdlib/pull/2794) _(by Aman Bhansali, Athan Reines)_
8185

8286
</details>

base/dgemm/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ limitations under the License.
2222

2323
> Perform the matrix-matrix operation `C = α*op(A)*op(B) + β*C` where `op(X)` is one of the `op(X) = X`, or `op(X) = X^T`.
2424
25-
<section class = "usage">
25+
<section class="usage">
2626

2727
## Usage
2828

base/dgemv/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ limitations under the License.
2222

2323
> Perform one of the matrix-vector operations `y = α*A*x + β*y` or `y = α*A**T*x + β*y`.
2424
25-
<section class = "usage">
25+
<section class="usage">
2626

2727
## Usage
2828

base/dspmv/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ limitations under the License.
2222

2323
> Perform the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `N` element vectors and, `A` is an `N` by `N` symmetric matrix supplied in packed form.
2424
25-
<section class = "usage">
25+
<section class="usage">
2626

2727
## Usage
2828

base/dspr/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ limitations under the License.
2222

2323
> Perform the symmetric rank 1 operation `A = α*x*x^T + A`.
2424
25-
<section class = "usage">
25+
<section class="usage">
2626

2727
## Usage
2828

base/dsymv/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ limitations under the License.
2222

2323
> Perform the matrix-vector operation `y = α*A*x + β*y` where `α` and `β` are scalars, `x` and `y` are `N` element vectors, and `A` is an `N` by `N` symmetric matrix.
2424
25-
<section class = "usage">
25+
<section class="usage">
2626

2727
## Usage
2828

base/dsyr/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ limitations under the License.
2222

2323
> Perform the symmetric rank 1 operation `A = α*x*x^T + A`.
2424
25-
<section class = "usage">
25+
<section class="usage">
2626

2727
## Usage
2828

base/dsyr2/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ limitations under the License.
2222

2323
> Perform the symmetric rank 2 operation `A = α*x*y^T + α*y*x^T + A`.
2424
25-
<section class = "usage">
25+
<section class="usage">
2626

2727
## Usage
2828

base/dtrmv/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ limitations under the License.
2222

2323
> Perform one of the matrix-vector operations `x = A*x` or `x = A^T*x`.
2424
25-
<section class = "usage">
25+
<section class="usage">
2626

2727
## Usage
2828

base/dtrsv/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ limitations under the License.
2222

2323
> Solve one of the systems of equations `A*x = b` or `A^T*x = b`.
2424
25-
<section class = "usage">
25+
<section class="usage">
2626

2727
## Usage
2828

0 commit comments

Comments
 (0)