from mlir.ir import *
from mlir.dialects import ml_program, arith, builtin
def constructAndPrintInModule(f):
print("\nTEST:", f.__name__)
with Context(), Location.unknown():
module = Module.create()
with InsertionPoint(module.body):
f()
print(module)
return f
@constructAndPrintInModule
def testFuncOp():
f = ml_program.FuncOp(
name="foobar", type=([IntegerType.get_signed(32)], [IntegerType.get_signed(32)])
)
block = f.add_entry_block()
with InsertionPoint(block):
ml_program.ReturnOp([block.arguments[0]])
@constructAndPrintInModule
def testGlobalStoreOp():
cst = arith.ConstantOp(value=42.42, result=F32Type.get())
m = builtin.ModuleOp()
m.sym_name = StringAttr.get("symbol1")
m.sym_visibility = StringAttr.get("public")
with InsertionPoint(m.body):
ml_program.GlobalOp("symbol2", F32Type.get(), is_mutable=True)
ml_program.GlobalStoreOp(["symbol1", "symbol2"], cst)