Gallium.jl
Gallium.jl copied to clipboard
The Julia debugger
When doing `julia -L the_file.jl` if within the file I attempt `Gallium.breakpoint(function_name)` it crashes with `UndefVarError(:active_repl)`
I'm relatively new to Julia and wanted to try out Gallium.jl When I tried I get this error:  I tried to build, remove/add, and checkout the package. But I...
Following the hint in the README to enter `help` at the Gallium debug prompt shows ``` Unknown command `help`. Executing `?` to obtain help. ``` before the help is shown.
Hi all, in a meeting a few weeks ago, @ViralBShah asked us for some feedback on the debugger. Here is my take on it: Having a working `@enter` as we...
Some commands such as `jbt` have pretty bad latency due to the amount of code they compile. Probably best to go after general performance improvements first though.
Gallium > Pkg.installed("Gallium") v"0.0.4" Version info > versioninfo() Julia Version 0.5.2 Commit f4c6c9d4bb (2017-05-06 16:34 UTC) Platform Info: OS: macOS (x86_64-apple-darwin13.4.0) CPU: Intel(R) Core(TM) i5-4278U CPU @ 2.60GHz WORD_SIZE: 64...
Hi, I get the following error: ```julia _ _ _ _(_)_ | A fresh approach to technical computing (_) | (_) (_) | Documentation: http://docs.julialang.org _ _ _| |_ __...
I don't have a local windows computer, so for some testing i connect to appveyor builds. My session looked like this: ``` C:\projects\julia\bin>julia.exe _ _ _ _(_)_ | A fresh...
I'm trying to debug this simple code: ``` using Gallium function justafunc() try A = note("12345") catch println("Error") end println("After try-catch.") end #Gallium.breakpoint(justafunc) justafunc() ``` The function `note()` is not...
@keno This is on 0.5, using the latest tag of Gallium.jl. ``` julia> using Gallium julia> Gallium.breakpoint_on_error() Gallium.Hooking.Hook(Ptr{Void} @0x00007ff7dfcf6ec0,UInt8[0x55,0x48,0x89,0xe5,0x53,0x48,0x89,0xfb,0x48,0x83,0xec,0x08,0xe8,0x7f,0x23,0x02,0x00],Gallium.breakpoint_on_error_hit) julia> model = train_model("orig", CoughModel("SVM"), features) ERROR: UndefVarError: cross_validate not defined...