Skip to content

Commit

Permalink
Align input data during component benchmarking
Browse files Browse the repository at this point in the history
Signed-off-by: Hanno Becker <[email protected]>
  • Loading branch information
hanno-becker committed Oct 2, 2024
1 parent 56f87d0 commit e3c89da
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/bench_components_kyber.c
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ static int cmp_uint64_t(const void *a, const void *b)

static int bench(void)
{
uint64_t data0[1024];
uint64_t data1[1024];
uint64_t data2[1024];
uint64_t data3[1024];
uint64_t data0[1024] ALIGN(16);
uint64_t data1[1024] ALIGN(16);
uint64_t data2[1024] ALIGN(16);
uint64_t data3[1024] ALIGN(16);
uint64_t cyc[NTESTS];

unsigned int i, j;
Expand Down

0 comments on commit e3c89da

Please sign in to comment.