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):
#######################################################################
# Subtract
# ---
# --------
def _test_sub(data):
""" One iteration of subtract """
......@@ -354,28 +354,28 @@ def _test_mul(data):
#######################################################################
# Divide
# ---
# ------
def _test_div(data):
""" One iteration of divide """
return _test_elemwise(math_ops.divide, data)
#######################################################################
# Power
# ---
# -----
def _test_pow(data):
""" One iteration of power """
return _test_elemwise(math_ops.pow, data)
#######################################################################
# Maximum
# ---
# -------
def _test_maximum(data):
""" One iteration of maximum """
return _test_elemwise(math_ops.maximum, data)
#######################################################################
# Minimum
# ---
# -------
def _test_minimum(data):
""" 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