-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add CI runs for Kyber A55 NTT, sqmag and FFT
- Loading branch information
1 parent
bd6079c
commit 507a6fb
Showing
2 changed files
with
30 additions
and
0 deletions.
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,15 @@ | ||
name: Basic optimization scripts | ||
on: | ||
pull_request: | ||
branches: [ "main" ] | ||
jobs: | ||
build_test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Install python dependencies | ||
run: | | ||
python -m pip install -r requirements.txt | ||
- name: Run examples | ||
run: | | ||
(cd paper/scripts && ./slothy_sqmag.sh && ./slothy_fft.sh) |
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,15 @@ | ||
name: Kyber NTT Cortex-A55 | ||
on: | ||
pull_request: | ||
branches: [ "main" ] | ||
jobs: | ||
build_test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Install python dependencies | ||
run: | | ||
python -m pip install -r requirements.txt | ||
- name: Run examples | ||
run: | | ||
(cd paper/scripts && ./slothy_kyber_ntt_a55.sh) |