Skip to content

Commit

Permalink
StaticLLMPipeline: Optimize V-tensors layout by Anatolii Talamanov (#…
Browse files Browse the repository at this point in the history
…1232)

Retargeted #1177
to master, added `port to LTS` label.

Ticket:
 - *EISW-146537*
  • Loading branch information
AsyaPronina authored Nov 19, 2024
1 parent bef96dd commit 9d6bca9
Show file tree
Hide file tree
Showing 4 changed files with 303 additions and 33 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,11 @@ endif()

# Find OpenVINODeveloperPackage first to compile with SDL flags
find_package(OpenVINODeveloperPackage ${OpenVINOGenAI_VERSION} QUIET
COMPONENTS Runtime
COMPONENTS Runtime Threading
PATHS "${OpenVINO_DIR}")
if(NOT OpenVINODeveloperPackage_FOUND)
find_package(OpenVINO ${OpenVINOGenAI_VERSION} REQUIRED
COMPONENTS Runtime
COMPONENTS Runtime Threading
PATHS "${OpenVINO_DIR_PY}")
endif()

Expand Down
2 changes: 1 addition & 1 deletion src/cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ target_include_directories(${TARGET_NAME}

target_include_directories(${TARGET_NAME} SYSTEM PRIVATE "${safetensors.h_SOURCE_DIR}")

target_link_libraries(${TARGET_NAME} PUBLIC openvino::runtime PRIVATE nlohmann_json::nlohmann_json jinja2cpp)
target_link_libraries(${TARGET_NAME} PUBLIC openvino::runtime PRIVATE openvino::threading nlohmann_json::nlohmann_json jinja2cpp)

target_compile_features(${TARGET_NAME} PUBLIC cxx_std_17)

Expand Down
Loading

0 comments on commit 9d6bca9

Please sign in to comment.