1.0.0 • Published 5 years ago

nclblast v1.0.0

Weekly downloads
-
License
MIT
Repository
-
Last release
5 years ago

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
  • Matrix layout enums
    • Matrix transpose (trans)
      • nclblast.NoTrans (default)
      • nclblast.Trans
      • nclblast.ConjTrans
    • Upper/lower matrix (uplo)
      • nclblast.Upper (default)
      • nclblast.Lower
    • Matrix diagonal (diag)
      • nclblast.NonUnit (default)
      • nclblast.Unit
    • Matrix side (side)
      • nclblast.Left (default)
      • nclblast.Right

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.