@stdlib/blas-base

Standard library basic linear algebra subprograms (BLAS).

https://github.com/stdlib-js/blas-base

Science Score: 44.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
    Found CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic publication links
  • Committers with academic emails
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (14.9%) to scientific vocabulary

Keywords

algebra array basic blas javascript level-1 lib library linear math mathematics ndarray node node-js nodejs routines standard stdlib subprograms vector
Last synced: 4 months ago · JSON representation ·

Repository

Standard library basic linear algebra subprograms (BLAS).

Basic Info
Statistics
  • Stars: 3
  • Watchers: 3
  • Forks: 0
  • Open Issues: 0
  • Releases: 0
Topics
algebra array basic blas javascript level-1 lib library linear math mathematics ndarray node node-js nodejs routines standard stdlib subprograms vector
Created over 4 years ago · Last pushed 6 months ago
Metadata Files
Readme Changelog Contributing License Code of conduct Citation Security

README.md

About stdlib...

We believe in a future in which the web is a preferred environment for numerical computation. To help realize this future, we've built stdlib. stdlib is a standard library, with an emphasis on numerical and scientific computation, written in JavaScript (and C) for execution in browsers and in Node.js.

The library is fully decomposable, being architected in such a way that you can swap out and mix and match APIs and functionality to cater to your exact preferences and use cases.

When you use stdlib, you can be absolutely certain that you are using the most thorough, rigorous, well-written, studied, documented, tested, measured, and high-quality code out there.

To join us in bringing numerical computing to the web, get started by checking us out on GitHub, and please consider financially supporting stdlib. We greatly appreciate your continued support!

BLAS

NPM version Build Status Coverage Status <!-- dependencies -->

Base (i.e., lower-level) basic linear algebra subprograms (BLAS).

