Jongwook Choi

Results 564 comments of Jongwook Choi

Questions: - Does that happen also on pynvim 0.4.3 or only on pynvim 0.5.0? - What is your python version? - Can you make a simple reproduction by any chance?...

Without a reasonable reproduction, bugfix might take a bit long. Please let us know when you've got some free cycles. My guess is that fd4247ced2b536c82fe76c52a6a6042eebb31ad4 is the relevant difference against...

Hmm if https://github.com/neovim/pynvim/pull/556#issuecomment-1851031322 doesn't fix this, I'll need a repro to help you troubleshoot this issue. At least any traceback information will be needed. Can you try enabling neovim logging?...

Minimal repro: ```python vim = pynvim.attach('child', argv=['nvim', '--embed', '--clean', '-i', 'NONE']) vim.close() vim = pynvim.attach('child', argv=['nvim', '--embed', '--clean', '-i', 'NONE']) vim.close() # Result Loop that handles pid 1048 is closed...

Rebased to the current master, fixing conflicts with other concurrent LSP-related works (e.g. #27376 #27420 #27427 #27443 #27753). There are a few minor TODOs remaining for this PR to be...

That's quite ugly -- but quite nice workaround. I think it would be quite non-trivial to stream the output from the terminal (but technically possible, see https://github.com/tpope/vim-dispatch), but first-class and...

``` :AsyncRun -mode=term -pos=TAB -program=capture ls -la ``` Why does it print some verbose messages like the following? ``` (1 of 1): [ls] (1 of 29): [ls] Press ENTER or...

@dji-transpire Can you check the versions for CUDA, CUDNN, CUBLAS, NVIDIA driver versions, or any relevant SDKs -- were they the same? The model (generation) of GPU are already different...

Note: A workaround for this bug is to use the CMake flag `-DLLAMA_CUDA_PEER_MAX_BATCH_SIZE=0` when building llama.cpp, as done in jmorganca/ollama#1261. Or more simply: ``` make LLAMA_CUBLAS=1 LLAMA_CUDA_PEER_MAX_BATCH_SIZE=0 ``` This will...

``` [1] 77385 illegal hardware instruction /Applications/Buzz.app/Contents/MacOS/Buzz ``` This is probably due to #6, but now this should be possible.