forked from OSchip/llvm-project
45 lines
1.8 KiB
MLIR
45 lines
1.8 KiB
MLIR
// RUN: mlir-opt %s -pass-pipeline='module(test-dynamic-pipeline{op-name=inner_mod1, dynamic-pipeline=func(cse,canonicalize)})' --mlir-disable-threading -print-ir-before-all 2>&1 | FileCheck %s --check-prefix=MOD1 --check-prefix=MOD1-ONLY --check-prefix=CHECK
|
|
// RUN: mlir-opt %s -pass-pipeline='module(test-dynamic-pipeline{op-name=inner_mod2, dynamic-pipeline=func(cse,canonicalize)})' --mlir-disable-threading -print-ir-before-all 2>&1 | FileCheck %s --check-prefix=MOD2 --check-prefix=MOD2-ONLY --check-prefix=CHECK
|
|
// RUN: mlir-opt %s -pass-pipeline='module(test-dynamic-pipeline{op-name=inner_mod1,inner_mod2, dynamic-pipeline=func(cse,canonicalize)})' --mlir-disable-threading -print-ir-before-all 2>&1 | FileCheck %s --check-prefix=MOD1 --check-prefix=MOD2 --check-prefix=CHECK
|
|
// RUN: mlir-opt %s -pass-pipeline='module(test-dynamic-pipeline{dynamic-pipeline=func(cse,canonicalize)})' --mlir-disable-threading -print-ir-before-all 2>&1 | FileCheck %s --check-prefix=MOD1 --check-prefix=MOD2 --check-prefix=CHECK
|
|
|
|
|
|
func @f() {
|
|
return
|
|
}
|
|
|
|
// CHECK: IR Dump Before
|
|
// CHECK-SAME: TestDynamicPipelinePass
|
|
// CHECK-NEXT: module @inner_mod1
|
|
// MOD2-ONLY: dynamic-pipeline skip op name: inner_mod1
|
|
module @inner_mod1 {
|
|
// MOD1: Dump Before CSE
|
|
// MOD1-NEXT: @foo
|
|
// MOD1: Dump Before Canonicalizer
|
|
// MOD1-NEXT: @foo
|
|
func @foo() {
|
|
return
|
|
}
|
|
// MOD1: Dump Before CSE
|
|
// MOD1-NEXT: @baz
|
|
// MOD1: Dump Before Canonicalizer
|
|
// MOD1-NEXT: @baz
|
|
func @baz() {
|
|
return
|
|
}
|
|
}
|
|
|
|
// CHECK: IR Dump Before
|
|
// CHECK-SAME: TestDynamicPipelinePass
|
|
// CHECK-NEXT: module @inner_mod2
|
|
// MOD1-ONLY: dynamic-pipeline skip op name: inner_mod2
|
|
module @inner_mod2 {
|
|
// MOD2: Dump Before CSE
|
|
// MOD2-NEXT: @foo
|
|
// MOD2: Dump Before Canonicalizer
|
|
// MOD2-NEXT: @foo
|
|
func @foo() {
|
|
return
|
|
}
|
|
}
|