Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
Address review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
vandanavk committed Dec 14, 2018
1 parent e4083db commit b01106e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
6 changes: 4 additions & 2 deletions tests/python-pytest/onnx/export/onnx_backend_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@
'test_transpose',
'test_globalmaxpool',
'test_globalaveragepool',
# enabling partial test cases for matmul
'test_matmul',
'test_slice_cpu',
'test_slice_neg',
Expand Down Expand Up @@ -144,8 +143,11 @@
for std_model_test in STANDARD_MODEL:
BACKEND_TESTS.include(std_model_test)

BACKEND_TESTS.exclude('.*broadcast.*')
BACKEND_TESTS.exclude('.*bcast.*')
# Excluding the following tests because expand and logSoftMax are
# not implemented in ONNX export. Enabling test_exp and test_log,
# will include the tests for these operators too, that can lead to
# 'Op not implemented' failures.
BACKEND_TESTS.exclude('.*expand.*')
BACKEND_TESTS.exclude('.*log_softmax.*')
BACKEND_TESTS.exclude('.*logsoftmax.*')
Expand Down
5 changes: 4 additions & 1 deletion tests/python-pytest/onnx/import/mxnet_backend_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,11 @@
for std_model_test in test_cases.STANDARD_MODEL:
BACKEND_TESTS.include(std_model_test)

BACKEND_TESTS.exclude('.*broadcast.*')
BACKEND_TESTS.exclude('.*bcast.*')
# Excluding the following tests because expand is not implemented
# in ONNX import. Enabling test_exp will include the tests for
# this operator too, that can lead to 'Op not implemented' failures.
# logsoftmax tests are temporarily excluded.
BACKEND_TESTS.exclude('.*logsoftmax.*')
BACKEND_TESTS.exclude('.*expand.*')

Expand Down

0 comments on commit b01106e

Please sign in to comment.