Skip to content

Commit

Permalink
ensure all args fp
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewZhaoLuo committed Jun 26, 2021
1 parent ccb9e4b commit f1ce2bb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/python/frontend/onnx/test_forward.py
Original file line number Diff line number Diff line change
Expand Up @@ -3367,8 +3367,8 @@ def test_lstm():
hidden_size=32,
use_bias=False,
activations=["HardSigmoid", "LeakyRelu", "Tanh"] * directions,
alphas=[2.0, 0.5, 0] * directions,
betas=[0.3, 0, 0] * directions,
alphas=[2.0, 0.5, 0.0] * directions,
betas=[0.3, 0.0, 0.0] * directions,
rnn_type="LSTM",
directions=directions,
)
Expand All @@ -3381,7 +3381,7 @@ def test_lstm():
use_bias=False,
activations=["HardSigmoid", "LeakyRelu", "Affine"] * directions,
alphas=[2.0, 0.5, 0.8] * directions,
betas=[0.3, 0.1, 0] * directions,
betas=[0.3, 0.1, 0.0] * directions,
rnn_type="LSTM",
directions=directions,
)
Expand Down Expand Up @@ -3497,7 +3497,7 @@ def test_gru():
use_bias=False,
activations=["HardSigmoid", "LeakyRelu"] * directions,
alphas=[2.0, 0.5] * directions,
betas=[0.3, 0] * directions,
betas=[0.3, 0.0] * directions,
rnn_type="GRU",
directions=directions,
)
Expand Down

0 comments on commit f1ce2bb

Please sign in to comment.