摘要: how to cook https://github.com/Anduin2017/HowToCook/tree/master 阅读全文
posted @ 2025-02-10 19:39 michaelchengjl 阅读(33) 评论(0) 推荐(0)
摘要: LLVM intrinsic https://www.cnblogs.com/wujianming-110117/p/16508427.html https://fprox.substack.com/p/risc-v-vector-in-a-nutshell https://blog.csdn.ne 阅读全文
posted @ 2025-10-16 17:25 michaelchengjl 阅读(7) 评论(0) 推荐(0)
摘要: LLVM 后端支持 RISCV 矩阵扩展都有哪些方式 LLVM后端对RISC-V矩阵扩展(RVV,通常为v1.0)的支持是一个多层次、多方式的生态系统。下面我将详细列举并举例说明所有主要方式。 总的来说,支持方式可以分为三大类,其与工具链的关系如下图所示: flowchart LR A[LLVM对R 阅读全文
posted @ 2025-10-13 15:37 michaelchengjl 阅读(36) 评论(0) 推荐(0)
摘要: triton 官方编译管线分析 我们来系统地分析从Triton前端到LLVM后端的完整编译器管线,重点聚焦各个层级的功能、作用以及分块策略。 整个Triton编译器的架构可以概括为一个多层次的分块、 lowering 和优化过程,其核心管线如下图所示: flowchart tritonFronten 阅读全文
posted @ 2025-10-13 15:08 michaelchengjl 阅读(31) 评论(0) 推荐(0)
摘要: MLIR — Running and Testing a Lowering https://zhuanlan.zhihu.com/p/337627570 https://www.jeremykun.com/2023/08/10/mlir-running-and-testing-a-lowering/ 阅读全文
posted @ 2025-10-13 14:52 michaelchengjl 阅读(8) 评论(0) 推荐(0)
摘要: 使用readelf和objdump查看ELF常见段 https://blog.csdn.net/qq_42570601/article/details/127360128 https://linuxtools-rst.readthedocs.io/zh-cn/latest/tool/objdump. 阅读全文
posted @ 2025-09-09 17:52 michaelchengjl 阅读(20) 评论(0) 推荐(0)
摘要: gem5 使用指南 https://blog.csdn.net/qq_43381135/article/details/104371236 https://zhuanlan.zhihu.com/p/487737252 https://blog.csdn.net/qq_34898487/article 阅读全文
posted @ 2025-09-09 16:11 michaelchengjl 阅读(11) 评论(0) 推荐(0)
摘要: 深度学习中的数据类型介绍:FP32, FP16, TF32, BF16, Int16, Int8 https://blog.csdn.net/qq_43799400/article/details/134182459 https://zhuanlan.zhihu.com/p/657886517 阅读全文
posted @ 2025-09-01 15:53 michaelchengjl 阅读(67) 评论(0) 推荐(0)
摘要: win11 安装WSL https://learn.microsoft.com/zh-cn/windows/wsl/basic-commands https://blog.csdn.net/m0_63251896/article/details/136695113 https://blog.csdn 阅读全文
posted @ 2025-08-19 18:13 michaelchengjl 阅读(15) 评论(0) 推荐(0)
摘要: C++ 中format() 的用法 LLVM 中 formatv 用法举例详解 LLVM 提供了一个强大的字符串格式化工具 formatv,它允许开发者以灵活和高效的方式格式化字符串。formatv 是一个模板函数,支持多种数据类型和自定义格式化器,适用于各种需要字符串处理的场景。 基本用法 for 阅读全文
posted @ 2025-08-06 18:50 michaelchengjl 阅读(36) 评论(0) 推荐(0)
摘要: C++ C++ 文件与路径操作 首先,我需要了解这些函数属于哪个C++标准库部分。C++标准库中有一个叫做的头文件,里面包含了许多与文件系统操作相关的函数和类。这些函数应该是在这个头文件中定义的。 在C++编程中,处理文件和目录操作时,可以使用标准库中的头文件,其中包含了一系列用于文件系统操作的函数 阅读全文
posted @ 2025-08-06 17:26 michaelchengjl 阅读(30) 评论(0) 推荐(0)