mirror of
https://github.com/simdjson/simdjson
synced 2026-06-08 17:27:07 +00:00
e8f370b085
* Add cascadelake implementation, which use AVX512 Intrinsics to optimize performance(#1811) Co-authored-by: mellonyou <fangzheng.zhang@intel.com> Co-authored-by: wanweiqiangintel <weiqiang.wan@intel.com>
40 lines
1.1 KiB
C++
40 lines
1.1 KiB
C++
#include "simdjson.h"
|
|
|
|
SIMDJSON_PUSH_DISABLE_WARNINGS
|
|
SIMDJSON_DISABLE_UNDESIRED_WARNINGS
|
|
|
|
#include "to_chars.cpp"
|
|
#include "from_chars.cpp"
|
|
#include "internal/error_tables.cpp"
|
|
#include "internal/jsoncharutils_tables.cpp"
|
|
#include "internal/numberparsing_tables.cpp"
|
|
#include "internal/simdprune_tables.cpp"
|
|
#include "implementation.cpp"
|
|
|
|
#if SIMDJSON_IMPLEMENTATION_ARM64
|
|
#include "arm64/implementation.cpp"
|
|
#include "arm64/dom_parser_implementation.cpp"
|
|
#endif
|
|
#if SIMDJSON_IMPLEMENTATION_FALLBACK
|
|
#include "fallback/implementation.cpp"
|
|
#include "fallback/dom_parser_implementation.cpp"
|
|
#endif
|
|
#if SIMDJSON_IMPLEMENTATION_ICELAKE
|
|
#include "icelake/implementation.cpp"
|
|
#include "icelake/dom_parser_implementation.cpp"
|
|
#endif
|
|
#if SIMDJSON_IMPLEMENTATION_HASWELL
|
|
#include "haswell/implementation.cpp"
|
|
#include "haswell/dom_parser_implementation.cpp"
|
|
#endif
|
|
#if SIMDJSON_IMPLEMENTATION_PPC64
|
|
#include "ppc64/implementation.cpp"
|
|
#include "ppc64/dom_parser_implementation.cpp"
|
|
#endif
|
|
#if SIMDJSON_IMPLEMENTATION_WESTMERE
|
|
#include "westmere/implementation.cpp"
|
|
#include "westmere/dom_parser_implementation.cpp"
|
|
#endif
|
|
|
|
SIMDJSON_POP_DISABLE_WARNINGS
|