Georgi Gerganov

Results 420 comments of Georgi Gerganov

Here is diff if someone wants to play with it: ```diff git diff diff --git a/whisper.cpp b/whisper.cpp index 7078863..df47bff 100644 --- a/whisper.cpp +++ b/whisper.cpp @@ -1053,6 +1053,7 @@ static bool...

Weird - can you show output of: ``` make clean make ``` It should look something like this: ``` $ make cc -I. -O3 -std=c11 -pthread -DGGML_USE_ACCELERATE -c ggml.c -o...

Hmm, looks good. > Seems like an improper include is getting set for immintrin.h? The compiler should never reach this header if `__ARM_NEON` is defined - which is the case...

I just noticed the error is in `SDL_cpuinfo.h` - I initially assumed it is in `ggml.c`. This likely means that the SDL2 library is somehow not properly configured - try...

I can reproduce with Firefox 81.0.2 on Ubuntu 18.04. The error in the console is: ``` Uncaught (in promise) DOMException: Changing the mid of m-sections is not allowed. main.js:277 ```

Thanks! Looks like it fails to link the SDL2 lib for some reason. One option is to try to run `cmake -DUSE_FINDSDL2=ON ..` instead of `cmake ..` If this does...

Thanks for reporting this! I agree that it looks like we need to patch the `ImGui:RenderNavHighlight` method. Would you prefer to the highlight to be disabled completely, or change it...

An alternative solution is to add the following at the start of the frame: ```c++ ImGui::PushStyleColor(ImGuiCol_NavHighlight, ImVec4 { 0.0f, 0.0f, 0.0f, 0.0f }); ``` and this at the end of...

Sounds great! 1, 2 and 3 will do very soon. 4 will probably take some time.

Should the tar contain just a copy of the source + the submodules?