-
Is it possible to inspect the code that was generated for user kernels (for both forward and backward pass)? |
Beta Was this translation helpful? Give feedback.
Answered by
mmacklin
Nov 1, 2022
Replies: 1 comment
-
Hi there, Yes, please take a look in the
Cheers, |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
ib00
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi there,
Yes, please take a look in the
Kernel Cache
location printed at Warp initialization time, e.g.:C:\Users\mmacklin\AppData\Local\NVIDIA Corporation\warp\Cache\0.5.0
holds the generated C++/CUDA code and compiled .ptx files that you can inspect. You can also compile / link these into your own existing C++ projects.Cheers,
Miles