Yupei Qi
Yupei Qi
hi @SimonDanisch, the simple solution is to [use larger fonts](https://github.com/Gnimuc/Nuklear.jl/blob/82afffb08aaca61d6630bed67a0a70a78456671c/demo/demo.jl#L40-L45). With `Roboto-Bold`+18 font size, it actually looks good on my display(227 ppi). ### screen capture ### photo shoot 
> It scales well in terms of memory footprint but badly in terms of time, mostly because of `step3!`, where most of the time seems to be spent in this...
Looks like I tried something similar years ago: https://github.com/Gnimuc/Hungarian.jl/blob/a60d30352eb4ec02ffe4dae1515805de49ce09b9/src/Munkres.jl#L343
https://github.com/Gnimuc/Hungarian.jl/blob/fe5c4024eadeb250cf82512b69f52b210883fae2/src/Munkres.jl#L91-L108 This marking step is critical for large matrices like 4000x4000 or 8000x8000. You can find some benchmark reports in https://github.com/Gnimuc/Hungarian.jl/pull/15.
What's the problem size of your use case?
That's really large. Hungarian is an O(n^3) algorithm and may not suite for this kinda problem. Would you like to make a PR with above-mentioned multi-threading support? I'm happy to...
ref: https://github.com/Gnimuc/libclangex/pull/10
sorry for the inconvenience, CImGui-v1.69.2 has been tagged [here](https://github.com/JuliaRegistries/General/pull/2365).
hi @diegozea, according to the following list, your desktop OpenGL version seems to be 3.0. https://github.com/mattdesl/lwjgl-basics/wiki/glsl-versions#glsl-versions unfortunately, I only implement a backend based on ModernGL(OpenGL 3.2+) for now, so you...
@diegozea I'm also writing a wrapper for [imgui](https://github.com/ocornut/imgui) which do support GLSL 130, maybe you're interested in this https://github.com/Gnimuc/CImGui.jl/blob/master/examples/demo.jl I'm currently translating imgui demos from C++ to Julia. For now,...