SuperUserNameMan

Results 51 comments of SuperUserNameMan

> Wondering if [#293](https://github.com/ggerganov/ggml/issues/293) is relevant here? CPU has better performance than BLAS backend does as noted in PR #7077. This has been true in desktop, laptop, and mobile. CPU...

As mentioned into #2187, this bug is also related to utf-8 character into the path. (I was testing Flax into the `Downloads` directory which, in French, is named `Téléchargements` on...

I've just found the problem. It occurs when the path contains utf-8 characters. I was testing into the `Downloads/` directory, which, in french, is named `Téléchargements/`. If I move the...

If i remember correctly, the page-swap algorithm of the LGT8 is implemented in hardware. A software write-buffer / log could be implemented, but there is only 2k of RAM on...

I don't remember if it is possible to write directly to the flash once outside the bootloader :-/ Is it ? Also, I have not read the STM32 pdf you...

PS : it is possible to write to the flash without triggering the swap using the SWM functions and macros (SWM = Serial Write Mode). However, at the minimum, it...

PS2 : also note that the hardware swap is not triggered if you write to a cell that contains `0xFFffFFff` (it's blank).

Maybe you could try implementing it ? The SWM functions and macro I mentioned would allow you to write the log into blank pages without triggering hardware page swaps. Given...

maybe it is ok to update the values of `CORE.window.screen.width/height` directly into `ToggleFullscreen()` and `ToggleBorderlessWindowed()` like I proposed into this PR https://github.com/raysan5/raylib/pull/4151/files ?

I can't test because i don't have access to a Wayland based system, but could it comes from here ? https://github.com/raysan5/raylib/blob/74680748b9abe05ceda5d412b61ff99addf72807/src/platforms/rcore_desktop_glfw.c#L1300-L1310 According to GLFW [documentation](https://www.glfw.org/docs/latest/window_guide.html), Wayland is sensitive to the...