Skip to content

Commit 2c691c3

Browse files
committed
Update tokenizers, centos7_2024.2.0.dev
1 parent 9866f5c commit 2c691c3

File tree

6 files changed

+12
-8
lines changed

6 files changed

+12
-8
lines changed

.github/workflows/genai_package.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
with:
1515
python-version: 3.8
1616
- run: mkdir ./ov/
17-
- run: curl https://storage.openvinotoolkit.org/repositories/openvino/packages/2024.1/linux/l_openvino_toolkit_ubuntu20_2024.1.0.15008.f4afc983258_x86_64.tgz | tar --directory ./ov/ --strip-components 1 -xz
17+
- run: curl curl https://storage.openvinotoolkit.org/repositories/openvino/packages/nightly/2024.2.0-15454-0d95325972f/l_openvino_toolkit_centos7_2024.2.0.dev20240522_x86_64.tgz | tar --directory ./ov/ --strip-components 1 -xz
1818
- run: sudo ./ov/install_dependencies/install_openvino_dependencies.sh
1919
- run: sudo apt-get install libtbb-dev
2020
- run: source ./ov/setupvars.sh && cmake -DCMAKE_BUILD_TYPE=${{ matrix.build-type }} -S ./ -B ./build/

.github/workflows/lcm_dreamshaper_cpp.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ jobs:
4040
run: |
4141
conda activate openvino_lcm_cpp
4242
conda update -c conda-forge --all
43-
conda install -c conda-forge openvino=2024.1.0 c-compiler cxx-compiler git make cmake
43+
conda install -c conda-forge c-compiler cxx-compiler git make cmake # TODO: openvino=2024.1.0
44+
pip install --pre openvino --extra-index-url https://storage.openvinotoolkit.org/simple/wheels/nightly
4445
conda env config vars set LD_LIBRARY_PATH=$CONDA_PREFIX/lib:$LD_LIBRARY_PATH
4546
4647
- name: Install python dependencies
@@ -85,7 +86,8 @@ jobs:
8586
run: |
8687
conda activate openvino_lcm_cpp
8788
conda update -c conda-forge --all
88-
conda install -c conda-forge openvino=2024.1.0 c-compiler cxx-compiler git make cmake
89+
conda install -c conda-forge c-compiler cxx-compiler git make cmake # TODO: openvino=2024.1.0
90+
pip install --pre openvino --extra-index-url https://storage.openvinotoolkit.org/simple/wheels/nightly
8991
conda env config vars set LD_LIBRARY_PATH=$CONDA_PREFIX/lib:$LD_LIBRARY_PATH
9092
9193
- name: Install python dependencies

.github/workflows/stable_diffusion_1_5_cpp.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ jobs:
3939
- name: Install OpenVINO and other conda dependencies
4040
run: |
4141
conda activate openvino_sd_cpp
42-
conda install -c conda-forge openvino=2024.1.0 c-compiler cxx-compiler git make cmake
42+
conda install -c conda-forge c-compiler cxx-compiler git make cmake # TODO: openvino=2024.1.0
43+
pip install --pre openvino --extra-index-url https://storage.openvinotoolkit.org/simple/wheels/nightly
4344
conda env config vars set LD_LIBRARY_PATH=$CONDA_PREFIX/lib:$LD_LIBRARY_PATH
4445
4546
- name: Install python dependencies
@@ -83,7 +84,8 @@ jobs:
8384
- name: Install OpenVINO and other conda dependencies
8485
run: |
8586
conda activate openvino_sd_cpp
86-
conda install -c conda-forge openvino=2024.1.0 c-compiler cxx-compiler git make cmake
87+
conda install -c conda-forge c-compiler cxx-compiler git make cmake # TODO: openvino=2024.1.0
88+
pip install --pre openvino --extra-index-url https://storage.openvinotoolkit.org/simple/wheels/nightly
8789
8890
- name: Install python dependencies
8991
working-directory: ${{ env.working_directory }}

image_generation/lcm_dreamshaper_v7/cpp/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Prepare a python environment and install dependencies:
1818
conda create -n openvino_lcm_cpp python==3.10
1919
conda activate openvino_lcm_cpp
2020
conda update -c conda-forge --all
21-
conda install -c conda-forge openvino=2024.1.0 c-compiler cxx-compiler git make cmake
21+
conda install -c conda-forge openvino=2024.2.0 c-compiler cxx-compiler git make cmake
2222
# Ensure that Conda standard libraries are used
2323
conda env config vars set LD_LIBRARY_PATH=$CONDA_PREFIX/lib:$LD_LIBRARY_PATH
2424
```

image_generation/stable_diffusion_1_5/cpp/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Prepare a python environment and install dependencies:
1818
```shell
1919
conda create -n openvino_sd_cpp python==3.10
2020
conda activate openvino_sd_cpp
21-
conda install -c conda-forge openvino=2024.1.0 c-compiler cxx-compiler git make cmake
21+
conda install -c conda-forge openvino=2024.2.0 c-compiler cxx-compiler git make cmake
2222
# Ensure that Conda standard libraries are used
2323
conda env config vars set LD_LIBRARY_PATH=$CONDA_PREFIX/lib:$LD_LIBRARY_PATH
2424
```

0 commit comments

Comments
 (0)