Skip to content

Files

Latest commit

c7f7ea9 · Mar 13, 2024

History

History

blas

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Mar 1, 2024
Jan 7, 2024
Jan 7, 2024
Jan 7, 2024
Feb 10, 2019
Mar 13, 2024
Nov 3, 2023
Nov 3, 2023
Apr 21, 2020
Jan 7, 2024
Jan 7, 2024
Jul 24, 2023
Nov 9, 2021
Oct 14, 2021

BLAS

Basic linear algebra subprograms (BLAS).

Usage

var blas = require( '@stdlib/blas' );

blas

Namespace for basic linear algebra subprograms (BLAS).

var o = blas;
// returns {...}

The namespace contains the following:

  • base: base (i.e., lower-level) basic linear algebra subprograms (BLAS).
  • ddot( x, y ): calculate the dot product of two double-precision floating-point vectors.
  • dswap( x, y ): interchange two double-precision floating-point vectors.
  • ext: extended basic linear algebra subprograms (BLAS).
  • gdot( x, y ): calculate the dot product of two vectors.
  • gswap( x, y ): interchange two vectors.
  • sdot( x, y ): calculate the dot product of two single-precision floating-point vectors.
  • sswap( x, y ): interchange two single-precision floating-point vectors.

Examples

var objectKeys = require( '@stdlib/utils/keys' );
var blas = require( '@stdlib/blas' );

console.log( objectKeys( blas ) );