AutoBatchPlugin -> ov_auto_batch_plugin
This commit is contained in:
parent
c3a98fa6a1
commit
37d4704779
@ -17,8 +17,3 @@ if(ENABLE_VPU)
|
||||
add_subdirectory(vpu)
|
||||
endif()
|
||||
|
||||
|
||||
if(ENABLE_BATCH)
|
||||
add_subdirectory(auto_batch)
|
||||
endif()
|
||||
|
||||
|
@ -49,7 +49,7 @@ if(ENABLE_AUTO OR ENABLE_MULTI)
|
||||
endif()
|
||||
|
||||
if(ENABLE_BATCH)
|
||||
list(APPEND DEPENDENCIES AutoBatchPlugin)
|
||||
list(APPEND DEPENDENCIES ov_auto_batch_plugin)
|
||||
endif()
|
||||
|
||||
if (NOT NGRAPH_ONNX_FRONTEND_ENABLE)
|
||||
|
@ -17,7 +17,7 @@ if(ENABLE_AUTO OR ENABLE_MULTI)
|
||||
endif()
|
||||
|
||||
if(ENABLE_BATCH)
|
||||
list(APPEND DEPENDENCIES AutoBatchPlugin)
|
||||
list(APPEND DEPENDENCIES ov_auto_batch_plugin)
|
||||
endif()
|
||||
|
||||
|
||||
|
@ -15,7 +15,7 @@ if(ENABLE_AUTO OR ENABLE_MULTI)
|
||||
endif()
|
||||
|
||||
if(ENABLE_BATCH)
|
||||
add_dependencies(${TARGET_NAME} AutoBatchPlugin)
|
||||
add_dependencies(${TARGET_NAME} ov_auto_batch_plugin)
|
||||
endif()
|
||||
|
||||
|
||||
|
@ -26,7 +26,7 @@ if(ENABLE_AUTO OR ENABLE_MULTI)
|
||||
endif()
|
||||
|
||||
if(ENABLE_BATCH)
|
||||
add_dependencies(${TARGET_NAME} AutoBatchPlugin)
|
||||
add_dependencies(${TARGET_NAME} ov_auto_batch_plugin)
|
||||
endif()
|
||||
|
||||
set_ie_threading_interface_for(${TARGET_NAME})
|
||||
|
@ -27,7 +27,7 @@ if(ENABLE_AUTO OR ENABLE_MULTI)
|
||||
endif()
|
||||
|
||||
if(ENABLE_BATCH)
|
||||
add_dependencies(${TARGET_NAME} AutoBatchPlugin)
|
||||
add_dependencies(${TARGET_NAME} ov_auto_batch_plugin)
|
||||
endif()
|
||||
|
||||
if(ENABLE_MKL_DNN)
|
||||
|
@ -17,3 +17,7 @@ endif()
|
||||
if(ENABLE_AUTO OR ENABLE_MULTI)
|
||||
add_subdirectory(auto)
|
||||
endif()
|
||||
|
||||
if(ENABLE_BATCH)
|
||||
add_subdirectory(auto_batch)
|
||||
endif()
|
||||
|
@ -2,7 +2,7 @@
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
#
|
||||
|
||||
set(TARGET_NAME "AutoBatchPlugin")
|
||||
set(TARGET_NAME "ov_auto_batch_plugin")
|
||||
|
||||
file(GLOB SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/*.cpp)
|
||||
|
Loading…
Reference in New Issue
Block a user