## Installation ```bash npm install @stdlib/blas-base ``` Alternatively, - To load the package in a website via a `script` tag without installation and bundlers, use the [ES Module][es-module] available on the [`esm`][esm-url] branch (see [README][esm-readme]). - If you are using Deno, visit the [`deno`][deno-url] branch (see [README][deno-readme] for usage intructions). - For use in Observable, or in browser/node environments, use the [Universal Module Definition (UMD)][umd] build available on the [`umd`][umd-url] branch (see [README][umd-readme]). The [branches.md][branches-url] file summarizes the available branches and displays a diagram illustrating their relationships. To view installation and usage instructions specific to each branch build, be sure to explicitly navigate to the respective README files on each branch, as linked to above.
## Usage ```javascript var blas = require( '@stdlib/blas-base' ); ``` #### blas Namespace for "base" (i.e., lower-level) basic linear algebra subprograms (BLAS). ```javascript var o = blas; // returns {...} ``` ### BLAS Level 1
- [`caxpy( N, alpha, x, strideX, y, strideY )`][@stdlib/blas/base/caxpy]: scale a single-precision complex floating-point vector by a single-precision complex floating-point constant and add the result to a single-precision complex floating-point vector. - [`ccopy( N, x, strideX, y, strideY )`][@stdlib/blas/base/ccopy]: copy values from one complex single-precision floating-point vector to another complex single-precision floating-point vector. - [`cscal( N, alpha, x, strideX )`][@stdlib/blas/base/cscal]: scales a single-precision complex floating-point vector by a single-precision complex floating-point constant. - [`csrot( N, x, strideX, y, strideY, c, s )`][@stdlib/blas/base/csrot]: apply a plane rotation. - [`csscal( N, alpha, x, strideX )`][@stdlib/blas/base/csscal]: scale a single-precision complex floating-point vector by a single-precision floating-point constant. - [`cswap( N, x, strideX, y, strideY )`][@stdlib/blas/base/cswap]: interchange two complex single-precision floating-point vectors. - [`dasum( N, x, stride )`][@stdlib/blas/base/dasum]: compute the sum of absolute values (_L1_ norm). - [`daxpy( N, alpha, x, strideX, y, strideY )`][@stdlib/blas/base/daxpy]: multiply a vector `x` by a constant `alpha` and add the result to `y`. - [`dcopy( N, x, strideX, y, strideY )`][@stdlib/blas/base/dcopy]: copy values from `x` into `y`. - [`ddot( N, x, strideX, y, strideY )`][@stdlib/blas/base/ddot]: calculate the dot product of two double-precision floating-point vectors. - [`dnrm2( N, x, stride )`][@stdlib/blas/base/dnrm2]: calculate the L2-norm of a double-precision floating-point vector. - [`drot( N, x, strideX, y, strideY, c, s )`][@stdlib/blas/base/drot]: apply a plane rotation. - [`drotg( a, b )`][@stdlib/blas/base/drotg]: construct a Givens plane rotation. - [`drotm( N, x, strideX, y, strideY, param )`][@stdlib/blas/base/drotm]: apply a modified Givens plane rotation. - [`dscal( N, alpha, x, stride )`][@stdlib/blas/base/dscal]: multiply a double-precision floating-point vector `x` by a constant `alpha`. - [`dsdot( N, x, strideX, y, strideY )`][@stdlib/blas/base/dsdot]: calculate the dot product with extended accumulation and result of two single-precision floating-point vectors. - [`dswap( N, x, strideX, y, strideY )`][@stdlib/blas/base/dswap]: interchange two double-precision floating-point vectors. - [`dznrm2( N, x, strideX )`][@stdlib/blas/base/dznrm2]: compute the L2-norm of a complex double-precision floating-point vector. - [`gasum( N, x, stride )`][@stdlib/blas/base/gasum]: compute the sum of absolute values (_L1_ norm). - [`gaxpy( N, alpha, x, strideX, y, strideY )`][@stdlib/blas/base/gaxpy]: multiply `x` by a constant `alpha` and add the result to `y`. - [`gcopy( N, x, strideX, y, strideY )`][@stdlib/blas/base/gcopy]: copy values from `x` into `y`. - [`gdot( N, x, strideX, y, strideY )`][@stdlib/blas/base/gdot]: calculate the dot product of two vectors. - [`gnrm2( N, x, stride )`][@stdlib/blas/base/gnrm2]: calculate the L2-norm of a vector. - [`gscal( N, alpha, x, stride )`][@stdlib/blas/base/gscal]: multiply a vector by a scalar constant. - [`gswap( N, x, strideX, y, strideY )`][@stdlib/blas/base/gswap]: interchange two vectors. - [`idamax( N, x, strideX )`][@stdlib/blas/base/idamax]: find the index of the first element having the maximum absolute value. - [`isamax( N, x, strideX )`][@stdlib/blas/base/isamax]: find the index of the first element having the maximum absolute value. - [`sasum( N, x, stride )`][@stdlib/blas/base/sasum]: compute the sum of absolute values (_L1_ norm). - [`saxpy( N, alpha, x, strideX, y, strideY )`][@stdlib/blas/base/saxpy]: multiply a vector `x` by a constant `alpha` and add the result to `y`. - [`scasum( N, x, strideX )`][@stdlib/blas/base/scasum]: compute the sum of the absolute values of the real and imaginary components of a single-precision complex floating-point vector. - [`scnrm2( N, x, strideX )`][@stdlib/blas/base/scnrm2]: compute the L2-norm of a complex single-precision floating-point vector. - [`scopy( N, x, strideX, y, strideY )`][@stdlib/blas/base/scopy]: copy values from `x` into `y`. - [`sdot( N, x, strideX, y, strideY )`][@stdlib/blas/base/sdot]: calculate the dot product of two single-precision floating-point vectors. - [`sdsdot( N, scalar, x, strideX, y, strideY )`][@stdlib/blas/base/sdsdot]: calculate the dot product of two single-precision floating-point vectors with extended accumulation. - [`snrm2( N, x, stride )`][@stdlib/blas/base/snrm2]: calculate the L2-norm of a single-precision floating-point vector. - [`srot( N, x, strideX, y, strideY, c, s )`][@stdlib/blas/base/srot]: apply a plane rotation. - [`srotg( a, b )`][@stdlib/blas/base/srotg]: construct a Givens plane rotation. - [`srotm( N, x, strideX, y, strideY, param )`][@stdlib/blas/base/srotm]: apply a modified Givens plane rotation. - [`sscal( N, alpha, x, stride )`][@stdlib/blas/base/sscal]: multiply a single-precision floating-point vector `x` by a constant `alpha`. - [`sswap( N, x, strideX, y, strideY )`][@stdlib/blas/base/sswap]: interchange two single-precision floating-point vectors. - [`zaxpy( N, alpha, x, strideX, y, strideY )`][@stdlib/blas/base/zaxpy]: scale a double-precision complex floating-point vector by a double-precision complex floating-point constant and add the result to a double-precision complex floating-point vector. - [`zcopy( N, x, strideX, y, strideY )`][@stdlib/blas/base/zcopy]: copy values from one complex double-precision floating-point vector to another complex double-precision floating-point vector. - [`zdrot( N, x, strideX, y, strideY, c, s )`][@stdlib/blas/base/zdrot]: apply a plane rotation. - [`zdscal( N, alpha, x, strideX )`][@stdlib/blas/base/zdscal]: scale a double-precision complex floating-point vector by a double-precision floating-point constant. - [`zscal( N, alpha, x, strideX )`][@stdlib/blas/base/zscal]: scales a double-precision complex floating-point vector by a double-precision complex floating-point constant. - [`zswap( N, x, strideX, y, strideY )`][@stdlib/blas/base/zswap]: interchange two complex double-precision floating-point vectors.
### BLAS Level 2
- [`dgemv( ord, trans, M, N, α, A, LDA, x, sx, β, y, sy )`][@stdlib/blas/base/dgemv]: perform one of the matrix-vector operations `y = α*A*x + β*y` or `y = α*A**T*x + β*y`. - [`dspmv( order, uplo, N, α, AP, x, sx, β, y, sy )`][@stdlib/blas/base/dspmv]: 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. - [`dspr( order, uplo, N, α, x, sx, AP )`][@stdlib/blas/base/dspr]: perform the symmetric rank 1 operation `A = α*x*x^T + A`. - [`dsymv( order, uplo, N, α, A, LDA, x, sx, β, y, sy )`][@stdlib/blas/base/dsymv]: 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. - [`dsyr( order, uplo, N, α, x, sx, A, LDA )`][@stdlib/blas/base/dsyr]: perform the symmetric rank 1 operation `A = α*x*x^T + A`. - [`dsyr2( order, uplo, N, α, x, sx, y, sy, A, LDA )`][@stdlib/blas/base/dsyr2]: perform the symmetric rank 2 operation `A = α*x*y^T + α*y*x^T + A`. - [`dtrmv( order, uplo, trans, diag, N, A, LDA, x, sx )`][@stdlib/blas/base/dtrmv]: perform one of the matrix-vector operations `x = A*x` or `x = A^T*x`. - [`dtrsv( order, uplo, trans, diag, N, A, LDA, x, sx )`][@stdlib/blas/base/dtrsv]: solve one of the systems of equations `A*x = b` or `A^T*x = b`. - [`sgemv( ord, trans, M, N, α, A, LDA, x, sx, β, y, sy )`][@stdlib/blas/base/sgemv]: perform one of the matrix-vector operations `y = α*A*x + β*y` or `y = α*A^T*x + β*y`. - [`sspmv( order, uplo, N, α, AP, x, sx, β, y, sy )`][@stdlib/blas/base/sspmv]: 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. - [`sspr( order, uplo, N, α, x, sx, AP )`][@stdlib/blas/base/sspr]: perform the symmetric rank 1 operation `A = α*x*x^T + A`. - [`ssymv( order, uplo, N, α, A, LDA, x, sx, β, y, sy )`][@stdlib/blas/base/ssymv]: 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. - [`ssyr( order, uplo, N, α, x, sx, A, LDA )`][@stdlib/blas/base/ssyr]: perform the symmetric rank 1 operation `A = α*x*x**T + A`. - [`ssyr2( order, uplo, N, α, x, sx, y, sy, A, LDA )`][@stdlib/blas/base/ssyr2]: perform the symmetric rank 2 operation `A = α*x*y^T + α*y*x^T + A`. - [`strmv( order, uplo, trans, diag, N, A, LDA, x, sx )`][@stdlib/blas/base/strmv]: perform one of the matrix-vector operations `x = A*x` or `x = A^T*x`. - [`strsv( order, uplo, trans, diag, N, A, LDA, x, sx )`][@stdlib/blas/base/strsv]: solve one of the systems of equations `A*x = b` or `A^T*x = b`.
### BLAS Level 3
- [`dgemm( ord, ta, tb, M, N, K, α, A, lda, B, ldb, β, C, ldc )`][@stdlib/blas/base/dgemm]: 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`. - [`sgemm( ord, ta, tb, M, N, K, α, A, lda, B, ldb, β, C, ldc )`][@stdlib/blas/base/sgemm]: 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`.
### Scalar Operations
- [`dcabs1( z )`][@stdlib/blas/base/dcabs1]: compute the sum of the absolute values of the real part and imaginary components of a double-precision complex floating-point number. - [`scabs1( z )`][@stdlib/blas/base/scabs1]: compute the sum of the absolute values of the real and imaginary components of a single-precision complex floating-point number.
### Auxiliary BLAS ### Utilities
- [`assert`][@stdlib/blas/base/assert]: base BLAS assertion utilities. - [`diagonalTypeEnum2Str( value )`][@stdlib/blas/base/diagonal-type-enum2str]: return the BLAS diagonal type string associated with a BLAS diagonal type enumeration constant. - [`diagonalTypeResolveEnum( value )`][@stdlib/blas/base/diagonal-type-resolve-enum]: return the enumeration constant associated with a supported BLAS diagonal type value. - [`diagonalTypeResolveStr( value )`][@stdlib/blas/base/diagonal-type-resolve-str]: return the diagonal type string associated with a supported BLAS diagonal type value. - [`diagonalTypeStr2Enum( diagonal )`][@stdlib/blas/base/diagonal-type-str2enum]: return the enumeration constant associated with a BLAS diagonal type. - [`diagonalTypes()`][@stdlib/blas/base/diagonal-types]: BLAS diagonal element types. - [`layoutEnum2Str( layout )`][@stdlib/blas/base/layout-enum2str]: return the BLAS memory layout string associated with a BLAS memory layout enumeration constant. - [`layoutResolveEnum( layout )`][@stdlib/blas/base/layout-resolve-enum]: return the enumeration constant associated with a supported BLAS memory layout value. - [`layoutResolveStr( layout )`][@stdlib/blas/base/layout-resolve-str]: return the layout string associated with a supported BLAS memory layout value. - [`layoutStr2Enum( layout )`][@stdlib/blas/base/layout-str2enum]: return the enumeration constant associated with a BLAS memory layout string. - [`layouts()`][@stdlib/blas/base/layouts]: BLAS memory layouts. - [`matrixTriangleEnum2Str( value )`][@stdlib/blas/base/matrix-triangle-enum2str]: return the BLAS matrix triangle string associated with a BLAS matrix triangle enumeration constant. - [`matrixTriangleResolveEnum( value )`][@stdlib/blas/base/matrix-triangle-resolve-enum]: return the enumeration constant associated with a supported BLAS matrix triangle value. - [`matrixTriangleResolveStr( value )`][@stdlib/blas/base/matrix-triangle-resolve-str]: return the matrix triangle string associated with a supported BLAS matrix triangle value. - [`matrixTriangleStr2Enum( operation )`][@stdlib/blas/base/matrix-triangle-str2enum]: return the enumeration constant associated with a BLAS matrix triangle. - [`matrixTriangles()`][@stdlib/blas/base/matrix-triangles]: BLAS matrix triangles. - [`operationSideEnum2Str( operation )`][@stdlib/blas/base/operation-side-enum2str]: return the BLAS operation side string associated with a BLAS operation side enumeration constant. - [`operationSideResolveEnum( operation )`][@stdlib/blas/base/operation-side-resolve-enum]: return the enumeration constant associated with a supported BLAS operation side value. - [`operationSideResolveStr( operation )`][@stdlib/blas/base/operation-side-resolve-str]: return the operation side string associated with a supported BLAS operation side value. - [`operationSideStr2Enum( operation )`][@stdlib/blas/base/operation-side-str2enum]: return the enumeration constant associated with a BLAS operation side. - [`operationSides()`][@stdlib/blas/base/operation-sides]: BLAS operation sides. - [`transposeOperationEnum2Str( operation )`][@stdlib/blas/base/transpose-operation-enum2str]: return the BLAS transpose operation string associated with a BLAS transpose operation enumeration constant. - [`transposeOperationResolveEnum( operation )`][@stdlib/blas/base/transpose-operation-resolve-enum]: return the enumeration constant associated with a supported BLAS transpose operation value. - [`transposeOperationResolveStr( operation )`][@stdlib/blas/base/transpose-operation-resolve-str]: return the transpose operation string associated with a supported BLAS transpose operation value. - [`transposeOperationStr2Enum( operation )`][@stdlib/blas/base/transpose-operation-str2enum]: return the enumeration constant associated with a BLAS transpose operation. - [`transposeOperations()`][@stdlib/blas/base/transpose-operations]: BLAS transpose operations.
## Examples ```javascript var objectKeys = require( '@stdlib/utils-keys' ); var blas = require( '@stdlib/blas-base' ); console.log( objectKeys( blas ) ); ```
* * * ## Notice This package is part of [stdlib][stdlib], a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more. For more information on the project, filing bug reports and feature requests, and guidance on how to develop [stdlib][stdlib], see the main project [repository][stdlib]. #### Community [![Chat][chat-image]][chat-url] --- ## License See [LICENSE][stdlib-license]. ## Copyright Copyright © 2016-2025. The Stdlib [Authors][stdlib-authors].

