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

Commit

Permalink
Review fix
Browse files Browse the repository at this point in the history
  • Loading branch information
PawelGlomski-Intel committed May 11, 2021
1 parent 665356a commit c9ddd2f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/python/mkl/test_mkldnn.py
Original file line number Diff line number Diff line change
Expand Up @@ -481,8 +481,9 @@ def check_Deconvolution_training(stype):
elif np.array(shape).shape[0] == 4:
test = mx.symbol.Deconvolution(data=data, kernel=(3, 3), stride=(2, 2), num_filter=4)
weight_tmp = np.random.normal(-0.1, 0.1, size=(3, 4, 3, 3))
# not testing stype fallback, as 3D deconvolution is not natively supported yet
elif np.array(shape).shape[0] == 5 and stype == "default":
# Unable to test fallback to native implementation for non-default storage types
# as 3D deconvolution is not natively supported
test = mx.symbol.Deconvolution(data=data, kernel=(3,3,3), stride=(2,2,2), num_filter=4)
weight_tmp = np.random.normal(-0.1, 0.1, size=(3, 4, 3, 3, 3))
else:
Expand Down

0 comments on commit c9ddd2f

Please sign in to comment.