Kun Liang
Kun Liang
@BruceDai @ibelem Here is the result of the comparison between the WebNN on the Chrome and OpenVINO.js on Electron **Environment: Environment: Electron v11.01 Chrome: 86.0.4209.0 OpenVINO 2020.3.194 Windows 10 TGL...
@magnific0 The `netem` command is classless, Do you know how to set the latency in tc class? I can not find the corresponding documents for it now.
@huningxin Hi, Ningxin, the APIs has been implemented. But I do not test the API `core.setConfig()` with a neural network with speacial layer in `cldnn`.
> For GPU you may try the .cl files from OpenVINO (but they can be merged in the future release). Or just create own CPU extensions library and test (check...
Hi, @dkurt . I have used to the method in this link [https://docs.openvinotoolkit.org/latest/extension_build.html](url) to create a simple template extension named `libtemplate_extension.so`. And I use this file and the file `grn.cl`...
> Did you try to use SetConfig in order to load extension to the CPU plugin? CPU plugin doesn't throw an error because it ignores this parameter and doesn't parse...
@vladimir-paramuzov The code snippet looks like: ``` InferenceEngine::Core actual_; std::string extension_absolute_path = "./test/cldnn_global_custom_kernels/libcpu_extension.so"; try { actual_.SetConfig({{ie::PluginConfigParams::KEY_CONFIG_FILE, extension_absolute_path}}, "GPU"); } catch (const std::exception& error) { Napi::TypeError::New(env, error.what()).ThrowAsJavaScriptException(); return; } catch (...)...
> @lionkunonly OK, I see. As I understand, this happens because ie.SetConfig() call doesn't trigger plugin creation, it just saves the config for not loaded plugins and passes it to...
@vladimir-paramuzov Hi. Is there any existing native CPU extension or GPU extension to test the API `SetConfig` and `AddExtension`? If there is, could you please introduce them to me? Thanks
@ilya-lavrenov I give the comment for the error of building OpenVINO on Linux. https://github.com/openvinotoolkit/openvino/issues/844. Cloud you give me some suggestions about it?