Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing AMD CI #2109

Closed
wants to merge 51 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
51 commits
Select commit Hold shift + click to select a range
49db30a
disable marlin tests on rocm/xpu
fxmarty Jun 10, 2024
5a4b798
fix gptq tests, LLMM1 matrix bound
fxmarty Jun 11, 2024
4068856
skip exl2 tests on rocm
fxmarty Jun 11, 2024
1e10597
update
fxmarty Jun 11, 2024
1846c1c
fix tests
fxmarty Jun 11, 2024
9e50c11
fix idefics2 tests
fxmarty Jun 13, 2024
5b6b257
fix gpt2 tests - some weights were not contiguous
fxmarty Jun 13, 2024
4616c62
style
fxmarty Jun 13, 2024
3de8f36
fix decorators
fxmarty Jun 14, 2024
40b342a
fix space
fxmarty Jun 17, 2024
df7bb11
dial tcp: lookup registry-1.docker.io: i/o timeout
fxmarty Jun 17, 2024
e62ac4d
trigger
fxmarty Jun 20, 2024
5fb8c27
fix style & typo
fxmarty Jun 20, 2024
6799977
fix workflow
fxmarty Jun 20, 2024
393234d
hopefully fix ci
fxmarty Jun 21, 2024
7e0f4f2
renamed file
fxmarty Jun 21, 2024
2848943
remove require_backend decorators on handles, for some reasons fails …
fxmarty Jun 21, 2024
3464d60
The handshake operation timed out & hanging
fxmarty Jun 21, 2024
bc2b9b2
trigger ci
fxmarty Jun 21, 2024
1bb1a34
retry
fxmarty Jun 21, 2024
ee62872
test tailscale independently
fxmarty Jun 21, 2024
13bbf6c
does ci pass without tailscale?
fxmarty Jun 21, 2024
f16f0ad
do not login to internal registry
fxmarty Jun 24, 2024
09a41f2
do not skip workflow on cuda, fix no space left no device
fxmarty Jun 24, 2024
dc53846
Merge branch 'main' into ci_amd3
fxmarty Jun 25, 2024
04298e5
add back credentials
fxmarty Jun 25, 2024
b44097a
fix cache cleanup
fxmarty Jun 26, 2024
227f78f
Merge branch 'main' into ci_amd3
fxmarty Jun 26, 2024
2330052
debug
fxmarty Jun 26, 2024
4067fc8
login to registry
fxmarty Jun 26, 2024
60a96a9
do not use private registry in cleanup cache step
fxmarty Jun 26, 2024
bbc949f
trigger ci
fxmarty Jun 27, 2024
0a5485d
avoid permissions issues
fxmarty Jun 27, 2024
eaa6890
remove hidden
fxmarty Jun 27, 2024
87db820
fix rm
fxmarty Jun 28, 2024
3d50ff7
bump torch to more recent version
fxmarty Jun 28, 2024
68583d3
working memory leak fix in tunableop
fxmarty Jun 28, 2024
05d1011
fix xpu build
fxmarty Jun 28, 2024
9fd395f
fix tests
fxmarty Jul 1, 2024
5984977
Merge branch 'main' into ci_amd3
fxmarty Jul 1, 2024
00cc73b
fix post merge
fxmarty Jul 1, 2024
750ef7b
Merge branch 'ci_amd3' of github.com:huggingface/text-generation-infe…
fxmarty Jul 1, 2024
e0bfe4e
fix
fxmarty Jul 1, 2024
c2f4b7f
add vicuna
fxmarty Jul 2, 2024
add4d42
do not use tunableop for non flash-causal-lm modezls
fxmarty Jul 2, 2024
29a4160
Merge branch 'main' into ci_amd3
fxmarty Jul 2, 2024
8c590be
Merge branch 'main' into ci_amd3
fxmarty Jul 8, 2024
4e3f687
use base docker image
fxmarty Jul 8, 2024
d7c6061
missing lib
fxmarty Jul 8, 2024
291453f
Merge branch 'main' into ci_amd3
fxmarty Jul 16, 2024
2967b81
fix post refactor
fxmarty Jul 16, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
avoid permissions issues
  • Loading branch information
fxmarty committed Jun 27, 2024
commit 0a5485d8a041881f8898db95d2b025eff5c162fb
5 changes: 5 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,11 @@ jobs:
pip3 install -U huggingface_hub

python3 integration-tests/clean_cache_and_download.py --token ${{ secrets.HF_TOKEN }} --cache-dir /data

# Avoid permissions issues in the next step not run within docker (File was unable to be removed Error: EACCES).
if [[ $PWD == *"text-generation-inference"* ]]; then
rm -rf *
fi
fi

integration_tests:
Expand Down
Loading