-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Bagatur <[email protected]>
- Loading branch information
Showing
7 changed files
with
2,627 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: Weekly Tool Benchmarks | ||
|
||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: '0 0 * * 0' # Runs at midnight (00:00) every Sunday (UTC time) | ||
|
||
jobs: | ||
run_tool_benchmarks: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Set up Python 3.12 + Poetry ${{ env.POETRY_VERSION }} | ||
uses: "./.github/actions/poetry_setup" | ||
with: | ||
python-version: '3.12' | ||
poetry-version: ${{ env.POETRY_VERSION }} | ||
working-directory: . | ||
cache-key: benchmarks-all | ||
|
||
- name: Install dependencies | ||
shell: bash | ||
run: | | ||
echo "Running tests, installing dependencies with poetry..." | ||
poetry install --with test,lint,typing,docs | ||
- name: Multiverse math benchmark | ||
run: python scripts/multiverse_math_benchmark.py | ||
|
||
- name: Query analysis benchmark | ||
run: python scripts/query_analysis_benchmark.py |
436 changes: 436 additions & 0 deletions
436
docs/source/notebooks/tool_usage/multiverse_math_benchmark.ipynb
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.