ONNX @riscv+OpenKylin

安装onnxruntime-riscv

下载软件:

git clone https://github.com/ucb-bar/onnxruntime-riscv

apt install unzip

cd onnxruntime-riscv && sh build.sh

报错...

改了g++环境变量部分还是不行,放弃。

安装onnxruntime

使用这个库

git clone https://github.com/zhangwm-pt/onnxruntime
因为刚开始报错需要cmake>3.25 ,所以去Download CMake

 下载了3.28安装,但是configure的时候报错,所以放弃升级cmake,改切onnxruntime到2.6

git switch 2.6export MAX_JOBS=64sh build.sh --allow_running_as_root

 第一次需要加上--allow_running_as_root,后面再build就不需要了。

还学到用这个增加编译速度,不管是否有用,先存着

export makeflags=-j64
export MAKEFLAGS=-j64

 使用编译好的onnxruntime包@python3.10

创建python3.10环境,

设置多版本并存

下载pip软件:curl -sS https://bootstrap.pypa.io/get-pip.py | python3.10

使用编译好的onnxruntime包@python3.11

安装3.11python环境

apt install python3.11

设置多版本并存

update-alternatives --install /bin/python3 python3 /bin/python3.8 1

update-alternatives --install /bin/python3 python3 /bin/python3.10 2

update-alternatives --install /bin/python3 python3 /bin/python3.11 3

使用这个命令切换:

update-alternatives --config python3

下载pip软件:curl -sS https://bootstrap.pypa.io/get-pip.py | python3.11

切换到3.11之后,安装311的包,其中onnx在这里下载: Releases · zhangwm-pt/onnxruntime · GitHub

具体地址:https://github.com/zhangwm-pt/onnxruntime/releases/download/riscv_whl_v2.9/onnxruntime-2.9.0-cp311-cp311-linux_riscv64.whl

onnx@飞桨

调试

build.sh报错

看build.sh内容,这三句存疑问

export CXX=riscv64-unknown-linux-gnu-g++
export CC=riscv64-unknown-linux-gnu-gcc
export CXXFLAGS="-march=rv64imafdc -mabi=lp64d"

修该成

export CXX=g++
export CC=gcc
export CXXFLAGS="-march=rv64imafdc -mabi=lp64d"

报错Could not find 'flake8' to check python scripts.

-- Looking for clock_gettime in rt
-- Looking for clock_gettime in rt - found
CMake Warning at flake8.cmake:19 (message):
  Could not find 'flake8' to check python scripts.  Please install flake8
  using pip.
Call Stack (most recent call first):
  CMakeLists.txt:1776 (include)

新库报错

2024-03-18 04:21:50,299 build [INFO] - Generating CMake build tree
CMake Error at CMakeLists.txt:5 (cmake_minimum_required):
  CMake 3.26 or higher is required.  You are running version 3.25.1

本来想安装cmake2.28的,但是编译太慢了,准备用onnx2.81 因为它用cmake3.24就行了。

切2.81 git checkout 2.8.1 怀疑没切成,因为还需要cmake>3.25

切2.6 git switch 2.6

cmake3.28configure报错

-- Could NOT find OpenSSL, try to set the path to OpenSSL root folder in the system variable OPENSSL_ROOT_DIR (missing: OPENSSL_CRYPTO_LIBRARY OPENSSL_INCLUDE_DIR)
CMake Error at Utilities/cmcurl/CMakeLists.txt:647 (message):
  Could not find OpenSSL.  Install an OpenSSL development package or
  configure CMake with -DCMAKE_USE_OPENSSL=OFF to build without OpenSSL.

没事,不安装3.28了。

最终onnx本地没有编译成功,转而使用已编译好的包。已编译好的包只支持python3.10和3.11

onnx推理报错

