├── LICENSE ├── README.md ├── benchmark ├── benchmark.cpp └── benchmark2_vector_vs_unoredred_set.cpp ├── builtin.h ├── fast_find_simd.h └── test ├── alignment_example.cpp ├── array_example.cpp ├── example.cpp ├── static_assert_fail_test.cpp └── test_not_scalar_type.cpp /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungJJinKang/std_find_simd/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungJJinKang/std_find_simd/HEAD/README.md -------------------------------------------------------------------------------- /benchmark/benchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungJJinKang/std_find_simd/HEAD/benchmark/benchmark.cpp -------------------------------------------------------------------------------- /benchmark/benchmark2_vector_vs_unoredred_set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungJJinKang/std_find_simd/HEAD/benchmark/benchmark2_vector_vs_unoredred_set.cpp -------------------------------------------------------------------------------- /builtin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungJJinKang/std_find_simd/HEAD/builtin.h -------------------------------------------------------------------------------- /fast_find_simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungJJinKang/std_find_simd/HEAD/fast_find_simd.h -------------------------------------------------------------------------------- /test/alignment_example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungJJinKang/std_find_simd/HEAD/test/alignment_example.cpp -------------------------------------------------------------------------------- /test/array_example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungJJinKang/std_find_simd/HEAD/test/array_example.cpp -------------------------------------------------------------------------------- /test/example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungJJinKang/std_find_simd/HEAD/test/example.cpp -------------------------------------------------------------------------------- /test/static_assert_fail_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungJJinKang/std_find_simd/HEAD/test/static_assert_fail_test.cpp -------------------------------------------------------------------------------- /test/test_not_scalar_type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SungJJinKang/std_find_simd/HEAD/test/test_not_scalar_type.cpp --------------------------------------------------------------------------------