Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Torch] Reduce testing time of LSTM tests #8583

Merged
merged 2 commits into from
Jul 30, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions tests/python/frontend/pytorch/test_lstms.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@
from torch import nn

## Model parameters
model_feature_size = 5
model_hidden_size = 10
model_feature_size = 16
model_hidden_size = 32
model_num_layers = 2
seqs_length = 15
projection_size = 7
batch_size = 3
seqs_length = 2
projection_size = 20
batch_size = 2


def check_torch_version_for_proj_in_lstm():
Expand Down Expand Up @@ -183,7 +183,7 @@ def check_lstm_with_type(
model = None
for batch_first in (True, False):
for use_bias in (True, False):
for rnd_weights in (True, False):
for rnd_weights in [True]: # (True, False):
if lstm_type == "uni":
model = LSTM_Model(
device,
Expand Down Expand Up @@ -277,7 +277,7 @@ def check_lstm_with_type(
c_zeros = np.zeros(input_hidden_shape, dtype=dtype)

tvm_output = None
for format in ("ts", "onnx"):
for format in ["ts"]: # ["ts", "onnx"]:
if format == "ts":
# Use torch.jit.trace to generate a torch.jit.ScriptModule via tracing.
traced_script_module = torch.jit.trace(model, dummy_input).eval()
Expand Down Expand Up @@ -350,13 +350,13 @@ def check_lstm_with_type(
def test_lstms():
for target, dev in tvm.testing.enabled_targets():
check_lstm_with_type("uni", target, dev)
check_lstm_with_type("p", target, dev)
# check_lstm_with_type("p", target, dev)
check_lstm_with_type("s", target, dev)
check_lstm_with_type("b", target, dev)
check_lstm_with_type("bp", target, dev)
check_lstm_with_type("sp", target, dev)
# check_lstm_with_type("bp", target, dev)
# check_lstm_with_type("sp", target, dev)
check_lstm_with_type("sb", target, dev)
check_lstm_with_type("sbp", target, dev)
# check_lstm_with_type("sbp", target, dev)


if __name__ == "__main__":
Expand Down