From 47dedfde5780480ea036fe5eadae3233a68c3c96 Mon Sep 17 00:00:00 2001 From: Steve Yoo Date: Mon, 19 Apr 2021 09:06:56 +0900 Subject: [PATCH 1/2] Add test cases for PReLU in cpu plugin * For case when slope is vector --- .../shared_tests_instances/single_layer_tests/activation.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/inference-engine/tests/functional/plugin/cpu/shared_tests_instances/single_layer_tests/activation.cpp b/inference-engine/tests/functional/plugin/cpu/shared_tests_instances/single_layer_tests/activation.cpp index 5decd0d9c8824e..dfcee6bd5fa252 100644 --- a/inference-engine/tests/functional/plugin/cpu/shared_tests_instances/single_layer_tests/activation.cpp +++ b/inference-engine/tests/functional/plugin/cpu/shared_tests_instances/single_layer_tests/activation.cpp @@ -71,6 +71,10 @@ std::map, std::vector>> basic = { std::map, std::vector>> preluBasic = { {{1, 50}, {{1}, {50}}}, {{1, 128}, {{1}, {128}}}, + {{20, 128}, {{20}, {128}, {20, 128}}}, + {{1, 20, 128}, {{1}, {20}, {128}, {20, 128}}}, + {{1, 20, 128, 128}, {{1}, {20}, {128}, {128, 128}, {20, 128, 128}}}, + {{1, 20, 20, 128, 128}, {{1}, {20}, {128}, {128, 128}, {20, 128, 128}, {20, 20, 128, 128}}}, }; const auto basicCases = ::testing::Combine( From 6903069e87b14d61dcc9511a3fc3cd6d4c04d529 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Jun 2022 13:19:18 +0000 Subject: [PATCH 2/2] Bump onnx from 1.10.1 to 1.12.0 in /runtime/bindings/python Bumps [onnx](https://github.com/onnx/onnx) from 1.10.1 to 1.12.0. - [Release notes](https://github.com/onnx/onnx/releases) - [Changelog](https://github.com/onnx/onnx/blob/main/docs/Changelog.md) - [Commits](https://github.com/onnx/onnx/compare/v1.10.1...v1.12.0) --- updated-dependencies: - dependency-name: onnx dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- runtime/bindings/python/requirements_test.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/bindings/python/requirements_test.txt b/runtime/bindings/python/requirements_test.txt index 595f3e4f75db85..658814ed53b03f 100644 --- a/runtime/bindings/python/requirements_test.txt +++ b/runtime/bindings/python/requirements_test.txt @@ -4,7 +4,7 @@ flake8-comprehensions==3.3.0 flake8-docstrings==1.6.0 flake8-quotes==3.2.0 mypy==0.812 -onnx==1.10.1 +onnx==1.12.0 pydocstyle==5.1.1 pytest-xdist==2.2.1 pytest==6.1.2