File tree 1 file changed +7
-3
lines changed
1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -68,10 +68,14 @@ jobs:
68
68
mkdir -p ${{ github.workspace }}/test_data
69
69
python3 llama.cpp/convert-hf-to-gguf.py hf_gpt2 --outtype f32 --outfile ${{ github.workspace }}/test_data/gpt2.gguf
70
70
71
- - name : Install TBB
72
- run : sudo apt install -y libtbb2
71
+ - name : Install libtbb2
72
+ run : |
73
+ wget https://storage.openvinotoolkit.org/dependencies/thirdparty/linux/oneapi-tbb-2021.2.4-lin.tgz
74
+ mkdir -p tbb
75
+ tar xvzf oneapi-tbb-2021.2.4-lin.tgz
76
+
73
77
- name : Run E2E tests
74
78
run : |
75
79
chmod +x ${{ github.workspace }}/binaries/llama_cpp_e2e_tests
76
- export LD_LIBRARY_PATH=${{ github.workspace }}/binaries
80
+ export LD_LIBRARY_PATH=${{ github.workspace }}/binaries:${{ github.workspace }}/tbb/lib
77
81
${{ github.workspace }}/binaries/llama_cpp_e2e_tests
You can’t perform that action at this time.
0 commit comments