Daniel Lemire
Daniel Lemire
I have no investigated the float parsing in daw_json_link, but I wanted to make sure you were aware that we have packaged the fast number parsing routine from the simdjson...
In benchmark, AVX512VBMI (despacing) seems to fail. It returns -1 when it should return the length. I will switch it over to a NO_CHECK in the benchmarking, because I don't...
The ``make overall`` benchmark should produce meaningful results. If other benchmarks disagree, one should probably try to investigate what is happening.
It would be interesting to extend the testing range to cover large inputs.
I would recommend testing on recent x64 microarchitecture (e.g., Skylake).
Microsoft launched a package manager that should be supported by this library... https://github.com/Microsoft/vcpkg
JSON builder
Some users would like simdjson to help build JSON files. See discussion at https://github.com/simdjson/simdjson/discussions/2086 cc @jkeiser
Though we need better documentation and investigation, it seems likely that we could use yyjson as a faster fallback than our current fallback. My understanding is that @jkeiser wrote the...
For C++20 users, we support `std::ranges` somewhat under the DOM API but it is undocumented. ```C++ #include "simdjson.h" #include #include using namespace simdjson; int main(void) { auto cars_json = R"(...