Alejandro Fernández

Results 9 comments of Alejandro Fernández

The following minimal example also produces a data race detected by ThreadSanitizer: ```c++ std::vector v(1'000'000); std::mt19937 gen {std::random_device{}()}; std::ranges::generate(v, gen); std::sort(std::execution::par, v.begin(), v.end()); ``` Error produced: ```WARNING: ThreadSanitizer: data race...

Hi @pavelkumbrasev, I have tried it but I get an error in the build process. I have configured the project as follows: ```bash cd /tmp git clone https://github.com/oneapi-src/oneTBB.git cd oneTBB...

From your comment, do I understand correctly that if I want to use Thread Sanitizer with my application, I need to build oneTBB with Thread Sanitizer support? At the moment...

I am using a Spanish ISO keyboard and this issue prevents me from typing (in the terminal) most characters that require the `Option` modifier. Some notable examples: - `Option+1` should...

What about adding support for [Content Security Policy headers](https://web.dev/articles/csp) as well? This type of header deviates a bit from the standard `header=value` syntax. If we want to keep the flag...

Hey, thanks a lot for your feedback and for taking such a good look at this PR. Given your comments, I agree that the changes to matchers introduce many potential...

The binary files were not supposed to be included. I have deleted them from the branch, sorry for the trouble.

> Do you know if whisper.cpp has a 1 merge commit policy? The binary files are still in the pull request. You probably need to squash. I don't know if...