fix path
This commit is contained in:
parent
d2ca97bc89
commit
6cf75b2711
1 changed files with 9 additions and 9 deletions
18
.github/workflows/build.yml
vendored
18
.github/workflows/build.yml
vendored
|
@ -932,16 +932,16 @@ jobs:
|
|||
id: pack_artifacts
|
||||
if: ${{ ( github.event_name == 'push' && github.ref == 'refs/heads/master' ) || github.event.inputs.create_release == 'true' }}
|
||||
run: |
|
||||
echo "cp oneAPI running time dll files in ${env.ONEAPI_ROOT} to ./build/bin"
|
||||
cp ${{ env.ONEAPI_ROOT }}/mkl/latest/bin/mkl_sycl_blas.4.dll ./build/bin
|
||||
cp ${{ env.ONEAPI_ROOT }}/mkl/latest/bin/mkl_core.2.dlll ./build/bin
|
||||
cp ${{ env.ONEAPI_ROOT }}/mkl/latest/bin/mkl_tbb_thread.2.dll ./build/bin
|
||||
echo "cp oneAPI running time dll files in ${{ env.ONEAPI_ROOT }} to ./build/bin"
|
||||
cp "${{ env.ONEAPI_ROOT }}/mkl/latest/bin/mkl_sycl_blas.4.dll" ./build/bin
|
||||
cp "${{ env.ONEAPI_ROOT }}/mkl/latest/bin/mkl_core.2.dll" ./build/bin
|
||||
cp "${{ env.ONEAPI_ROOT }}/mkl/latest/bin/mkl_tbb_thread.2.dll" ./build/bin
|
||||
|
||||
cp ${{ env.ONEAPI_ROOT }}/compiler/latest/bin/pi_win_proxy_loader.dll ./build/bin
|
||||
cp ${{ env.ONEAPI_ROOT }}/compiler/latest/bin/pi_level_zero.dll ./build/bin
|
||||
cp ${{ env.ONEAPI_ROOT }}/compiler/latest/bin/sycl7.dll ./build/bin
|
||||
cp ${{ env.ONEAPI_ROOT }}/compiler/latest/bin/svml_dispmd.dll ./build/bin
|
||||
cp ${{ env.ONEAPI_ROOT }}/compiler/latest/bin/libmmd.dll ./build/bin
|
||||
cp "${{ env.ONEAPI_ROOT }}/compiler/latest/bin/pi_win_proxy_loader.dll" ./build/bin
|
||||
cp "${{ env.ONEAPI_ROOT }}/compiler/latest/bin/pi_level_zero.dll" ./build/bin
|
||||
cp "${{ env.ONEAPI_ROOT }}/compiler/latest/bin/sycl7.dll" ./build/bin
|
||||
cp "${{ env.ONEAPI_ROOT }}/compiler/latest/bin/svml_dispmd.dll" ./build/bin
|
||||
cp "${{ env.ONEAPI_ROOT }}/compiler/latest/bin/libmmd.dll" ./build/bin
|
||||
echo "cp oneAPI running time dll files to ./build/bin done"
|
||||
7z a llama-${{ steps.tag.outputs.name }}-bin-win-sycl-x64.zip ./build/bin/*
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue