simdjson 4.0.7
Ridiculously Fast JSON
Loading...
Searching...
No Matches
intrinsics.h
1#ifndef SIMDJSON_LASX_INTRINSICS_H
2#define SIMDJSON_LASX_INTRINSICS_H
3
4#ifndef SIMDJSON_CONDITIONAL_INCLUDE
5#include "simdjson/lasx/base.h"
6#endif // SIMDJSON_CONDITIONAL_INCLUDE
7
8// This should be the correct header whether
9// you use visual studio or other compilers.
10#include <lasxintrin.h>
11
12static_assert(sizeof(__m256i) <= simdjson::SIMDJSON_PADDING, "insufficient padding for LoongArch ASX");
13
14#endif // SIMDJSON_LASX_INTRINSICS_H
constexpr size_t SIMDJSON_PADDING
The amount of padding needed in a buffer to parse JSON.
Definition base.h:33