Skip to content

Commit

Permalink
Bump slothy from 2ebb278 to c061ae3
Browse files Browse the repository at this point in the history
Bumps [slothy](https://github.com/slothy-optimizer/slothy) from `2ebb278` to `c061ae3`.
- [Commits](slothy-optimizer/slothy@2ebb278...c061ae3)

---
updated-dependencies:
- dependency-name: slothy
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Dec 23, 2024
1 parent f42ea72 commit ef3337f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion slothy
Submodule slothy updated 44 files
+33 −0 .github/actions/setup-ubuntu/action.yml
+9 −37 .github/workflows/test_basic.yaml
+246 −7 example.py
+15 −0 examples/naive/aarch64/aarch64_split0.s
+20 −5 examples/naive/aarch64/ntt_kyber_123_4567.s
+29 −6 examples/naive/armv7m/armv7m_simple0.s
+20 −0 examples/naive/armv7m/armv7m_simple0_func.s
+45 −0 examples/naive/armv7m/basemul_257_asymmetric_dilithium.s
+61 −0 examples/naive/armv7m/basemul_257_dilithium.s
+52 −0 examples/naive/armv7m/caddq_dilithium.s
+9 −1 examples/naive/armv7m/loop_subs.s
+15 −0 examples/naive/armv7m/loop_vmov_cmp_forced.s
+69 −0 examples/naive/armv7m/pointwise_769_asymmetric_dilithium.s
+76 −0 examples/naive/armv7m/pointwise_769_dilithium.s
+73 −0 examples/naive/armv7m/pointwise_acc_montgomery_dilithium.s
+65 −0 examples/naive/armv7m/pointwise_montgomery_dilithium.s
+52 −0 examples/naive/armv7m/reduce32_dilithium.s
+17 −0 examples/opt/aarch64/aarch64_split0_opt_a55.s
+58 −22 examples/opt/armv7m/armv7m_simple0_opt_m7.s
+130 −0 examples/opt/armv7m/basemul_257_asymmetric_dilithium_opt_m7.s
+188 −0 examples/opt/armv7m/basemul_257_dilithium_opt_m7.s
+120 −0 examples/opt/armv7m/caddq_dilithium_opt_m7.s
+46 −2 examples/opt/armv7m/loop_subs_opt_m7.s
+35 −0 examples/opt/armv7m/loop_vmov_cmp_forced_opt_m7.s
+184 −0 examples/opt/armv7m/pointwise_769_asymmetric_dilithium_opt_m7.s
+193 −0 examples/opt/armv7m/pointwise_769_dilithium_opt_m7.s
+198 −0 examples/opt/armv7m/pointwise_acc_montgomery_dilithium_opt_m7.s
+173 −0 examples/opt/armv7m/pointwise_montgomery_dilithium_opt_m7.s
+136 −0 examples/opt/armv7m/reduce32_dilithium_opt_m7.s
+1 −0 requirements.txt
+68 −18 slothy/core/config.py
+86 −5 slothy/core/core.py
+48 −1 slothy/core/dataflow.py
+113 −34 slothy/core/slothy.py
+311 −7 slothy/helper.py
+6 −3 slothy/targets/aarch64/aarch64_big_experimental.py
+181 −11 slothy/targets/aarch64/aarch64_neon.py
+14 −8 slothy/targets/aarch64/apple_m1_firestorm_experimental.py
+9 −6 slothy/targets/aarch64/apple_m1_icestorm_experimental.py
+9 −6 slothy/targets/aarch64/cortex_a55.py
+7 −3 slothy/targets/aarch64/cortex_a72_frontend.py
+292 −57 slothy/targets/arm_v7m/arch_v7m.py
+5 −3 slothy/targets/arm_v7m/cortex_m7.py
+7 −2 slothy/targets/arm_v81m/arch_v81m.py

0 comments on commit ef3337f

Please sign in to comment.