Skip to content

Commit 81ec069

Browse files
authored
Fix library loading by updating dependencies (#10)
* enable * libtbb-dev * move * slash * install * core_genai_dev * remove export * rreorganaise components * add SOVERSION, and requirements-build.txt * repalce SKBUILD with EXCLUDE_FROM_ALL because the effect is the same * fix NAMELINK_COMPONENT * remove extraline * add soft restrictions * Fix build to unblock packaging * improve naming * install samples * remove quotes * use main target name because an alias can't be specified in cmake --target * define CMAKE_BUILD_PARALLEL_LEVEL * Ensure ./requirements-build.txt won't outdate * Use ./requirements-build.txt in python lib build * Add missing && * Test Debug * add matrix for windows_genai_package * openvino_tokenizers from form * update openvino_tokenizers * update openvino_tokenizers * update openvino_tokenizers * revert openvino_tokenizers * tokenizers from fork * update tokenizers * centos7_2024.2.0.dev * copy target * revert tokenizers * reapply useful changes * copy so only * Update tokenizers, centos7_2024.2.0.dev * single thread * ubuntu22 * nightyl * --pre --extra-index-url * update tokenizers * space * move --pre --extra-index-url https://storage.openvinotoolkit.org/simple/wheels/nightly * release tokenizers * merge * downgrade tokenizers * downgrade * two steps * downgrade tokenizers * dont setupvars * source * fix * submodule * releases/2024/2 tokenizers * fix-2 * rebase * use make * comment * CMAKE_GENERATOR=Unix Makefiles * update openvino * space * optimum-cli from fork * different commit * from branch * remove exrtra-index for SD * reorder pip install * revert unwanted changes * Ubuntu-22 * openvino_tokenizers~=2024.2.0.0 * remove -pre . --extra-index-url https://storage.openvinotoolkit.org/simple/wheels/nightly * upgrade to prerelease * revert requirements.txt * remove --pre, setupvars * get openvino_tokenizers._ext_path * take release pybind, fix soversion, and tokenizers folder * spelling * dont copy libs * put ov_tokenizers_path back * GENAI_BUILD_DIR=../../build
1 parent 9e37273 commit 81ec069

File tree

12 files changed

+71
-83
lines changed

12 files changed

+71
-83
lines changed

.github/workflows/causal_lm_cpp.yml

+24-24
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ jobs:
2323
- name: Install OpenVINO
2424
run: |
2525
mkdir ./ov/
26-
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
26+
curl https://storage.openvinotoolkit.org/repositories/openvino/packages/pre-release/2024.2.0rc1/linux/l_openvino_toolkit_ubuntu20_2024.2.0.dev20240524_x86_64.tgz | tar --directory ./ov/ --strip-components 1 -xz
2727
sudo ./ov/install_dependencies/install_openvino_dependencies.sh
2828
- name: Download, convert and build
2929
run: |
3030
source ./ov/setupvars.sh
3131
python -m pip install --upgrade-strategy eager -r text_generation/causal_lm/cpp/requirements.txt
32-
python -m pip install ./thirdparty/openvino_tokenizers/[transformers]
32+
python -m pip install ./thirdparty/openvino_tokenizers/[transformers] --extra-index-url https://storage.openvinotoolkit.org/simple/wheels/pre-release
3333
sudo apt-get install libtbb-dev
3434
optimum-cli export openvino --trust-remote-code --weight-format fp16 --model openlm-research/open_llama_3b_v2 open_llama_3b_v2
3535
cmake -DCMAKE_BUILD_TYPE=Release -S ./ -B ./build/
@@ -51,13 +51,13 @@ jobs:
5151
- name: Install OpenVINO
5252
run: |
5353
mkdir ./ov/
54-
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
54+
curl https://storage.openvinotoolkit.org/repositories/openvino/packages/pre-release/2024.2.0rc1/linux/l_openvino_toolkit_ubuntu20_2024.2.0.dev20240524_x86_64.tgz | tar --directory ./ov/ --strip-components 1 -xz
5555
sudo ./ov/install_dependencies/install_openvino_dependencies.sh
5656
- name: Download, convert and build
5757
run: |
5858
source ./ov/setupvars.sh
5959
python -m pip install --upgrade-strategy eager -r ./text_generation/causal_lm/cpp/requirements.txt
60-
python -m pip install ./thirdparty/openvino_tokenizers/[transformers]
60+
python -m pip install ./thirdparty/openvino_tokenizers/[transformers] --extra-index-url https://storage.openvinotoolkit.org/simple/wheels/pre-release
6161
sudo apt-get install libtbb-dev
6262
optimum-cli export openvino --trust-remote-code --weight-format fp16 --model TinyLlama/TinyLlama-1.1B-Chat-v1.0 TinyLlama-1.1B-Chat-v1.0
6363
cmake -DCMAKE_BUILD_TYPE=Release -S ./ -B ./build/
@@ -179,21 +179,21 @@ jobs:
179179
- name: Install OpenVINO
180180
shell: bash
181181
run: |
182-
curl --output ov.zip https://storage.openvinotoolkit.org/repositories/openvino/packages/2024.1/windows/w_openvino_toolkit_windows_2024.1.0.15008.f4afc983258_x86_64.zip
182+
curl --output ov.zip https://storage.openvinotoolkit.org/repositories/openvino/packages/pre-release/2024.2.0rc1/windows/w_openvino_toolkit_windows_2024.2.0.dev20240524_x86_64.zip
183183
unzip ov.zip
184184
- name: Download, convert and build
185185
shell: cmd
186186
run: |
187-
call w_openvino_toolkit_windows_2024.1.0.15008.f4afc983258_x86_64\setupvars.bat
187+
call w_openvino_toolkit_windows_2024.2.0.dev20240524_x86_64\setupvars.bat
188188
python -m pip install --upgrade-strategy eager -r text_generation/causal_lm/cpp/requirements.txt
189-
python -m pip install ./thirdparty/openvino_tokenizers/[transformers]
189+
python -m pip install ./thirdparty/openvino_tokenizers/[transformers] --extra-index-url https://storage.openvinotoolkit.org/simple/wheels/pre-release
190190
optimum-cli export openvino --trust-remote-code --weight-format fp16 --model TinyLlama/TinyLlama-1.1B-Chat-v1.0 TinyLlama-1.1B-Chat-v1.0
191191
cmake -DCMAKE_BUILD_TYPE=Release -S ./ -B ./build/
192192
cmake --build ./build/ --config Release -j
193193
- name: Compare
194194
shell: cmd
195195
run: |
196-
call w_openvino_toolkit_windows_2024.1.0.15008.f4afc983258_x86_64\setupvars.bat
196+
call w_openvino_toolkit_windows_2024.2.0.dev20240524_x86_64\setupvars.bat
197197
set PATH=.\build\src\cpp\Release;%PATH%
198198
.\build\text_generation\causal_lm\cpp\Release\beam_search_causal_lm.exe .\TinyLlama-1.1B-Chat-v1.0\ "69" > .\pred.txt
199199
@@ -221,13 +221,13 @@ jobs:
221221
- name: Install OpenVINO
222222
run: |
223223
mkdir ./ov/
224-
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
224+
curl https://storage.openvinotoolkit.org/repositories/openvino/packages/pre-release/2024.2.0rc1/linux/l_openvino_toolkit_ubuntu20_2024.2.0.dev20240524_x86_64.tgz | tar --directory ./ov/ --strip-components 1 -xz
225225
sudo ./ov/install_dependencies/install_openvino_dependencies.sh
226226
- name: Download, convert and build
227227
run: |
228228
source ./ov/setupvars.sh
229229
python -m pip install --upgrade-strategy eager -r ./text_generation/causal_lm/cpp/requirements.txt
230-
python -m pip install ./thirdparty/openvino_tokenizers/[transformers]
230+
python -m pip install ./thirdparty/openvino_tokenizers/[transformers] --extra-index-url https://storage.openvinotoolkit.org/simple/wheels/pre-release
231231
sudo apt-get install libtbb-dev
232232
optimum-cli export openvino --trust-remote-code --weight-format fp16 --model Qwen/Qwen-7B-Chat Qwen-7B-Chat
233233
cmake -DCMAKE_BUILD_TYPE=Release -S ./ -B ./build/
@@ -249,13 +249,13 @@ jobs:
249249
- name: Install OpenVINO
250250
run: |
251251
mkdir ./ov/
252-
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
252+
curl https://storage.openvinotoolkit.org/repositories/openvino/packages/pre-release/2024.2.0rc1/linux/l_openvino_toolkit_ubuntu20_2024.2.0.dev20240524_x86_64.tgz | tar --directory ./ov/ --strip-components 1 -xz
253253
sudo ./ov/install_dependencies/install_openvino_dependencies.sh
254254
- name: Download, convert and build
255255
run: |
256256
source ./ov/setupvars.sh
257257
python -m pip install --upgrade-strategy eager -r ./text_generation/causal_lm/cpp/requirements.txt
258-
python -m pip install ./thirdparty/openvino_tokenizers/[transformers]
258+
python -m pip install ./thirdparty/openvino_tokenizers/[transformers] --extra-index-url https://storage.openvinotoolkit.org/simple/wheels/pre-release
259259
sudo apt-get install libtbb-dev
260260
optimum-cli export openvino --trust-remote-code --weight-format fp16 --model Qwen/Qwen1.5-7B-Chat Qwen1.5-7B-Chat
261261
cmake -DCMAKE_BUILD_TYPE=Release -S ./ -B ./build/
@@ -277,13 +277,13 @@ jobs:
277277
- name: Install OpenVINO
278278
run: |
279279
mkdir ./ov/
280-
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
280+
curl https://storage.openvinotoolkit.org/repositories/openvino/packages/pre-release/2024.2.0rc1/linux/l_openvino_toolkit_ubuntu20_2024.2.0.dev20240524_x86_64.tgz | tar --directory ./ov/ --strip-components 1 -xz
281281
sudo ./ov/install_dependencies/install_openvino_dependencies.sh
282282
- name: Download, convert and build
283283
run: |
284284
source ./ov/setupvars.sh
285285
python -m pip install --upgrade-strategy eager -r ./text_generation/causal_lm/cpp/requirements.txt
286-
python -m pip install ./thirdparty/openvino_tokenizers/[transformers]
286+
python -m pip install ./thirdparty/openvino_tokenizers/[transformers] --extra-index-url https://storage.openvinotoolkit.org/simple/wheels/pre-release
287287
sudo apt-get install libtbb-dev
288288
optimum-cli export openvino --trust-remote-code --weight-format fp16 --model microsoft/phi-2 phi-2
289289
cmake -DCMAKE_BUILD_TYPE=Release -S ./ -B ./build/
@@ -305,13 +305,13 @@ jobs:
305305
- name: Install OpenVINO
306306
run: |
307307
mkdir ./ov/
308-
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
308+
curl https://storage.openvinotoolkit.org/repositories/openvino/packages/pre-release/2024.2.0rc1/linux/l_openvino_toolkit_ubuntu20_2024.2.0.dev20240524_x86_64.tgz | tar --directory ./ov/ --strip-components 1 -xz
309309
sudo ./ov/install_dependencies/install_openvino_dependencies.sh
310310
- name: Download, convert and build
311311
run: |
312312
source ./ov/setupvars.sh
313313
python -m pip install --upgrade-strategy eager -r ./text_generation/causal_lm/cpp/requirements.txt
314-
python -m pip install ./thirdparty/openvino_tokenizers/[transformers]
314+
python -m pip install ./thirdparty/openvino_tokenizers/[transformers] --extra-index-url https://storage.openvinotoolkit.org/simple/wheels/pre-release
315315
sudo apt-get install libtbb-dev
316316
optimum-cli export openvino --trust-remote-code --weight-format fp16 --model argilla/notus-7b-v1 notus-7b-v1
317317
cmake -DCMAKE_BUILD_TYPE=Release -S ./ -B ./build/
@@ -333,13 +333,13 @@ jobs:
333333
- name: Install OpenVINO
334334
run: |
335335
mkdir ./ov/
336-
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
336+
curl https://storage.openvinotoolkit.org/repositories/openvino/packages/pre-release/2024.2.0rc1/linux/l_openvino_toolkit_ubuntu20_2024.2.0.dev20240524_x86_64.tgz | tar --directory ./ov/ --strip-components 1 -xz
337337
sudo ./ov/install_dependencies/install_openvino_dependencies.sh
338338
- name: Download, convert and build
339339
run: |
340340
source ./ov/setupvars.sh
341341
python -m pip install --upgrade-strategy eager -r ./text_generation/causal_lm/cpp/requirements.txt
342-
python -m pip install ./thirdparty/openvino_tokenizers/[transformers]
342+
python -m pip install ./thirdparty/openvino_tokenizers/[transformers] --extra-index-url https://storage.openvinotoolkit.org/simple/wheels/pre-release
343343
sudo apt-get install libtbb-dev
344344
optimum-cli export openvino --trust-remote-code --weight-format fp16 --model databricks/dolly-v2-3b dolly-v2-3b
345345
optimum-cli export openvino --trust-remote-code --weight-format fp16 --model databricks/dolly-v2-7b dolly-v2-7b
@@ -372,13 +372,13 @@ jobs:
372372
- name: Install OpenVINO
373373
run: |
374374
mkdir ./ov/
375-
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
375+
curl https://storage.openvinotoolkit.org/repositories/openvino/packages/pre-release/2024.2.0rc1/linux/l_openvino_toolkit_ubuntu20_2024.2.0.dev20240524_x86_64.tgz | tar --directory ./ov/ --strip-components 1 -xz
376376
sudo ./ov/install_dependencies/install_openvino_dependencies.sh
377377
- name: Download, convert and build
378378
run: |
379379
source ./ov/setupvars.sh
380380
python -m pip install --upgrade-strategy eager -r ./text_generation/causal_lm/cpp/requirements.txt
381-
python -m pip install ./thirdparty/openvino_tokenizers/[transformers]
381+
python -m pip install ./thirdparty/openvino_tokenizers/[transformers] --extra-index-url https://storage.openvinotoolkit.org/simple/wheels/pre-release
382382
sudo apt-get install libtbb-dev
383383
optimum-cli export openvino --trust-remote-code --weight-format fp16 --model TinyLlama/TinyLlama-1.1B-Chat-v1.0 TinyLlama-1.1B-Chat-v1.0
384384
cmake -DCMAKE_BUILD_TYPE=Release -S ./ -B ./build/
@@ -417,13 +417,13 @@ jobs:
417417
- name: Install OpenVINO
418418
run: |
419419
mkdir ./ov/
420-
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
420+
curl https://storage.openvinotoolkit.org/repositories/openvino/packages/pre-release/2024.2.0rc1/linux/l_openvino_toolkit_ubuntu20_2024.2.0.dev20240524_x86_64.tgz | tar --directory ./ov/ --strip-components 1 -xz
421421
sudo ./ov/install_dependencies/install_openvino_dependencies.sh
422422
- name: Download, convert and build
423423
run: |
424424
source ./ov/setupvars.sh
425425
python -m pip install --upgrade-strategy eager -r ./text_generation/causal_lm/cpp/requirements.txt
426-
python -m pip install ./thirdparty/openvino_tokenizers/[transformers]
426+
python -m pip install ./thirdparty/openvino_tokenizers/[transformers] --extra-index-url https://storage.openvinotoolkit.org/simple/wheels/pre-release
427427
sudo apt-get install libtbb-dev
428428
optimum-cli export openvino --trust-remote-code --weight-format fp16 --model microsoft/phi-1_5 phi-1_5
429429
cmake -DCMAKE_BUILD_TYPE=Release -S ./ -B ./build/
@@ -462,13 +462,13 @@ jobs:
462462
- name: Install OpenVINO
463463
run: |
464464
mkdir ./ov/
465-
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
465+
curl https://storage.openvinotoolkit.org/repositories/openvino/packages/pre-release/2024.2.0rc1/linux/l_openvino_toolkit_ubuntu20_2024.2.0.dev20240524_x86_64.tgz | tar --directory ./ov/ --strip-components 1 -xz
466466
sudo ./ov/install_dependencies/install_openvino_dependencies.sh
467467
- name: Download, convert and build
468468
run: |
469469
source ./ov/setupvars.sh
470470
python -m pip install --upgrade-strategy eager -r ./text_generation/causal_lm/cpp/requirements.txt
471-
python -m pip install ./thirdparty/openvino_tokenizers/[transformers]
471+
python -m pip install ./thirdparty/openvino_tokenizers/[transformers] --extra-index-url https://storage.openvinotoolkit.org/simple/wheels/pre-release
472472
sudo apt-get install libtbb-dev
473473
optimum-cli export openvino --trust-remote-code --weight-format fp16 --model ikala/redpajama-3b-chat redpajama-3b-chat
474474
cmake -DCMAKE_BUILD_TYPE=Release -S ./ -B ./build/

.github/workflows/genai_package.yml

+11-11
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 https://storage.openvinotoolkit.org/repositories/openvino/packages/pre-release/2024.2.0rc1/linux/l_openvino_toolkit_ubuntu20_2024.2.0.dev20240524_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/
@@ -24,7 +24,7 @@ jobs:
2424
if: ${{ 'Release' == matrix.build-type }} # build_samples enforces Release build
2525
- run: source ./ov/setupvars.sh && python -m pip install --upgrade-strategy eager -r text_generation/causal_lm/cpp/requirements.txt
2626
if: ${{ 'Release' == matrix.build-type }}
27-
- run: source ./ov/setupvars.sh && python -m pip install ./thirdparty/openvino_tokenizers/[transformers]
27+
- run: source ./ov/setupvars.sh && python -m pip install ./thirdparty/openvino_tokenizers/[transformers] --extra-index-url https://storage.openvinotoolkit.org/simple/wheels/pre-release
2828
if: ${{ 'Release' == matrix.build-type }}
2929
- run: source ./ov/setupvars.sh && optimum-cli export openvino --trust-remote-code --weight-format fp16 --model TinyLlama/TinyLlama-1.1B-Chat-v1.0 TinyLlama-1.1B-Chat-v1.0
3030
if: ${{ 'Release' == matrix.build-type }}
@@ -46,18 +46,18 @@ jobs:
4646
- uses: actions/setup-python@v4
4747
with:
4848
python-version: 3.8
49-
- run: curl --output ov.zip https://storage.openvinotoolkit.org/repositories/openvino/packages/nightly/2024.2.0-15349-765302e0de1/w_openvino_toolkit_windows_2024.2.0.dev20240515_x86_64.zip
49+
- run: curl --output ov.zip https://storage.openvinotoolkit.org/repositories/openvino/packages/pre-release/2024.2.0rc1/windows/w_openvino_toolkit_windows_2024.2.0.dev20240524_x86_64.zip
5050
- run: unzip ov.zip
51-
- run: call w_openvino_toolkit_windows_2024.2.0.dev20240515_x86_64\setupvars.bat && cmake -DCMAKE_BUILD_TYPE=${{ matrix.build-type }} -S ./ -B ./build/
52-
- run: call w_openvino_toolkit_windows_2024.2.0.dev20240515_x86_64\setupvars.bat && cmake --build ./build/ --config ${{ matrix.build-type }} --target package -j
53-
- run: call w_openvino_toolkit_windows_2024.2.0.dev20240515_x86_64\setupvars.bat && cmake --install ./build/ --config ${{ matrix.build-type }} --prefix w_openvino_toolkit_windows_2024.2.0.dev20240515_x86_64
54-
- run: call w_openvino_toolkit_windows_2024.2.0.dev20240515_x86_64\samples\cpp\build_samples_msvc.bat -i "${{ github.workspace }}/samples_install"
51+
- run: call w_openvino_toolkit_windows_2024.2.0.dev20240524_x86_64\setupvars.bat && cmake -DCMAKE_BUILD_TYPE=${{ matrix.build-type }} -S ./ -B ./build/
52+
- run: call w_openvino_toolkit_windows_2024.2.0.dev20240524_x86_64\setupvars.bat && cmake --build ./build/ --config ${{ matrix.build-type }} --target package -j
53+
- run: call w_openvino_toolkit_windows_2024.2.0.dev20240524_x86_64\setupvars.bat && cmake --install ./build/ --config ${{ matrix.build-type }} --prefix w_openvino_toolkit_windows_2024.2.0.dev20240524_x86_64
54+
- run: call w_openvino_toolkit_windows_2024.2.0.dev20240524_x86_64\samples\cpp\build_samples_msvc.bat -i "${{ github.workspace }}/samples_install"
5555
if: ${{ 'Release' == matrix.build-type }} # build_samples enforces Release build
56-
- run: call w_openvino_toolkit_windows_2024.2.0.dev20240515_x86_64\setupvars.bat && python -m pip install --upgrade-strategy eager -r text_generation/causal_lm/cpp/requirements.txt
56+
- run: call w_openvino_toolkit_windows_2024.2.0.dev20240524_x86_64\setupvars.bat && python -m pip install --upgrade-strategy eager -r text_generation/causal_lm/cpp/requirements.txt
5757
if: ${{ 'Release' == matrix.build-type }}
58-
- run: call w_openvino_toolkit_windows_2024.2.0.dev20240515_x86_64\setupvars.bat && python -m pip install ./thirdparty/openvino_tokenizers/[transformers]
58+
- run: call w_openvino_toolkit_windows_2024.2.0.dev20240524_x86_64\setupvars.bat && python -m pip install ./thirdparty/openvino_tokenizers/[transformers] --extra-index-url https://storage.openvinotoolkit.org/simple/wheels/pre-release
5959
if: ${{ 'Release' == matrix.build-type }}
60-
- run: call w_openvino_toolkit_windows_2024.2.0.dev20240515_x86_64\setupvars.bat && optimum-cli export openvino --trust-remote-code --weight-format fp16 --model TinyLlama/TinyLlama-1.1B-Chat-v1.0 TinyLlama-1.1B-Chat-v1.0
60+
- run: call w_openvino_toolkit_windows_2024.2.0.dev20240524_x86_64\setupvars.bat && optimum-cli export openvino --trust-remote-code --weight-format fp16 --model TinyLlama/TinyLlama-1.1B-Chat-v1.0 TinyLlama-1.1B-Chat-v1.0
6161
if: ${{ 'Release' == matrix.build-type }}
62-
- run: call w_openvino_toolkit_windows_2024.2.0.dev20240515_x86_64\setupvars.bat && "${{ github.workspace }}/samples_install/samples_bin/greedy_causal_lm" .\TinyLlama-1.1B-Chat-v1.0\ ""
62+
- run: call w_openvino_toolkit_windows_2024.2.0.dev20240524_x86_64\setupvars.bat && "${{ github.workspace }}/samples_install/samples_bin/greedy_causal_lm" .\TinyLlama-1.1B-Chat-v1.0\ ""
6363
if: ${{ 'Release' == matrix.build-type }}

0 commit comments

Comments
 (0)