RomeoV

Results 42 comments of RomeoV

Thanks. When i find some time, I'll also check if https://github.com/JuliaGPU/CUDA.jl/issues/1947 helps. But probably I'll move that discussion somewhere else.

Update on this: Since https://github.com/JuliaGPU/CUDA.jl/issues/2006 seems to be fixed, it's possible to just write your own little precompile directive, which reduces TTF Epoch to about 12 seconds -- quite workable!...

I still think though it makes sense to move some of the precompile directives into this module. Very broadly, something like: ```julia @compile_workload begin labels = ["0", "1", "2", "3",...

I get the same error, on Arch Linux running wayland/sway. Running ``` LD_PRELOAD=/usr/lib/libtcmalloc.so steam open ./hl2.sh ``` yields ``` ERROR: ld.so: object '/usr/lib/libtcmalloc.so' from LD_PRELOAD cannot be preloaded (wrong ELF...

Turns out I can launch just fine when I set the TF2 compatability to Proton 8.0, from inside steam. EDIT: Never mind, it crashes once I actually try to join...

Unfortunately, installing the 32 bit version, i.e. `lib32-gperftools` from the AUR, still yields a similar error: ``` LD_PRELOAD=/usr/lib32/libtcmalloc.so ./hl2.sh ``` yields ``` ERROR: ld.so: object '/usr/lib32/libtcmalloc.so' from LD_PRELOAD cannot be...

I have a related problem. My `shell.nix` file looks like this: ```nix { pkgs ? import {} }: pkgs.mkShell { buildInputs = [ pkgs.python311 # You can change this to...

I made some progress by replacing several calls to `call-process` by `process-file`, which is essentially a drop-in replacement that also respects remote processes, and further running `(add-to-list 'tramp-remote-path 'tramp-own-remote-path)`. However,...

Thanks for the review. To your points: > Instead of `WithDims(u"m")` one can also use `Unitful.Length` That is true for "atomic" dimensions, but becomes much more difficult for any composite...

> `WithDims` doesn’t include `Level`s (i.e., logarithmic quantities) That is true, I can get to that still. There seems to be `Gain` and `Level`, which are related to `MixedUnits` as...