-
Notifications
You must be signed in to change notification settings - Fork 147
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
34 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,35 @@ | ||
name: llama_cpp_plugin_build_and_test | ||
|
||
on: | ||
pull_request: | ||
types: | ||
- opened | ||
pull_request: | ||
types: | ||
- opened | ||
- reopened | ||
- synchronize | ||
paths: | ||
- 'modules/llama_cpp_plugin/**' | ||
- 'modules/llama_cpp_plugin/**' | ||
|
||
jobs: | ||
build_ubuntu20: | ||
runs-on: ubuntu-20.04 | ||
build_ubuntu20: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- name: Setup cmake | ||
uses: jwlawson/[email protected] | ||
with: | ||
cmake-version: '3.24.x' | ||
- name: Setup cmake | ||
uses: jwlawson/[email protected] | ||
with: | ||
cmake-version: '3.24.x' | ||
|
||
- name: Checkout openvino_contrib | ||
uses: actions/checkout@v3 | ||
with: | ||
submodules: recursive | ||
path: openvino_contrib | ||
submodules: recursive | ||
path: openvino_contrib | ||
|
||
- name: Checkout openvino | ||
uses: actions/checkout@v3 | ||
with: | ||
submodules: recursive | ||
repository: openvinotoolkit/openvino | ||
path: openvino | ||
submodules: recursive | ||
repository: openvinotoolkit/openvino | ||
path: openvino | ||
|
||
- name: CMake - configure | ||
run: cmake -B build -DCMAKE_BUILD_TYPE=Release -DOPENVINO_EXTRA_MODULES=${{ github.workspace }}/openvino_contrib/modules/llama_cpp_plugin -DENABLE_TESTS=ON -DENABLE_FUNCTIONAL_TESTS=ON -DENABLE_PLUGINS_XML=ON -DENABLE_PLUGIN_REGISTRATION=ON openvino | ||
|
@@ -41,40 +41,40 @@ jobs: | |
- name: Upload build artifacts | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: build_artifacts | ||
path: ${{ github.workspace }}/openvino/bin/intel64/Release/ | ||
name: build_artifacts | ||
path: ${{ github.workspace }}/openvino/bin/intel64/Release/ | ||
|
||
test_ubuntu20: | ||
test_ubuntu20: | ||
needs: build_ubuntu20 | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- name: Download build artifacts | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: build_artifacts | ||
- name: Download build artifacts | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: build_artifacts | ||
path: ${{ github.workspace }}/binaries | ||
|
||
- name: Prepare test data - checkout llama.cpp repo | ||
uses: actions/checkout@v3 | ||
with: | ||
repository: ggerganov/llama.cpp | ||
path: llama.cpp | ||
repository: ggerganov/llama.cpp | ||
path: llama.cpp | ||
|
||
- name: Prepare test data - convert test model files | ||
run: | | ||
pip install -r llama.cpp/requirements/requirements-convert-hf-to-gguf.txt | ||
huggingface-cli download gpt2 model.safetensors tokenizer.json tokenizer_config.json vocab.json config.json merges.txt --local-dir hf_gpt2 | ||
mkdir -p ${{ github.workspace }}/test_data | ||
python3 llama.cpp/convert-hf-to-gguf.py hf_gpt2 --outtype f32 --outfile ${{ github.workspace }}/test_data/gpt2.gguf | ||
pip install -r llama.cpp/requirements/requirements-convert-hf-to-gguf.txt | ||
huggingface-cli download gpt2 model.safetensors tokenizer.json tokenizer_config.json vocab.json config.json merges.txt --local-dir hf_gpt2 | ||
mkdir -p ${{ github.workspace }}/test_data | ||
python3 llama.cpp/convert-hf-to-gguf.py hf_gpt2 --outtype f32 --outfile ${{ github.workspace }}/test_data/gpt2.gguf | ||
- name: Install libtbb2 | ||
run: | | ||
wget https://storage.openvinotoolkit.org/dependencies/thirdparty/linux/oneapi-tbb-2021.2.4-lin.tgz | ||
mkdir -p tbb | ||
tar xvzf oneapi-tbb-2021.2.4-lin.tgz | ||
wget https://storage.openvinotoolkit.org/dependencies/thirdparty/linux/oneapi-tbb-2021.2.4-lin.tgz | ||
mkdir -p tbb | ||
tar xvzf oneapi-tbb-2021.2.4-lin.tgz | ||
- name: Run E2E tests | ||
run: | | ||
chmod +x ${{ github.workspace }}/binaries/llama_cpp_e2e_tests | ||
export LD_LIBRARY_PATH=${{ github.workspace }}/binaries:${{ github.workspace }}/tbb/lib | ||
${{ github.workspace }}/binaries/llama_cpp_e2e_tests | ||
chmod +x ${{ github.workspace }}/binaries/llama_cpp_e2e_tests | ||
export LD_LIBRARY_PATH=${{ github.workspace }}/binaries:${{ github.workspace }}/tbb/lib | ||
${{ github.workspace }}/binaries/llama_cpp_e2e_tests |