├── .gitignore ├── README.md ├── charts └── encoding-csv_vs_simdcsv.png ├── simdcsv.go ├── simdcsv_other.go ├── simdcsv_test.go ├── stage1-preprocessing.go ├── stage1-preprocessing_amd64.s ├── stage1-preprocessing_amd64_test.go ├── stage2-parsing.go ├── stage2-parsing_amd64.s ├── stage2-parsing_amd64_test.go ├── stages_amd64.go ├── stages_amd64.s └── testdata ├── nyc-taxi-data-100K.csv ├── parking-citations-100K.csv └── worldcitiespop-100K.csv /.gitignore: -------------------------------------------------------------------------------- 1 | simdcsv.test 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwessels/simdcsv/HEAD/README.md -------------------------------------------------------------------------------- /charts/encoding-csv_vs_simdcsv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwessels/simdcsv/HEAD/charts/encoding-csv_vs_simdcsv.png -------------------------------------------------------------------------------- /simdcsv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwessels/simdcsv/HEAD/simdcsv.go -------------------------------------------------------------------------------- /simdcsv_other.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwessels/simdcsv/HEAD/simdcsv_other.go -------------------------------------------------------------------------------- /simdcsv_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwessels/simdcsv/HEAD/simdcsv_test.go -------------------------------------------------------------------------------- /stage1-preprocessing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwessels/simdcsv/HEAD/stage1-preprocessing.go -------------------------------------------------------------------------------- /stage1-preprocessing_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwessels/simdcsv/HEAD/stage1-preprocessing_amd64.s -------------------------------------------------------------------------------- /stage1-preprocessing_amd64_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwessels/simdcsv/HEAD/stage1-preprocessing_amd64_test.go -------------------------------------------------------------------------------- /stage2-parsing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwessels/simdcsv/HEAD/stage2-parsing.go -------------------------------------------------------------------------------- /stage2-parsing_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwessels/simdcsv/HEAD/stage2-parsing_amd64.s -------------------------------------------------------------------------------- /stage2-parsing_amd64_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwessels/simdcsv/HEAD/stage2-parsing_amd64_test.go -------------------------------------------------------------------------------- /stages_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwessels/simdcsv/HEAD/stages_amd64.go -------------------------------------------------------------------------------- /stages_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwessels/simdcsv/HEAD/stages_amd64.s -------------------------------------------------------------------------------- /testdata/nyc-taxi-data-100K.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwessels/simdcsv/HEAD/testdata/nyc-taxi-data-100K.csv -------------------------------------------------------------------------------- /testdata/parking-citations-100K.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwessels/simdcsv/HEAD/testdata/parking-citations-100K.csv -------------------------------------------------------------------------------- /testdata/worldcitiespop-100K.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fwessels/simdcsv/HEAD/testdata/worldcitiespop-100K.csv --------------------------------------------------------------------------------