mirror of
https://github.com/simdjson/simdjson
synced 2026-06-08 17:27:07 +00:00
Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b4a0fd3ff4 | |||
| a1ff05a5e8 |
+1
-1
@@ -12,7 +12,7 @@ endif()
|
|||||||
project(
|
project(
|
||||||
simdjson
|
simdjson
|
||||||
# The version number is modified by tools/release.py
|
# The version number is modified by tools/release.py
|
||||||
VERSION 4.4.1
|
VERSION 4.4.2
|
||||||
DESCRIPTION "Parsing gigabytes of JSON per second"
|
DESCRIPTION "Parsing gigabytes of JSON per second"
|
||||||
HOMEPAGE_URL "https://simdjson.org/"
|
HOMEPAGE_URL "https://simdjson.org/"
|
||||||
LANGUAGES CXX C
|
LANGUAGES CXX C
|
||||||
|
|||||||
@@ -38,7 +38,7 @@ PROJECT_NAME = simdjson
|
|||||||
# could be handy for archiving the generated documentation or if some version
|
# could be handy for archiving the generated documentation or if some version
|
||||||
# control system is used.
|
# control system is used.
|
||||||
|
|
||||||
PROJECT_NUMBER = "4.4.1"
|
PROJECT_NUMBER = "4.4.2"
|
||||||
|
|
||||||
# Using the PROJECT_BRIEF tag one can provide an optional one line description
|
# Using the PROJECT_BRIEF tag one can provide an optional one line description
|
||||||
# for a project that appears at the top of each page and should give viewer a
|
# for a project that appears at the top of each page and should give viewer a
|
||||||
|
|||||||
@@ -32,7 +32,8 @@
|
|||||||
#define SIMDJSON_EXPERIMENTAL_HAS_LSX 1
|
#define SIMDJSON_EXPERIMENTAL_HAS_LSX 1
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
#if defined(__riscv_v_intrinsic) && __riscv_v_intrinsic >= 11000
|
#if defined(__riscv_v_intrinsic) && __riscv_v_intrinsic >= 11000 && \
|
||||||
|
defined(__riscv_vector)
|
||||||
#ifndef SIMDJSON_EXPERIMENTAL_HAS_RVV
|
#ifndef SIMDJSON_EXPERIMENTAL_HAS_RVV
|
||||||
#define SIMDJSON_EXPERIMENTAL_HAS_RVV 1
|
#define SIMDJSON_EXPERIMENTAL_HAS_RVV 1
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
#define SIMDJSON_SIMDJSON_VERSION_H
|
#define SIMDJSON_SIMDJSON_VERSION_H
|
||||||
|
|
||||||
/** The version of simdjson being used (major.minor.revision) */
|
/** The version of simdjson being used (major.minor.revision) */
|
||||||
#define SIMDJSON_VERSION "4.4.1"
|
#define SIMDJSON_VERSION "4.4.2"
|
||||||
|
|
||||||
namespace simdjson {
|
namespace simdjson {
|
||||||
enum {
|
enum {
|
||||||
@@ -19,7 +19,7 @@ enum {
|
|||||||
/**
|
/**
|
||||||
* The revision (major.minor.REVISION) of simdjson being used.
|
* The revision (major.minor.REVISION) of simdjson being used.
|
||||||
*/
|
*/
|
||||||
SIMDJSON_VERSION_REVISION = 1
|
SIMDJSON_VERSION_REVISION = 2
|
||||||
};
|
};
|
||||||
} // namespace simdjson
|
} // namespace simdjson
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
/* auto-generated on 2026-03-17 12:38:11 -0400. version 4.4.1 Do not edit! */
|
/* auto-generated on 2026-03-20 11:11:38 -0400. version 4.4.2 Do not edit! */
|
||||||
/* including simdjson.cpp: */
|
/* including simdjson.cpp: */
|
||||||
/* begin file simdjson.cpp */
|
/* begin file simdjson.cpp */
|
||||||
#define SIMDJSON_SRC_SIMDJSON_CPP
|
#define SIMDJSON_SRC_SIMDJSON_CPP
|
||||||
|
|||||||
+21
-12
@@ -1,4 +1,4 @@
|
|||||||
/* auto-generated on 2026-03-17 12:38:11 -0400. version 4.4.1 Do not edit! */
|
/* auto-generated on 2026-03-20 11:11:38 -0400. version 4.4.2 Do not edit! */
|
||||||
/* including simdjson.h: */
|
/* including simdjson.h: */
|
||||||
/* begin file simdjson.h */
|
/* begin file simdjson.h */
|
||||||
#ifndef SIMDJSON_H
|
#ifndef SIMDJSON_H
|
||||||
@@ -2538,7 +2538,7 @@ namespace std {
|
|||||||
#define SIMDJSON_SIMDJSON_VERSION_H
|
#define SIMDJSON_SIMDJSON_VERSION_H
|
||||||
|
|
||||||
/** The version of simdjson being used (major.minor.revision) */
|
/** The version of simdjson being used (major.minor.revision) */
|
||||||
#define SIMDJSON_VERSION "4.4.1"
|
#define SIMDJSON_VERSION "4.4.2"
|
||||||
|
|
||||||
namespace simdjson {
|
namespace simdjson {
|
||||||
enum {
|
enum {
|
||||||
@@ -2553,7 +2553,7 @@ enum {
|
|||||||
/**
|
/**
|
||||||
* The revision (major.minor.REVISION) of simdjson being used.
|
* The revision (major.minor.REVISION) of simdjson being used.
|
||||||
*/
|
*/
|
||||||
SIMDJSON_VERSION_REVISION = 1
|
SIMDJSON_VERSION_REVISION = 2
|
||||||
};
|
};
|
||||||
} // namespace simdjson
|
} // namespace simdjson
|
||||||
|
|
||||||
@@ -39744,7 +39744,8 @@ simdjson_warn_unused simdjson_result<std::string> extract_fractured_json(
|
|||||||
#define SIMDJSON_EXPERIMENTAL_HAS_LSX 1
|
#define SIMDJSON_EXPERIMENTAL_HAS_LSX 1
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
#if defined(__riscv_v_intrinsic) && __riscv_v_intrinsic >= 11000
|
#if defined(__riscv_v_intrinsic) && __riscv_v_intrinsic >= 11000 && \
|
||||||
|
defined(__riscv_vector)
|
||||||
#ifndef SIMDJSON_EXPERIMENTAL_HAS_RVV
|
#ifndef SIMDJSON_EXPERIMENTAL_HAS_RVV
|
||||||
#define SIMDJSON_EXPERIMENTAL_HAS_RVV 1
|
#define SIMDJSON_EXPERIMENTAL_HAS_RVV 1
|
||||||
#endif
|
#endif
|
||||||
@@ -41827,7 +41828,8 @@ simdjson_warn_unused simdjson_result<std::string> extract_fractured_json(
|
|||||||
#define SIMDJSON_EXPERIMENTAL_HAS_LSX 1
|
#define SIMDJSON_EXPERIMENTAL_HAS_LSX 1
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
#if defined(__riscv_v_intrinsic) && __riscv_v_intrinsic >= 11000
|
#if defined(__riscv_v_intrinsic) && __riscv_v_intrinsic >= 11000 && \
|
||||||
|
defined(__riscv_vector)
|
||||||
#ifndef SIMDJSON_EXPERIMENTAL_HAS_RVV
|
#ifndef SIMDJSON_EXPERIMENTAL_HAS_RVV
|
||||||
#define SIMDJSON_EXPERIMENTAL_HAS_RVV 1
|
#define SIMDJSON_EXPERIMENTAL_HAS_RVV 1
|
||||||
#endif
|
#endif
|
||||||
@@ -44397,7 +44399,8 @@ simdjson_warn_unused simdjson_result<std::string> extract_fractured_json(
|
|||||||
#define SIMDJSON_EXPERIMENTAL_HAS_LSX 1
|
#define SIMDJSON_EXPERIMENTAL_HAS_LSX 1
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
#if defined(__riscv_v_intrinsic) && __riscv_v_intrinsic >= 11000
|
#if defined(__riscv_v_intrinsic) && __riscv_v_intrinsic >= 11000 && \
|
||||||
|
defined(__riscv_vector)
|
||||||
#ifndef SIMDJSON_EXPERIMENTAL_HAS_RVV
|
#ifndef SIMDJSON_EXPERIMENTAL_HAS_RVV
|
||||||
#define SIMDJSON_EXPERIMENTAL_HAS_RVV 1
|
#define SIMDJSON_EXPERIMENTAL_HAS_RVV 1
|
||||||
#endif
|
#endif
|
||||||
@@ -46967,7 +46970,8 @@ simdjson_warn_unused simdjson_result<std::string> extract_fractured_json(
|
|||||||
#define SIMDJSON_EXPERIMENTAL_HAS_LSX 1
|
#define SIMDJSON_EXPERIMENTAL_HAS_LSX 1
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
#if defined(__riscv_v_intrinsic) && __riscv_v_intrinsic >= 11000
|
#if defined(__riscv_v_intrinsic) && __riscv_v_intrinsic >= 11000 && \
|
||||||
|
defined(__riscv_vector)
|
||||||
#ifndef SIMDJSON_EXPERIMENTAL_HAS_RVV
|
#ifndef SIMDJSON_EXPERIMENTAL_HAS_RVV
|
||||||
#define SIMDJSON_EXPERIMENTAL_HAS_RVV 1
|
#define SIMDJSON_EXPERIMENTAL_HAS_RVV 1
|
||||||
#endif
|
#endif
|
||||||
@@ -49652,7 +49656,8 @@ simdjson_warn_unused simdjson_result<std::string> extract_fractured_json(
|
|||||||
#define SIMDJSON_EXPERIMENTAL_HAS_LSX 1
|
#define SIMDJSON_EXPERIMENTAL_HAS_LSX 1
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
#if defined(__riscv_v_intrinsic) && __riscv_v_intrinsic >= 11000
|
#if defined(__riscv_v_intrinsic) && __riscv_v_intrinsic >= 11000 && \
|
||||||
|
defined(__riscv_vector)
|
||||||
#ifndef SIMDJSON_EXPERIMENTAL_HAS_RVV
|
#ifndef SIMDJSON_EXPERIMENTAL_HAS_RVV
|
||||||
#define SIMDJSON_EXPERIMENTAL_HAS_RVV 1
|
#define SIMDJSON_EXPERIMENTAL_HAS_RVV 1
|
||||||
#endif
|
#endif
|
||||||
@@ -52654,7 +52659,8 @@ simdjson_warn_unused simdjson_result<std::string> extract_fractured_json(
|
|||||||
#define SIMDJSON_EXPERIMENTAL_HAS_LSX 1
|
#define SIMDJSON_EXPERIMENTAL_HAS_LSX 1
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
#if defined(__riscv_v_intrinsic) && __riscv_v_intrinsic >= 11000
|
#if defined(__riscv_v_intrinsic) && __riscv_v_intrinsic >= 11000 && \
|
||||||
|
defined(__riscv_vector)
|
||||||
#ifndef SIMDJSON_EXPERIMENTAL_HAS_RVV
|
#ifndef SIMDJSON_EXPERIMENTAL_HAS_RVV
|
||||||
#define SIMDJSON_EXPERIMENTAL_HAS_RVV 1
|
#define SIMDJSON_EXPERIMENTAL_HAS_RVV 1
|
||||||
#endif
|
#endif
|
||||||
@@ -55130,7 +55136,8 @@ simdjson_warn_unused simdjson_result<std::string> extract_fractured_json(
|
|||||||
#define SIMDJSON_EXPERIMENTAL_HAS_LSX 1
|
#define SIMDJSON_EXPERIMENTAL_HAS_LSX 1
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
#if defined(__riscv_v_intrinsic) && __riscv_v_intrinsic >= 11000
|
#if defined(__riscv_v_intrinsic) && __riscv_v_intrinsic >= 11000 && \
|
||||||
|
defined(__riscv_vector)
|
||||||
#ifndef SIMDJSON_EXPERIMENTAL_HAS_RVV
|
#ifndef SIMDJSON_EXPERIMENTAL_HAS_RVV
|
||||||
#define SIMDJSON_EXPERIMENTAL_HAS_RVV 1
|
#define SIMDJSON_EXPERIMENTAL_HAS_RVV 1
|
||||||
#endif
|
#endif
|
||||||
@@ -57629,7 +57636,8 @@ simdjson_warn_unused simdjson_result<std::string> extract_fractured_json(
|
|||||||
#define SIMDJSON_EXPERIMENTAL_HAS_LSX 1
|
#define SIMDJSON_EXPERIMENTAL_HAS_LSX 1
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
#if defined(__riscv_v_intrinsic) && __riscv_v_intrinsic >= 11000
|
#if defined(__riscv_v_intrinsic) && __riscv_v_intrinsic >= 11000 && \
|
||||||
|
defined(__riscv_vector)
|
||||||
#ifndef SIMDJSON_EXPERIMENTAL_HAS_RVV
|
#ifndef SIMDJSON_EXPERIMENTAL_HAS_RVV
|
||||||
#define SIMDJSON_EXPERIMENTAL_HAS_RVV 1
|
#define SIMDJSON_EXPERIMENTAL_HAS_RVV 1
|
||||||
#endif
|
#endif
|
||||||
@@ -60132,7 +60140,8 @@ simdjson_warn_unused simdjson_result<std::string> extract_fractured_json(
|
|||||||
#define SIMDJSON_EXPERIMENTAL_HAS_LSX 1
|
#define SIMDJSON_EXPERIMENTAL_HAS_LSX 1
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
#if defined(__riscv_v_intrinsic) && __riscv_v_intrinsic >= 11000
|
#if defined(__riscv_v_intrinsic) && __riscv_v_intrinsic >= 11000 && \
|
||||||
|
defined(__riscv_vector)
|
||||||
#ifndef SIMDJSON_EXPERIMENTAL_HAS_RVV
|
#ifndef SIMDJSON_EXPERIMENTAL_HAS_RVV
|
||||||
#define SIMDJSON_EXPERIMENTAL_HAS_RVV 1
|
#define SIMDJSON_EXPERIMENTAL_HAS_RVV 1
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
Binary file not shown.
Reference in New Issue
Block a user