11 2024 档案

摘要:linux查看so库函数命令 在Linux中,可以使用以下命令来查看共享对象(so)库的函数: nm命令:通过使用nm命令,可以列出so库中定义的所有符号,包括函数、变量等。使用以下命令: “ nm -D “ 例如: nm -D libtest.so 该命令将列出libtest.so库中的所有符号, 阅读全文
posted @ 2024-11-29 18:44 michaelchengjl 阅读(78) 评论(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 阅读(44) 评论(0) 推荐(0) 编辑
摘要:如何查看安装的CuDNN 版本以及如何升级到CuDNN-8.5 https://blog.yanjingang.com/?p=8246 阅读全文
posted @ 2024-11-21 16:44 michaelchengjl 阅读(19) 评论(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 阅读(9) 评论(0) 推荐(0) 编辑
摘要:torch-mlir https://blog.csdn.net/HaoBBNuanMM/article/details/124385542?spm=1001.2014.3001.5501 阅读全文
posted @ 2024-11-19 19:46 michaelchengjl 阅读(5) 评论(0) 推荐(0) 编辑
摘要:C++ 中环境变量获取,动态库环境变量的传递 在实践中,考虑最好还是使用getenv()函数来取得相关的环境变量. C/C++ 获取系统环境变量,其实是很简单的. 函数名: getenv 功 能: 从环境中取字符串,获取环境变量的值 头文件: stdlib.h 用 法: char *getenv(c 阅读全文
posted @ 2024-11-12 11:24 michaelchengjl 阅读(77) 评论(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 阅读(103) 评论(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 阅读(45) 评论(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 阅读(4) 评论(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 阅读(5) 评论(0) 推荐(0) 编辑