binius_field/arch/portable/packed_polyval_512.rs
1// Copyright 2024-2025 Irreducible Inc.
2
3use super::packed_scaled::packed_scaled_field;
4use crate::arch::packed_polyval_256::PackedBinaryPolyval2x128b;
5
6// 512 bit value that just contains four 128-bit integers.
7// Is used for portable implementation of 512-bit packed fields.
8packed_scaled_field!(PackedBinaryPolyval4x128b = [PackedBinaryPolyval2x128b; 2]);