-
Notifications
You must be signed in to change notification settings - Fork 19
Revert "CI: Use DeepSeek-R1-0528-mtp-mxfp4 models for deepseek fp4 tests" #206
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -47,12 +47,12 @@ jobs: | |
| env_vars: "" | ||
| runner: atom-mi355-8gpu.predownload | ||
| - model_name: "DeepSeek-R1-0528-FP4" | ||
| model_path: "amd/DeepSeek-R1-0528-mtp-mxfp4" | ||
| model_path: "amd/DeepSeek-R1-0528-MXFP4" | ||
| extraArgs: "--kv_cache_dtype fp8 -tp 8" | ||
| env_vars: "" | ||
| runner: atom-mi355-8gpu.predownload | ||
| - model_name: "DeepSeek-R1-0528-FP4 MTP" | ||
| model_path: "amd/DeepSeek-R1-0528-mtp-mxfp4" | ||
| model_path: "amd/DeepSeek-R1-0528-MXFP4" | ||
| extraArgs: "--kv_cache_dtype fp8 -tp 8 --method mtp" | ||
| env_vars: "" | ||
| runner: atom-mi355-8gpu.predownload | ||
|
|
@@ -183,7 +183,7 @@ jobs: | |
| run: | | ||
| if [ -d "/models" ]; then | ||
| echo "/models directory found, downloading model to /models/${{ matrix.model_path }}" | ||
| if ! docker exec -e HF_TOKEN=${{ secrets.AMD_HF_TOKEN }} atom_test bash -lc "hf download ${{ matrix.model_path }} --local-dir /models/${{ matrix.model_path }}"; then | ||
| if ! docker exec atom_test bash -lc "hf download ${{ matrix.model_path }} --local-dir /models/${{ matrix.model_path }}"; then | ||
|
||
| echo "Model download failed for '${{ matrix.model_path }}'. Aborting." | ||
| exit 1 | ||
| fi | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
model_namelabels these entries as "FP4", but the revertedmodel_pathpoints at an "MXFP4" model repo. This mismatch makes CI matrix results harder to interpret/debug; consider aligningmodel_namewith the actual repo name (or adding MXFP4 to the label) so logs/artifacts clearly indicate which model variant was tested.