onnxruntime/js/web/test/data/ops/gelu.jsonc
satyajandhyala dd24d52737
[JS/Web] Added Gelu contrib operator support to JSEP (#16909)
### Description
Added Gelu operator to JSEP


### Motivation and Context
<!-- - Why is this change required? What problem does it solve?
- If it fixes an open issue, please link to the issue here. -->
2023-07-31 09:18:58 -07:00

44 lines
820 B
Text

[
{
"name": "gelu",
"operator": "Gelu",
"opsets": [{ "domain": "com.microsoft", "version": 1 }],
"attributes": [],
"cases": [
{
"name": "T[0]",
"inputs": [
{
"data": [1.0, -2.0, 0, 2.0],
"dims": [2, 2],
"type": "float32"
}
],
"outputs": [
{
"data": [1.0, 0, 0, 2.0],
"dims": [2, 2],
"type": "float32"
}
]
},
{
"name": "Scalar",
"inputs": [
{
"data": [1.0],
"dims": [],
"type": "float32"
}
],
"outputs": [
{
"data": [1.0],
"dims": [],
"type": "float32"
}
]
}
]
}
]