Skip to content

Commit 594b4b9

Browse files
authored
Merge branch 'master' into deprecate_openvino_code_completion
2 parents b95f7fe + 783a79a commit 594b4b9

File tree

12 files changed

+256
-130
lines changed

12 files changed

+256
-130
lines changed

.github/workflows/linux.yml

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Linux (Ubuntu 20.04, Python 3.11)
1+
name: Linux (Ubuntu 22.04, Python 3.11)
22
on:
33
workflow_dispatch:
44
pull_request:
@@ -25,9 +25,9 @@ jobs:
2525
defaults:
2626
run:
2727
shell: bash
28-
runs-on: ubuntu-20.04-16-cores
28+
runs-on: ubuntu-22.04-16-cores
2929
container:
30-
image: ubuntu:20.04
30+
image: ubuntu:22.04
3131
env:
3232
DEBIAN_FRONTEND: noninteractive # to prevent apt-get from waiting user input
3333
CMAKE_BUILD_TYPE: 'Release'
@@ -214,9 +214,9 @@ jobs:
214214
defaults:
215215
run:
216216
shell: bash
217-
runs-on: ubuntu-20.04-16-cores
217+
runs-on: ubuntu-22.04-16-cores
218218
container:
219-
image: nvidia/cuda:11.8.0-cudnn8-runtime-ubuntu20.04
219+
image: nvidia/cuda:11.8.0-cudnn8-runtime-ubuntu22.04
220220
env:
221221
CMAKE_BUILD_TYPE: 'Release'
222222
CMAKE_GENERATOR: 'Ninja Multi-Config'
@@ -298,20 +298,21 @@ jobs:
298298
299299
- name: Install CUDA
300300
run: |
301-
wget https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2004/x86_64/cuda-ubuntu2004.pin
302-
mv cuda-ubuntu2004.pin /etc/apt/preferences.d/cuda-repository-pin-600
301+
wget https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2204/x86_64/cuda-ubuntu2204.pin
302+
mv cuda-ubuntu2204.pin /etc/apt/preferences.d/cuda-repository-pin-600
303303
304-
apt-key adv --fetch-keys https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2004/x86_64/3bf863cc.pub
305-
add-apt-repository "deb https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2004/x86_64/ /"
304+
apt-key adv --fetch-keys https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2204/x86_64/3bf863cc.pub
305+
add-apt-repository "deb https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2204/x86_64/ /"
306306
apt update
307307
apt install -y --allow-downgrades --allow-change-held-packages \
308+
linux-headers-5.15.0-25-generic \
308309
libcudnn8=8.9.4.*-1+cuda11.8 \
309310
libcudnn8-dev=8.9.4.*-1+cuda11.8 \
310311
libcudnn8-samples=8.9.4.*-1+cuda11.8 \
311312
cuda-runtime-11-8 \
312313
cuda-11-8 \
313-
libcutensor1=1.6.1.5-1 \
314-
libcutensor-dev=1.6.1.5-1 \
314+
libcutensor1=1.7.0.1-1 \
315+
libcutensor-dev=1.7.0.1-1 \
315316
cuda-drivers=520.61.05-1
316317
317318
#

.github/workflows/ollama_openvino_build_and_test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ on:
99
permissions: read-all
1010

1111
jobs:
12-
test_ubuntu20:
13-
runs-on: ubuntu-20.04
12+
test_ubuntu22:
13+
runs-on: ubuntu-22.04
1414
steps:
1515
- name: Download repo
1616
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6

modules/nvidia_plugin/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Afterwards plugin build procedure is as following:
4848

4949
1. Clone `openvino_contrib` repository:
5050
```bash
51-
git clone --recurse-submodules --single-branch --branch=2022.3.0 https://github.com/openvinotoolkit/openvino_contrib.git
51+
git clone --recurse-submodules --single-branch --branch=2024.1.0 https://github.com/openvinotoolkit/openvino_contrib.git
5252
```
5353
2. Go to plugin directory:
5454
```bash
@@ -60,7 +60,7 @@ mkdir build && cd build
6060
```
6161
4. Build plugin
6262

63-
First of all, switch OpenVINO™ to tag _2022.3.0_ and then build it according the instruction [How to build](https://github.com/openvinotoolkit/openvino/wiki#how-to-build)
63+
First of all, switch OpenVINO™ to tag _2024.1.0_ and then build it according the instruction [How to build](https://github.com/openvinotoolkit/openvino/wiki#how-to-build)
6464

6565
Then build CUDA Plugin with one of 2 options:
6666
- Using `build.sh`
@@ -97,7 +97,7 @@ If python available the CUDA Plugin could be compiled with setup.py script as fo
9797

9898
1. Clone `openvino_contrib` repository:
9999
```bash
100-
git clone --recurse-submodules --single-branch --branch=2022.3.0 https://github.com/openvinotoolkit/openvino_contrib.git
100+
git clone --recurse-submodules --single-branch --branch=2024.1.0 https://github.com/openvinotoolkit/openvino_contrib.git
101101
```
102102
2. Go to plugin directory:
103103
```bash

modules/nvidia_plugin/build.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ fi
3939
cd "${OPENVINO_BUILD_PATH}"
4040
cmake "${OPENVINO_HOME}" \
4141
-DENABLE_NVIDIA=ON \
42+
-DENABLE_PLUGINS_XML=ON \
4243
-DENABLE_TESTS="${ENABLE_TESTS}" \
4344
-DBUILD_arm_plugin=OFF \
4445
-DBUILD_java_api=OFF \

modules/nvidia_plugin/wheel/openvino_nvidia/__init__.py renamed to modules/nvidia_plugin/wheel/packages/openvino_nvidia/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@ def _register_nvidia_plugin():
3636

3737
_register_nvidia_plugin()
3838

39-
__version__ = "2022.3.0"
39+
__version__ = "2024.1.0"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
openvino==2022.3.0
1+
openvino==2024.1.0

0 commit comments

Comments
 (0)