• 本站会放置Google广告用于维持域名以及网站服务器费用。

  • 问题反馈可发送邮件到stubbornhuang@qq.com

  • 计算机图形学与计算几何经典必备书单整理,下载链接可参考:https://www.stubbornhuang.com/1256/

  • 本站由于前段时间遭受到大量临时和国外邮箱注册,所以对可注册的邮箱类型进行了限制!

  • 在本站开通年度VIP,无限制下载本站资源和阅读本站文章

  • 欢迎大家交换友链,可在https://www.stubbornhuang.com/申请友情链接进行友链交换申请!

  • 工资「喂饱肚子」,副业「养活灵魂」!

  • 如果觉得本站的内容有帮助,可以考虑打赏博主哦!

  • 感谢大家访问本站,希望本站的内容可以帮助到大家!

Linux – 编译安装OnnxRuntime

Linux运维 发布于2023-12-20 阅读 3,819次 0次评论 0次点赞 本文共5030个字,阅读需要13分钟。

1 拉取源码

使用以下命令拉取源码,这里以版本1.16.3为例

# clone指定分支 发布版1.16.3
git clone --depth=1 --branch v1.16.3 https://github.com.cnpmjs.org/microsoft/onnxruntime.git

# 拉取子项目
git submodule update --init --recursive

2 编译安装OnnxRuntime

2.1 解读编译流程

拉取完成之后,在参考底下有一个build.sh文件,

#!/bin/bash
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.

# Get directory this script is in
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
OS=$(uname -s)

if [ "$OS" = "Darwin" ]; then
    DIR_OS="MacOS"
else
    DIR_OS="Linux"
fi

if [[ "$*" == *"--ios"* ]]; then
    DIR_OS="iOS"
elif [[ "$*" == *"--android"* ]]; then
    DIR_OS="Android"
fi

python3 $DIR/tools/ci_build/build.py --build_dir $DIR/build/$DIR_OS "$@"

这个build.sh脚本干的事情只是判断操作系统类型以及获取当前目录,然后把编译参数"$@"原封不动地传给tools/ci_build/build.py这个脚本,我们再来看build.py里面的内容

# Main arguments
    parser.add_argument("--build_dir", required=True, help="Path to the build directory.")
    parser.add_argument(
        "--config",
        nargs="+",
        default=["Debug"],
        choices=["Debug", "MinSizeRel", "Release", "RelWithDebInfo"],
        help="Configuration(s) to build.",
    )
    parser.add_argument("--update", action="store_true", help="Update makefiles.")
    parser.add_argument("--build", action="store_true", help="Build.")
    parser.add_argument(
        "--clean", action="store_true", help="Run 'cmake --build --target clean' for the selected config/s."
    )
    parser.add_argument(
        "--parallel",
        nargs="?",
        const="0",
        default="1",
        type=int,
        help="Use parallel build. The optional value specifies the maximum number of parallel jobs. "
        "If the optional value is 0 or unspecified, it is interpreted as the number of CPUs.",
    )
    ......

这个脚本里面内置了一些命令行参数,我们在使用编译参数时可以重点查看每个参数的help信息就可以知道每个参数的作用。

解析完参数之后通过generate_build_tree这个函数构建cmake项目信息,然后通过build_targets函数构建项目。

2.2 编译

我们只需要执行build.sh这个脚本,并传入相关的参数就可以编译OnnxRuntime

cpu版本示例编译命令

./build.sh --skip_tests --config Release --build_shared_lib --parallel
./build.sh --skip_tests --config RelWithDebInfo --build_shared_lib --parallel
./build.sh --skip_tests --config MinSizeRel --build_shared_lib --parallel

cuda tensorrt版本示例编译命令

./build.sh --build_shared_lib --config Release --use_cuda --cudnn_home /usr/local/cuda/ --cuda_home /usr/local/cuda  --use_tensorrt --tensorrt_home /usr/lib/x86_64-linux-gnu/

编译完成并且成功之后会出现以下信息:

