simdcsv icon indicating copy to clipboard operation
simdcsv copied to clipboard

A fast SIMD parser for CSV files

Results 10 simdcsv issues
Sort by recently updated
recently updated
newest added

So I got 2 different instances, both CPU supports AVX2, I was expecting the shared library built from one instance can be used in another, however that's not the case....

I've proposed a PR (#10) that allows to compile on MSVC. However the performance is awful (0.65GB/sec instead of 11GB/sec on the same machine, with MSVC Clang) If anybody is...

Builds with msvc. However, performance is 15x less than - gcc build (wsl) - msvc-clang builds (windows, on par with gcc)

https://github.com/uniVocity/csv-parsers-comparison

@geofflangdale @lemire great stuff, guys! too bad the project went stale. here's what i got: 1. fix manually unrolled loops in `flatten_bits()` which generate suboptimal code (clang -O3 auto-unrolls better,...

It happens in every csv file parsing, especially there is only one line in the file

Any chance you could switch to a more permissive license like MIT? Thanks for your hard work on this!

This should be a bit better. My own scores are about +5%.

Terminology: Selecting a subset of columns is called a projection. Since extracting the indexes is expensive, you may want to only pick some of the indexes, never committing to memory...