phi_base.cc 1.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
// 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.

15
#include "paddle/infrt/dialect/phi/ir/phi_base.h"
16

17
#include <llvm/ADT/TypeSwitch.h>
18 19 20 21 22 23
#include <mlir/IR/Builders.h>
#include <mlir/IR/Dialect.h>
#include <mlir/IR/DialectImplementation.h>
#include <mlir/IR/MLIRContext.h>
#include <mlir/IR/TypeUtilities.h>
#include <mlir/IR/Types.h>
24

25
#include "paddle/infrt/common/global.h"
26 27
#include "paddle/infrt/dialect/phi/ir/infrt_phi_base.cpp.inc"
#include "paddle/infrt/dialect/phi/ir/infrt_phi_baseDialect.cpp.inc"
28 29

namespace infrt {
30
namespace phi {
31

32
void PHIDialect::initialize() {
王明冬 已提交
33
  LOG(INFO) << "PHI Dialect initalized";
34 35
  addOperations<
#define GET_OP_LIST
36
#include "paddle/infrt/dialect/phi/ir/infrt_phi_base.cpp.inc"  // NOLINT
37 38 39
      >();
  addTypes<
#define GET_TYPEDEF_LIST
40
#include "paddle/infrt/dialect/phi/ir/infrt_phi_baseTypes.cpp.inc"  // NOLINT
41 42 43
      >();
}

44
}  // namespace phi
45 46 47
}  // namespace infrt

#define GET_TYPEDEF_CLASSES
48
#include "paddle/infrt/dialect/phi/ir/infrt_phi_baseTypes.cpp.inc"  // NOLINT