Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix #12

Merged
merged 6 commits into from
May 18, 2024
Merged

fix #12

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
4 changes: 2 additions & 2 deletions .github/workflows/asv_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ jobs:
git remote add upstream https://github.com/${{ github.repository }}.git
git fetch upstream
asv machine --yes
asv continuous -f 1.1 -b $REGEX upstream/main HEAD
asv continuous -f 1.1 -b $REGEX upstream/main HEAD -v
echo 'BENCH_OUTPUT<<EOF' >> $GITHUB_ENV
asv compare -f 1.1 upstream/main HEAD >> $GITHUB_ENV
asv compare -f 1.1 upstream/main HEAD >> $GITHUB_ENV -v
echo 'EOF' >> $GITHUB_ENV
echo "REGEX=$REGEX" >> $GITHUB_ENV

Expand Down
4 changes: 3 additions & 1 deletion asv.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@
"repo": "https://github.com/lapp0/outlines.git",
//"dvcs": "git",
"branches": ["main"],
"build_command": "pip install .",
"build_command": [
"python -m build -Cbuilddir=builddir --wheel --outdir {build_cache_dir} {build_dir}"
],
"environment_type": "virtualenv",
"show_commit_url": "https://github.com/lapp0/outlines/commit/",
"benchmark_dir": "benchmarks",
Expand Down
Loading