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

blas-dasum

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

blas-dasum - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

11

lib/index.js

@@ -32,13 +32,6 @@ 'use strict';

sum = 0;
if ( stride === 1 ) {
idx = offset;
for ( i = 0; i < N; i++ ) {
sum += abs( x[ idx ] );
idx += 1;
}
return sum;
}
idx = offset;
for ( i = 0; i < N; i++ ) {
idx = offset + i*stride;
sum += abs( x[ idx ] );
idx += stride;
}

@@ -45,0 +38,0 @@ return sum;

2

package.json
{
"name": "blas-dasum",
"version": "1.0.0",
"version": "1.0.1",
"description": "Computes the sum of absolute values.",

@@ -5,0 +5,0 @@ "author": {

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