-
Notifications
You must be signed in to change notification settings - Fork 295
Support RHAIIS images for the e2e tests #2032
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 33 commits
f636e2c
afbf811
a55e5c8
ceee681
bcc7a50
665cd1e
4bf0dc1
59cea15
be75c8d
586dcc1
c1dde7f
ae9e526
80352db
8461d03
5704e62
098f561
d564408
5da7eee
4cb2251
d2cb646
5cdb543
6dc42c4
84634e0
57c99ac
7cdedbb
3951475
5c401fc
870b6ee
d23bdf4
625c9db
264fdcb
318bd3d
117ec9d
8b41d5f
1b2530e
3d889c6
7e77202
7662699
abb6bab
de58b02
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 |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| fp4_nvfp4.yaml | ||
| fp8_dynamic_per_token.yaml | ||
| kv_cache_gptq_tinyllama.yaml | ||
| sparse2of4_fp8_dynamic.yaml | ||
| w4a16_grouped_quant_asym_awq.yaml | ||
| w4a16_actorder_weight.yaml | ||
| int8_channel_weight_static_per_tensor_act.yaml |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -16,8 +16,18 @@ while getopts "c:t:" OPT; do | |
| esac | ||
| done | ||
|
|
||
| script_path=$(dirname "${BASH_SOURCE[0]}") | ||
| if [ -d "$CONFIG" ]; then | ||
| echo "Config is provided as a folder: $CONFIG" | ||
| CONFIGS=`ls "$CONFIG"` | ||
| elif [ -f "$CONFIG" ]; then | ||
| echo "Config is provided as a file: $CONFIG" | ||
| CONFIGS=`cat "$CONFIG"` | ||
| fi | ||
| echo "$CONFIGS" | ||
|
|
||
| # Parse list of configs. | ||
| for MODEL_CONFIG in "$CONFIG"/* | ||
| for MODEL_CONFIG in $(echo -e "$CONFIGS" | sed "s|^|${script_path}/configs/|") | ||
|
||
| do | ||
| LOCAL_SUCCESS=0 | ||
|
|
||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.