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