Skip to content

Commit

Permalink
fixing build
Browse files Browse the repository at this point in the history
  • Loading branch information
zhiyong1997 committed Aug 27, 2024
1 parent 5122c0c commit 3c34c50
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions arith/src/extension_field/gf2_128x8/neon.rs
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ impl BinomialExtensionField for NeonGF2_128x8 {
let v4 = ((base.v >> 3) & 1u8) as u32;
let v5 = ((base.v >> 2) & 1u8) as u32;
let v6 = ((base.v >> 1) & 1u8) as u32;
let v7 = ((base.v >> 0) & 1u8) as u32;
let v7 = (base.v & 1u8) as u32;

Self {
v: [
Expand All @@ -326,7 +326,7 @@ impl BinomialExtensionField for NeonGF2_128x8 {
let v4 = ((base.v >> 3) & 1u8) as u32;
let v5 = ((base.v >> 2) & 1u8) as u32;
let v6 = ((base.v >> 1) & 1u8) as u32;
let v7 = ((base.v >> 0) & 1u8) as u32;
let v7 = (base.v & 1u8) as u32;

Self {
v: [
Expand All @@ -353,7 +353,7 @@ impl From<GF2x8> for NeonGF2_128x8 {
let v4 = ((v.v >> 3) & 1u8) as u32;
let v5 = ((v.v >> 2) & 1u8) as u32;
let v6 = ((v.v >> 1) & 1u8) as u32;
let v7 = ((v.v >> 0) & 1u8) as u32;
let v7 = (v.v & 1u8) as u32;

NeonGF2_128x8 {
v: [
Expand Down

0 comments on commit 3c34c50

Please sign in to comment.