Stephan Walter
Stephan Walter
Hi, since Traumflug said that keeping the simulation code in the same directory causes trouble with the Arduino IDE, I moved all simulation code into a sub-directory. I also cleaned...
We encountered this issue on Nordic's fork (https://github.com/nrfconnect/sdk-mcuboot) but I believe upstream is affected as well. We are using the following Kconfig settings: ``` CONFIG_BOOT_ENCRYPT_EC256=y CONFIG_MCUBOOT_SERIAL=y CONFIG_SINGLE_APPLICATION_SLOT=n ``` I.e. swap...
Full MISRA C compliance of the C minimal library would be great, but even improving compliance is good. Unfortunately I can't make a pull request right now, but below are...
We are using the Nordic forks of mcumgr, mcuboot and Zephyr and ran into a problem where a device could no longer be updated via mcumgr. There were several compounding...
This relates to https://github.com/apache/mynewt-newtmgr/issues/185 There is a performance problem when using mcumgr CLI to upload firmware images to a Zephyr system. There is an overhead of up to 4x in...
Thanks for this great software! I was trying to get it to work on the LimeNET-Micro, which has a Raspberry Pi Compute 3+ module. After a few tweaks, it worked....
Should fix #289
This came up with the AVX512 support in #320. The code handling the q4 data blocks has quite a lot of pointer wrangling and `sizeof`s. I understand that this may...
This enables `-Wdouble-promotion` and syncs the `Makefile` and `CMakeLists.txt` with regards to warnings. Reasoning: The llama.cpp codebase depends on the correct use of number types, whether those are `float`, `double`...
To avoid code duplication when implementing additional quantization formats (#456), refactor the `forward_mul_mat` and `forward_get_rows` functions to use a table of function pointers, indexed by `ggml_type`. This makes some functions...