From 6b80fde40e9e6ec59e52cf50cb1d305ecb81a2d0 Mon Sep 17 00:00:00 2001 From: sangoly Date: Thu, 12 Dec 2019 02:13:12 +0000 Subject: [PATCH] [Scripts] make convert_arm_sdot_to_machine_code.py be compatible with python2 test=develop --- lite/tools/convert_arm_sdot_to_machine_code.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lite/tools/convert_arm_sdot_to_machine_code.py b/lite/tools/convert_arm_sdot_to_machine_code.py index 66dc387118..e76b02fac8 100644 --- a/lite/tools/convert_arm_sdot_to_machine_code.py +++ b/lite/tools/convert_arm_sdot_to_machine_code.py @@ -12,6 +12,9 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. + +from __future__ import print_function + import argparse import sys import os -- GitLab