Owner

  • Name: stdlib
  • Login: stdlib-js
  • Kind: organization

Standard library for JavaScript.

Citation (CITATION.cff)

cff-version: 1.2.0
title: stdlib
message: >-
  If you use this software, please cite it using the
  metadata from this file.

type: software

authors:
  - name: The Stdlib Authors
    url: https://github.com/stdlib-js/stdlib/graphs/contributors

repository-code: https://github.com/stdlib-js/stdlib
url: https://stdlib.io

abstract: |
  Standard library for JavaScript and Node.js.

keywords:
  - JavaScript
  - Node.js
  - TypeScript
  - standard library
  - scientific computing
  - numerical computing
  - statistical computing

license: Apache-2.0 AND BSL-1.0

date-released: 2016

GitHub Events

Total
  • Push event: 46
Last Year
  • Push event: 46

Committers

Last synced: almost 2 years ago

All Time
  • Total Commits: 65
  • Total Committers: 1
  • Avg Commits per committer: 65.0
  • Development Distribution Score (DDS): 0.0
Past Year
  • Commits: 27
  • Committers: 1
  • Avg Commits per committer: 27.0
  • Development Distribution Score (DDS): 0.0
Top Committers
Name Email Commits
stdlib-bot n****y@s****o 65
Committer Domains (Top 20 + Academic)