[100%] Building CXX object CMakeFiles/onnxruntime_test_all.dir/home/huangwang/third/onnxruntime/onnxruntime_build/onnxruntime/onnxruntime/test/providers/cpu/tensor/upsample_op_test.cc.o
[100%] Building CXX object CMakeFiles/onnxruntime_test_all.dir/home/huangwang/third/onnxruntime/onnxruntime_build/onnxruntime/onnxruntime/test/providers/cpu/tensor/where_op_test.cc.o
[100%] Building CXX object CMakeFiles/onnxruntime_test_all.dir/home/huangwang/third/onnxruntime/onnxruntime_build/onnxruntime/onnxruntime/test/providers/internal_testing/internal_testing_ep_static_kernels.cc.o
[100%] Building CXX object CMakeFiles/onnxruntime_test_all.dir/home/huangwang/third/onnxruntime/onnxruntime_build/onnxruntime/onnxruntime/test/providers/internal_testing/internal_testing_execution_provider.cc.o
[100%] Building CXX object CMakeFiles/onnxruntime_test_all.dir/home/huangwang/third/onnxruntime/onnxruntime_build/onnxruntime/onnxruntime/test/providers/internal_testing/internal_testing_partitioning_tests.cc.o
[100%] Building CXX object CMakeFiles/onnxruntime_test_all.dir/home/huangwang/third/onnxruntime/onnxruntime_build/onnxruntime/onnxruntime/test/providers/internal_testing/internal_testing_tests.cc.o
[100%] Building CXX object CMakeFiles/onnxruntime_test_all.dir/home/huangwang/third/onnxruntime/onnxruntime_build/onnxruntime/onnxruntime/test/quantization/quantization_test.cc.o
[100%] Building CXX object CMakeFiles/onnxruntime_test_all.dir/home/huangwang/third/onnxruntime/onnxruntime_build/onnxruntime/onnxruntime/test/unittest_main/test_main.cc.o
[100%] Linking CXX executable onnxruntime_test_all
[100%] Built target onnxruntime_test_all
2023-12-20 01:47:03,385 util.run [DEBUG] - Subprocess completed. Return code: 0
2023-12-20 01:47:03,386 build [INFO] - Build complete

2.3 安装

编译完成之后,进入./build/Linux/Release目录安装即可,执行以下命令

cd ./build/Linux/Release
make install

安装完成之后会出现以下信息:

Install the project...
-- Install configuration: "Release"
-- Installing: /usr/local/include/onnxruntime/cpu_provider_factory.h
-- Installing: /usr/local/lib/libonnxruntime_providers_shared.so
-- Installing: /usr/local/lib/libonnxruntime.so.1.16.3
-- Installing: /usr/local/lib/libonnxruntime.so
-- Installing: /usr/local/include/onnxruntime/onnxruntime_c_api.h
-- Installing: /usr/local/include/onnxruntime/onnxruntime_cxx_api.h
-- Installing: /usr/local/include/onnxruntime/onnxruntime_float16.h
-- Installing: /usr/local/include/onnxruntime/onnxruntime_cxx_inline.h
-- Installing: /usr/local/include/onnxruntime/onnxruntime_session_options_config_keys.h
-- Installing: /usr/local/include/onnxruntime/onnxruntime_run_options_config_keys.h
-- Installing: /usr/local/bin/onnx_test_runner
-- Installing: /usr/local/lib/pkgconfig/libonnxruntime.pc
-- Installing: /usr/local/lib/cmake/onnxruntime/onnxruntimeTargets.cmake
-- Installing: /usr/local/lib/cmake/onnxruntime/onnxruntimeTargets-release.cmake
-- Installing: /usr/local/lib/cmake/onnxruntime/onnxruntimeConfig.cmake
-- Installing: /usr/local/lib/cmake/onnxruntime/onnxruntimeConfigVersion.cmake

安装完成之后,include目录为

/usr/local/include

lib目录为

/usr/local/lib

参考

欢迎扫码关注我的微信公众号,及时获取文章更新

微信公众号二维码

本文作者:StubbornHuang

版权声明:本文为站长原创文章,如果转载请注明原文链接!

原文标题:Linux – 编译安装OnnxRuntime

原文链接:https://www.stubbornhuang.com/2926/

发布于:2023年12月20日 10:42:32

修改于:2023年12月20日 10:42:32

声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。

文章末尾
上一篇
Ubuntu - 编译安装CMake
Linux运维
下一篇
Ubuntu - 文本编辑器nano使用教程
Linux运维
当前分类随机文章推荐

发表评论

您必须 [ 登录 ] 才能发表留言!

关注我们的公众号

微信公众号