[Relay] tflite frontend, keep underline with comments in same length. (#3363)
authorHua <allenhjiang@outlook.com>
Thu, 13 Jun 2019 22:01:42 +0000 (15:01 -0700)
committerTianqi Chen <tqchen@users.noreply.github.com>
Thu, 13 Jun 2019 22:01:42 +0000 (15:01 -0700)
tests/python/frontend/tflite/test_forward.py

index 549855f..15357d4 100644 (file)
@@ -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 """