Issues and Pull Requests

Last synced: 5 months ago

All Time
  • Total issues: 0
  • Total pull requests: 0
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Total issue authors: 0
  • Total pull request authors: 0
  • Average comments per issue: 0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Past Year
  • Issues: 0
  • Pull requests: 0
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Issue authors: 0
  • Pull request authors: 0
  • Average comments per issue: 0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
Pull Request Authors
Top Labels
Issue Labels
Pull Request Labels

Packages

  • Total packages: 1
  • Total downloads:
    • npm 9 last-month
  • Total dependent packages: 1
  • Total dependent repositories: 0
  • Total versions: 10
  • Total maintainers: 4
npmjs.org: @stdlib/blas-base

Base (i.e., lower-level) basic linear algebra subprograms (BLAS).

  • Homepage: https://stdlib.io
  • License: Apache-2.0
  • Latest release: 0.2.1
    published almost 2 years ago
  • Versions: 10
  • Dependent Packages: 1
  • Dependent Repositories: 0
  • Downloads: 9 Last month
Rankings
Dependent packages count: 16.2%
Stargazers count: 16.8%
Forks count: 17.4%
Average: 22.4%
Dependent repos count: 25.3%
Downloads: 36.1%
Funding
  • type: opencollective
  • url: https://opencollective.com/stdlib
