check_for_lite.py 1.2 KB
Newer Older
J
jiangjiajun 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
import urllib
import sys
from paddle.fluid.framework import Program

ops_h = "https://raw.githubusercontent.com/PaddlePaddle/Paddle-Lite/develop/lite/api/_paddle_use_ops.h"
try:
    fetch = urllib.urlretrieve(ops_h, "./_paddle_use_ops.h")
except:
    fetch = urllib.request.urlretrieve(ops_h, "./_paddle_use_ops.h")

ops = list()
with open("./_paddle_use_ops.h") as f:
    for line in f:
        if "USE_LITE_OP" in line:
            op = line.strip().split('(')[1].split(')')[0]
            ops.append(op)

model_file = sys.argv[1]
with open(model_file, 'rb') as f:
    program = Program.parse_from_string(f.read())

unsupported_ops = set()
for op in program.blocks[0].ops:
    if op.type not in ops:
        unsupported_ops.add(op.type)

nums = len(unsupported_ops)
if len(unsupported_ops) > 0:
    print("========= {} OPs are not supported in Paddle-Lite=========".format(
        nums))
    for op in unsupported_ops:
        print("========= {} ========".format(op))
else:
    print("\n========== Good News! ========")
J
test  
jiangjiajun 已提交
35
    a = 1 + 2 + 3 + 4 + 5 + 1 + 2 + 3 + 4 + 5 + 1 + 2 + 3 + 4 + 5 + 1 + 2 + 3 + 4 + 5 + 1 + 2 + 3 + 4 + 5 + 1 + 2 + 3 + 4 + 5 + 1 + 2 + 3 + 4 + 5
J
jiangjiajun 已提交
36
    print("Good! All ops in this model are supported in Paddle-Lite!\n")