-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bumps [slothy](https://github.com/slothy-optimizer/slothy) from `82adad4` to `dc8abb2`. - [Commits](slothy-optimizer/slothy@82adad4...dc8abb2) --- updated-dependencies: - dependency-name: slothy dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]>
- Loading branch information
1 parent
04f4b68
commit b841496
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule slothy
updated
16 files
+33 −0 | .github/actions/setup-ubuntu/action.yml | |
+9 −37 | .github/workflows/test_basic.yaml | |
+116 −12 | example.py | |
+20 −5 | examples/naive/aarch64/ntt_kyber_123_4567.s | |
+20 −0 | examples/naive/armv7m/armv7m_simple0_func.s | |
+108 −82 | examples/naive/armv7m/keccakf1600_pqm4.s | |
+3,321 −3,320 | examples/opt/armv7m/keccakf1600_old_opt_m7.s | |
+3,995 −0 | examples/opt/armv7m/keccakf1600_pqm4_opt_m7.s | |
+1 −0 | requirements.txt | |
+68 −18 | slothy/core/config.py | |
+128 −2 | slothy/core/core.py | |
+140 −2 | slothy/core/slothy.py | |
+135 −4 | slothy/helper.py | |
+102 −1 | slothy/targets/aarch64/aarch64_neon.py | |
+87 −6 | slothy/targets/arm_v7m/arch_v7m.py | |
+7 −2 | slothy/targets/arm_v81m/arch_v81m.py |