Commit ede964ec by Hua Committed by Tianqi Chen

[Relay] tflite frontend, keep underline with comments in same length. (#3363)

parent 153417a5
...@@ -340,7 +340,7 @@ def _test_add(data): ...@@ -340,7 +340,7 @@ def _test_add(data):
####################################################################### #######################################################################
# Subtract # Subtract
# --- # --------
def _test_sub(data): def _test_sub(data):
""" One iteration of subtract """ """ One iteration of subtract """
...@@ -354,28 +354,28 @@ def _test_mul(data): ...@@ -354,28 +354,28 @@ def _test_mul(data):
####################################################################### #######################################################################
# Divide # Divide
# --- # ------
def _test_div(data): def _test_div(data):
""" One iteration of divide """ """ One iteration of divide """
return _test_elemwise(math_ops.divide, data) return _test_elemwise(math_ops.divide, data)
####################################################################### #######################################################################
# Power # Power
# --- # -----
def _test_pow(data): def _test_pow(data):
""" One iteration of power """ """ One iteration of power """
return _test_elemwise(math_ops.pow, data) return _test_elemwise(math_ops.pow, data)
####################################################################### #######################################################################
# Maximum # Maximum
# --- # -------
def _test_maximum(data): def _test_maximum(data):
""" One iteration of maximum """ """ One iteration of maximum """
return _test_elemwise(math_ops.maximum, data) return _test_elemwise(math_ops.maximum, data)
####################################################################### #######################################################################
# Minimum # Minimum
# --- # -------
def _test_minimum(data): def _test_minimum(data):
""" One iteration of minimum """ """ One iteration of minimum """
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment