1、安装TVM

环境:腾讯云Ubuntu Server 20.04 LTS 64bit

1、安装git

sudo apt-get install git

2、安装vim

sudo apt-get install vim

3、安装gcc 11、g++11

sudo apt-get install software-properties-common
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
sudo apt update && sudo apt install gcc-11 g++-11

4、安装cmake

5、安装python3.9

6、LLVM安装

7、TVM安装

 首先从TVM的Github仓库下载源码,注意添加–recursive选项,使得子模块代码可以一同下载。

git clone --recursive https://github.com/apache/tvm tvmjin

进入到tvm目录下,初始化子模块

git submodule init

更新子模块源码

git submodule update

 依赖工具安装:

sudo apt-get update
sudo apt-get install -y python3 python3-dev python3-setuptools gcc libtinfo-dev zlib1g-dev build-essential cmake libedit-dev libxml2-dev

 

 

参考资料:

TVM安装教程详细版本(亲测可用,踩坑整理,建议软件版本尽量使用最高的、最新的,这样踩坑的概率会低)_booker0415的博客-CSDN博客_tvm安装

posted @ 2022-11-30 23:07  多一些不为什么的坚持  阅读(213)  评论(0编辑  收藏  举报