Twisted Edwards parameters for BLS12-377 (#76)

Co-authored-by: Pratyush Mishra <pratyushmishra@berkeley.edu>
This commit is contained in:
zhenfei
2021-10-19 14:30:41 -04:00
committed by GitHub
parent 2118e14b6a
commit 5fe1862c9a
8 changed files with 224 additions and 14 deletions

View File

@@ -448,7 +448,7 @@ macro_rules! prime_field {
let mut count = 0;
b.iter(|| {
count = (count + 1) % SAMPLES;
$f::from(v[count]);
let _ = $f::from(v[count]);
});
}
};