Skip to content

feat: add blas/ext/base/wasm/sapxsumkbn #6700

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 8 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore: updated test
---
type: pre_commit_static_analysis_report
description: Results of running static analysis checks when committing changes.
report:
  - task: lint_filenames
    status: passed
  - task: lint_editorconfig
    status: passed
  - task: lint_markdown
    status: na
  - task: lint_package_json
    status: na
  - task: lint_repl_help
    status: na
  - task: lint_javascript_src
    status: na
  - task: lint_javascript_cli
    status: na
  - task: lint_javascript_examples
    status: na
  - task: lint_javascript_tests
    status: passed
  - task: lint_javascript_benchmarks
    status: na
  - task: lint_python
    status: na
  - task: lint_r
    status: na
  - task: lint_c_src
    status: na
  - task: lint_c_examples
    status: na
  - task: lint_c_benchmarks
    status: na
  - task: lint_c_tests_fixtures
    status: na
  - task: lint_shell
    status: na
  - task: lint_typescript_declarations
    status: na
  - task: lint_typescript_tests
    status: na
  - task: lint_license_headers
    status: passed
---
  • Loading branch information
0PrashantYadav0 committed Apr 30, 2025
commit fdec09e24f6765e39728ec98263e38abc099c7ba
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,6 @@ tape( 'the `main` method adds a constant and calculates the sum of all strided a
v = sapxsumkbn.main( x.length, 5.0, x, 1 );
t.strictEqual( isnan( v ), true, 'returns expected value' );

x = new Float32Array( [ 1.0, 1e100, 1.0, -1.0e100 ] );
v = sapxsumkbn.main( x.length, 5.0, x, 1 );
t.strictEqual( v, 12.0, 'returns expected value' );

t.end();
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,6 @@ tape( 'the `ndarray` method adds a constant and calculates the sum of all stride
v = sapxsumkbn.ndarray( x.length, 5.0, x, 1, 0 );
t.strictEqual( isnan( v ), true, 'returns expected value' );

x = new Float32Array( [ 1.0, 1.0e100, 1.0, -1.0e100 ] );
v = sapxsumkbn.ndarray( x.length, 5.0, x, 1, 0 );
t.strictEqual( v, 12.0, 'returns expected value' );

t.end();
});

Expand Down