Skip to content

Commit

Permalink
Fix include order (#613)
Browse files Browse the repository at this point in the history
  • Loading branch information
fifield authored Aug 30, 2023
1 parent 481f361 commit 98eceb3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion test/benchmarks/01_DDR_SHIM_LM_FillRate/test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@
//
//===----------------------------------------------------------------------===//

#include "memory_allocator.h"
#include "test_library.h"

#include <cassert>
#include <cmath>
#include <cstdio>
Expand All @@ -21,7 +23,6 @@
#include <xaiengine.h>

#include "aie_inc.cpp"
#include "memory_allocator.h"

int main(int argc, char *argv[]) {
int n = 100;
Expand Down
3 changes: 2 additions & 1 deletion test/benchmarks/02_LM_SHIM_DDR_FillRate/test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
//
//===----------------------------------------------------------------------===//

#include "memory_allocator.h"
#include "test_library.h"

#include <cassert>
#include <cmath>
#include <cstdio>
Expand All @@ -22,7 +24,6 @@
#include <xaiengine.h>

#include "aie_inc.cpp"
#include "memory_allocator.h"

int main(int argc, char *argv[]) {
int n = 100;
Expand Down
3 changes: 2 additions & 1 deletion test/benchmarks/03_Flood_DDR/test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@
//
//===----------------------------------------------------------------------===//

#include "memory_allocator.h"
#include "test_library.h"

#include <cassert>
#include <cmath>
#include <cstdio>
Expand All @@ -22,7 +24,6 @@
#include <xaiengine.h>

#include "aie_inc.cpp"
#include "memory_allocator.h"

#define DMA_COUNT 7168

Expand Down

0 comments on commit 98eceb3

Please sign in to comment.