We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a004a5a commit d6d7cafCopy full SHA for d6d7caf
.ci/scripts/validate.sh
@@ -116,7 +116,7 @@ function generate_aoti_model_output() {
116
117
echo "Local DTYPES=$DTYPES"
118
119
- if [[ DTYPES="default" ]]; then
+ if [[ DTYPES == "default" ]]; then
120
if [[ $CHECKPOINT_PATH != *"stories"* && $TARGET_DEVICE == "cuda" ]]; then
121
DTYPES="bfloat16"
122
EXCLUDE_INT8_QUANT=true
@@ -126,6 +126,8 @@ function generate_aoti_model_output() {
126
fi
127
128
129
+ echo "Local after default DTYPES=$DTYPES"
130
+
131
for DTYPE in $DTYPES; do
132
echo ""############### Run inference with AOT Inductor for dtype $DTYPE "###############"
133
echo ""
0 commit comments