1//! Eventually this will hold a vectorized Neon implementation of Poseidon2 for PackedBabyBearNeon
2//! Currently this is essentially a placeholder to allow compilation and testing on Neon devices.
3//!
4//! Converting the AVX2/AVX512 code across to Neon is on the TODO list.
56#[cfg(test)]
7mod tests {
8use p3_field::FieldAlgebra;
9use p3_symmetric::Permutation;
10use rand::Rng;
1112use crate::{BabyBear, PackedBabyBearNeon, Poseidon2BabyBear};
1314type F = BabyBear;
15type Perm16 = Poseidon2BabyBear<16>;
16type Perm24 = Poseidon2BabyBear<24>;
1718/// Test that the output is the same as the scalar version on a random input.
19#[test]
20fn test_neon_poseidon2_width_16() {
21let mut rng = rand::thread_rng();
2223// Our Poseidon2 implementation.
24let poseidon2 = Perm16::new_from_rng_128(&mut rng);
2526let input: [F; 16] = rng.gen();
2728let mut expected = input;
29 poseidon2.permute_mut(&mut expected);
3031let mut neon_input = input.map(PackedBabyBearNeon::from_f);
32 poseidon2.permute_mut(&mut neon_input);
3334let neon_output = neon_input.map(|x| x.0[0]);
3536assert_eq!(neon_output, expected);
37 }
3839/// Test that the output is the same as the scalar version on a random input.
40#[test]
41fn test_neon_poseidon2_width_24() {
42let mut rng = rand::thread_rng();
4344// Our Poseidon2 implementation.
45let poseidon2 = Perm24::new_from_rng_128(&mut rng);
4647let input: [F; 24] = rng.gen();
4849let mut expected = input;
50 poseidon2.permute_mut(&mut expected);
5152let mut neon_input = input.map(PackedBabyBearNeon::from_f);
53 poseidon2.permute_mut(&mut neon_input);
5455let neon_output = neon_input.map(|x| x.0[0]);
5657assert_eq!(neon_output, expected);
58 }
59}