@@ -23,13 +23,13 @@ jobs:
23
23
- name : Install OpenVINO
24
24
run : |
25
25
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
27
27
sudo ./ov/install_dependencies/install_openvino_dependencies.sh
28
28
- name : Download, convert and build
29
29
run : |
30
30
source ./ov/setupvars.sh
31
31
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
33
33
sudo apt-get install libtbb-dev
34
34
optimum-cli export openvino --trust-remote-code --weight-format fp16 --model openlm-research/open_llama_3b_v2 open_llama_3b_v2
35
35
cmake -DCMAKE_BUILD_TYPE=Release -S ./ -B ./build/
@@ -51,13 +51,13 @@ jobs:
51
51
- name : Install OpenVINO
52
52
run : |
53
53
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
55
55
sudo ./ov/install_dependencies/install_openvino_dependencies.sh
56
56
- name : Download, convert and build
57
57
run : |
58
58
source ./ov/setupvars.sh
59
59
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
61
61
sudo apt-get install libtbb-dev
62
62
optimum-cli export openvino --trust-remote-code --weight-format fp16 --model TinyLlama/TinyLlama-1.1B-Chat-v1.0 TinyLlama-1.1B-Chat-v1.0
63
63
cmake -DCMAKE_BUILD_TYPE=Release -S ./ -B ./build/
@@ -179,21 +179,21 @@ jobs:
179
179
- name : Install OpenVINO
180
180
shell : bash
181
181
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
183
183
unzip ov.zip
184
184
- name : Download, convert and build
185
185
shell : cmd
186
186
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
188
188
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
190
190
optimum-cli export openvino --trust-remote-code --weight-format fp16 --model TinyLlama/TinyLlama-1.1B-Chat-v1.0 TinyLlama-1.1B-Chat-v1.0
191
191
cmake -DCMAKE_BUILD_TYPE=Release -S ./ -B ./build/
192
192
cmake --build ./build/ --config Release -j
193
193
- name : Compare
194
194
shell : cmd
195
195
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
197
197
set PATH=.\build\src\cpp\Release;%PATH%
198
198
.\build\text_generation\causal_lm\cpp\Release\beam_search_causal_lm.exe .\TinyLlama-1.1B-Chat-v1.0\ "69" > .\pred.txt
199
199
@@ -221,13 +221,13 @@ jobs:
221
221
- name : Install OpenVINO
222
222
run : |
223
223
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
225
225
sudo ./ov/install_dependencies/install_openvino_dependencies.sh
226
226
- name : Download, convert and build
227
227
run : |
228
228
source ./ov/setupvars.sh
229
229
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
231
231
sudo apt-get install libtbb-dev
232
232
optimum-cli export openvino --trust-remote-code --weight-format fp16 --model Qwen/Qwen-7B-Chat Qwen-7B-Chat
233
233
cmake -DCMAKE_BUILD_TYPE=Release -S ./ -B ./build/
@@ -249,13 +249,13 @@ jobs:
249
249
- name : Install OpenVINO
250
250
run : |
251
251
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
253
253
sudo ./ov/install_dependencies/install_openvino_dependencies.sh
254
254
- name : Download, convert and build
255
255
run : |
256
256
source ./ov/setupvars.sh
257
257
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
259
259
sudo apt-get install libtbb-dev
260
260
optimum-cli export openvino --trust-remote-code --weight-format fp16 --model Qwen/Qwen1.5-7B-Chat Qwen1.5-7B-Chat
261
261
cmake -DCMAKE_BUILD_TYPE=Release -S ./ -B ./build/
@@ -277,13 +277,13 @@ jobs:
277
277
- name : Install OpenVINO
278
278
run : |
279
279
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
281
281
sudo ./ov/install_dependencies/install_openvino_dependencies.sh
282
282
- name : Download, convert and build
283
283
run : |
284
284
source ./ov/setupvars.sh
285
285
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
287
287
sudo apt-get install libtbb-dev
288
288
optimum-cli export openvino --trust-remote-code --weight-format fp16 --model microsoft/phi-2 phi-2
289
289
cmake -DCMAKE_BUILD_TYPE=Release -S ./ -B ./build/
@@ -305,13 +305,13 @@ jobs:
305
305
- name : Install OpenVINO
306
306
run : |
307
307
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
309
309
sudo ./ov/install_dependencies/install_openvino_dependencies.sh
310
310
- name : Download, convert and build
311
311
run : |
312
312
source ./ov/setupvars.sh
313
313
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
315
315
sudo apt-get install libtbb-dev
316
316
optimum-cli export openvino --trust-remote-code --weight-format fp16 --model argilla/notus-7b-v1 notus-7b-v1
317
317
cmake -DCMAKE_BUILD_TYPE=Release -S ./ -B ./build/
@@ -333,13 +333,13 @@ jobs:
333
333
- name : Install OpenVINO
334
334
run : |
335
335
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
337
337
sudo ./ov/install_dependencies/install_openvino_dependencies.sh
338
338
- name : Download, convert and build
339
339
run : |
340
340
source ./ov/setupvars.sh
341
341
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
343
343
sudo apt-get install libtbb-dev
344
344
optimum-cli export openvino --trust-remote-code --weight-format fp16 --model databricks/dolly-v2-3b dolly-v2-3b
345
345
optimum-cli export openvino --trust-remote-code --weight-format fp16 --model databricks/dolly-v2-7b dolly-v2-7b
@@ -372,13 +372,13 @@ jobs:
372
372
- name : Install OpenVINO
373
373
run : |
374
374
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
376
376
sudo ./ov/install_dependencies/install_openvino_dependencies.sh
377
377
- name : Download, convert and build
378
378
run : |
379
379
source ./ov/setupvars.sh
380
380
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
382
382
sudo apt-get install libtbb-dev
383
383
optimum-cli export openvino --trust-remote-code --weight-format fp16 --model TinyLlama/TinyLlama-1.1B-Chat-v1.0 TinyLlama-1.1B-Chat-v1.0
384
384
cmake -DCMAKE_BUILD_TYPE=Release -S ./ -B ./build/
@@ -417,13 +417,13 @@ jobs:
417
417
- name : Install OpenVINO
418
418
run : |
419
419
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
421
421
sudo ./ov/install_dependencies/install_openvino_dependencies.sh
422
422
- name : Download, convert and build
423
423
run : |
424
424
source ./ov/setupvars.sh
425
425
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
427
427
sudo apt-get install libtbb-dev
428
428
optimum-cli export openvino --trust-remote-code --weight-format fp16 --model microsoft/phi-1_5 phi-1_5
429
429
cmake -DCMAKE_BUILD_TYPE=Release -S ./ -B ./build/
@@ -462,13 +462,13 @@ jobs:
462
462
- name : Install OpenVINO
463
463
run : |
464
464
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
466
466
sudo ./ov/install_dependencies/install_openvino_dependencies.sh
467
467
- name : Download, convert and build
468
468
run : |
469
469
source ./ov/setupvars.sh
470
470
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
472
472
sudo apt-get install libtbb-dev
473
473
optimum-cli export openvino --trust-remote-code --weight-format fp16 --model ikala/redpajama-3b-chat redpajama-3b-chat
474
474
cmake -DCMAKE_BUILD_TYPE=Release -S ./ -B ./build/
0 commit comments