Recent Posts

Google Kick Start 2022 Round E Solution

4 minute read

Google Kick Start Round E 2022 Coloring Game 1 2 3 4 5 6 7 8 9 10 11 12 13 #include <bits/stdc++.h> using namespace std; int main() { int T; ...

[MLC-机器学习编译]05 自动程序优化

less than 1 minute read

official notes (中文) 笔记 这节课就讲了自动搜变换的工具, 信息量比较少. sample_perfect_tile用于对一个循环进行整数拆分. meta_schedule用于auto-scheduling, 实际上是用估值函数进行启发式搜索, 需要安装x...

[MLC-机器学习编译]04 端到端模型整合

less than 1 minute read

official notes (中文) 笔记 用两个linear层的Fasion-MNIST模型来解释relax. call_tir中的一些设计: destination passing: 将输出也作为输入传入, 方便内存管理(让高层库去做内存操作, 底...

[MLC-机器学习编译]03作业: TensorIR练习

7 minute read

笔记 parallel需要在decompose_reduction前, 参考TA解答. Definition of compute_at: Given a producer and a consumer, compute_at allows to compute part of the producer...

[NVIDIA-CUDA-冬令营2022]02 初识CUDA & 线程层次

less than 1 minute read

笔记 最近开始自己写些东西, 感觉很多基础概念还是很模糊, 找到了一个比较近的tutorial, 感觉更清晰一些. 设备与函数调用   调用位置 执行位置 __device__ ...