mingmingtasd
mingmingtasd
> how about setting lower priority? OK, I did it. Thanks! @fujunwei
Resize_Blinear has been supported now, refer to openvino supported layers [here](https://docs.openvinotoolkit.org/latest/openvino_docs_IE_DG_supported_plugins_Supported_Devices.html#supported_layers), and nGraph use [Interpolate](https://docs.openvinotoolkit.org/latest/openvino_docs_ops_image_Interpolate_1.html) to replace it. But vpu can't support TopK now which is used to replace Argmax,...
> @mingmingtasd Did enable both SIMD and Threads flags?There's an issue #1381 Failed to run Wasm + SIMD + Threads on https://intel.github.io/webml-polyfill/examples. > For testing on WebGL backend, I couldn't...
> @mingmingtasd I have update the github-page with tf.js 2.0.1. I check this issue on my side on Linux and Windows platform, it isn't reproduced. Would you please verify it...
I have validated that this issue can be fixed after integrating nGraph ops.
Please look this link: https://wiki.ith.intel.com/pages/viewpage.action?spaceKey=CVSDK&title=Release+Notes+-+OpenVINO+v.2020.3+LTS There is a related bug fixed on openvino.2020.3 : **25087 Fixed performance degradations in the GPU plugin on MobileNet models and similar models.** @fujunwei
After referring to the codes from [android/platform](https://android.googlesource.com/platform/frameworks/ml/+/35647da7af1f99b6abb48c4eeaec042ea9edfb4d/nn/runtime/test/generated/models/fully_connected_float.model.cpp#19) , I think we should modify [`model.identifyInputsAndOutputs([op1], [op3])`](https://github.com/BruceDai/webnnt/blob/master/test/cts/test_supplement/fully_connected_float_3d_3.js#L38) to `model.identifyInputsAndOutputs([op1,op2,b0], [op3])`. And we'd better use ``` execution.setInput(1, op2_input); execution.setInput(2, b0_input); ``` not ```...
I have validated that this issue can be fixed after integrating nGraph ops.
I have validated that this issue will be fixed after integrating nGraph ops to support broadcasting.
> ONNX is a standard. You should probably file an issue against onnxruntime. Thanks, I open https://github.com/microsoft/onnxruntime/issues/20332