Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
de7df89
feat: add BLAS Level 1 cscal
aman-095 Apr 1, 2024
fdc0170
chore: apply review changes
aman-095 Apr 3, 2024
1ad3e77
chore: add review changes
aman-095 Apr 4, 2024
aef4daa
chore: apply review changes
aman-095 Apr 4, 2024
8caf26d
Apply suggestions from code review
kgryte Apr 4, 2024
1e4be35
Apply suggestions from code review
kgryte Apr 4, 2024
d3260d6
Apply suggestions from code review
kgryte Apr 4, 2024
27ffd5d
Apply suggestions from code review
kgryte Apr 4, 2024
557408b
Apply suggestions from code review
kgryte Apr 4, 2024
bf22517
Apply suggestions from code review
kgryte Apr 4, 2024
39b5a9e
Apply suggestions from code review
kgryte Apr 4, 2024
468fe12
Apply suggestions from code review
kgryte Apr 4, 2024
828f2aa
Apply suggestions from code review
kgryte Apr 4, 2024
ff51235
Apply suggestions from code review
kgryte Apr 4, 2024
1f6a062
Apply suggestions from code review
kgryte Apr 4, 2024
a751e2e
Apply suggestions from code review
kgryte Apr 4, 2024
2288c76
Apply suggestions from code review
kgryte Apr 4, 2024
f5eb15d
Apply suggestions from code review
kgryte Apr 4, 2024
a0a151b
Apply suggestions from code review
kgryte Apr 4, 2024
9e6217a
Apply suggestions from code review
kgryte Apr 4, 2024
18c412f
Apply suggestions from code review
kgryte Apr 4, 2024
8d734dd
chore: apply review changes
aman-095 Apr 5, 2024
483f5dc
feat: add C / Fortran implementation
aman-095 Apr 9, 2024
128bd2c
chore: apply review changes
aman-095 Apr 11, 2024
47209d7
chore: apply review changes
aman-095 Apr 22, 2024
8ff1c99
chore: apply review changes
aman-095 Apr 22, 2024
7b35d7f
chore: apply review changes
aman-095 Apr 22, 2024
f99c12e
chore: apply review changes
aman-095 Apr 22, 2024
27709d1
chore: apply review changes
aman-095 May 20, 2024
6223d2a
Merge branch 'develop' of https://github.com/stdlib-js/stdlib into pr…
kgryte Jun 8, 2024
40b6db9
bench: fix benchmarks
kgryte Jun 8, 2024
b1acc24
bench: refactor array creation
kgryte Jun 8, 2024
a517b6e
docs: update require paths
kgryte Jun 8, 2024
8a57432
fix: update paths and fix text wrapping
kgryte Jun 8, 2024
c553c34
docs: update comment
kgryte Jun 8, 2024
0b49f7f
docs: fix require path
kgryte Jun 8, 2024
dc90750
fix: update function signatures to indicate that argument is mutated
kgryte Jun 8, 2024
8419e12
docs: update require paths
kgryte Jun 8, 2024
26d9489
refactor: lowercase variable name
kgryte Jun 8, 2024
2201653
refactor: remove duplicate loops
kgryte Jun 8, 2024
e188d27
docs: add missing note
kgryte Jun 8, 2024
68cbef3
fix: update signatures
kgryte Jun 8, 2024
08cb3cc
build: fix dependencies
kgryte Jun 8, 2024
7980f53
chore: remove keyword
kgryte Jun 8, 2024
b125ed1
docs: update require paths
kgryte Jun 8, 2024
c2a2fdb
test: update require paths and remove duplicate tests
kgryte Jun 8, 2024
24fe831
docs: add C interface documentation
kgryte Jun 8, 2024
bba0e36
refactor: add support for 64-bit integers
kgryte Jun 8, 2024
d307934
bench: fix overflow
kgryte Jun 8, 2024
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
Apply suggestions from code review
Signed-off-by: Athan <[email protected]>
  • Loading branch information
kgryte authored and aman-095 committed Apr 22, 2024
commit ff512355ad15d665b4735ed61b96e95e8d5e18f7
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/blas/base/cscal/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ import cscal = require( './index' );
cscal( ( cx: number ): number => cx, ca, cx, 1 ); // $ExpectError
}

// The compiler throws an error if the function is provided a second argument which is not a Complex64Array...
// The compiler throws an error if the function is provided a second argument which is not a complex number...
{
const cx = new Complex64Array( 10 );

Expand Down Expand Up @@ -127,7 +127,7 @@ import cscal = require( './index' );
cscal.ndarray( ( cx: number ): number => cx, ca, cx, 1, 0 ); // $ExpectError
}

// The compiler throws an error if the `ndarray` method is provided a second argument which is not a Complex64Array...
// The compiler throws an error if the `ndarray` method is provided a second argument which is not a complex number...
{
const cx = new Complex64Array( 10 );

Expand Down