摘要: pytorch 源码编译安装 支持cuda, cudnn 1. 安装好GPU dirver, CUDA, cuDNN (注意对应版本) 2. 下载pytorch 源码 git clone https://github.com/pytorch/pytorch.git cd pytorch git pu 阅读全文
posted @ 2024-11-21 17:16 michaelchengjl 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 如何查看安装的CuDNN 版本以及如何升级到CuDNN-8.5 https://blog.yanjingang.com/?p=8246 阅读全文
posted @ 2024-11-21 16:44 michaelchengjl 阅读(0) 评论(0) 推荐(0) 编辑
摘要: ccache安装配置 https://www.cnblogs.com/INnoVationv2/p/16439094.html https://blog.csdn.net/King_weng/article/details/117415618 https://www.cnblogs.com/ltgy 阅读全文
posted @ 2024-11-20 19:42 michaelchengjl 阅读(1) 评论(0) 推荐(0) 编辑
摘要: torch-mlir https://blog.csdn.net/HaoBBNuanMM/article/details/124385542?spm=1001.2014.3001.5501 阅读全文
posted @ 2024-11-19 19:46 michaelchengjl 阅读(2) 评论(0) 推荐(0) 编辑
摘要: C++ 中环境变量获取,动态库环境变量的传递 在实践中,考虑最好还是使用getenv()函数来取得相关的环境变量. C/C++ 获取系统环境变量,其实是很简单的. 函数名: getenv 功 能: 从环境中取字符串,获取环境变量的值 头文件: stdlib.h 用 法: char *getenv(c 阅读全文
posted @ 2024-11-12 11:24 michaelchengjl 阅读(31) 评论(0) 推荐(0) 编辑
摘要: linux 计算程序运行时间, 及时间差 统计Shell脚本执行时间,帮助分析改进脚本执行 linux shell 计算时间差值 #!/bin/bash # 计算时间差 date1=$(date +"%Y-%m-%d %H:%M:%S") echo "时间1: $date1" echo "延时10s 阅读全文
posted @ 2024-11-11 16:57 michaelchengjl 阅读(25) 评论(0) 推荐(0) 编辑
摘要: python 获取设置环境变量 import os print(os.environ["path"]) os.environ # 当key不存在时,将会报错KeyError,返回的结果是None print(os.environ.get('KEY_THAT_MIGHT_EXIST')) # os.g 阅读全文
posted @ 2024-11-09 16:57 michaelchengjl 阅读(11) 评论(0) 推荐(0) 编辑
摘要: python_for_data_analysis_2nd_chinese_version https://github.com/iamseancheney/python_for_data_analysis_2nd_chinese_version?tab=readme-ov-file 阅读全文
posted @ 2024-11-06 17:25 michaelchengjl 阅读(3) 评论(0) 推荐(0) 编辑
摘要: bazel build protobuf WORKSPACE load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "com_google_protobuf", sha256 阅读全文
posted @ 2024-11-05 15:08 michaelchengjl 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 在线视频格式转换 https://video.online-convert.com/convert/webm-to-mp4 https://www.aconvert.com/video/ https://video-converter.com/cn/ 阅读全文
posted @ 2024-10-31 22:36 michaelchengjl 阅读(2) 评论(0) 推荐(0) 编辑