-
Notifications
You must be signed in to change notification settings - Fork 215
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
255 additions
and
5 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
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 |
---|---|---|
|
@@ -8,5 +8,6 @@ | |
/include/cargo | ||
/perf.* | ||
/target | ||
/tmp | ||
/vendor | ||
__pycache__ |
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,78 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -eou pipefail | ||
|
||
rm -f ./perf.fdata | ||
rm -rf tmp | ||
|
||
wheel=$(find "${CARGO_TARGET_DIR}/wheels" -type f -name "orjson*.whl" -exec basename {} \;) | ||
|
||
unzip -q -o "${CARGO_TARGET_DIR}/wheels/${wheel}" -d tmp | ||
sharedob=$(find tmp/orjson -type f -name "orjson*.so" -exec basename {} \;) | ||
|
||
installedobj=$(find .venv -type f -name "orjson*.so") | ||
llvm-bolt "${installedobj}" --instrument --o orjson.so | ||
mv orjson.so "${installedobj}" | ||
|
||
echo "collecting perf data..." | ||
|
||
./script/profdata | ||
mv /tmp/prof.fdata ./perf.fdata | ||
|
||
llvm-bolt \ | ||
"tmp/orjson/${sharedob}" \ | ||
--o "${sharedob}" \ | ||
--data=perf.fdata \ | ||
--strict \ | ||
--use-gnu-stack \ | ||
--assume-abi \ | ||
--use-gnu-stack \ | ||
--sequential-disassembly \ | ||
--update-debug-sections \ | ||
--use-old-text \ | ||
--relocs \ | ||
--hot-data \ | ||
--cg-from-perf-data \ | ||
--cg-use-split-hot-size \ | ||
--frame-opt=all \ | ||
--frame-opt-rm-stores \ | ||
--inline-ap \ | ||
--inline-small-functions \ | ||
--inline-memcpy \ | ||
--eliminate-unreachable \ | ||
--peepholes=all \ | ||
--plt=all \ | ||
--icf \ | ||
--icp-eliminate-loads \ | ||
--indirect-call-promotion=all \ | ||
--jump-tables=aggressive \ | ||
--preserve-blocks-alignment \ | ||
--reg-reassign \ | ||
--sctc-mode=always \ | ||
--shorten-instructions \ | ||
--simplify-conditional-tail-calls \ | ||
--simplify-rodata-loads \ | ||
--split-all-cold \ | ||
--reorder-blocks=cache+ \ | ||
--reorder-functions=cdsort \ | ||
--reorder-functions-use-hot-size \ | ||
--strip-rep-ret \ | ||
--use-aggr-reg-reassign \ | ||
--use-compact-aligner \ | ||
--use-edge-counts \ | ||
--x86-align-branch-boundary-hot-only \ | ||
--x86-strip-redundant-address-size \ | ||
--dyno-stats | ||
|
||
if [[ "$@" == *"strip"* ]]; then | ||
strip --strip-debug "${sharedob}" | ||
fi | ||
|
||
mv -f "${sharedob}" tmp/orjson | ||
|
||
./script/fix-dist-info $(find tmp -type f -name "RECORD") $(find tmp -type f -name "orjson*.so") | ||
|
||
cd tmp | ||
zip -9 -r "${wheel}" -xi * | ||
cd .. | ||
mv -f "tmp/${wheel}" "${CARGO_TARGET_DIR}/wheels" |
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,38 @@ | ||
#!/usr/bin/env python3 | ||
# SPDX-License-Identifier: (Apache-2.0 OR MIT) | ||
# usage: | ||
# ./script/fix-dist-info $(find tmp -type f -name "RECORD") $(find tmp -type f -name "orjson*.so") | ||
|
||
import base64 | ||
import hashlib | ||
import pathlib | ||
import sys | ||
|
||
record_path = pathlib.Path(sys.argv[1]) | ||
so_path = pathlib.Path(sys.argv[2]) | ||
so_name = sys.argv[2].split("/")[-1] | ||
|
||
print(f"Fixing hash of {so_path} in {record_path} ...") | ||
|
||
so_bytes = so_path.read_bytes() | ||
so_len = len(so_bytes) | ||
|
||
# URL_SAFE_NO_PAD.encode(Sha256::digest(bytes)); | ||
so_hash = ( | ||
base64.urlsafe_b64encode(hashlib.sha256(so_bytes).digest()) | ||
.rstrip(b"=") | ||
.decode("utf-8") | ||
) | ||
|
||
record_original = record_path.read_bytes().decode("utf-8") | ||
record_fixed = [] | ||
for line in record_original.split("\n"): | ||
print(line) | ||
if line.startswith(f"orjson/{so_name}"): | ||
new_line = f"orjson/{so_name},sha256={so_hash},{so_len}" | ||
print(f"fixed: {new_line}") | ||
record_fixed.append(new_line) | ||
else: | ||
record_fixed.append(line) | ||
|
||
record_path.write_bytes("\n".join(record_fixed).encode("utf-8")) |
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,123 @@ | ||
#!/usr/bin/env python3 | ||
# SPDX-License-Identifier: (Apache-2.0 OR MIT) | ||
|
||
import datetime | ||
import gc | ||
import lzma | ||
import os | ||
import sys | ||
|
||
import pytest | ||
from faker import Faker | ||
|
||
from orjson import ( | ||
OPT_APPEND_NEWLINE, | ||
OPT_INDENT_2, | ||
OPT_NAIVE_UTC, | ||
OPT_OMIT_MICROSECONDS, | ||
dumps, | ||
loads, | ||
) | ||
|
||
os.sched_setaffinity(os.getpid(), {0, 1}) | ||
gc.disable() | ||
|
||
|
||
N = 200 | ||
|
||
NUM_LOOPS = 20 | ||
NUM_ENTRIES = 5 | ||
|
||
FAKER_LOCALES = [ | ||
"ar_AA", | ||
"fi_FI", | ||
"fil_PH", | ||
"he_IL", | ||
"ja_JP", | ||
"th_TH", | ||
"tr_TR", | ||
"uk_UA", | ||
"vi_VN", | ||
] | ||
|
||
NOW = datetime.datetime.now() | ||
|
||
|
||
class Default: | ||
|
||
def __str__(self): | ||
return "aaa" | ||
|
||
def default(obj, /): | ||
return str(obj) | ||
|
||
|
||
def fake(): | ||
print("fake ...") | ||
fake = Faker(FAKER_LOCALES) | ||
profile_keys = tuple(set(fake.profile().keys()) - {"current_location"}) | ||
|
||
DATA = [ | ||
[ | ||
{ | ||
"id": "jzoijxzzoijx", | ||
"created_at": NOW, | ||
"person": fake.profile(profile_keys), | ||
"emoji": fake.emoji(), | ||
"😾": "", | ||
"z": Default(), | ||
"a": 12123, | ||
"int": 19298012910, | ||
} | ||
for _ in range(0, NUM_ENTRIES) | ||
] | ||
for _ in range(0, NUM_LOOPS) | ||
] | ||
|
||
orjson_opt = OPT_NAIVE_UTC | OPT_OMIT_MICROSECONDS | ||
for _ in range(N): | ||
for each in DATA: | ||
loads(dumps(each, default=default, option=orjson_opt)) | ||
|
||
|
||
def _run_fixture(fixture: str, iterations: int): | ||
with lzma.open(fixture, "rb") as fileh: | ||
file_bytes = fileh.read() | ||
|
||
file_str = file_bytes.decode("utf-8") | ||
|
||
for _ in range(iterations): | ||
dumps(loads(file_bytes)) | ||
|
||
for _ in range(iterations): | ||
dumps(loads(file_str)) | ||
|
||
|
||
|
||
def fixture(): | ||
print("fixture ...") | ||
_run_fixture("data/github.json.xz", 500 * N) | ||
_run_fixture("data/twitter.json.xz", 100 * N) | ||
_run_fixture("data/citm_catalog.json.xz", 20 * N) | ||
_run_fixture("data/canada.json.xz", 2 * N) | ||
|
||
|
||
def run_pytest(): | ||
print("pytest ...") | ||
pytest.main( | ||
[ | ||
"--quiet", | ||
"--ignore=test/test_api.py", | ||
"--ignore=test/test_fake.py", | ||
"--ignore=test/test_fixture.py", | ||
"--ignore=test/test_memory.py", | ||
"--ignore=test/test_ujson.py", | ||
"test", | ||
] | ||
) | ||
|
||
|
||
if __name__ == "__main__": | ||
run_pytest() | ||
fake() | ||
fixture() |