Skip to content

feat: add blas/base/cher #7088

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

Draft
wants to merge 25 commits into
base: develop
Choose a base branch
from
Draft
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: minor clean-up
Signed-off-by: Shabareesh Shetty <139731143+ShabiShett07@users.noreply.github.com>
  • Loading branch information
ShabiShett07 authored Jun 25, 2025
commit 0ac6b87209392bde2523a7bf6c5ea411e56e293c
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/blas/base/cher/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ import cher = require( './index' );
cher.ndarray( undefined, 10, 1.0, x, 1, 0, A, 3, 1, 0 ); // $ExpectError
cher.ndarray( [], 10, 1.0, x, 1, 0, A, 3, 1, 0 ); // $ExpectError
cher.ndarray( {}, 10, 1.0, x, 1, 0, A, 3, 1, 0 ); // $ExpectError
cher.ndarray( 'row-major', ( x: number ): number => x, 10, 1.0, x, 1, 0, A, 3, 1, 0 ); // $ExpectError
cher.ndarray( ( x: number ): number => x, 10, 1.0, x, 1, 0, A, 3, 1, 0 ); // $ExpectError
}

// The compiler throws an error if the function is provided a second argument which is not a number...
Expand Down
Loading