File tree 2 files changed +3
-7
lines changed
modules/nvidia_plugin/src
2 files changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -14,13 +14,13 @@ jobs:
14
14
- name : checkout master branch
15
15
uses : actions/checkout@v3
16
16
with :
17
- ref : master
17
+ ref : releases/2023/3
18
18
fetch-depth : 0
19
19
- name : delete temporary branch
20
20
run : git branch -D temporary-ci-branch | echo 1
21
21
- name : fetch
22
22
run : git fetch origin $GITHUB_REF:temporary-ci-branch
23
23
- name : rebased
24
- run : git merge-base --is-ancestor origin/master temporary-ci-branch
24
+ run : git merge-base --is-ancestor origin/releases/2023/3 temporary-ci-branch
25
25
- name : autosquashed
26
- run : " ! git rev-list --pretty=oneline -E --grep '^(fixup|squash|amend)!' origin/master ..temporary-ci-branch | fgrep !"
26
+ run : " ! git rev-list --pretty=oneline -E --grep '^(fixup|squash|amend)!' origin/releases/2023/3 ..temporary-ci-branch | fgrep !"
Original file line number Diff line number Diff line change @@ -26,10 +26,6 @@ set_source_files_properties(*.cu *.cuh PROPERTIES LANGUAGE CUDA)
26
26
add_library (${OBJ_NAME} STATIC ${SOURCES} )
27
27
target_compile_definitions (${OBJ_NAME} PRIVATE IMPLEMENT_INFERENCE_ENGINE_PLUGIN IMPLEMENT_OPENVINO_EXTENSION_API)
28
28
29
- if (ENABLE_PROXY)
30
- set (PLUGIN_DEFAULT_CONFIG "PROXY_CONFIGURATION_ALIAS:GPU;PROXY_CONFIGURATION_PRIORITY:1;PROXY_CONFIGURATION_FALLBACK:GPU" )
31
- endif ()
32
-
33
29
# Adds a shared library with plugin
34
30
ov_add_plugin(NAME ${TARGET_NAME}
35
31
DEVICE_NAME "NVIDIA"
You can’t perform that action at this time.
0 commit comments