https://github.com/proxystore/benchmarks
ProxyStore benchmark suite
https://github.com/proxystore/benchmarks
Last synced: 4 months ago
JSON representation
ProxyStore benchmark suite
- Host: GitHub
- URL: https://github.com/proxystore/benchmarks
- Owner: proxystore
- License: mit
- Created: 2022-07-25T16:32:25.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2026-02-16T19:50:50.000Z (4 months ago)
- Last Synced: 2026-02-17T02:14:19.120Z (4 months ago)
- Language: Python
- Homepage:
- Size: 786 KB
- Stars: 2
- Watchers: 1
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ProxyStore Benchmark Suite
[](https://doi.org/10.5281/zenodo.8077901)

[](https://github.com/proxystore/proxystore-benchmarks/actions)
[](https://results.pre-commit.ci/latest/github/proxystore/proxystore-benchmarks/main)
[ProxyStore](https://github.com/proxystore/proxystore) benchmark repository.
Check out the [benchmark instructions](docs/) to get started.
# Installation
```
$ virtualenv venv
$ . venv/bin/activate
$ pip install -e .
```
The `psbench` package can also be installed into a Conda environment if that
is your jam.
## Development Installation
[Tox](https://tox.wiki/en/3.0.0/index.html)'s `--devenv` is the recommended
way to configure a development environment.
```
$ tox --devenv venv -e py 310
$ . venv/bin/activate
$ pre-commit install
```
Alternatively, a development environment can be manually configured.
```
$ virtualenv venv
$ . venv/bin/activate
$ pip install -e .[dev]
$ pre-commit install
```
The test suite can be run with `tox` or for a specific Python version with
`tox -e py39`. Linting/type-checking/etc. can be run using pre-commit:
`pre-commit run --all-files`.