[Mlir-commits] [mlir] [OpenACC] fix test after strict properties change (PR #217717)
Scott Manley
llvmlistbot at llvm.org
Thu Aug 20 11:12:17 PDT 2026
https://github.com/rscottmanley created https://github.com/llvm/llvm-project/pull/217717
Rebased shortly after the change and didn't catch the test failure
>From dd1e873f5d610d3b3e382520f01f525cb6a30a37 Mon Sep 17 00:00:00 2001
From: Scott Manley <scmanley at nvidia.com>
Date: Thu, 20 Aug 2026 11:10:35 -0700
Subject: [PATCH] [OpenACC] fix test after strict properties change
Rebased shortly after the change and didn't catch the test failure
---
mlir/test/Dialect/OpenACC/acc-compute-lowering-loop.mlir | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/mlir/test/Dialect/OpenACC/acc-compute-lowering-loop.mlir b/mlir/test/Dialect/OpenACC/acc-compute-lowering-loop.mlir
index fbf6230852cc8..4da7ca8868655 100644
--- a/mlir/test/Dialect/OpenACC/acc-compute-lowering-loop.mlir
+++ b/mlir/test/Dialect/OpenACC/acc-compute-lowering-loop.mlir
@@ -252,7 +252,6 @@ func.func @orphan_loop_unroll_annotation(%buf: memref<8xi32>) {
acc.loop control(%i : index) = (%c0 : index) to (%c8 : index) step (%c1 : index) {
memref.store %c0_i32, %buf[%i] : memref<8xi32>
acc.yield
- } attributes {independent = [#acc.device_type<none>],
- llvm.loop_annotation = #llvm.loop_annotation<unroll = <disable = false, full = true>>}
+ } independent attributes {llvm.loop_annotation = #llvm.loop_annotation<unroll = <disable = false, full = true>>}
return
}
More information about the Mlir-commits
mailing list