Skip to content

Commit

Permalink
moving import and referencing test for SelectV2
Browse files Browse the repository at this point in the history
  • Loading branch information
srinidhigoud committed Apr 24, 2021
1 parent 867ae40 commit 3df4763
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python/tvm/relay/frontend/tensorflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
"""TF: Tensorflow frontend."""
import warnings
from collections import defaultdict
from collections import deque

# Numpy support
import numpy as np
Expand Down Expand Up @@ -1778,7 +1779,6 @@ def _impl(inputs, attr, params, mod):
s0 = list(s0.asnumpy().reshape([-1]))
s1 = list(s1.asnumpy().reshape([-1]))
s0_size, s1_size = len(s0), len(s1)
from collections import deque

out = deque([])
for i in range(1, min(s0_size, s1_size) + 1):
Expand Down
2 changes: 1 addition & 1 deletion tests/python/frontend/tensorflow/test_forward.py
Original file line number Diff line number Diff line change
Expand Up @@ -3620,7 +3620,7 @@ def test_forward_logical():


#######################################################################
# Where, Select
# Where, Select, SelectV2
# -------------
def test_forward_where():
""" Where: return elements depending on conditions"""
Expand Down

0 comments on commit 3df4763

Please sign in to comment.