Last synced: 5 months ago

Dependencies

package.json npm
  • @stdlib/array-base-arraylike2object ^0.0.x development
  • @stdlib/array-complex128 ^0.0.x development
  • @stdlib/array-complex64 ^0.0.x development
  • @stdlib/array-filled-by ^0.0.x development
  • @stdlib/array-float32 ^0.0.x development
  • @stdlib/array-float64 ^0.0.x development
  • @stdlib/array-uint8c ^0.0.x development
  • @stdlib/assert-is-browser ^0.0.x development
  • @stdlib/assert-is-error ^0.0.x development
  • @stdlib/bench ^0.0.x development
  • @stdlib/math-base-assert-is-nan ^0.0.x development
  • @stdlib/math-base-special-abs ^0.0.x development
  • @stdlib/math-base-special-floor ^0.0.x development
  • @stdlib/math-base-special-pow ^0.0.x development
  • @stdlib/math-base-special-round ^0.0.x development
  • @stdlib/math-base-special-sqrt ^0.0.x development
  • @stdlib/number-float64-base-to-float32 ^0.0.x development
  • @stdlib/random-base-discrete-uniform ^0.0.x development
  • @stdlib/random-base-randu ^0.0.x development
  • @stdlib/strided-base-reinterpret-complex128 ^0.0.x development
  • @stdlib/utils-define-nonenumerable-read-only-property ^0.0.x development
  • @stdlib/utils-keys ^0.0.x development
  • @stdlib/utils-try-require ^0.0.x development
  • istanbul ^0.4.1 development
  • proxyquire ^2.0.0 development
  • tap-spec 5.x.x development
  • tape git+https://github.com/kgryte/tape.git#fix/globby development
  • @stdlib/blas-base-ccopy ^0.0.x
  • @stdlib/blas-base-cswap ^0.0.x
  • @stdlib/blas-base-dasum ^0.0.x
  • @stdlib/blas-base-daxpy ^0.0.x
  • @stdlib/blas-base-dcopy ^0.0.x
  • @stdlib/blas-base-ddot ^0.0.x
  • @stdlib/blas-base-dnrm2 ^0.0.x
  • @stdlib/blas-base-dscal ^0.0.x
  • @stdlib/blas-base-dsdot ^0.0.x
  • @stdlib/blas-base-dswap ^0.0.x
  • @stdlib/blas-base-gasum ^0.0.x
  • @stdlib/blas-base-gaxpy ^0.0.x
  • @stdlib/blas-base-gcopy ^0.0.x
  • @stdlib/blas-base-gdot ^0.0.x
  • @stdlib/blas-base-gnrm2 ^0.0.x
  • @stdlib/blas-base-gscal ^0.0.x
  • @stdlib/blas-base-gswap ^0.0.x
  • @stdlib/blas-base-sasum ^0.0.x
  • @stdlib/blas-base-saxpy ^0.0.x
  • @stdlib/blas-base-scopy ^0.0.x
  • @stdlib/blas-base-sdot ^0.0.x
  • @stdlib/blas-base-sdsdot ^0.0.x
  • @stdlib/blas-base-snrm2 ^0.0.x
  • @stdlib/blas-base-sscal ^0.0.x
  • @stdlib/blas-base-sswap ^0.0.x
  • @stdlib/utils-define-read-only-property ^0.0.x
