소스 검색

Change variable name

kris/add_picnic
Henry Case 3 년 전
부모
커밋
15b97bc74e
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      test/bench/kyber.cc

+ 2
- 2
test/bench/kyber.cc 파일 보기

@@ -34,10 +34,10 @@ static void BenchKyberMatK2(benchmark::State &st) {
static void BenchKyberRejSampling(benchmark::State &st) {
int64_t t, total = 0;
int16_t a[256];
uint8_t seed[168*3];
uint8_t buf[168*3];
for (auto _ : st) {
t = benchmark::cycleclock::Now();
PQCLEAN_KYBER512_AVX2_rej_uniform_avx(a, seed);
PQCLEAN_KYBER512_AVX2_rej_uniform_avx(a, buf);
total += benchmark::cycleclock::Now() - t;
benchmark::DoNotOptimize(a);
}


불러오는 중...
취소
저장