You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -117,6 +131,12 @@ if [[ "$PACKAGE_TYPE" == 'conda' ]]; then
117
131
fi
118
132
fi
119
133
134
+
if [[ "$PACKAGE_TYPE"=='libtorch' ]];then
135
+
echo"For libtorch we only test that the download works"
136
+
echo"The logfile for this run can be found at $log_url"
137
+
exit 0
138
+
fi
139
+
120
140
# Quick smoke test that it works
121
141
echo"Smoke testing imports"
122
142
python -c 'import torch'
@@ -191,8 +211,4 @@ else
191
211
fi
192
212
193
213
# Echo the location of the logs
194
-
if [[ "$(uname)"=='Darwin' ]];then
195
-
echo"The logfile for this run can be found at https://download.pytorch.org/nightly_logs/macos/${DATE:1:4}_${DATE:4:2}_${DATE:6:2}"/${PACKAGE_TYPE}_${DESIRED_PYTHON}_cpu.log"
196
-
else
197
-
echo "The logfile for this run can be found at https://download.pytorch.org/nightly_logs/linux/${DATE:1:4}_${DATE:4:2}_${DATE:6:2}"/${PACKAGE_TYPE}_${DESIRED_PYTHON}_${DESIRED_CUDA}.log"
198
-
fi
214
+
echo"The logfile for this run can be found at $log_url"
0 commit comments