Skip to content

Commit

Permalink
[SYCL] fix no file in win rel (#6314)
Browse files Browse the repository at this point in the history
  • Loading branch information
NeoZhangJianyu authored Mar 27, 2024
1 parent 32c8486 commit a4f569e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -840,7 +840,7 @@ jobs:
id: pack_artifacts
if: ${{ ( github.event_name == 'push' && github.ref == 'refs/heads/master' ) || github.event.inputs.create_release == 'true' }}
run: |
7z a llama-${{ steps.tag.outputs.name }}-bin-win-sycl-x64.zip .\build\bin\*
7z a llama-${{ steps.tag.outputs.name }}-bin-win-sycl-x64.zip ./build/bin/*
- name: Upload artifacts
if: ${{ ( github.event_name == 'push' && github.ref == 'refs/heads/master' ) || github.event.inputs.create_release == 'true' }}
Expand Down

1 comment on commit a4f569e

@easyfab
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There are some dll that are missing : sycl7.dll libmmd.dll mkl_syscl_blas.4.dll svml_dispmd.dll.

Is a redistributable library needed if yes where to download ?

Please sign in to comment.