-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added support for Arm-Neon 128-bit SIMD intrinsics. * Modified some lines to correct cleanliness. * Updated the raw_json_data class to remove superfluous functions. * Updated some of the error_codes. * Modified the parser, validator, serializer, and minifier classes to reduce function call overhead. * Refactored the usage of ascii_classes to instead utilize the json_structural_type enumeration. * Modified the CPU-detection script. * Added a new compare function to accelerate string comparisons. * Added MSVC, CLANG and GNU macros.
- Loading branch information
1 parent
b6b8720
commit d657769
Showing
95 changed files
with
122,318 additions
and
47,682 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
custom: ['https://www.paypal.com/donate/?hosted_button_id=Z6RURQ8UCLQHY'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
name: Build-and-Test-CLANG-MacOS | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- main | ||
- dev | ||
|
||
jobs: | ||
Build: | ||
runs-on: macos-latest | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
clang: [17] | ||
build_type: [Debug, Release] | ||
std: [20] | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Install the latest clang compiler. | ||
run: | | ||
brew install llvm | ||
ls /opt/homebrew/opt/llvm/bin | ||
- name: Configure CMake | ||
working-directory: ./ | ||
run: | | ||
cmake -S . -B ./Build -DCMAKE_BUILD_TYPE=${{matrix.build_type}} -DCMAKE_CXX_COMPILER=/opt/homebrew/opt/llvm/bin/clang++ -DDEV="TRUE" -DJSONIFIER_TEST=true | ||
- name: Build the Test | ||
working-directory: ./Build | ||
run: | | ||
cmake --build . --config=${{matrix.build_type}} | ||
- name: Run the Test | ||
working-directory: ./Build/Tests | ||
run: | | ||
./Json-Performance | ||
continue-on-error: true | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
name: Build-and-Test-MSVC-Windows | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- main | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,9 @@ | ||
.vs/ | ||
out/ | ||
Build/ | ||
Output Files/ | ||
Output/ | ||
Documentation/docs | ||
Build/ | ||
Install/ | ||
DetectArchitecture.exe | ||
DetectArchitecture.obj | ||
JsonData.json | ||
DetectArchitecture.obj |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
cmake -S ./ -B ./Build -DCMAKE_BUILD_TYPE=Release | ||
cmake --build ./Build --config=Release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/bin/bash | ||
cmake -S ./ -B ./Build -DCMAKE_BUILD_TYPE=Release | ||
cmake --build ./Build --config=Release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
cmake_minimum_required(VERSION 3.10) | ||
project(FeatureDetection) | ||
|
||
# Add your source file(s) | ||
add_executable(feature_detector Main.cpp) |
Oops, something went wrong.