Skip to content

Commit b826ade

Browse files
authoredFeb 1, 2024
Disabled proxy for NVIDIA (#862)
1 parent bad9ac5 commit b826ade

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed
 

‎.github/workflows/history_cuda.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ jobs:
1414
- name: checkout master branch
1515
uses: actions/checkout@v3
1616
with:
17-
ref: master
17+
ref: releases/2023/3
1818
fetch-depth: 0
1919
- name: delete temporary branch
2020
run: git branch -D temporary-ci-branch | echo 1
2121
- name: fetch
2222
run: git fetch origin $GITHUB_REF:temporary-ci-branch
2323
- 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
2525
- 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 !"

‎modules/nvidia_plugin/src/CMakeLists.txt

-4
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,6 @@ set_source_files_properties(*.cu *.cuh PROPERTIES LANGUAGE CUDA)
2626
add_library(${OBJ_NAME} STATIC ${SOURCES})
2727
target_compile_definitions(${OBJ_NAME} PRIVATE IMPLEMENT_INFERENCE_ENGINE_PLUGIN IMPLEMENT_OPENVINO_EXTENSION_API)
2828

29-
if(ENABLE_PROXY)
30-
set(PLUGIN_DEFAULT_CONFIG "PROXY_CONFIGURATION_ALIAS:GPU;PROXY_CONFIGURATION_PRIORITY:1;PROXY_CONFIGURATION_FALLBACK:GPU")
31-
endif()
32-
3329
# Adds a shared library with plugin
3430
ov_add_plugin(NAME ${TARGET_NAME}
3531
DEVICE_NAME "NVIDIA"

0 commit comments

Comments
 (0)