//===------ TestDynamicPipeline.cpp --- dynamic pipeline test pass --------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // // This file implements a pass to test the dynamic pipeline feature. // //===----------------------------------------------------------------------===// #include "mlir/IR/BuiltinOps.h" #include "mlir/Pass/Pass.h" #include "mlir/Pass/PassManager.h" usingnamespacemlir; namespace { class TestDynamicPipelinePass : public PassWrapper<TestDynamicPipelinePass, OperationPass<>> { … }; } // namespace namespace mlir { namespace test { void registerTestDynamicPipelinePass() { … } } // namespace test } // namespace mlir