Skip to content

Commit

Permalink
build: add WebAssembly configuration for math/base/special/absf
Browse files Browse the repository at this point in the history
PR-URL: #3023
Reviewed-by: Athan Reines <[email protected]>
  • Loading branch information
aman-095 authored Oct 21, 2024
1 parent a2823da commit d1d770a
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion lib/node_modules/@stdlib/math/base/special/absf/manifest.json
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 @@ -43,6 +45,7 @@
},
{
"task": "benchmark",
"wasm": false,
"src": [
"./src/main.c"
],
Expand All @@ -58,6 +61,23 @@
},
{
"task": "examples",
"wasm": false,
"src": [
"./src/main.c"
],
"include": [
"./include"
],
"libraries": [],
"libpath": [],
"dependencies": [
"@stdlib/constants/float32/abs-mask",
"@stdlib/number/float32/base/to-word"
]
},
{
"task": "build",
"wasm": true,
"src": [
"./src/main.c"
],
Expand Down

1 comment on commit d1d770a

@stdlib-bot
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage Report

Package Statements Branches Functions Lines
math/base/special/absf $\color{green}241/241$
$\color{green}+100.00\%$
$\color{green}7/7$
$\color{green}+100.00\%$
$\color{green}3/3$
$\color{green}+100.00\%$
$\color{green}241/241$
$\color{green}+100.00\%$

The above coverage report was generated for the changes in this push.

Please sign in to comment.