StevenWhitaker

Results 26 comments of StevenWhitaker

> The sequence: operator, line break, `end` maybe deserves a special case though. This would certainly help. But I sometimes don't have a newline before `end` (mainly when working in...

> We can't special-case on `end` alone. Right. Even though I've been talking about `end`, I guess in my mind I was thinking that improving the error message for the...

I recently needed to grab the logged losses. Here is what I ended up doing: ```julia using XGBoost, Logging io = IOBuffer() logger = SimpleLogger(io) bst = with_logger(logger) do xgboost(...)...

Thanks for getting a patch released! The issues are different now, so that's something ;) Now I observe the following behavior (EDIT: when running Julia with multiple threads): - Sometimes...

Edit to my previous comment: I'm running my actual code with a single thread now, and it also hangs, so there might be something else still at play.

Thanks for the tip. I tried it out on my actual project (not the exact example in the OP), and it does seem to help, but I still see the...

FYI I have also sometimes seen this issue on WSL 2 Ubuntu when exiting Julia. Also, it actually might be reproducible, as I've gotten this error three times in a...

Sure, I can open a PR when I have time over the next couple of days. I'll ping you when it's ready.

I tried using `Dagger.with_options` to keep all `GDTable` chunks on a single process, but it doesn't look like it's working quite right: ```julia julia> using Distributed; addprocs(1); @everywhere using Dagger,...

I am working on a better reproducer, but I believe the behavior I pointed out in JuliaParallel/Dagger.jl#445 (related to JuliaParallel/Dagger.jl#438) is essentially the same I am reporting here---all those `CPURAMDevices`...