-
I'm wondering how I can better understand into what a particular kernel gets compiled. For instance,
|
Beta Was this translation helpful? Give feedback.
Answered by
sharadmv
Jul 16, 2023
Replies: 1 comment
-
My suggestion for debugging practices are:
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
hr0nix
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
interpret: when this is True, the kernel is compiled using HLO/XLA, not Triton. Specifically we run a loop over program ids and don't parallelize their execution. This emulates how the kernel will be run using Triton.
debug: when this is True, we print out the IRs used during compilation
My suggestion for debugging practices are: