Skip to content

Commit

Permalink
Change lower-cascade-flows tests to use check-dag (#1585)
Browse files Browse the repository at this point in the history
  • Loading branch information
fifield authored Jun 28, 2024
1 parent 54efffa commit 218d6e6
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
16 changes: 8 additions & 8 deletions test/lower-cascade-flows/cascade_single_flow.mlir
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@

// CHECK: module @cascade_flow {
// CHECK: aie.device(xcve2802) {
// CHECK: %tile_1_3 = aie.tile(1, 3)
// CHECK: %tile_2_3 = aie.tile(2, 3)
// CHECK: %tile_3_4 = aie.tile(3, 4)
// CHECK: %tile_3_3 = aie.tile(3, 3)
// CHECK: aie.configure_cascade(%tile_1_3, North, East)
// CHECK: aie.configure_cascade(%tile_2_3, West, South)
// CHECK: aie.configure_cascade(%tile_3_4, North, South)
// CHECK: aie.configure_cascade(%tile_3_3, North, South)
// CHECK-DAG: %tile_1_3 = aie.tile(1, 3)
// CHECK-DAG: %tile_2_3 = aie.tile(2, 3)
// CHECK-DAG: %tile_3_4 = aie.tile(3, 4)
// CHECK-DAG: %tile_3_3 = aie.tile(3, 3)
// CHECK-DAG: aie.configure_cascade(%tile_1_3, North, East)
// CHECK-DAG: aie.configure_cascade(%tile_2_3, West, South)
// CHECK-DAG: aie.configure_cascade(%tile_3_4, North, South)
// CHECK-DAG: aie.configure_cascade(%tile_3_3, North, South)
// CHECK: }
// CHECK: }

Expand Down
12 changes: 6 additions & 6 deletions test/lower-cascade-flows/cascade_two_flows.mlir
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@

// CHECK: module @cascade_flow {
// CHECK: aie.device(xcve2802) {
// CHECK: %tile_1_4 = aie.tile(1, 4)
// CHECK: %tile_2_4 = aie.tile(2, 4)
// CHECK: %tile_3_4 = aie.tile(3, 4)
// CHECK: aie.configure_cascade(%tile_1_4, North, East)
// CHECK: aie.configure_cascade(%tile_2_4, West, East)
// CHECK: aie.configure_cascade(%tile_3_4, West, South)
// CHECK-DAG: %tile_1_4 = aie.tile(1, 4)
// CHECK-DAG: %tile_2_4 = aie.tile(2, 4)
// CHECK-DAG: %tile_3_4 = aie.tile(3, 4)
// CHECK-DAG: aie.configure_cascade(%tile_1_4, North, East)
// CHECK-DAG: aie.configure_cascade(%tile_2_4, West, East)
// CHECK-DAG: aie.configure_cascade(%tile_3_4, West, South)
// CHECK: }
// CHECK: }

Expand Down

0 comments on commit 218d6e6

Please sign in to comment.