From 288515eec649c0fbece9f5e235208ab8e552178f Mon Sep 17 00:00:00 2001 From: Unai Sainz de la Maza Date: Wed, 23 Oct 2024 11:35:15 +0200 Subject: [PATCH] fix failing test --- tests/affine_to_mpi.mlir | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/affine_to_mpi.mlir b/tests/affine_to_mpi.mlir index 67c1d52..590c97f 100644 --- a/tests/affine_to_mpi.mlir +++ b/tests/affine_to_mpi.mlir @@ -1,3 +1,6 @@ +// RUN: tutorial-opt %s --affine-distribute-to-mpi > %t +// RUN: FileCheck %s < %t + func.func @add_arrays(%A: memref<100xf32>, %B: memref<100xf32>, %C: memref<100xf32>) { affine.for %i = 0 to 100 { %a = memref.load %A[%i] : memref<100xf32>