[mlir][py] Enable loading only specified dialects during creation. (#121421)
[llvm-project.git] / mlir / test / IR / affine-walk.mlir
blob0ee7abf9415cf321038aad06f3730e603ee986ba
1 // RUN: mlir-opt -test-affine-walk -verify-diagnostics %s
3 // Test affine walk interrupt. A remark should be printed only for the first mod
4 // expression encountered in post order.
6 #map = affine_map<(i, j) -> ((i mod 4) mod 2, j)>
8 "test.check_first_mod"() {"map" = #map} : () -> ()
9 // expected-remark@-1 {{mod expression}}
11 #map_rhs_mod = affine_map<(i, j) -> (i + i mod 2, j)>
13 "test.check_first_mod"() {"map" = #map_rhs_mod} : () -> ()
14 // expected-remark@-1 {{mod expression}}