-
-
Notifications
You must be signed in to change notification settings - Fork 559
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: update
blas/ext/ssort2ins
to follow current project conve…
…ntions PR-URL: #1874 Closes: #1535 Ref: #1152 --------- Co-authored-by: Philipp Burckhardt <[email protected]> Reviewed-by: Athan Reines <[email protected]> Reviewed-by: Philipp Burckhardt <[email protected]>
- Loading branch information
1 parent
6bcf620
commit f1b1fce
Showing
11 changed files
with
167 additions
and
268 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,3 +41,4 @@ int main( void ) { | |
printf( "y[ %i ] = %"PRId64"\n", i, (int64_t)y[ i ] ); | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
121 changes: 80 additions & 41 deletions
121
lib/node_modules/@stdlib/blas/ext/base/ssort2ins/manifest.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,82 @@ | ||
{ | ||
"options": {}, | ||
"fields": [ | ||
{ | ||
"field": "src", | ||
"resolve": true, | ||
"relative": true | ||
}, | ||
{ | ||
"field": "include", | ||
"resolve": true, | ||
"relative": true | ||
}, | ||
{ | ||
"field": "libraries", | ||
"resolve": false, | ||
"relative": false | ||
}, | ||
{ | ||
"field": "libpath", | ||
"resolve": true, | ||
"relative": false | ||
} | ||
], | ||
"confs": [ | ||
{ | ||
"src": [ | ||
"./src/ssort2ins.c" | ||
], | ||
"include": [ | ||
"./include" | ||
], | ||
"libraries": [ | ||
"-lm" | ||
], | ||
"libpath": [], | ||
"dependencies": [ | ||
"@stdlib/math/base/assert/is-nanf", | ||
"@stdlib/math/base/assert/is-negative-zerof" | ||
] | ||
} | ||
] | ||
"options": { | ||
"task": "build" | ||
}, | ||
"fields": [ | ||
{ | ||
"field": "src", | ||
"resolve": true, | ||
"relative": true | ||
}, | ||
{ | ||
"field": "include", | ||
"resolve": true, | ||
"relative": true | ||
}, | ||
{ | ||
"field": "libraries", | ||
"resolve": false, | ||
"relative": false | ||
}, | ||
{ | ||
"field": "libpath", | ||
"resolve": true, | ||
"relative": false | ||
} | ||
], | ||
"confs": [ | ||
{ | ||
"task": "build", | ||
"src": [ | ||
"./src/ssort2ins.c" | ||
], | ||
"include": [ | ||
"./include" | ||
], | ||
"libraries": [ | ||
"-lm" | ||
], | ||
"libpath": [], | ||
"dependencies": [ | ||
"@stdlib/napi/export", | ||
"@stdlib/napi/argv", | ||
"@stdlib/napi/argv-int64", | ||
"@stdlib/napi/argv-double", | ||
"@stdlib/napi/argv-strided-float32array", | ||
"@stdlib/math/base/assert/is-nanf", | ||
"@stdlib/math/base/assert/is-negative-zerof" | ||
] | ||
}, | ||
{ | ||
"task": "benchmark", | ||
"src": [ | ||
"./src/ssort2ins.c" | ||
], | ||
"include": [ | ||
"./include" | ||
], | ||
"libraries": [ | ||
"-lm" | ||
], | ||
"libpath": [], | ||
"dependencies": [] | ||
}, | ||
{ | ||
"task": "examples", | ||
"src": [ | ||
"./src/ssort2ins.c" | ||
], | ||
"include": [ | ||
"./include" | ||
], | ||
"libraries": [ | ||
"-lm" | ||
], | ||
"libpath": [], | ||
"dependencies": [ | ||
"@stdlib/math/base/assert/is-nanf", | ||
"@stdlib/math/base/assert/is-negative-zerof" | ||
] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -72,5 +72,7 @@ | |
"single", | ||
"float32array" | ||
], | ||
"__stdlib__": {} | ||
"__stdlib__": { | ||
"wasm": false | ||
} | ||
} |
Oops, something went wrong.
f1b1fce
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Coverage Report
The above coverage report was generated for the changes in this push.