aboutsummaryrefslogtreecommitdiffstats
path: root/test/python/smoketest.py
blob: 0d8f41c27e8efa724e6936a99806e4113523db8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# 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))