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
3 changes: 2 additions & 1 deletion .github/workflows/infra-generate-ccache-gap9.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ jobs:
deactivate

- name: Generate CCache for GAP9
shell: bash
run: |
source /app/install/gap9-sdk/.gap9-venv/bin/activate
source /app/install/gap9-sdk/configs/gap9_evk_audio.sh || true
Expand All @@ -44,7 +45,7 @@ jobs:
mkdir -p /app/.ccache
export CCACHE_DIR=/app/.ccache
pytest 'test_platforms.py::test_gap9_kernels[Kernels/Integer/Add/Regular]' --skipsim
pytest 'test_platforms.py::test_gap9_tiled_kernels_l2_singlebuffer[Kernels/Integer/Add/Large-5000-L2-singlebuffer]' --skipsim
pytest 'test_platforms.py::test_gap9_tiled_kernels_l2_singlebuffer[Kernels/Integer/MatMul/Regular-64000-L2-singlebuffer]' --skipsim
deactivate

- name: Clean and Upload CCache
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/infra-generate-ccache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ jobs:
run: pip install -e .

- name: Generate CCache
shell: bash
run: |
cd DeeployTest
mkdir -p /app/.ccache
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ This file contains the changelog for the Deeploy project. The changelog is divid


### List of Pull Requests
- Fix CI Cache Generation [#176](https://github.com/pulp-platform/Deeploy/pull/176)
- Fix Broken CI [#175](https://github.com/pulp-platform/Deeploy/pull/175)
- Improve Docstring and Debugging [#160](https://github.com/pulp-platform/Deeploy/pull/160)
- Add GAP9 Container Support [#163](https://github.com/pulp-platform/Deeploy/pull/163)
Expand Down Expand Up @@ -38,6 +39,8 @@ This file contains the changelog for the Deeploy project. The changelog is divid
- Added @runwangdl as a code owner

### Fixed
- Add missing `shell: bash` directive to CI cache generation steps to ensure correct shell execution
- Fix wrong test case in GAP9 ccache workflow (`test_gap9_tiled_kernels_l2_singlebuffer` using `MatMul/Regular` instead of `Add/Large`)
- Fix Docker flow to fetch `*.so` git lfs files
- Downgrade `setuptools` to `81.0.0`
- im2col buffer size in Conv1d template
Expand Down
Loading