Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

feat: wasm implementation for stats/strided/dmeanvar #8038

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
0PrashantYadav0 wants to merge 3 commits into stdlib-js:develop
base: develop
Choose a base branch
Loading
from 0PrashantYadav0:strided/dmeanvar
Draft
Show file tree
Hide file tree
Changes from all commits
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
22 changes: 21 additions & 1 deletion lib/node_modules/@stdlib/blas/ext/base/dsumpw/manifest.json
View file Open in desktop
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"options": {
"task": "build"
"task": "build",
"wasm": false
},
"fields": [
{
Expand All @@ -27,6 +28,7 @@
"confs": [
{
"task": "build",
"wasm": false,
"src": [
"./src/main.c"
],
Expand All @@ -47,6 +49,7 @@
},
{
"task": "benchmark",
"wasm": false,
"src": [
"./src/main.c"
],
Expand All @@ -62,6 +65,23 @@
},
{
"task": "examples",
"wasm": false,
"src": [
"./src/main.c"
],
"include": [
"./include"
],
"libraries": [],
"libpath": [],
"dependencies": [
"@stdlib/strided/base/stride2offset",
"@stdlib/blas/base/shared"
]
},
{
"task": "build",
"wasm": true,
"src": [
"./src/main.c"
],
Expand Down
View file Open in desktop
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,6 @@ var x = discreteUniform( 10, -50, 50, {
console.log( x );

var out = new Float64Array( 2 );
dmeanvar( x.length, 1, x, 1, out, 1 );
var y = dmeanvar( x.length, 1, x, 1, out, 1 );
console.log( out );
console.log(y);
View file Open in desktop
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
]
},
{
"task": "",
"task": "build",
"wasm": true,
"src": [
"./src/main.c"
Expand Down
View file Open in desktop
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
]
},
{
"task": "",
"task": "build",
"wasm": true,
"src": [
"./src/main.c"
Expand Down
Loading
Loading

AltStyle によって変換されたページ (->オリジナル) /