Skip to content

Commit

Permalink
integrate llvm buffer deallocation (#121)
Browse files Browse the repository at this point in the history
  • Loading branch information
makslevental authored Feb 14, 2025
1 parent b9f0335 commit e39e7bb
Show file tree
Hide file tree
Showing 4 changed files with 76 additions and 160 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ on:
branches:
- main
workflow_dispatch:
branches:
- main
schedule:
# At minute 0 past hour 6. (see https://crontab.guru)
- cron: '00 06 * * *'
Expand Down Expand Up @@ -59,7 +57,11 @@ jobs:
- name: Install and configure
shell: bash
run: |
pip install .[test,mlir] -v
if [ ${{ matrix.py_version }} == '3.9' ]; then
pip install .[test,mlir] -v
else
pip install .[test,mlir,eudsl] -v
fi
- name: Test
shell: bash
Expand Down
Loading

0 comments on commit e39e7bb

Please sign in to comment.