mirror of
https://github.com/simdjson/simdjson
synced 2026-06-08 17:27:07 +00:00
7068894be3
* WIP: initial RVV implementation Co-authored-by: gong-flying <gongxiaofei24@iscas.ac.cn> * Fix issue with SIMDJSON_CONDITIONAL_INCLUDE in rvv/implementation.h Co-authored-by: gong-flying <gongxiaofei24@iscas.ac.cn> * drop RISC-V V-extension auto-detection in cmake - Remove CMake logic that adds -DSIMDJSON_IS_RVV=1. - Let SIMDJSON_IS_RVV be determined by portability.h. - Translate placeholder comment to English. Co-authored-by: gong-flying <gongxiaofei24@iscas.ac.cn> * fixing amalgamation. Co-authored-by: gong-flying <gongxiaofei24@iscas.ac.cn> * adding base Co-authored-by: gong-flying <gongxiaofei24@iscas.ac.cn> --------- Co-authored-by: gong-flying <gongxiaofei24@iscas.ac.cn> Co-authored-by: Daniel Lemire <daniel@lemire.me>
8 lines
176 B
C
8 lines
176 B
C
#ifndef SIMDJSON_RVV_H
|
|
#define SIMDJSON_RVV_H
|
|
|
|
#include "simdjson/rvv/begin.h"
|
|
#include "simdjson/generic/amalgamated.h"
|
|
#include "simdjson/rvv/end.h"
|
|
|
|
#endif // SIMDJSON_RVV_H
|