Kenta Sato

Results 57 comments of Kenta Sato

I also tried but a virtual environment created using venv didn't work on Windows, even if I specified `PYCALL_JL_RUNTIME_PYTHON` as `python.exe` in the virtual environment. Python itself can detect the...

@jrevels Thank you for clarification. So, a function with >2 arguments is compiled using a mixture of forward and reverse mode differentiations, right? I don't know why this limitation exists...

@oViMo Thanks. I'm avoiding the problem with similar techniques you suggested. @jrevels I've tried your suggestion but it has still ambiguity problem. ```diff diff --git a/src/ReverseDiff.jl b/src/ReverseDiff.jl index 6b0635c..e472e73 100644...

Thanks. I may need to reconsider the design of these tools.

This is due to https://github.com/JuliaDebug/JuliaInterpreter.jl/blob/8e7bac93fb03e98ff5bc89097995ada1518d0157/src/commands.jl#L184, which skips assignments and branches because they are neither function calls nor returns. Stopping only at function calls and returns may be a reasonable design...

How to print assignments and branch conditions is a separated problem, and it should be fixed in Debugger.jl. NOTE: I found the current impl is completely broken. So, there is...

I've changed the design: `next_line!` continues to step forward until it finds a statement which is one of: - function calls - assignments (both local and global) - returns -...

+1 It should improve the usability and the probability to disrupt the compatibility would be small. Also, adding this feature is fairly easy. I have no reason to reject it.

Hi, I can see a similar problem. The error message says (please see the attached file for the complete log): ``` [ Info: No hash cache found [ Info: Calculated...