trt_op_converter_pass.h 1.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
// Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

#pragma once
#include "mlir/IR/Dialect.h"
#include "mlir/Pass/Pass.h"
S
Shang Zhizhou 已提交
18
#include "paddle/infrt/dialect/infrt/infrt_dialect.h"
19 20 21 22 23 24 25 26
#include "paddle/infrt/dialect/tensorrt/trt_ops.h"

namespace infrt {
namespace trt {
/*
 * trtOpConverterPass.
 *
 * source ir:
S
Shang Zhizhou 已提交
27 28
 * func @main(%a : tensor<?xf32>) -> tensor<?xf32> {
 *   %d, %f = "pd.graph"(%a) {
29 30 31
 *     %m = "pd.conv2d"(%a)...
 *     %n = "pd.conv3d"(%m)...
 *     %s = "pd.conv2d"(%a)...
S
Shang Zhizhou 已提交
32
 *     "infrt.return" (%n, %s)...
33
 *   } ...
S
Shang Zhizhou 已提交
34
 *   "infrt.return" (%d, %f)...
35 36 37
 * }
 *
 * destination ir:
S
Shang Zhizhou 已提交
38 39
 * func @main(%a : tensor<?xf32>) -> tensor<?xf32> {
 *   %engine = "trt.create_engine"(%a) ({
40 41 42
 *     %m = "trt.Convolution"(%a)...
 *     %n = "trt.Convolution"(%m)...
 *     %s = "trt.Convolution"(%a)...
S
Shang Zhizhou 已提交
43 44 45 46
 *     "infrt.return" (%n, %s)...
 *   }){run_once = true} ...
 *   %d, %f = "trt.execute"(%engine, %a)...
 *   "infrt.return" (%d, %f)...
47 48 49 50 51 52 53 54 55 56 57 58 59
 * }
 */
struct TRTOpConverterPass
    : public mlir::PassWrapper<TRTOpConverterPass,
                               mlir::OperationPass<mlir::FuncOp>> {
  void getDependentDialects(mlir::DialectRegistry &registry) const override {
    registry.insert<TensorRTDialect>();
  }
  ::llvm::StringRef getName() const override { return "trtOpConverterPass"; }
  void runOnOperation() final;
};
}  // namespace trt
}  // namespace infrt