pytorch - Debug jax In vscode - Stack Overflow

admin2025-04-04  0

Why can't I use a vscode debugger to debug jax code, specifically pure functions. I understand that they provide their own framework for debugging but vscode debugger is quite comfortable. Is this because vscode debugger in the first attempt captures compile time?

Why can't I use a vscode debugger to debug jax code, specifically pure functions. I understand that they provide their own framework for debugging but vscode debugger is quite comfortable. Is this because vscode debugger in the first attempt captures compile time?

Share Improve this question asked 1 hour ago akshatakshat 212 bronze badges New contributor akshat is a new contributor to this site. Take care in asking for clarification, commenting, and answering. Check out our Code of Conduct. 1
  • Have you any sample project, toy project related to this idea, share to me? – Vy Do Commented 1 hour ago
Add a comment  | 

1 Answer 1

Reset to default 0

Why can't I use a vscode debugger to debug jax code, specifically pure functions.

You can use vscode interactive debugging – during tracing, which is when the Python part of the code is running. You can't (as far as I know) use vscode interactive debugging during execution of the compiled kernels that the traced code dispatches to.

For more information on JAX's computational model, you could start with JAX Key Concepts: Tracing and continue through the tutorials from there.

JAX provides some specific tools for debugging within this traced computational model; you can read about them at JAX: debugging.

转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1743736465a216867.html

最新回复(0)