#!python

import argparse

import npu_compiler.rebuild_ckpt.build as build

if __name__ == '__main__':
    parser = argparse.ArgumentParser(prog='gxnpu_rebuild_ckpt', description='Compress the ops data according to the configuration file')
    parser.add_argument('config_filename', help='config file')
    args = parser.parse_args()
    build.run(args.config_filename)
