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
2 changes: 1 addition & 1 deletion .github/actions/bench/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ runs:
- name: Check namespace
shell: ${{ env.SHELL }}
run: |
check-namespace
./scripts/check-namespace
- name: Store benchmark result
uses: benchmark-action/github-action-benchmark@d48d326b4ca9ba73ca0cd0d59f108f9e02a381c7 # v1.20.4
with:
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/bench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,14 @@ jobs:
ldflags: "-flto"
bench_extra_args: "-r"
nix_shell: ci-bench
- system: pqcp-ppc64
name: ppc64le (POWER10) benchmarks
bench_pmu: PERF
archflags: "-mcpu=native"
cflags: "-flto -DMLK_FORCE_PPC64LE"
ldflags: "-flto"
bench_extra_args: "-r"
nix_shell: ''
if: github.repository_owner == 'pq-code-package' && (github.event.label.name == 'benchmark' || github.ref == 'refs/heads/main')
runs-on: self-hosted-${{ matrix.target.system }}
steps:
Expand Down
16 changes: 16 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,22 @@ jobs:
compile_mode: ${{ matrix.target.mode }}
cflags: "-DMLKEM_DEBUG"
opt: 'opt'
ppc64le_tests:
if: github.repository_owner == 'pq-code-package' && !github.event.pull_request.head.repo.fork
name: Functional tests (ppc64le/POWER10, native)
runs-on: pqcp-ppc64
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: build + test
uses: ./.github/actions/multi-functest
Comment thread
hanno-becker marked this conversation as resolved.
with:
nix-shell: ''
cflags: "-DMLK_FORCE_PPC64LE"
- name: build + test (+debug)
uses: ./.github/actions/multi-functest
with:
nix-shell: ''
cflags: "-DMLKEM_DEBUG -DMLK_FORCE_PPC64LE"
backend_tests:
name: AArch64 FIPS202 backends (${{ matrix.backend }})
strategy:
Expand Down