nclblast
TypeScript icon, indicating that this package has built-in type declarations

1.0.0 • Public • Published

nCLBlast version travis maintainability Test Coverage

Greenkeeper badge

Node >=6.9 C++ bindings for all single- and double-precision CBLAS (Basic Linear Algebra Subprograms) routines.

$ npm install nclblast
$ npm test

Works out of the box with OSX since CBLAS is included in the standard Accelerate framework. You might have to download and build LAPACK from source on other operating systems (LINUX: sudo apt-get libblas-dev).

import { dot, ddot, sdot, dznrm2 } from './src';
 
const f64a = new Float64Array([1, 2, 3]);
const f64b = new Float64Array([4, 5, 6]);
 
console.log(dot(f64a, f64b));
// 32
console.log(ddot(3, f64a, 1, f64b, 1));
// 32
 
const f32a = new Float32Array([1, 2, 3]);
const f32b = new Float32Array([4, 5, 6]);
 
console.log(dot(f32a, f32b));
// 32
console.log(sdot(3, f32a, 1, f32b, 1));
// 32
 
// complex arrays are packed like this: [Re, Im, Re, Im, ...]
// this is equivalent to [1 + 2i, 3 + 4i]
const c16 = new Float64Array([1, 2, 3, 4]);
 
// complex l2 norm
console.log(dznrm2(2, c16, 1));
// sqrt(1^2 + 2^2 + 3^2 + 4^2) ~ 5.477

Double precision functions expect Float64Array vectors, single precision functions expect Float32Array vectors.

Readme

Keywords

none

Package Sidebar

Install

npm i nclblast

Weekly Downloads

1

Version

1.0.0

License

MIT

Unpacked Size

1.22 MB

Total Files

69

Last publish

Collaborators

  • mateogianolio