resp-benchmark 0.1.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- resp_benchmark-0.1.2/.github/workflows/CI.yml +165 -0
- resp_benchmark-0.1.2/.github/workflows/release.yml +23 -0
- resp_benchmark-0.1.2/.gitignore +72 -0
- resp_benchmark-0.1.2/Cargo.lock +1065 -0
- resp_benchmark-0.1.2/Cargo.toml +29 -0
- resp_benchmark-0.1.2/LICENSE +21 -0
- resp_benchmark-0.1.2/PKG-INFO +81 -0
- resp_benchmark-0.1.2/README.md +69 -0
- resp_benchmark-0.1.2/pyproject.toml +23 -0
- resp_benchmark-0.1.2/python/resp_benchmark/__init__.py +1 -0
- resp_benchmark-0.1.2/python/resp_benchmark/cli.py +43 -0
- resp_benchmark-0.1.2/python/resp_benchmark/cores.py +24 -0
- resp_benchmark-0.1.2/python/resp_benchmark/wrapper.py +178 -0
- resp_benchmark-0.1.2/rustfmt.toml +1 -0
- resp_benchmark-0.1.2/src/async_flag.rs +31 -0
- resp_benchmark-0.1.2/src/auto_connection.rs +143 -0
- resp_benchmark-0.1.2/src/bench.rs +178 -0
- resp_benchmark-0.1.2/src/client.rs +97 -0
- resp_benchmark-0.1.2/src/command/distribution.rs +44 -0
- resp_benchmark-0.1.2/src/command/mod.rs +57 -0
- resp_benchmark-0.1.2/src/command/parser.rs +48 -0
- resp_benchmark-0.1.2/src/command/placeholder.rs +158 -0
- resp_benchmark-0.1.2/src/histogram.rs +170 -0
- resp_benchmark-0.1.2/src/lib.rs +85 -0
- resp_benchmark-0.1.2/src/shared_context.rs +70 -0
|
@@ -0,0 +1,165 @@
|
|
|
1
|
+
name: CI
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches:
|
|
6
|
+
- main
|
|
7
|
+
- master
|
|
8
|
+
tags:
|
|
9
|
+
- '*'
|
|
10
|
+
pull_request:
|
|
11
|
+
workflow_dispatch:
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
permissions:
|
|
15
|
+
contents: read
|
|
16
|
+
|
|
17
|
+
jobs:
|
|
18
|
+
linux:
|
|
19
|
+
runs-on: ${{ matrix.platform.runner }}
|
|
20
|
+
strategy:
|
|
21
|
+
matrix:
|
|
22
|
+
platform:
|
|
23
|
+
- runner: ubuntu-latest
|
|
24
|
+
target: x86_64
|
|
25
|
+
- runner: ubuntu-latest
|
|
26
|
+
target: x86
|
|
27
|
+
- runner: ubuntu-latest
|
|
28
|
+
target: aarch64
|
|
29
|
+
- runner: ubuntu-latest
|
|
30
|
+
target: armv7
|
|
31
|
+
- runner: ubuntu-latest
|
|
32
|
+
target: s390x
|
|
33
|
+
- runner: ubuntu-latest
|
|
34
|
+
target: ppc64le
|
|
35
|
+
steps:
|
|
36
|
+
- uses: actions/checkout@v4
|
|
37
|
+
- uses: actions/setup-python@v5
|
|
38
|
+
with:
|
|
39
|
+
python-version: 3.x
|
|
40
|
+
- name: Build wheels
|
|
41
|
+
uses: PyO3/maturin-action@v1
|
|
42
|
+
with:
|
|
43
|
+
target: ${{ matrix.platform.target }}
|
|
44
|
+
args: --release --out dist --find-interpreter
|
|
45
|
+
sccache: 'true'
|
|
46
|
+
manylinux: auto
|
|
47
|
+
- name: Upload wheels
|
|
48
|
+
uses: actions/upload-artifact@v4
|
|
49
|
+
with:
|
|
50
|
+
name: wheels-linux-${{ matrix.platform.target }}
|
|
51
|
+
path: dist
|
|
52
|
+
|
|
53
|
+
musllinux:
|
|
54
|
+
runs-on: ${{ matrix.platform.runner }}
|
|
55
|
+
strategy:
|
|
56
|
+
matrix:
|
|
57
|
+
platform:
|
|
58
|
+
- runner: ubuntu-latest
|
|
59
|
+
target: x86_64
|
|
60
|
+
- runner: ubuntu-latest
|
|
61
|
+
target: x86
|
|
62
|
+
- runner: ubuntu-latest
|
|
63
|
+
target: aarch64
|
|
64
|
+
- runner: ubuntu-latest
|
|
65
|
+
target: armv7
|
|
66
|
+
steps:
|
|
67
|
+
- uses: actions/checkout@v4
|
|
68
|
+
- uses: actions/setup-python@v5
|
|
69
|
+
with:
|
|
70
|
+
python-version: 3.x
|
|
71
|
+
- name: Build wheels
|
|
72
|
+
uses: PyO3/maturin-action@v1
|
|
73
|
+
with:
|
|
74
|
+
target: ${{ matrix.platform.target }}
|
|
75
|
+
args: --release --out dist --find-interpreter
|
|
76
|
+
sccache: 'true'
|
|
77
|
+
manylinux: musllinux_1_2
|
|
78
|
+
- name: Upload wheels
|
|
79
|
+
uses: actions/upload-artifact@v4
|
|
80
|
+
with:
|
|
81
|
+
name: wheels-musllinux-${{ matrix.platform.target }}
|
|
82
|
+
path: dist
|
|
83
|
+
|
|
84
|
+
windows:
|
|
85
|
+
runs-on: ${{ matrix.platform.runner }}
|
|
86
|
+
strategy:
|
|
87
|
+
matrix:
|
|
88
|
+
platform:
|
|
89
|
+
- runner: windows-latest
|
|
90
|
+
target: x64
|
|
91
|
+
- runner: windows-latest
|
|
92
|
+
target: x86
|
|
93
|
+
steps:
|
|
94
|
+
- uses: actions/checkout@v4
|
|
95
|
+
- uses: actions/setup-python@v5
|
|
96
|
+
with:
|
|
97
|
+
python-version: 3.x
|
|
98
|
+
architecture: ${{ matrix.platform.target }}
|
|
99
|
+
- name: Build wheels
|
|
100
|
+
uses: PyO3/maturin-action@v1
|
|
101
|
+
with:
|
|
102
|
+
target: ${{ matrix.platform.target }}
|
|
103
|
+
args: --release --out dist --find-interpreter
|
|
104
|
+
sccache: 'true'
|
|
105
|
+
- name: Upload wheels
|
|
106
|
+
uses: actions/upload-artifact@v4
|
|
107
|
+
with:
|
|
108
|
+
name: wheels-windows-${{ matrix.platform.target }}
|
|
109
|
+
path: dist
|
|
110
|
+
|
|
111
|
+
macos:
|
|
112
|
+
runs-on: ${{ matrix.platform.runner }}
|
|
113
|
+
strategy:
|
|
114
|
+
matrix:
|
|
115
|
+
platform:
|
|
116
|
+
- runner: macos-12
|
|
117
|
+
target: x86_64
|
|
118
|
+
- runner: macos-14
|
|
119
|
+
target: aarch64
|
|
120
|
+
steps:
|
|
121
|
+
- uses: actions/checkout@v4
|
|
122
|
+
- uses: actions/setup-python@v5
|
|
123
|
+
with:
|
|
124
|
+
python-version: 3.x
|
|
125
|
+
- name: Build wheels
|
|
126
|
+
uses: PyO3/maturin-action@v1
|
|
127
|
+
with:
|
|
128
|
+
target: ${{ matrix.platform.target }}
|
|
129
|
+
args: --release --out dist --find-interpreter
|
|
130
|
+
sccache: 'true'
|
|
131
|
+
- name: Upload wheels
|
|
132
|
+
uses: actions/upload-artifact@v4
|
|
133
|
+
with:
|
|
134
|
+
name: wheels-macos-${{ matrix.platform.target }}
|
|
135
|
+
path: dist
|
|
136
|
+
|
|
137
|
+
sdist:
|
|
138
|
+
runs-on: ubuntu-latest
|
|
139
|
+
steps:
|
|
140
|
+
- uses: actions/checkout@v4
|
|
141
|
+
- name: Build sdist
|
|
142
|
+
uses: PyO3/maturin-action@v1
|
|
143
|
+
with:
|
|
144
|
+
command: sdist
|
|
145
|
+
args: --out dist
|
|
146
|
+
- name: Upload sdist
|
|
147
|
+
uses: actions/upload-artifact@v4
|
|
148
|
+
with:
|
|
149
|
+
name: wheels-sdist
|
|
150
|
+
path: dist
|
|
151
|
+
|
|
152
|
+
release:
|
|
153
|
+
name: Release
|
|
154
|
+
runs-on: ubuntu-latest
|
|
155
|
+
if: "startsWith(github.ref, 'refs/tags/')"
|
|
156
|
+
needs: [linux, musllinux, windows, macos, sdist]
|
|
157
|
+
steps:
|
|
158
|
+
- uses: actions/download-artifact@v4
|
|
159
|
+
- name: Publish to PyPI
|
|
160
|
+
uses: PyO3/maturin-action@v1
|
|
161
|
+
env:
|
|
162
|
+
MATURIN_PYPI_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
|
|
163
|
+
with:
|
|
164
|
+
command: upload
|
|
165
|
+
args: --non-interactive --skip-existing wheels-*/*
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
name: Release
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
workflow_dispatch:
|
|
5
|
+
|
|
6
|
+
jobs:
|
|
7
|
+
release:
|
|
8
|
+
runs-on: ubuntu-latest
|
|
9
|
+
steps:
|
|
10
|
+
- uses: actions/checkout@v4
|
|
11
|
+
|
|
12
|
+
- name: Set up Rust
|
|
13
|
+
uses: actions-rust-lang/setup-rust-toolchain@v1
|
|
14
|
+
with:
|
|
15
|
+
components: rustfmt
|
|
16
|
+
|
|
17
|
+
- name: Install cargo-release
|
|
18
|
+
run: cargo install cargo-release
|
|
19
|
+
|
|
20
|
+
- name: Run cargo release
|
|
21
|
+
env:
|
|
22
|
+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
23
|
+
run: cargo release patch --no-publish --execute
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
/target
|
|
2
|
+
|
|
3
|
+
# Byte-compiled / optimized / DLL files
|
|
4
|
+
__pycache__/
|
|
5
|
+
.pytest_cache/
|
|
6
|
+
*.py[cod]
|
|
7
|
+
|
|
8
|
+
# C extensions
|
|
9
|
+
*.so
|
|
10
|
+
|
|
11
|
+
# Distribution / packaging
|
|
12
|
+
.Python
|
|
13
|
+
.venv/
|
|
14
|
+
env/
|
|
15
|
+
bin/
|
|
16
|
+
build/
|
|
17
|
+
develop-eggs/
|
|
18
|
+
dist/
|
|
19
|
+
eggs/
|
|
20
|
+
lib/
|
|
21
|
+
lib64/
|
|
22
|
+
parts/
|
|
23
|
+
sdist/
|
|
24
|
+
var/
|
|
25
|
+
include/
|
|
26
|
+
man/
|
|
27
|
+
venv/
|
|
28
|
+
*.egg-info/
|
|
29
|
+
.installed.cfg
|
|
30
|
+
*.egg
|
|
31
|
+
|
|
32
|
+
# Installer logs
|
|
33
|
+
pip-log.txt
|
|
34
|
+
pip-delete-this-directory.txt
|
|
35
|
+
pip-selfcheck.json
|
|
36
|
+
|
|
37
|
+
# Unit test / coverage reports
|
|
38
|
+
htmlcov/
|
|
39
|
+
.tox/
|
|
40
|
+
.coverage
|
|
41
|
+
.cache
|
|
42
|
+
nosetests.xml
|
|
43
|
+
coverage.xml
|
|
44
|
+
|
|
45
|
+
# Translations
|
|
46
|
+
*.mo
|
|
47
|
+
|
|
48
|
+
# Mr Developer
|
|
49
|
+
.mr.developer.cfg
|
|
50
|
+
.project
|
|
51
|
+
.pydevproject
|
|
52
|
+
|
|
53
|
+
# Rope
|
|
54
|
+
.ropeproject
|
|
55
|
+
|
|
56
|
+
# Django stuff:
|
|
57
|
+
*.log
|
|
58
|
+
*.pot
|
|
59
|
+
|
|
60
|
+
.DS_Store
|
|
61
|
+
|
|
62
|
+
# Sphinx documentation
|
|
63
|
+
docs/_build/
|
|
64
|
+
|
|
65
|
+
# PyCharm
|
|
66
|
+
.idea/
|
|
67
|
+
|
|
68
|
+
# VSCode
|
|
69
|
+
.vscode/
|
|
70
|
+
|
|
71
|
+
# Pyenv
|
|
72
|
+
.python-version
|