Skip to content
#

simd

Here are 606 public repositories matching this topic...

questdb
amunra
amunra commented Mar 15, 2022

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

Bug Good first issue REST API
solardiz
solardiz commented Jul 19, 2019

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?)

dbabokin
dbabokin commented Apr 6, 2022

Doing performance fine tuning, it may be beneficial to have separate code paths if the mask is "all on". Right now there are multiple ways of expressing this paradigm, which are not guaranteed to be optimal on all platforms. Possible ways of checking this are:

  1. __all(__mask). Seem to produces good code on all platforms, but uses builtins (that are not recommended for the use outside of stan
good first issue
lkskstlr
lkskstlr commented Oct 25, 2021

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

![Screenshot from 2021-10-25 13-28-29](https://user-images.githubusercontent.com/14993470/138687358-aa6b531e-bdc

good first issue

Improve this page

Add a description, image, and links to the simd topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the simd topic, visit your repo's landing page and select "manage topics."

Learn more