mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-17 21:10:43 +00:00
* add web * add script and test * fix lint * add test/data/ops * add test/data/node/ to gitignore * modify scripts * add onnxjs * fix tests * fix test-runner * fix sourcemap * fix onnxjs profiling * update test list * update README * resolve comments * set wasm as default backend * rename package * update copyright header * do not use class "Buffer" in browser context * revise readme
31 lines
614 B
Text
31 lines
614 B
Text
[
|
|
{
|
|
"name": "Mul with no attributes",
|
|
"operator": "Mul",
|
|
"attributes": [],
|
|
"cases": [
|
|
{
|
|
"name": "T[2,4] T[2,4] (int32)",
|
|
"inputs": [
|
|
{
|
|
"data": [1, 2, 1, 3, 2, 3, 1, 2],
|
|
"dims": [2, 4],
|
|
"type": "int32"
|
|
},
|
|
{
|
|
"data": [2, 1, 1, 2, 2, 3, 1, 4],
|
|
"dims": [2, 4],
|
|
"type": "int32"
|
|
}
|
|
],
|
|
"outputs": [
|
|
{
|
|
"data": [2, 2, 1, 6, 4, 9, 1, 8],
|
|
"dims": [2, 4],
|
|
"type": "int32"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
]
|