├── .clang-format ├── .github └── workflows │ └── xmake.yml ├── .gitignore ├── .gitmodules ├── 3rdparty └── xmake.lua ├── LICENSE ├── README.md ├── bench ├── bench_main.cpp └── bench_yolo.cpp ├── imgs ├── .gitignore ├── 31.jpg ├── KuiperInfer.png ├── bus.jpg ├── car.jpg ├── logo.jpg ├── result_31.jpg ├── result_bus.jpg ├── result_car.jpg ├── result_zidane.jpg └── zidane.jpg ├── include ├── eigen_helper.h ├── engine.h ├── tensor.h └── types.h ├── python ├── pybind11_main.cpp ├── setup.py.in └── simpleinfer │ └── __init__.py ├── src ├── context.cpp ├── context.h ├── engine.cpp ├── engine_impl.cpp ├── engine_impl.h ├── layer.cpp ├── layer.h ├── layer │ ├── adaptive_avg_pool_2d.cpp │ ├── adaptive_avg_pool_2d.h │ ├── batch_norm_2d.cpp │ ├── batch_norm_2d.h │ ├── binary_op.cpp │ ├── binary_op.h │ ├── cat.cpp │ ├── cat.h │ ├── conv_2d.cpp │ ├── conv_2d.h │ ├── flatten.cpp │ ├── flatten.h │ ├── halide │ │ ├── halide_upsample_nearest.cc │ │ └── xmake.lua │ ├── hard_sigmoid.cpp │ ├── hard_sigmoid.h │ ├── hard_swish.cpp │ ├── hard_swish.h │ ├── linear.cpp │ ├── linear.h │ ├── max_pool_2d.cpp │ ├── max_pool_2d.h │ ├── relu.cpp │ ├── relu.h │ ├── sigmoid.cpp │ ├── sigmoid.h │ ├── silu.cpp │ ├── silu.h │ ├── simd │ │ ├── binary.cpp │ │ ├── binary.h │ │ ├── gemm.cpp │ │ ├── gemm.h │ │ ├── parallel.h │ │ ├── winograd_helper.cpp │ │ └── winograd_helper.h │ ├── upsample.cpp │ ├── upsample.h │ ├── yolo_detect.cpp │ └── yolo_detect.h ├── layer_registry.cpp ├── layer_registry.h ├── logger.cpp ├── logger.h ├── pipeline_node.cpp ├── pipeline_node.h ├── pnnx │ ├── expand_expression.cpp │ ├── expand_expression.h │ ├── ir.cpp │ ├── ir.h │ ├── pnnx_helper.cpp │ ├── pnnx_helper.h │ ├── storezip.cpp │ └── storezip.h ├── tensor.cpp ├── tensor_node.h └── types.cpp ├── test ├── common.h ├── test_3rdparty │ ├── test_broadcast.cpp │ ├── test_eigen.cpp │ ├── test_gemm.cpp │ └── test_im2col.cpp ├── test_classify │ └── test_classify.cpp ├── test_engine │ └── test_engine.cpp ├── test_highway │ └── test_highway.cpp ├── test_layer │ ├── test_adaptive_avg_pool_2d.cpp │ ├── test_batch_norm_2d.cpp │ ├── test_binary_op.cpp │ ├── test_cat.cpp │ ├── test_conv_2d.cpp │ ├── test_flatten.cpp │ ├── test_hard_sigmoid.cpp │ ├── test_hard_swish.cpp │ ├── test_linear.cpp │ ├── test_max_pool_2d.cpp │ ├── test_relu.cpp │ ├── test_sigmoid.cpp │ ├── test_silu.cpp │ ├── test_upsample.cpp │ └── test_winograd.cpp ├── test_main.cpp ├── test_pnnx │ └── test_pnnx_ir.cpp ├── test_python │ └── test_model.py └── test_yolo │ ├── test_yolo.cpp │ └── test_yolo2.cpp └── xmake.lua /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/xmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/.github/workflows/xmake.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/ 2 | .xmake/ 3 | build/ 4 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/.gitmodules -------------------------------------------------------------------------------- /3rdparty/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/3rdparty/xmake.lua -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/README.md -------------------------------------------------------------------------------- /bench/bench_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/bench/bench_main.cpp -------------------------------------------------------------------------------- /bench/bench_yolo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/bench/bench_yolo.cpp -------------------------------------------------------------------------------- /imgs/.gitignore: -------------------------------------------------------------------------------- 1 | yolo_result_* 2 | -------------------------------------------------------------------------------- /imgs/31.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/imgs/31.jpg -------------------------------------------------------------------------------- /imgs/KuiperInfer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/imgs/KuiperInfer.png -------------------------------------------------------------------------------- /imgs/bus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/imgs/bus.jpg -------------------------------------------------------------------------------- /imgs/car.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/imgs/car.jpg -------------------------------------------------------------------------------- /imgs/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/imgs/logo.jpg -------------------------------------------------------------------------------- /imgs/result_31.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/imgs/result_31.jpg -------------------------------------------------------------------------------- /imgs/result_bus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/imgs/result_bus.jpg -------------------------------------------------------------------------------- /imgs/result_car.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/imgs/result_car.jpg -------------------------------------------------------------------------------- /imgs/result_zidane.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/imgs/result_zidane.jpg -------------------------------------------------------------------------------- /imgs/zidane.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/imgs/zidane.jpg -------------------------------------------------------------------------------- /include/eigen_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/include/eigen_helper.h -------------------------------------------------------------------------------- /include/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/include/engine.h -------------------------------------------------------------------------------- /include/tensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/include/tensor.h -------------------------------------------------------------------------------- /include/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/include/types.h -------------------------------------------------------------------------------- /python/pybind11_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/python/pybind11_main.cpp -------------------------------------------------------------------------------- /python/setup.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/python/setup.py.in -------------------------------------------------------------------------------- /python/simpleinfer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/python/simpleinfer/__init__.py -------------------------------------------------------------------------------- /src/context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/src/context.cpp -------------------------------------------------------------------------------- /src/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/src/context.h -------------------------------------------------------------------------------- /src/engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/src/engine.cpp -------------------------------------------------------------------------------- /src/engine_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/src/engine_impl.cpp -------------------------------------------------------------------------------- /src/engine_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/src/engine_impl.h -------------------------------------------------------------------------------- /src/layer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/src/layer.cpp -------------------------------------------------------------------------------- /src/layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/src/layer.h -------------------------------------------------------------------------------- /src/layer/adaptive_avg_pool_2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/src/layer/adaptive_avg_pool_2d.cpp -------------------------------------------------------------------------------- /src/layer/adaptive_avg_pool_2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/src/layer/adaptive_avg_pool_2d.h -------------------------------------------------------------------------------- /src/layer/batch_norm_2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/src/layer/batch_norm_2d.cpp -------------------------------------------------------------------------------- /src/layer/batch_norm_2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/src/layer/batch_norm_2d.h -------------------------------------------------------------------------------- /src/layer/binary_op.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/src/layer/binary_op.cpp -------------------------------------------------------------------------------- /src/layer/binary_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/src/layer/binary_op.h -------------------------------------------------------------------------------- /src/layer/cat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/src/layer/cat.cpp -------------------------------------------------------------------------------- /src/layer/cat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/src/layer/cat.h -------------------------------------------------------------------------------- /src/layer/conv_2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/src/layer/conv_2d.cpp -------------------------------------------------------------------------------- /src/layer/conv_2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/src/layer/conv_2d.h -------------------------------------------------------------------------------- /src/layer/flatten.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/src/layer/flatten.cpp -------------------------------------------------------------------------------- /src/layer/flatten.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/src/layer/flatten.h -------------------------------------------------------------------------------- /src/layer/halide/halide_upsample_nearest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/src/layer/halide/halide_upsample_nearest.cc -------------------------------------------------------------------------------- /src/layer/halide/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/src/layer/halide/xmake.lua -------------------------------------------------------------------------------- /src/layer/hard_sigmoid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/src/layer/hard_sigmoid.cpp -------------------------------------------------------------------------------- /src/layer/hard_sigmoid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/src/layer/hard_sigmoid.h -------------------------------------------------------------------------------- /src/layer/hard_swish.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/src/layer/hard_swish.cpp -------------------------------------------------------------------------------- /src/layer/hard_swish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/src/layer/hard_swish.h -------------------------------------------------------------------------------- /src/layer/linear.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/src/layer/linear.cpp -------------------------------------------------------------------------------- /src/layer/linear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/src/layer/linear.h -------------------------------------------------------------------------------- /src/layer/max_pool_2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/src/layer/max_pool_2d.cpp -------------------------------------------------------------------------------- /src/layer/max_pool_2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/src/layer/max_pool_2d.h -------------------------------------------------------------------------------- /src/layer/relu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/src/layer/relu.cpp -------------------------------------------------------------------------------- /src/layer/relu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/src/layer/relu.h -------------------------------------------------------------------------------- /src/layer/sigmoid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/src/layer/sigmoid.cpp -------------------------------------------------------------------------------- /src/layer/sigmoid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/src/layer/sigmoid.h -------------------------------------------------------------------------------- /src/layer/silu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/src/layer/silu.cpp -------------------------------------------------------------------------------- /src/layer/silu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/src/layer/silu.h -------------------------------------------------------------------------------- /src/layer/simd/binary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/src/layer/simd/binary.cpp -------------------------------------------------------------------------------- /src/layer/simd/binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/src/layer/simd/binary.h -------------------------------------------------------------------------------- /src/layer/simd/gemm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/src/layer/simd/gemm.cpp -------------------------------------------------------------------------------- /src/layer/simd/gemm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/src/layer/simd/gemm.h -------------------------------------------------------------------------------- /src/layer/simd/parallel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/src/layer/simd/parallel.h -------------------------------------------------------------------------------- /src/layer/simd/winograd_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/src/layer/simd/winograd_helper.cpp -------------------------------------------------------------------------------- /src/layer/simd/winograd_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/src/layer/simd/winograd_helper.h -------------------------------------------------------------------------------- /src/layer/upsample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/src/layer/upsample.cpp -------------------------------------------------------------------------------- /src/layer/upsample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/src/layer/upsample.h -------------------------------------------------------------------------------- /src/layer/yolo_detect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/src/layer/yolo_detect.cpp -------------------------------------------------------------------------------- /src/layer/yolo_detect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/src/layer/yolo_detect.h -------------------------------------------------------------------------------- /src/layer_registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/src/layer_registry.cpp -------------------------------------------------------------------------------- /src/layer_registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/src/layer_registry.h -------------------------------------------------------------------------------- /src/logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/src/logger.cpp -------------------------------------------------------------------------------- /src/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/src/logger.h -------------------------------------------------------------------------------- /src/pipeline_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/src/pipeline_node.cpp -------------------------------------------------------------------------------- /src/pipeline_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/src/pipeline_node.h -------------------------------------------------------------------------------- /src/pnnx/expand_expression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/src/pnnx/expand_expression.cpp -------------------------------------------------------------------------------- /src/pnnx/expand_expression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/src/pnnx/expand_expression.h -------------------------------------------------------------------------------- /src/pnnx/ir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/src/pnnx/ir.cpp -------------------------------------------------------------------------------- /src/pnnx/ir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/src/pnnx/ir.h -------------------------------------------------------------------------------- /src/pnnx/pnnx_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/src/pnnx/pnnx_helper.cpp -------------------------------------------------------------------------------- /src/pnnx/pnnx_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/src/pnnx/pnnx_helper.h -------------------------------------------------------------------------------- /src/pnnx/storezip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/src/pnnx/storezip.cpp -------------------------------------------------------------------------------- /src/pnnx/storezip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/src/pnnx/storezip.h -------------------------------------------------------------------------------- /src/tensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/src/tensor.cpp -------------------------------------------------------------------------------- /src/tensor_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/src/tensor_node.h -------------------------------------------------------------------------------- /src/types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/src/types.cpp -------------------------------------------------------------------------------- /test/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/test/common.h -------------------------------------------------------------------------------- /test/test_3rdparty/test_broadcast.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/test/test_3rdparty/test_broadcast.cpp -------------------------------------------------------------------------------- /test/test_3rdparty/test_eigen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/test/test_3rdparty/test_eigen.cpp -------------------------------------------------------------------------------- /test/test_3rdparty/test_gemm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/test/test_3rdparty/test_gemm.cpp -------------------------------------------------------------------------------- /test/test_3rdparty/test_im2col.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/test/test_3rdparty/test_im2col.cpp -------------------------------------------------------------------------------- /test/test_classify/test_classify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/test/test_classify/test_classify.cpp -------------------------------------------------------------------------------- /test/test_engine/test_engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/test/test_engine/test_engine.cpp -------------------------------------------------------------------------------- /test/test_highway/test_highway.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/test/test_highway/test_highway.cpp -------------------------------------------------------------------------------- /test/test_layer/test_adaptive_avg_pool_2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/test/test_layer/test_adaptive_avg_pool_2d.cpp -------------------------------------------------------------------------------- /test/test_layer/test_batch_norm_2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/test/test_layer/test_batch_norm_2d.cpp -------------------------------------------------------------------------------- /test/test_layer/test_binary_op.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/test/test_layer/test_binary_op.cpp -------------------------------------------------------------------------------- /test/test_layer/test_cat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/test/test_layer/test_cat.cpp -------------------------------------------------------------------------------- /test/test_layer/test_conv_2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/test/test_layer/test_conv_2d.cpp -------------------------------------------------------------------------------- /test/test_layer/test_flatten.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/test/test_layer/test_flatten.cpp -------------------------------------------------------------------------------- /test/test_layer/test_hard_sigmoid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/test/test_layer/test_hard_sigmoid.cpp -------------------------------------------------------------------------------- /test/test_layer/test_hard_swish.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/test/test_layer/test_hard_swish.cpp -------------------------------------------------------------------------------- /test/test_layer/test_linear.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/test/test_layer/test_linear.cpp -------------------------------------------------------------------------------- /test/test_layer/test_max_pool_2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/test/test_layer/test_max_pool_2d.cpp -------------------------------------------------------------------------------- /test/test_layer/test_relu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/test/test_layer/test_relu.cpp -------------------------------------------------------------------------------- /test/test_layer/test_sigmoid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/test/test_layer/test_sigmoid.cpp -------------------------------------------------------------------------------- /test/test_layer/test_silu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/test/test_layer/test_silu.cpp -------------------------------------------------------------------------------- /test/test_layer/test_upsample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/test/test_layer/test_upsample.cpp -------------------------------------------------------------------------------- /test/test_layer/test_winograd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/test/test_layer/test_winograd.cpp -------------------------------------------------------------------------------- /test/test_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/test/test_main.cpp -------------------------------------------------------------------------------- /test/test_pnnx/test_pnnx_ir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/test/test_pnnx/test_pnnx_ir.cpp -------------------------------------------------------------------------------- /test/test_python/test_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/test/test_python/test_model.py -------------------------------------------------------------------------------- /test/test_yolo/test_yolo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/test/test_yolo/test_yolo.cpp -------------------------------------------------------------------------------- /test/test_yolo/test_yolo2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/test/test_yolo/test_yolo2.cpp -------------------------------------------------------------------------------- /xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpye/SimpleInfer/HEAD/xmake.lua --------------------------------------------------------------------------------