07 2025 档案

摘要:git 入门 以下是 Git 从基础到精通的详细实例教程,涵盖版本控制全流程和高级技巧,配合具体操作示例: 一、Git 基础操作 初始化仓库 # 创建新目录并初始化 mkdir my-project && cd my-project git init 首次提交 # 创建文件并提交 echo "# M 阅读全文
posted @ 2025-07-30 11:26 michaelchengjl 阅读(109) 评论(0) 推荐(0)
摘要:git patch 在 Git 中,打补丁(Patch)是将代码变更以文件形式保存和共享的方式。以下是详细的操作步骤和示例: 1. 生成 Patch 文件 1.1 未提交的修改生成 Patch # 生成工作区所有未暂存的修改 git diff > changes.patch # 生成已暂存的修改(s 阅读全文
posted @ 2025-07-30 11:14 michaelchengjl 阅读(569) 评论(0) 推荐(0)
摘要:onnx-mlir https://github.com/onnx/onnx-mlir https://onnx.org.cn/onnx-mlir/ImportONNXDefs.html https://zhuanlan.zhihu.com/p/349912488 https://blog.csdn 阅读全文
posted @ 2025-07-18 14:14 michaelchengjl 阅读(35) 评论(0) 推荐(0)
摘要:C++ 动态多态与静态多态 在 C++ 中,动态多态(Dynamic Polymorphism) 和 静态多态(Static Polymorphism) 是两种不同的多态实现方式,分别通过 运行时动态绑定 和 编译时静态决议 来实现代码的灵活性和复用性。以下是它们的详细对比与实现原理分析: 1. 动 阅读全文
posted @ 2025-07-16 17:53 michaelchengjl 阅读(117) 评论(0) 推荐(0)
摘要:C/C++ 混合编程 预处理指令组合 #ifdef __cplusplus extern "C" { #endif // 这里是需要处理的代码块 #ifdef __cplusplus } #endif 这段代码是 C/C++ 混合编程中用于 解决名称修饰(Name Mangling)问题 的经典预处 阅读全文
posted @ 2025-07-14 15:06 michaelchengjl 阅读(31) 评论(0) 推荐(0)
摘要:C/C++ 内存管理 https://zhuanlan.zhihu.com/p/344377490 https://blog.csdn.net/chenlong_cxy/article/details/117622502 https://chenqx.github.io/2014/09/25/Cpp 阅读全文
posted @ 2025-07-11 17:34 michaelchengjl 阅读(17) 评论(0) 推荐(0)
摘要:python3 内存管理 https://docs.python.org/zh-cn/3.12/c-api/memory.html https://blog.csdn.net/weixin_47552266/article/details/139826908 https://zhuanlan.zhi 阅读全文
posted @ 2025-07-11 17:23 michaelchengjl 阅读(8) 评论(0) 推荐(0)
摘要:python3 内置高级模块及CPython解释器 https://www.cnblogs.com/traditional/tag/Python中你不可不知的模块/default.html?page=1 https://www.cnblogs.com/traditional/tag/深度剖析CPyt 阅读全文
posted @ 2025-07-10 11:05 michaelchengjl 阅读(11) 评论(0) 推荐(0)
摘要:python3 weakref的用法 -- 优化内存的方法 https://docs.python.org/zh-cn/3.13/library/weakref.html https://blog.csdn.net/NeverLate_gogogo/article/details/107021695 阅读全文
posted @ 2025-07-10 11:03 michaelchengjl 阅读(7) 评论(0) 推荐(0)
摘要:python3 中使用ctypes https://docs.python.org/zh-cn/3.13/library/ctypes.html https://python-cookbook.readthedocs.io/zh-cn/latest/c15/p01_access_ccode_usin 阅读全文
posted @ 2025-07-09 19:46 michaelchengjl 阅读(14) 评论(0) 推荐(0)
摘要:Python3-进阶-itertools模块 https://docs.python.org/zh-cn/3.13/library/itertools.html https://cloud.tencent.com/developer/article/2442698 https://wklken.me 阅读全文
posted @ 2025-07-08 13:54 michaelchengjl 阅读(10) 评论(0) 推荐(0)
摘要:LLM 配置修改 https://huggingface.co/voidful/gemma-3-omni-4b-it/commit/1c3ed14826b6c0caf81845cd827744a1ae10d6b7 https://huggingface.co/api/resolve-cache/mo 阅读全文
posted @ 2025-07-07 10:25 michaelchengjl 阅读(15) 评论(0) 推荐(0)
摘要:dataclasses 数据类 https://docs.python.org/zh-cn/dev/library/dataclasses.html https://www.cnblogs.com/wang_yb/p/18077397 https://www.cnblogs.com/ajianbey 阅读全文
posted @ 2025-07-05 21:17 michaelchengjl 阅读(17) 评论(0) 推荐(0)
摘要:模型修改与可视化 https://datawhalechina.github.io/thorough-pytorch/第七章/7.1 可视化网络结构.html https://zhuanlan.zhihu.com/p/362985275 https://dl.ypw.io/visualize-pyt 阅读全文
posted @ 2025-07-03 19:47 michaelchengjl 阅读(11) 评论(0) 推荐(0)