摘要: 原来git就有内置命令bisect,寻找引入bug的那个commit。 之前还傻乎乎地自己弄个binary search。。。 使用方式见git help bisect,比自己记录是方便一些的。 阅读全文
posted @ 2022-07-19 16:08 xuyv 阅读(44) 评论(0) 推荐(0) 编辑
摘要: chris latner写的一篇介绍性文章 https://www.aosabook.org/en/llvm.html llvm初识的一些tutorial https://releases.llvm.org/2.2/docs/tutorial/ 用LLVM写一个BF语言的JIT编译器 (对比Hali 阅读全文
posted @ 2022-07-19 14:58 xuyv 阅读(23) 评论(0) 推荐(0) 编辑
摘要: PyTroch似乎引进了一些有趣的JIT编译功能,用来优化性能,包括做一些fusion。 可以看下的项目: torchdynymo: https://github.com/pytorch/torchdynamo 似乎用了triton NVFuser: https://github.com/pytor 阅读全文
posted @ 2022-07-19 14:23 xuyv 阅读(332) 评论(0) 推荐(0) 编辑