随笔分类 - 开发环境
1
摘要:
## 日志表格格式化输出 ```C++ /** * \file sdk/load-and-run/src/text_table.h * MegEngine is Licensed under the Apache License, Version 2.0 (the "License") * * li
阅读全文

摘要:
Ubuntu安装VNC 更新源 sudo apt update 安装TigerVNC sudo apt install xserver-xorg-core sudo apt install tigervnc-standalone-server tigervnc-xorg-extension tige
阅读全文

摘要:Linux 多版本软件管理工具update-alternatives 简介 update-alternatives 命令用于处理linux系统中软件版本的切换(可以管理任意软件的多个版本,比如Python、JDK等),在各个linux发行版中均提供了该命令,命令参数略有区别,大致一样。 常用操作 注
阅读全文
摘要:
Ubuntu制作离线源离线安装软件 联网环境(联网容器) 安装必要的工具 安装apt-rdepends 递归分析以来工具 sudo apt update && sudo apt install apt-rdepends 新建一个下载目录 mkdir -p ~/offline-pkgs/tmux-de
阅读全文

摘要:
TVM源码编译 安装依赖 sudo apt-get install -y libtinfo-dev zlib1g-dev build-essential libedit-dev libxml2-dev 安装llvm link: https://www.cnblogs.com/nanmi/p/1604
阅读全文

摘要:
PAPI编译安装 性能应用程序编程接口 ( PAPI ) 是一个在各种平台上提供性能计数器的库。性能计数器在给定的执行运行期间提供有关处理器行为的准确低级信息。该信息可以包含简单的指标,如总循环计数、缓存未命中和执行的指令,以及更高级的信息,如总 FLOPS 和 warp 占用率。PAPI 使这些指
阅读全文

摘要:
Googletest源码编译安装 下载源码 git clone --branch release-1.11.0 --recursive https://github.com/google/googletest 编译安装 mkdir build;cd build cmake -DCMAKE_INSTA
阅读全文

摘要:
llvm clang安装 二进制预编译apt安装 sudo apt install llvm-10 llvm-10-dev llvm-10-tools clang-10 源码编译安装 安装依赖 sudo apt install gcc-multilib 下载源码 git clone --branch
阅读全文

摘要:
nvtop安装 Ubuntu>=19.04 sudo apt install nvtop Ubuntu<=18.04 安装依赖 sudo apt install libncurses5-dev libncursesw5-dev 下载nvtop源码 git clone https://github.c
阅读全文

摘要:
MMCV源码编译 下载源码 git clone --recursive --branch v1.4.1 https://github.com/open-mmlab/mmcv.git 设置环境变量 export CUDA_HOME export CUDA_PATH=$CUDA_HOME export
阅读全文

摘要:
Protobuf源码编译安装 安装依赖 sudo apt-get install autoconf automake libtool curl make g++ unzip 下载源码 git clone --branch v3.17.3 --recursive https://github.com/
阅读全文

摘要:
Pytorch源码编译安装 安装依赖 pip install astunparse numpy ninja pyyaml mkl mkl-include setuptools cmake cffi typing_extensions future six requests dataclasses 下
阅读全文

摘要:显卡驱动bug 问题描述: 使用nvidia-smi命令出现NVIDIA-SMI has failed because it couldn’t communicate with the NVIDIA driver. Make sure that the latest NVIDIA driver is
阅读全文
摘要:
Jetson平台使用Inter 神经网络计算棒(Neural Compute Stick, NCS) 工作方式 NCS工作方式分为两种,一种是在主机上将训练好的模型生成NCS可执行graph文件,该文件用于推理过程;另一种是在树莓派、Jetson TX2等便携式计算机上加速推理过程。 主机端使用NC
阅读全文

摘要:
## Ubuntu安装Docker ```shell # 更新软件源列表 sudo apt update # 安装依赖 sudo apt install apt-transport-https ca-certificates curl software-properties-common # 在系统
阅读全文

1