diff options
author | bddppq <bai@in.tum.de> | 2018-10-16 22:48:24 -0700 |
---|---|---|
committer | Facebook Github Bot <facebook-github-bot@users.noreply.github.com> | 2018-10-16 22:54:50 -0700 |
commit | 70c527dacdd6ffefe4d0c6bc9179b29fa12a849d (patch) | |
tree | a2499641be9254966f07805f246b8a4a8ca36c80 /.jenkins/caffe2 | |
parent | 034c969f3c41efef75474f08bb09d29e91a20c19 (diff) | |
download | pytorch-70c527dacdd6ffefe4d0c6bc9179b29fa12a849d.tar.gz pytorch-70c527dacdd6ffefe4d0c6bc9179b29fa12a849d.tar.bz2 pytorch-70c527dacdd6ffefe4d0c6bc9179b29fa12a849d.zip |
Re-disable softmax ops tests in ROCM (#12749)
Summary:
They are flaky in master.
ashishfarmer petrex
Pull Request resolved: https://github.com/pytorch/pytorch/pull/12749
Differential Revision: D10420265
Pulled By: bddppq
fbshipit-source-id: cac58efb711941786b10b07ada58e0d59ab1db1d
Diffstat (limited to '.jenkins/caffe2')
-rwxr-xr-x | .jenkins/caffe2/test.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.jenkins/caffe2/test.sh b/.jenkins/caffe2/test.sh index c13a1df3e9..892fd7d55c 100755 --- a/.jenkins/caffe2/test.sh +++ b/.jenkins/caffe2/test.sh @@ -125,6 +125,7 @@ if [[ $BUILD_ENVIRONMENT == *-rocm* ]]; then # Unknown reasons, need to debug rocm_ignore_test+=("--ignore $CAFFE2_PYPATH/python/operator_test/arg_ops_test.py") rocm_ignore_test+=("--ignore $CAFFE2_PYPATH/python/operator_test/piecewise_linear_transform_test.py") + rocm_ignore_test+=("--ignore $CAFFE2_PYPATH/python/operator_test/softmax_ops_test.py") rocm_ignore_test+=("--ignore $CAFFE2_PYPATH/python/operator_test/unique_ops_test.py") # Need to go through roi ops to replace max(...) with fmaxf(...) |