mirror of
https://github.com/pytorch/pytorch.git
synced 2025-11-06 09:17:11 +08:00
Summary: Pull Request resolved: https://github.com/pytorch/pytorch/pull/37983 Previous import was 9fdae4c68960a2d44cd1cc871c74a6a9d469fa1f Included changes: - **[807c62cf](https://github.com/onnx/onnx/commit/807c62cf)**: Training Proposal: Spec Changes and Gradient Operator (#2314) <Wei-Sheng Chin> Test Plan: ci Reviewed By: hl475 Differential Revision: D21441188 fbshipit-source-id: 88b5be5bd479b59bdb45525f5dfe61d787151cdd
128 lines
6.9 KiB
Python
128 lines
6.9 KiB
Python
# @package onnx
|
|
# Module caffe2.python.onnx.tests.onnx_backend_test
|
|
|
|
from __future__ import absolute_import
|
|
from __future__ import division
|
|
from __future__ import print_function
|
|
from __future__ import unicode_literals
|
|
|
|
import os
|
|
|
|
import unittest
|
|
import onnx.backend.test
|
|
|
|
import caffe2.python.onnx.backend as c2
|
|
|
|
from caffe2.python import core, workspace
|
|
core.SetEnginePref({}, {})
|
|
|
|
# This is a pytest magic variable to load extra plugins
|
|
pytest_plugins = 'onnx.backend.test.report',
|
|
|
|
backend_test = onnx.backend.test.BackendTest(c2, __name__)
|
|
|
|
backend_test.exclude(r'(test_hardsigmoid' # Does not support Hardsigmoid.
|
|
'|test_hardmax' # Does not support Hardmax.
|
|
'|test_cast.*FLOAT16.*' # Does not support Cast on Float16.
|
|
'|test_depthtospace.*' # Does not support DepthToSpace.
|
|
'|test_reduce_l1.*' # Does not support ReduceL1.
|
|
'|test_reduce_l2.*' # Does not support ReduceL2.
|
|
'|test_reduce_log_sum.*' # Does not support ReduceLogSum.
|
|
'|test_reduce_prod.*' # Does not support ReduceProd.
|
|
'|test_reduce_sum_square.*' # Does not support ReduceSumSquare
|
|
'|test_det.*' # Does not support Det
|
|
'|test_range.*' # Does not support Range
|
|
'|test_tile.*' # Tile's Caffe2 implementation needs some tweak
|
|
'|test_lstm.*' # Seems LSTM case has some problem
|
|
'|test_simple_rnn.*' # Seems simple RNN case has some problem
|
|
'|test_gru.*' # Seems GRU case has some problem
|
|
'|test_prelu.*' # PRelu is not compliant with ONNX yet
|
|
'|test_operator_repeat.*' # Tile is not compliant with ONNX yet
|
|
'|test_.*pool_.*same.*' # Does not support pool same.
|
|
'|test_.*pool_.*ceil.*' # Does not support pool same.
|
|
'|test_maxpool_with_argmax.*' # MaxPool outputs indices in different format.
|
|
'|test_maxpool.*dilation.*' # MaxPool doesn't support dilation yet.
|
|
'|test_maxpool.*uint8.*' # MaxPool doesn't support uint8 yet.
|
|
'|test_convtranspose.*' # ConvTranspose needs some more complicated translation
|
|
'|test_mvn.*' # MeanVarianceNormalization is experimental and not supported.
|
|
'|test_dynamic_slice.*' # MeanVarianceNormalization is experimental and not supported.
|
|
'|test_eyelike.*' # Needs implementation
|
|
'|test_maxunpool.*' # Needs implementation
|
|
'|test_acosh.*' # Needs implementation
|
|
'|test_asinh.*' # Needs implementation
|
|
'|test_atanh.*' # Needs implementation
|
|
'|test_onehot.*' # Needs implementation
|
|
'|test_scan.*' # Needs implementation
|
|
'|test_isnan.*' # Needs implementation
|
|
'|test_scatter.*' # Should be similar to ScatterAssign
|
|
'|test_constantofshape_int.*' # Needs implementation
|
|
'|test_shrink.*' # Needs implementation
|
|
'|test_strnorm.*' # Needs implementation
|
|
'|test_nonzero.*' # Needs implementation
|
|
'|test_tfidfvectorizer.*' # Needs implementation
|
|
'|test_top_k.*' # opset 10 is not supported yet
|
|
'|test_resize.*' # opset 10 is not supported yet
|
|
'|test_slice.*' # opset 10 is not supported yet
|
|
'|test_.*qlinear.*' # Skip quantized op test
|
|
'|test_.*quantize.*' # Skip quantized op test
|
|
'|test_.*matmulinteger.*' # Skip quantized op test
|
|
'|test_.*convinteger.*' # Skip quantized op test
|
|
'|test_isinf.*' # Needs implementation
|
|
'|test_mod.*' # Needs implementation
|
|
'|test_nonmaxsuppression.*' # Needs implementation
|
|
'|test_reversesequence.*' # Needs implementation
|
|
'|test_roialign.*' # Needs implementation
|
|
'|test_bitshift.*' # Needs implementation
|
|
'|test_round.*' # Needs implementation
|
|
'|test_cumsum.*' # Needs implementation
|
|
'|test_clip.*' # opset 11 is not supported yet
|
|
'|test_gather_elements.*' # opset 11 is not supported yet
|
|
'|test_scatter.*' # opset 11 is not supported yet
|
|
'|test_unique.*' # opset 11 is not supported yet
|
|
'|test_gathernd.*' # opset 11 is not supported yet
|
|
'|test_dropout_random.*' # opset 12 is not supported
|
|
'|test_einsum.*' # opset 12 is not supported
|
|
'|test_.*training.*' # training is not supported
|
|
'|test_.*_loss.*' # training is not supported
|
|
'|test_split_zero_size.*' # unsupported case
|
|
'|test_constantofshape_int_shape_zero.*' # unsupported case
|
|
'|test_constant_pad.*' # 1d pad is not supported
|
|
'|test_edge_pad.*' # 1d pad is not supported
|
|
'|test_reflect_pad.*' # 1d pad is not supported
|
|
'|test_gemm_default_no_bias.*' # no bias is not supported
|
|
'|test_gemm_default_scalar_bias.*' # incorrect type
|
|
'|test_sequence_.*' # type sequence is not supported yet
|
|
'|test_.*negative_ax.*' # negative axis is not supported yet
|
|
'|test_.*negative_ind.*' # negative axis is not supported yet
|
|
'|test_argmax_.*select_last_index.*' # unsupported case
|
|
'|test_argmin_.*select_last_index_.*' # unsupported case
|
|
'|test_.*gradient.*' # no support for gradient op in c2-onnx
|
|
')')
|
|
|
|
# Quick patch to unbreak master CI, is working on the debugging.
|
|
backend_test.exclude('(test_cast_.*'
|
|
'|test_compress_.*'
|
|
'|test_Conv1d_.*cuda'
|
|
'|test_Conv3d_groups_cuda'
|
|
'|test_rnn_seq_length'
|
|
'|test_operator_add.*_cuda'
|
|
'|test_operator_lstm_cuda'
|
|
'|test_operator_rnn.*_cuda'
|
|
'|test_lrn_default_cuda)')
|
|
|
|
# Temporarily skip some ONNX backend tests with broadcasting.
|
|
backend_test.exclude('(test_pow_bcast'
|
|
')')
|
|
|
|
# Skip vgg to speed up CI
|
|
if 'JENKINS_URL' in os.environ:
|
|
backend_test.exclude(r'(test_vgg19|test_vgg)')
|
|
|
|
# import all test cases at global scope to make them visible to python.unittest
|
|
globals().update(backend_test
|
|
.enable_report()
|
|
.test_cases)
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|