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,151 changes: 1,994 additions & 157 deletions Cargo.lock

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[workspace]
members = ["crates/openquant", "crates/pyopenquant"]
resolver = "2"

[patch.crates-io]
pyo3-polars = { path = "vendor/pyo3-polars" }
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ python3 scripts/check_bench_thresholds.py --baseline benchmarks/baseline_benchma
## Research Flywheel (Python + Rust)
```bash
# Python env + bindings
uv venv --python 3.11 .venv
uv venv --python 3.13 .venv
uv sync --group dev
uv run --python .venv/bin/python maturin develop --manifest-path crates/pyopenquant/Cargo.toml

Expand All @@ -51,6 +51,9 @@ uv run --python .venv/bin/python python experiments/run_pipeline.py --config exp

# Rust notebook-companion smoke
cargo run -p openquant --example research_notebook_smoke

# Python pipeline micro-benchmark (for speed demos)
uv run --python .venv/bin/python python python/benchmarks/benchmark_pipeline.py --iterations 30 --bars 2048
```

## Crate Layout
Expand Down
1 change: 1 addition & 0 deletions crates/openquant/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ statrs = "0.16"
rand_distr = "0.4"
nalgebra = "0.32"
csv = "1"
polars = { version = "0.46", default-features = false, features = ["strings", "lazy"] }

[dev-dependencies]
csv = "1"
Expand Down
Loading