16 lines
436 B
Python
16 lines
436 B
Python
# RUN: %python %s | FileCheck %s
|
|
|
|
from mlir_standalone.ir import *
|
|
from mlir_standalone.dialects import builtin as builtin_d, standalone as standalone_d
|
|
|
|
with Context():
|
|
standalone_d.register_dialect()
|
|
module = Module.parse(
|
|
"""
|
|
%0 = arith.constant 2 : i32
|
|
%1 = standalone.foo %0 : i32
|
|
"""
|
|
)
|
|
# CHECK: %[[C:.*]] = arith.constant 2 : i32
|
|
# CHECK: standalone.foo %[[C]] : i32
|
|
print(str(module))
|