上一页 1 2 3 4 5 6 ··· 36 下一页
摘要: Pytorch基础入门教程 https://blog.csdn.net/ccaoshangfei/article/details/126074300?ops_request_misc=%257B%2522request%255Fid%2522%253A%2522721a30eeb84ee5e45ed 阅读全文
posted @ 2024-12-04 19:34 michaelchengjl 阅读(8) 评论(0) 推荐(0) 编辑
摘要: Python扩展C/C++ 实现原理分析 https://blog.csdn.net/HaoBBNuanMM/article/details/112243129?ops_request_misc=%257B%2522request%255Fid%2522%253A%2522ab2ac79057d38 阅读全文
posted @ 2024-12-04 14:20 michaelchengjl 阅读(5) 评论(0) 推荐(0) 编辑
摘要: Ubuntu2004 安装多版本gcc 并切换gcc版本 1. 安装多版本gcc sudo apt-get update sudo apt-get install -y gcc-9 g++-9 sudo apt-get install -y gcc-7 g++-7 2. 查看已安装的gcc版本 ls 阅读全文
posted @ 2024-12-03 19:41 michaelchengjl 阅读(158) 评论(0) 推荐(0) 编辑
摘要: linux查看so库函数命令 在Linux中,可以使用以下命令来查看共享对象(so)库的函数: nm命令:通过使用nm命令,可以列出so库中定义的所有符号,包括函数、变量等。使用以下命令: “ nm -D “ 例如: nm -D libtest.so 该命令将列出libtest.so库中的所有符号, 阅读全文
posted @ 2024-11-29 18:44 michaelchengjl 阅读(239) 评论(0) 推荐(0) 编辑
摘要: eval()、exec()与execfile() https://www.cnblogs.com/linxiyue/p/7732555.html https://blog.csdn.net/jeff0x400/article/details/38311135 阅读全文
posted @ 2024-11-29 15:12 michaelchengjl 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 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 阅读(93) 评论(0) 推荐(0) 编辑
摘要: 如何查看安装的CuDNN 版本以及如何升级到CuDNN-8.5 https://blog.yanjingang.com/?p=8246 阅读全文
posted @ 2024-11-21 16:44 michaelchengjl 阅读(26) 评论(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 阅读(11) 评论(0) 推荐(0) 编辑
摘要: torch-mlir https://blog.csdn.net/HaoBBNuanMM/article/details/124385542?spm=1001.2014.3001.5501 阅读全文
posted @ 2024-11-19 19:46 michaelchengjl 阅读(7) 评论(0) 推荐(0) 编辑
摘要: C++ 中环境变量获取,动态库环境变量的传递 在实践中,考虑最好还是使用getenv()函数来取得相关的环境变量. C/C++ 获取系统环境变量,其实是很简单的. 函数名: getenv 功 能: 从环境中取字符串,获取环境变量的值 头文件: stdlib.h 用 法: char *getenv(c 阅读全文
posted @ 2024-11-12 11:24 michaelchengjl 阅读(144) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 36 下一页