# MNN备份 **Repository Path**: MrDreamQ/mnn-backup ## Basic Information - **Project Name**: MNN备份 - **Description**: 仅用于学习与交流 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-04-21 - **Last Updated**: 2022-04-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # MNN个人备份 **仅用作学习与交流!** [MNN Homepage](http://www.mnn.zone) ## 编译安装 ```bash # 获取电脑cpu数目 threads=$(cat /proc/cpuinfo | grep "processor" | wc -l) mkdir build && cd build cmake .. # cmake .. -DMNN_BUILD_CONVERTER=ON # 生成MNN模型转换器 let threads-=1 make -j$threads && sudo make install # 以cpu核心数-1的线程数编译 ```