We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30ee557 commit f1c9a3fCopy full SHA for f1c9a3f
src/arch/vpclmulqdq.rs
@@ -47,6 +47,7 @@ struct Simd512(__m512i);
47
impl Simd512 {
48
#[inline]
49
#[target_feature(enable = "avx512f")]
50
+ #[allow(clippy::too_many_arguments)]
51
unsafe fn new(x7: u64, x6: u64, x5: u64, x4: u64, x3: u64, x2: u64, x1: u64, x0: u64) -> Self {
52
Self(_mm512_set_epi64(
53
x7 as i64, x6 as i64, x5 as i64, x4 as i64, x3 as i64, x2 as i64, x1 as i64, x0 as i64,
0 commit comments