-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added nGraph as a public dependency * Fixed Windows warning * Fixed CMake * Fixed constant op * Fixed typo * Added reshape to PartialShape to CNNNetwork * Added SetShape to InferRequest * Enable support of DynamicShape in IE Data * Add support of dynamic shapes to template plugin * Fixed build * Enable support dynamic rank * Fixed test for dynamic rank * Fixed some tests * Fix preprocess tests * Fixed SetBlob * Fixed code style * Add more tests * Fixed accuracy tests * Fixed documentation * Added tests for custom operation * Added new tests * WIP: move setShape from infer request to Blob * Returned isApplicable check back * Removed obsolete tests for InferRequest::SetShape and add new test for Blob::setShape (a trivial one) * Fixed artifacts * Break code style * Revert "Break code style" This reverts commit 71ee638. * Added -j8 for fix_all * Applied code style fixes * Adde doxygen items * Fixed style * Applied codestyle patch * Reverted unrelevant commit with template extension * Fixed cmake file for shared func tests (pick from master) * Revert all changes in template_extension * Deleted some old stuff that commented and won't be used * Fixed wrong exception throwing * Code style fix * Fixed preprocessing part * Fixed incorrect blob reshape in GetBlob * Deleted incorrect assert in GAPI that prevents passing some tests in Debug * Fixed issues identified during review * Removed SetShape, replace getLayoutByDims by getLayoutByRank and removed problematic modification from IE preprocessing * Fixed comments * Removed obsolete setShape * [VPU] Fixed allocating dynamic blobs in myriad_infer_request * Fixed comments * Fixed CNNNgraphImpl and comments Co-authored-by: Ilya Churaev <ilya.churaev@intel.com> Co-authored-by: Polina <polina.brzezinskaya@intel.com>
- Loading branch information
1 parent
26eea3d
commit bfae017
Showing
22 changed files
with
1,625 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 30 additions & 0 deletions
30
...emplate_plugin/tests/functional/shared_tests_instances/behavior/infer_request_dynamic.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
// Copyright (C) 2018-2021 Intel Corporation | ||
// SPDX-License-Identifier: Apache-2.0 | ||
// | ||
|
||
#include <vector> | ||
|
||
#include "behavior/infer_request_dynamic.hpp" | ||
|
||
using namespace BehaviorTestsDefinitions; | ||
|
||
namespace { | ||
|
||
const std::vector<InferenceEngine::Precision> netPrecisions = { | ||
InferenceEngine::Precision::FP32, | ||
InferenceEngine::Precision::FP16 | ||
}; | ||
|
||
const std::vector<std::map<std::string, std::string>> configs = { | ||
{} | ||
}; | ||
|
||
INSTANTIATE_TEST_CASE_P(smoke_BehaviorTests, InferRequestDynamicTests, | ||
::testing::Combine( | ||
::testing::ValuesIn(netPrecisions), | ||
::testing::Values(CommonTestUtils::DEVICE_TEMPLATE), | ||
::testing::ValuesIn(configs)), | ||
InferRequestDynamicTests::getTestCaseName); | ||
|
||
} // namespace | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.