Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion benchmarks/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ transforms, but the explicit warmup makes the intent visible.
Prerequisites:

```bash
pip install asv psutil
pip install ".[benchmark]"
```

Run benchmarks against the current environment:
Expand Down
2 changes: 1 addition & 1 deletion benchmarks/asv.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@
"build_cache_size": 2,
"default_benchmark_timeout": 500,
"regressions_thresholds": {
".*": 0.3
".*": 0.2
}
}
2 changes: 2 additions & 0 deletions benchmarks/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
psutil
Comment thread
vchamarthi marked this conversation as resolved.
scipy>=1.10
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">=3.10,<3.15"

[project.optional-dependencies]
benchmark = ["asv>=0.6", "psutil"]
benchmark = ["asv>=0.6", "psutil", "scipy>=1.10"]
scipy_interface = ["scipy>=1.10", "mkl-service"]
test = ["pytest", "scipy>=1.10", "mkl-service"]

Expand Down
Loading