.github/workflows/benchmark.yml actions
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
.github/workflows/cancel.yml actions
  • styfle/cancel-workflow-action 0.11.0 composite
.github/workflows/close_pull_requests.yml actions
  • superbrothers/close-pull-request v3 composite
.github/workflows/examples.yml actions
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
.github/workflows/npm_downloads.yml actions
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
  • actions/upload-artifact v3 composite
  • distributhor/workflow-webhook v3 composite
.github/workflows/productionize.yml actions
  • act10ns/slack v1 composite
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
  • stdlib-js/bundle-action main composite
  • stdlib-js/transform-errors-action main composite
.github/workflows/publish.yml actions
  • JS-DevTools/npm-publish v1 composite
  • act10ns/slack v1 composite
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
  • styfle/cancel-workflow-action 0.11.0 composite
.github/workflows/test.yml actions
  • act10ns/slack v1 composite
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
.github/workflows/test_bundles.yml actions
  • act10ns/slack v1 composite
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
  • denoland/setup-deno v1 composite
.github/workflows/test_coverage.yml actions
  • act10ns/slack v1 composite
  • actions/checkout v3 composite
  • actions/setup-node v3 composite
  • codecov/codecov-action v3 composite
  • distributhor/workflow-webhook v3 composite
.github/workflows/test_install.yml actions
  • act10ns/slack v1 composite
  • actions/checkout v3 composite
  • actions/setup-node v3 composite