simd
Here are 589 public repositories matching this topic...
-
Updated
Mar 20, 2022 - C++
Describe the Bug
The JSON response sent back over HTTP doesn't encode certain characters correctly.
For example, if a value in a string column contains the char \1 the byte value is copied verbatim in the response, breaking the client:
>>> json.loads('"\1"')
...
json.decoder.JSONDecodeError: Invalid control character at: line 1 column 2 (char 1)Instead, we shou
-
Updated
Feb 15, 2022 - C++
Our users are often confused by the output from programs such as zip2john sometimes being very large (multi-gigabyte). Maybe we should identify and enhance these programs to output a message to stderr to explain to users that it's normal for the output to be very large - maybe always or maybe only when the output size is above a threshold (e.g., 1 million bytes?)
-
Updated
Mar 6, 2022 - C++
I am finding a product which can replace Elasticsearch.
This program:
int main() {
int* a = 0;
int const * const b = (int const * const)a;
return 0;
}Compiles fine with gcc, but not with ispc. The error:
test.ispc:3:42: Error: syntax error, unexpected '*'.
int const * const b = (int const * const)a;However, this program:
int main() {
int* a = 0;
int co-
Updated
Feb 15, 2022 - C++
-
Updated
Jul 16, 2021 - C
-
Updated
Mar 12, 2022 - C++
Hi,
thank you very much for this cool library.
I noticed that simde_mm512_load_ps is missing while simde_mm512_loadu_ps is implemented. However, both seem to exist for Intel intrinsics (see screenshot). Maybe I oversaw one or maybe they do the same anyways?
Thanks
Lukas


Though we include Boost JSON as a dependency for benchmarking purposes, we do not include it as part of our benchmarks currently.