Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ndarray-blas-level1

Package Overview
Dependencies
Maintainers
6
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ndarray-blas-level1

BLAS Level 1 operations for ndarrays

  • 1.1.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
21K
decreased by-15.99%
Maintainers
6
Weekly downloads
 
Created
Source

ndarray-blas-level1

Build Status npm version Dependency Status js-semistandard-style

BLAS Level 1 operations for ndarrays

A quick note on why this exists: The goal is not to reinvent the wheel. There are lots of implementations of BLAS out there. Even for JS. There's a nodejs wrapper for LAPACK. Depending on what you need, maybe you should use that. The goal of this is to bring standardized BLAS operations to ndarrays so that algorithms can be made as future-resistant as possible by writing them in terms of standardized, easily-translatable operations.

Usage

This library implements the basic vector operations of the Level 1 Basic Linear Algebra Subprograms (BLAS). Many of these functions are also implemented in ndarray-ops—which also has functions that are not included in BLAS. So the right answer is probably some blend of the two. This library exists mainly to frame things in a relatively standard, coherent framework.

NB: This library performs no checks to ensure you're only passing one-dimensional vectors. It simply iterates across the first dimension of the array, so if you pass it higher-dimensional arrays, don't expect a meaningful result.

FunctionOperationDescription
swap(x,y)x \leftrightarrow ySwap the elements of x and y
scal(alpha,x)x \leftarrow \alpha xMultiple vector x by scalar alpha
copy(x,y)y \leftarrow xCopy x into y
axpy(alpha, x, y)y \leftarrow \alpha x + yMultiple x by alpha and add it to y
cpsc(alpha, x, y)y \leftarrow \alpha xMultiply x by alpha and assign it to y
dot(x,y)dot \leftarrow x^T yCalculate the inner product of x and y.
nrm2(x)nrm2 \leftarrow ||x||_2Calculate the 2-norm of x
asum(x)asum \leftarrow ||x||_1Calculate the 1-norm of x
iamax(x)\underset{i} {\mathrm{argmax}} |x_i|the argmax of x
rotg(a,b)Calculates the Givens rotation parameters [c, s, r]

Example

Usage should be pretty straightforward. There aren't really any options or variations.

var blas1 = require('ndarray-blas-level1');

var x = ndarray([1,2,3]);
var y = ndarray([3,4,5]);

blas1.axpy(2, x, y);

License

© 2015 Scijs. MIT License.

Authors

Ricky Reusser, Philipp Burckhardt, Tim Bright

Keywords

FAQs

Package last updated on 30 Jul 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc