├── .gitignore ├── Dockerfile ├── LICENSE ├── Notes ├── README.md ├── angr_env ├── base.py └── requirements.txt ├── binary_samples ├── evkbimxrt1050_glow_cifar10.axf ├── evkbimxrt1050_glow_cifar10_patched_13_14_relu.axf ├── evkbimxrt1050_glow_lenet_mnist_release.axf ├── evkbimxrt1050_glow_lenet_mnist_release_patched.axf ├── evkbimxrt1050_glow_lenet_mnist_release_patched_1_2.axf ├── evkbimxrt1050_glow_lenet_mnist_release_patched_4_5.axf ├── evkbimxrt1050_glow_lenet_mnist_release_patched_4_5_add.axf ├── mnist.dump └── mnist_patched.dump ├── decompiled_code_samples ├── Conv1_Arm_thumb_Glow.c ├── Conv1_Arm_thumb_TVM.c ├── Conv1_x86_Glow.c ├── Conv1_x86_TVM.c ├── Conv2_x86_Glow.c └── README.md ├── decompiler.py ├── dnnpatcher.py ├── mnist.log ├── models └── mnist-8.onnx ├── onnx_builder ├── .ipynb_checkpoints │ └── onnx_builder_playground-checkpoint.ipynb ├── README.md ├── make_abs.py ├── make_argmax.py ├── make_bn.py ├── make_conv.py ├── make_erf.py ├── make_fc.py ├── make_flatten.py ├── make_lrn.py ├── make_lstm.py ├── make_reci.py ├── make_reducemax.py ├── make_rnn.py ├── make_temp.py ├── make_tile.py └── make_trans_conv.py ├── onnx_models ├── mnist.onnx └── resnet.onnx ├── patches ├── README.md ├── patch_1 │ ├── evkbimxrt1050_glow_lenet_mnist_new.axf │ ├── evkbimxrt1050_glow_lenet_mnist_new.axf.patched │ └── patch.py ├── patch_2 │ ├── evkbimxrt1050_glow_lenet_mnist_new.axf │ ├── evkbimxrt1050_glow_lenet_mnist_new.axf.patched │ └── patch.py └── patch_3 │ ├── evkbimxrt1050_glow_cifar10_new.axf │ ├── evkbimxrt1050_glow_cifar10_new.axf.patched │ └── patch.py ├── scripts ├── fmt.sh ├── loc.sh ├── onnx2pbtxt.py ├── onnx2tflite.py ├── onnx_parser.py ├── test.sh ├── test_single.sh └── tflite2onnx.sh ├── src ├── anno.py ├── ast.py ├── ast_bp.py ├── branch_type.py ├── constant.py ├── dbg.py ├── iv.py ├── iv_bp.py ├── iv_dict.py ├── iv_estimate.py ├── iv_identify.py ├── lifted_ast.py ├── lifter.py ├── lifter_helper.py ├── loader.py ├── locals.py ├── locater.py ├── mem_record.py ├── ndarray.py ├── onnx_builder.py ├── op.py ├── register.py ├── simplify.py ├── super_loop.py ├── timeout.py └── utils.py └── tmp ├── Conv.onnx ├── Relu ├── Relu.dump ├── Relu.h ├── Relu.o ├── Relu.onnx ├── Relu.weights.bin ├── Relu.weights.txt ├── main.cpp ├── new_op_type_str.h ├── new_op_type_str.o ├── new_op_type_str.onnx ├── new_op_type_str.weights.bin └── new_op_type_str.weights.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/LICENSE -------------------------------------------------------------------------------- /Notes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/Notes -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/README.md -------------------------------------------------------------------------------- /angr_env/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/angr_env/base.py -------------------------------------------------------------------------------- /angr_env/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/angr_env/requirements.txt -------------------------------------------------------------------------------- /binary_samples/evkbimxrt1050_glow_cifar10.axf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/binary_samples/evkbimxrt1050_glow_cifar10.axf -------------------------------------------------------------------------------- /binary_samples/evkbimxrt1050_glow_cifar10_patched_13_14_relu.axf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/binary_samples/evkbimxrt1050_glow_cifar10_patched_13_14_relu.axf -------------------------------------------------------------------------------- /binary_samples/evkbimxrt1050_glow_lenet_mnist_release.axf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/binary_samples/evkbimxrt1050_glow_lenet_mnist_release.axf -------------------------------------------------------------------------------- /binary_samples/evkbimxrt1050_glow_lenet_mnist_release_patched.axf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/binary_samples/evkbimxrt1050_glow_lenet_mnist_release_patched.axf -------------------------------------------------------------------------------- /binary_samples/evkbimxrt1050_glow_lenet_mnist_release_patched_1_2.axf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/binary_samples/evkbimxrt1050_glow_lenet_mnist_release_patched_1_2.axf -------------------------------------------------------------------------------- /binary_samples/evkbimxrt1050_glow_lenet_mnist_release_patched_4_5.axf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/binary_samples/evkbimxrt1050_glow_lenet_mnist_release_patched_4_5.axf -------------------------------------------------------------------------------- /binary_samples/evkbimxrt1050_glow_lenet_mnist_release_patched_4_5_add.axf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/binary_samples/evkbimxrt1050_glow_lenet_mnist_release_patched_4_5_add.axf -------------------------------------------------------------------------------- /binary_samples/mnist.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/binary_samples/mnist.dump -------------------------------------------------------------------------------- /binary_samples/mnist_patched.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/binary_samples/mnist_patched.dump -------------------------------------------------------------------------------- /decompiled_code_samples/Conv1_Arm_thumb_Glow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/decompiled_code_samples/Conv1_Arm_thumb_Glow.c -------------------------------------------------------------------------------- /decompiled_code_samples/Conv1_Arm_thumb_TVM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/decompiled_code_samples/Conv1_Arm_thumb_TVM.c -------------------------------------------------------------------------------- /decompiled_code_samples/Conv1_x86_Glow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/decompiled_code_samples/Conv1_x86_Glow.c -------------------------------------------------------------------------------- /decompiled_code_samples/Conv1_x86_TVM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/decompiled_code_samples/Conv1_x86_TVM.c -------------------------------------------------------------------------------- /decompiled_code_samples/Conv2_x86_Glow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/decompiled_code_samples/Conv2_x86_Glow.c -------------------------------------------------------------------------------- /decompiled_code_samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/decompiled_code_samples/README.md -------------------------------------------------------------------------------- /decompiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/decompiler.py -------------------------------------------------------------------------------- /dnnpatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/dnnpatcher.py -------------------------------------------------------------------------------- /mnist.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/mnist.log -------------------------------------------------------------------------------- /models/mnist-8.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/models/mnist-8.onnx -------------------------------------------------------------------------------- /onnx_builder/.ipynb_checkpoints/onnx_builder_playground-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/onnx_builder/.ipynb_checkpoints/onnx_builder_playground-checkpoint.ipynb -------------------------------------------------------------------------------- /onnx_builder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/onnx_builder/README.md -------------------------------------------------------------------------------- /onnx_builder/make_abs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/onnx_builder/make_abs.py -------------------------------------------------------------------------------- /onnx_builder/make_argmax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/onnx_builder/make_argmax.py -------------------------------------------------------------------------------- /onnx_builder/make_bn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/onnx_builder/make_bn.py -------------------------------------------------------------------------------- /onnx_builder/make_conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/onnx_builder/make_conv.py -------------------------------------------------------------------------------- /onnx_builder/make_erf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/onnx_builder/make_erf.py -------------------------------------------------------------------------------- /onnx_builder/make_fc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/onnx_builder/make_fc.py -------------------------------------------------------------------------------- /onnx_builder/make_flatten.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/onnx_builder/make_flatten.py -------------------------------------------------------------------------------- /onnx_builder/make_lrn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/onnx_builder/make_lrn.py -------------------------------------------------------------------------------- /onnx_builder/make_lstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/onnx_builder/make_lstm.py -------------------------------------------------------------------------------- /onnx_builder/make_reci.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/onnx_builder/make_reci.py -------------------------------------------------------------------------------- /onnx_builder/make_reducemax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/onnx_builder/make_reducemax.py -------------------------------------------------------------------------------- /onnx_builder/make_rnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/onnx_builder/make_rnn.py -------------------------------------------------------------------------------- /onnx_builder/make_temp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/onnx_builder/make_temp.py -------------------------------------------------------------------------------- /onnx_builder/make_tile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/onnx_builder/make_tile.py -------------------------------------------------------------------------------- /onnx_builder/make_trans_conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/onnx_builder/make_trans_conv.py -------------------------------------------------------------------------------- /onnx_models/mnist.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/onnx_models/mnist.onnx -------------------------------------------------------------------------------- /onnx_models/resnet.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/onnx_models/resnet.onnx -------------------------------------------------------------------------------- /patches/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/patches/README.md -------------------------------------------------------------------------------- /patches/patch_1/evkbimxrt1050_glow_lenet_mnist_new.axf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/patches/patch_1/evkbimxrt1050_glow_lenet_mnist_new.axf -------------------------------------------------------------------------------- /patches/patch_1/evkbimxrt1050_glow_lenet_mnist_new.axf.patched: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/patches/patch_1/evkbimxrt1050_glow_lenet_mnist_new.axf.patched -------------------------------------------------------------------------------- /patches/patch_1/patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/patches/patch_1/patch.py -------------------------------------------------------------------------------- /patches/patch_2/evkbimxrt1050_glow_lenet_mnist_new.axf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/patches/patch_2/evkbimxrt1050_glow_lenet_mnist_new.axf -------------------------------------------------------------------------------- /patches/patch_2/evkbimxrt1050_glow_lenet_mnist_new.axf.patched: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/patches/patch_2/evkbimxrt1050_glow_lenet_mnist_new.axf.patched -------------------------------------------------------------------------------- /patches/patch_2/patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/patches/patch_2/patch.py -------------------------------------------------------------------------------- /patches/patch_3/evkbimxrt1050_glow_cifar10_new.axf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/patches/patch_3/evkbimxrt1050_glow_cifar10_new.axf -------------------------------------------------------------------------------- /patches/patch_3/evkbimxrt1050_glow_cifar10_new.axf.patched: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/patches/patch_3/evkbimxrt1050_glow_cifar10_new.axf.patched -------------------------------------------------------------------------------- /patches/patch_3/patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/patches/patch_3/patch.py -------------------------------------------------------------------------------- /scripts/fmt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/scripts/fmt.sh -------------------------------------------------------------------------------- /scripts/loc.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | find . -name '*.py' | xargs wc -l 4 | 5 | -------------------------------------------------------------------------------- /scripts/onnx2pbtxt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/scripts/onnx2pbtxt.py -------------------------------------------------------------------------------- /scripts/onnx2tflite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/scripts/onnx2tflite.py -------------------------------------------------------------------------------- /scripts/onnx_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/scripts/onnx_parser.py -------------------------------------------------------------------------------- /scripts/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/scripts/test.sh -------------------------------------------------------------------------------- /scripts/test_single.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/scripts/test_single.sh -------------------------------------------------------------------------------- /scripts/tflite2onnx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/scripts/tflite2onnx.sh -------------------------------------------------------------------------------- /src/anno.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/src/anno.py -------------------------------------------------------------------------------- /src/ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/src/ast.py -------------------------------------------------------------------------------- /src/ast_bp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/src/ast_bp.py -------------------------------------------------------------------------------- /src/branch_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/src/branch_type.py -------------------------------------------------------------------------------- /src/constant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/src/constant.py -------------------------------------------------------------------------------- /src/dbg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/src/dbg.py -------------------------------------------------------------------------------- /src/iv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/src/iv.py -------------------------------------------------------------------------------- /src/iv_bp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/src/iv_bp.py -------------------------------------------------------------------------------- /src/iv_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/src/iv_dict.py -------------------------------------------------------------------------------- /src/iv_estimate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/src/iv_estimate.py -------------------------------------------------------------------------------- /src/iv_identify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/src/iv_identify.py -------------------------------------------------------------------------------- /src/lifted_ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/src/lifted_ast.py -------------------------------------------------------------------------------- /src/lifter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/src/lifter.py -------------------------------------------------------------------------------- /src/lifter_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/src/lifter_helper.py -------------------------------------------------------------------------------- /src/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/src/loader.py -------------------------------------------------------------------------------- /src/locals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/src/locals.py -------------------------------------------------------------------------------- /src/locater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/src/locater.py -------------------------------------------------------------------------------- /src/mem_record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/src/mem_record.py -------------------------------------------------------------------------------- /src/ndarray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/src/ndarray.py -------------------------------------------------------------------------------- /src/onnx_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/src/onnx_builder.py -------------------------------------------------------------------------------- /src/op.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/src/op.py -------------------------------------------------------------------------------- /src/register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/src/register.py -------------------------------------------------------------------------------- /src/simplify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/src/simplify.py -------------------------------------------------------------------------------- /src/super_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/src/super_loop.py -------------------------------------------------------------------------------- /src/timeout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/src/timeout.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/src/utils.py -------------------------------------------------------------------------------- /tmp/Conv.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/tmp/Conv.onnx -------------------------------------------------------------------------------- /tmp/Relu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/tmp/Relu -------------------------------------------------------------------------------- /tmp/Relu.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/tmp/Relu.dump -------------------------------------------------------------------------------- /tmp/Relu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/tmp/Relu.h -------------------------------------------------------------------------------- /tmp/Relu.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/tmp/Relu.o -------------------------------------------------------------------------------- /tmp/Relu.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/tmp/Relu.onnx -------------------------------------------------------------------------------- /tmp/Relu.weights.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tmp/Relu.weights.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tmp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/tmp/main.cpp -------------------------------------------------------------------------------- /tmp/new_op_type_str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/tmp/new_op_type_str.h -------------------------------------------------------------------------------- /tmp/new_op_type_str.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/tmp/new_op_type_str.o -------------------------------------------------------------------------------- /tmp/new_op_type_str.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purseclab/DnD/HEAD/tmp/new_op_type_str.onnx -------------------------------------------------------------------------------- /tmp/new_op_type_str.weights.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tmp/new_op_type_str.weights.txt: -------------------------------------------------------------------------------- 1 | 2 | --------------------------------------------------------------------------------