class_id:15, confidence:0.9407, left_top:[-0.20,0.11],right_bottom:[499.84,375.78]
Traceback (most recent call last):File "/home/aistudio/Paddle2ONNX/model_zoo/detection/infer.py", line 341, in <module>save_imgs(File "/home/aistudio/Paddle2ONNX/model_zoo/detection/utils/visualize.py", line 139, in save_imgsim = visualize_box_mask(File "/home/aistudio/Paddle2ONNX/model_zoo/detection/utils/visualize.py", line 173, in visualize_box_maskim = draw_box(im, results['boxes'], labels, threshold=threshold)File "/home/aistudio/Paddle2ONNX/model_zoo/detection/utils/visualize.py", line 287, in draw_boxtw, th = draw.textsize(text)
AttributeError: 'ImageDraw' object has no attribute 'textsize'

降低Pillow版本解决 pip install Pillow==9.5.0

编译过程中到80%左右报错

/usr/bin/ld: libonnxruntime_common.a(threadpool.cc.o): in function `std::atomic<onnxruntime::concurrency::RunQueue<std::function<void ()>, onnxruntime::concurrency::ThreadPoolTempl<onnxruntime::Env>::Tag, 1024u>::ElemState>::compare_exchange_strong(onnxruntime::concurrency::RunQueue<std::function<void ()>, onnxruntime::concurrency::ThreadPoolTempl<onnxruntime::Env>::Tag, 1024u>::ElemState&, onnxruntime::concurrency::RunQueue<std::function<void ()>, onnxruntime::concurrency::ThreadPoolTempl<onnxruntime::Env>::Tag, 1024u>::ElemState, std::memory_order, std::memory_order)':
/usr/include/c++/9/atomic:324: undefined reference to `__atomic_compare_exchange_1'
collect2: error: ld returned 1 exit status
make[2]: *** [CMakeFiles/onnxruntime_mlas_test.dir/build.make:422: onnxruntime_mlas_test] Error 1
make[1]: *** [CMakeFiles/Makefile2:2236: CMakeFiles/onnxruntime_mlas_test.dir/all] Error 2
make[1]: *** Waiting for unfinished jobs....

重新编译,报错变成

/usr/bin/ld: libonnxruntime_common.a(threadpool.cc.o): in function `std::atomic<onnxruntime::concurrency::RunQueue<std::function<void ()>, onnxruntime::concurrency::ThreadPoolTempl<onnxruntime::Env>::Tag, 1024u>::ElemState>::compare_exchange_strong(onnxruntime::concurrency::RunQueue<std::function<void ()>, onnxruntime::concurrency::ThreadPoolTempl<onnxruntime::Env>::Tag, 1024u>::ElemState&, onnxruntime::concurrency::RunQueue<std::function<void ()>, onnxruntime::concurrency::ThreadPoolTempl<onnxruntime::Env>::Tag, 1024u>::ElemState, std::memory_order, std::memory_order)': /usr/include/c++/9/atomic:324: undefined reference to `__atomic_compare_exchange_1' collect2: error: ld returned 1 exit status make[2]: *** [CMakeFiles/onnxruntime_mlas_test.dir/build.make:422: onnxruntime_mlas_test] Error 1 make[1]: *** [CMakeFiles/Makefile2:2236: CMakeFiles/onnxruntime_mlas_test.dir/all] Error 2 make[1]: *** Waiting for unfinished jobs....

尝试 apt-get install libatomic-ops-dev

还是报错

切换到2.8版本,需要cmake升级到3.28

编译cmake3.28时报错:

make: 'cmake' is up to date.
loading initial cache file /root/work/cmake-3.28.3/Bootstrap.cmk/InitialCacheFlags.cmake
-- Could NOT find OpenSSL, try to set the path to OpenSSL root folder in the system variable OPENSSL_ROOT_DIR (missing: OPENSSL_CRYPTO_LIBRARY OPENSSL_INCLUDE_DIR)
CMake Error at Utilities/cmcurl/CMakeLists.txt:647 (message):
  Could not find OpenSSL.  Install an OpenSSL development package or
  configure CMake with -DCMAKE_USE_OPENSSL=OFF to build without OpenSSL.

尝试apt-get install libssl-dev

过了,bootstrap继续下去了。

make报错

/usr/bin/ld: ../Utilities/cmcppdap/libcmcppdap.a(io.cpp.o): in function `.L0 ': io.cpp:(.text+0x462): undefined reference to `__atomic_exchange_1' /usr/bin/ld: io.cpp:(.text+0x566): undefined reference to `__atomic_exchange_1' /usr/bin/ld: io.cpp:(.text+0x5be): undefined reference to `__atomic_exchange_1' /usr/bin/ld: io.cpp:(.text+0x5fa): undefined reference to `__atomic_exchange_1' /usr/bin/ld: io.cpp:(.text+0x648): undefined reference to `__atomic_exchange_1' /usr/bin/ld: ../Utilities/cmcppdap/libcmcppdap.a(io.cpp.o):io.cpp:(.text+0x698): more undefined references to `__atomic_exchange_1' follow collect2: error: ld returned 1 exit status make[2]: *** [Source/CMakeFiles/cmake.dir/build.make:130: bin/cmake] Error 1 make[1]: *** [CMakeFiles/Makefile2:2220: Source/CMakeFiles/cmake.dir/all] Error 2 make[1]: *** Waiting for unfinished jobs....

这里过不去了,先搁置,准备用现成的包。

切换pip3.10和pip3.11后,都报错

  File "/usr/lib/python3/dist-packages/pip/_internal/index/collector.py", line 12, in <module>
    from pip._vendor import html5lib, requests
ImportError: cannot import name 'html5lib' from 'pip._vendor' (/usr/lib/python3/dist-packages/pip/_vendor/__init__.py)

解决方法:

curl -sS https://bootstrap.pypa.io/get-pip.py | python3.11

安装好onnx之后,运行报错:

>>> import onnxruntime
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/root/.local/lib/python3.11/site-packages/onnxruntime/__init__.py", line 55, in <module>
    raise import_capi_exception
  File "/root/.local/lib/python3.11/site-packages/onnxruntime/__init__.py", line 23, in <module>
    from onnxruntime.capi._pybind_state import (
  File "/root/.local/lib/python3.11/site-packages/onnxruntime/capi/_pybind_state.py", line 33, in <module>
    from .onnxruntime_pybind11_state import *  # noqa
    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
ImportError: libshl_th1520.so.2: cannot open shared object file: No such file or directory

手工执行pip install onnxruntime -U 之后报错

i>>> import onnxruntime
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/local/lib/python3.10/dist-packages/onnxruntime/__init__.py", line 52, in <module>
    from onnxruntime.capi import onnxruntime_validation
  File "/usr/local/lib/python3.10/dist-packages/onnxruntime/capi/onnxruntime_validation.py", line 8, in <module>
    import linecache
  File "/usr/lib/python3.11/linecache.py", line 11, in <module>
    import tokenize
  File "/usr/lib/python3.11/tokenize.py", line 33, in <module>
    import re
  File "/usr/lib/python3.11/re/__init__.py", line 125, in <module>
    from . import _compiler, _parser
  File "/usr/lib/python3.11/re/_compiler.py", line 18, in <module>
    assert _sre.MAGIC == MAGIC, "SRE module mismatch"
AssertionError: SRE module mismatch

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/758030.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

数据结构大合集03——栈的相关函数运算算法

函数运算算法合集03 顺序栈的结构体顺序栈的基本运算的实现1. 初始化栈2. 销毁栈3. 判断栈是否为空4. 进栈5. 出栈6. 取栈顶元素 链栈的结构体链栈的基本运算的实现1. 初始化栈2. 销毁栈3. 判断是否为空4. 进栈5. 出栈6. 取栈顶元素 注&#xff1a; 本篇文章的概念合集 数据结构…

RocketMQ的重试机制

RocketMQ的重试机制是指:当消费者消费消息失败时,RocketMQ会在一定时间后重新将消息发送给消费者进行消费,以确保消息的可靠消费。 RocketMQ的重试机制主要体现在: 1.自动重试:Consumer在消费失败后,会在一定重试策略下定期重试消费失败的消息,直到成功或达到最大重试次数。 …

边缘检测-Tiny and Efficient Model for the Edge Detection Generalization

源代码: https://github.com/xavysp/TEED 论文地址&#xff1a;https://arxiv.org/pdf/2308.06468.pdf 大多数高级计算机视觉任务依赖于低级图像操作作为其初始过程。边缘检测、图像增强和超分辨率等操作为更高级的图像分析提供了基础。在这项工作中&#xff0c;我们考虑三个…

帮助读者掌握C语言编程基础知识的书籍

帮助读者掌握C语言编程的基础知识&#xff0c;了解如何将人工智能技术应用于自己的编程项目。 人工智能编程&#xff08;赋能C语言&#xff09; 作者&#xff1a; 黄箐、廖云燕、曾锦山、邢振昌 ISBN号&#xff1a; 9787302648796 出版日期&#xff1a; 2023-11-01 本书以C…

刷题DAY26 | LeetCode 39-组合总和 40-组合总和II 131-分割回文串

39 组合总和&#xff08;medium&#xff09; 给你一个 无重复元素 的整数数组 candidates 和一个目标整数 target &#xff0c;找出 candidates 中可以使数字和为目标数 target 的 所有 不同组合 &#xff0c;并以列表形式返回。你可以按 任意顺序 返回这些组合。 candidates…

小程序绕过 sign 签名

之前看到了一篇文章【小程序绕过sign签名思路】之前在做小程序渗透时也遇到了这种情况&#xff0c;但是直接放弃测试了&#xff0c;发现这种思路后&#xff0c;又遇到了这种情况&#xff0c;记录下过程。 并没有漏洞分享&#xff0c;仅仅是把小程序也分享出来&#xff0c;方便…

什么是数组流

字节数组流 1.ByteArrayInputStream和ByteArrayOutputStream分别使用字节数组作为流的源和目标。 2.ByteArrayInputStream构造方法 •ByteArrayInputStream (byte[] buf) •ByteArrayInputStream (byte[] buf,int offset,int length) 3.ByteArrayInputStream常用方法 • public…

如何建立数字化招标采购(系统)评价体系?

前言 长期以来&#xff0c;采购的经济目标占据了主导地位&#xff0c;采购人、采购代理机构或出于“经济人”的本性&#xff0c;或迫于采购资金的限制&#xff0c;极易采购便宜的产品、工程和服务&#xff0c;而忽略了采购的价值。 有效的采购制度&#xff0c;不仅仅以控制成…

【以图搜图】GPUNPU适配万物识别模型和Milvus向量数据库

目录 以图搜图介绍项目地址Milvuscv_resnest101_general_recognition 代码使用流程结果展示模型部署环境Milvus部署及使用docker安装docker-compose安装Milvus可视化工具Attu进入网页端 Data数据示例点个赞再走呗&#xff01;比心&#x1f49e;️ 以图搜图 • &#x1f916; Mo…

[视觉基础知识]: 点云数据

https://pointclouds.org/documentation/tutorials/pcd_file_format.html PCD 不是第一种支持 3D 点云数据的文件类型。尤其是计算机图形学和计算几何学社区&#xff0c;已经创建了多种格式来描述使用激光扫描仪获取的任意多边形和点云。其中一些格式包括&#xff1a; PLY - …

Go微服务实战——服务的监控与链路追踪(监控数据可视化)

链路追踪背景 对于早期系统或者服务来说&#xff0c;开发人员一般通过打日志的方式来进行埋点&#xff08;常用的数据采集方式&#xff09;&#xff0c;然后再根据日志系统和性能监控定位及分析问题。对于单体的应用通过日志系统完全可以定位到问题&#xff0c;从而排查异常。…

Jpg图片怎么变成gif?三步在线转换gif动画

JPG是一种常见的图像格式&#xff0c;而GIF动态则是一种流行的动态图像格式。如果你想将多张JPG图片合成为一个GIF动画&#xff0c;下面是一些简单的方法来帮助你完成这个任务。通过使用Gif动画制作工具-GIF中文网&#xff0c;上传多张jpg格式图片轻松一键在线转换gif动画&…

uniapp H5打开应用商店

/* 点击事件 */downApp() {let sysInfo uni.getSystemInfoSync()if (sysInfo.osName ios) { // ios/* 跳转到ios商店 id后面接的就是苹果id */window.location.replace(itms-appss://apps.apple.com/cn/app/id6479005866)} else { // androidthis.detectDeviceBrand(sysInfo…

【shell】定时检查说明

想法&#xff1a;定一个时间&#xff0c;然后查询需要格式的相关文件&#xff0c;移到一个新的文件夹下面 文件单独检查 进入账号su root之后&#xff0c;进入到crontab -e进行添加 #凌晨1点10分 0点30分 10 1 * * * /data/edw_ods/check_st/1move_file.sh 30 0 * * * /data…

Python爬虫获取接口数据

Python爬虫获取接口数据 正常人的操作​​​​​​​​​​爬虫的思路标题获取请求信息标题请求转换为代码完整代码请求返回信息执行程序获取静态网页数据的教程,适用于我们要爬取的数据在网页源代码中出现,但是还是有很多的数据是源代码中没有的,需要通过接口访问服务器来获…

Docker与containerd:容器技术的双璧

&#x1f407;明明跟你说过&#xff1a;个人主页 &#x1f3c5;个人专栏&#xff1a;《Docker幻想曲&#xff1a;从零开始&#xff0c;征服容器宇宙》 &#x1f3c5; &#x1f516;行路有良友&#xff0c;便是天堂&#x1f516; 目录 一、前言 1、Docker和containerd的背景…

ISO9001质量管理体系是什么,ISO9001认证详细介绍

ISO9001质量管理体系是国际标准化组织&#xff08;ISO&#xff09;制定的一套质量管理标准&#xff0c;旨在帮助企业建立有效的质量管理体系&#xff0c;提高产品和服务的质量水平&#xff0c;增强企业的竞争力和市场信誉。ISO9001认证则是企业按照ISO9001标准建立起质量管理体…

cobbler批量装机工具,可以实现同时装多台或多台不同系统的主机,也可以实现定制安装

cobbler批量装机工具 文章目录 cobbler批量装机工具1. cobbler简介2. cobbler服务端部署uos3. 客户端安装(内存和cpu可以多个点&#xff0c;以免后面出错)4.cobbler服务端部署centos75.客户端安装6.cobbler服务端部署centos87.客户端安装8.cobbler服务端部署rockylinux99.客户端…

还在苦苦寻找Gin的学习资料么?学习Gin框架,看它就欧了

学习 Go Gin 框架可以按照以下步骤进行&#xff1a; 理解基本概念&#xff1a; 确保你对 Go 语言有一定的了解&#xff0c;并理解 Web 框架的基本概念。Gin 是一个基于 Go 语言的轻量级 Web 框架&#xff0c;因此&#xff0c;你需要了解 HTTP 请求、路由处理、中间件等概念。 …

面试笔记——Redis(集群方案:主从复制、哨兵模式和分片集群)

主从复制 在 Redis 主从集群中&#xff0c;一个主节点&#xff08;Master&#xff09;负责处理客户端的读写请求&#xff0c;而多个从节点&#xff08;Slave&#xff09;则负责复制主节点的数据&#xff0c;并对外提供读取服务——解决高并发问题。 主节点&#xff08;Master&…