Skip to content

Commit

Permalink
WA for DLBench (openvinotoolkit#5737)
Browse files Browse the repository at this point in the history
  • Loading branch information
ilya-lavrenov authored and rnugmanx committed Aug 26, 2021
1 parent 43e0203 commit a5e7066
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions cmake/developer_package/version.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,11 @@ macro(ie_parse_ci_build_number)
set(IE_VERSION "${IE_VERSION_MAJOR}.${IE_VERSION_MINOR}.${IE_VERSION_PATCH}")
endmacro()

# WA for DL Benchmark
if(DEFINED ENV{CI_BUILD_NUMBER} AND "$ENV{CI_BUILD_NUMBER}" STREQUAL "1")
unset(ENV{CI_BUILD_NUMBER})
endif()

if (DEFINED ENV{CI_BUILD_NUMBER})
set(CI_BUILD_NUMBER $ENV{CI_BUILD_NUMBER})
else()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
//

#include "ie_api_impl.hpp"
#include "ie_plugin_config.hpp"

#include "hetero/hetero_plugin_config.hpp"
#include "ie_iinfer_request.hpp"
#include "ie_plugin_config.hpp"

const std::string EXPORTED_NETWORK_NAME = "undefined";
std::map<std::string, InferenceEngine::Precision> precision_map = {
Expand Down

0 comments on commit a5e7066

Please sign in to comment.