# tvm_study_code **Repository Path**: vaughnHuang/tvm_study_code ## Basic Information - **Project Name**: tvm_study_code - **Description**: TVM 学习笔记代码 - **Primary Language**: C++ - **License**: GPL-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-09-27 - **Last Updated**: 2023-02-12 ## Categories & Tags **Categories**: Uncategorized **Tags**: tvm ## README # TVM Study ## venv ```bash sudo apt install pip pip install virtualenv # add ~/.local/bin to PATH # create a env and activate it virtualenv ~/venv1 source ~/venv1/bin/activate # 设置python所在目录,给settings.json使用 export venv_py_dir=~/venv1/bin ``` ## prerequirement ```bash # 绘制python调用图 # 编译安装 Graphviz http://www.graphviz.org/Download_source.php # vscode插件: Graphviz Interactive Preview pip install setuptools==57.5.0 pip3 install pycallgraph # prerequirements packages pip install onnx onnxoptimizer pip install xgboost pillow protobuf ``` ## 介绍 1. 官方doc [Apache TVM Documentation](https://tvm.apache.org/docs/index.html) 2. TVM doc中文 [Apache TVM 中文文档](https://tvm.hyper.ai) 3. 学习资源 [机器学习编译](https://mlc.ai/zh/)