Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
ndarray-blas-level1
Advanced tools
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.
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.
Function | Operation | Description |
---|---|---|
swap(x,y) | Swap the elements of x and y | |
scal(alpha,x) | Multiple vector x by scalar alpha | |
copy(x,y) | Copy x into y | |
axpy(alpha, x, y) | Multiple x by alpha and add it to y | |
cpsc(alpha, x, y) | Multiply x by alpha and assign it to y | |
dot(x,y) | Calculate the inner product of x and y. | |
nrm2(x) | Calculate the 2-norm of x | |
asum(x) | Calculate the 1-norm of x | |
iamax(x) | the argmax of x | |
rotg(a,b) | Calculates the Givens rotation parameters [c, s, r] | |
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);
© 2015 Scijs. MIT License.
Ricky Reusser, Philipp Burckhardt, Tim Bright
FAQs
BLAS Level 1 operations for ndarrays
The npm package ndarray-blas-level1 receives a total of 18,626 weekly downloads. As such, ndarray-blas-level1 popularity was classified as popular.
We found that ndarray-blas-level1 demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 open source maintainers collaborating on the project.
Did you know?
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.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.