smithery.ai

benchmark

Run benchmarks for the crypto-rs-backtester project (Python and Rust).

First seen Apr 18, 2026

Installation

$ npx skills add https://smithery.ai

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Skill metadata

Parsed from SKILL.md frontmatter.

Version0.1.0
More metadata
owner
user
version
0.1.0

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,191 B
  • docs SUMMARY.md 87 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 2 installs

SKILL.md

Benchmark Skill

This skill allows you to run performance benchmarks for the project.

1. Python Benchmarks

Run the Python-side benchmarks using pytest.

pytest -m bench -q

2. Rust Benchmarks (Standard)

Run the standard Rust core benchmarks.

cargo bench -p backtester-core

3. Rust Benchmarks (Custom Configuration)

Run Rust benchmarks with custom parameters using the helper script. This allows you to tune the number of symbols, ticks per symbol, and batch window size.

# Run with default 'heavy' settings (8 symbols, 500k ticks)
./.agent/skills/benchmark/scripts/run_custom_bench.sh

You can also set environment variables manually if you prefer:

BACKTEST_BENCH_NSYMBOLS=8 \
BACKTEST_BENCH_TICKS_PER_SYMBOL=500000 \
cargo bench -p backtester-core --bench bench_core

4. Profile-Guided Optimization (PGO)

To build and benchmark with PGO (Linux/macOS). Note: This process is time-consuming as it runs a full build-profile-rebuild pipeline.

make pgo