-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TestsMVN has data type erro, and it can't build success under VS2015 #67
Comments
You should try Visual Studio 2017 since the instructions in dldt\inference-engine\README.md are specifically written for Visual Studio 2017 and only Visual Studio 2017 has been validated. |
Yes, after remove some code pieces that it can't compile. And it runs.. |
Close the issue, as no active question here and everything's worked |
eshoguli
pushed a commit
to eshoguli/openvino
that referenced
this issue
Jun 1, 2021
eaidova
pushed a commit
to eaidova/openvino
that referenced
this issue
Dec 26, 2022
…_maxpool2d Add aten adaptive maxpool2d
akashchi
pushed a commit
to akashchi/openvino
that referenced
this issue
Dec 6, 2023
…postprocessor-to-preprocess-prop Move PrePostProcess and resizeAlgorithm into preprocess property
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
dldt\inference-engine\tests\unit\engines\mkldnn\graph\layers\extensions\mvn_tests.cpp
TEST_P(MKLDNNCPUExtMVNTests, TestsMVN) {}
INSTANTIATE_TEST_CASE_P(
TestsMVN, MKLDNNCPUExtMVNTests,
::testing::Values(
mvn_test_params{{2, 64, 15, 15}, 0, 0, 0.00001, 2, false, MKLDNNPlugin::impl_desc_type::unknown },
mvn_test_params{{2, 2, 33, 65}, 0, 0, 0.00001, 2, false, MKLDNNPlugin::impl_desc_type::unknown },
mvn_test_params{{2, 64, 15, 15}, 0, 1, 0.00001, 2, false, MKLDNNPlugin::impl_desc_type::unknown },
mvn_test_params{{2, 2, 33, 65}, 0, 1, 0.00001, 2, false, MKLDNNPlugin::impl_desc_type::unknown },
mvn_test_params{{2, 64, 15, 15}, 1, 0, 0.00001, 2, false, MKLDNNPlugin::impl_desc_type::unknown },
mvn_test_params{{2, 2, 33, 65}, 1, 0, 0.00001, 2, false, MKLDNNPlugin::impl_desc_type::unknown },
mvn_test_params{{2, 64, 15, 15}, 1, 1, 0.00001, 2, false, MKLDNNPlugin::impl_desc_type::unknown },
mvn_test_params{{2, 2, 33, 65}, 1, 1, 0.00001, 2, false, MKLDNNPlugin::impl_desc_type::unknown },
mvn_test_params{{2, 64, 15, 15}, 0, 0, 0.00001, 2, true, MKLDNNPlugin::impl_desc_type::unknown },
mvn_test_params{{2, 2, 33, 65}, 0, 0, 0.00001, 2, true, MKLDNNPlugin::impl_desc_type::unknown },
mvn_test_params{{2, 64, 15, 15}, 0, 1, 0.00001, 2, true, MKLDNNPlugin::impl_desc_type::unknown },
mvn_test_params{{2, 2, 33, 65}, 0, 1, 0.00001, 2, true, MKLDNNPlugin::impl_desc_type::unknown },
mvn_test_params{{2, 64, 15, 15}, 1, 0, 0.00001, 2, true, MKLDNNPlugin::impl_desc_type::unknown },
mvn_test_params{{2, 2, 33, 65}, 1, 0, 0.00001, 2, true, MKLDNNPlugin::impl_desc_type::unknown },
mvn_test_params{{2, 64, 15, 15}, 1, 1, 0.00001, 2, true, MKLDNNPlugin::impl_desc_type::unknown },
mvn_test_params{{2, 2, 33, 65}, 1, 1, 0.00001, 2, true, MKLDNNPlugin::impl_desc_type::unknown },));
This piece of code will have build error on float type conversion error, any idea?
The text was updated successfully, but these errors were encountered: