subgraph_bridge_registry.h 3.2 KB
Newer Older
Y
Yan Chunwei 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
// Copyright (c) 2019 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 <functional>
18
#include <map>
Y
Yan Chunwei 已提交
19 20 21 22 23 24
#include <string>
#include "lite/core/op_lite.h"
#include "lite/utils/macros.h"

namespace paddle {
namespace lite {
25
namespace subgraph {
Y
Yan Chunwei 已提交
26

27 28 29 30 31 32 33 34
const int FAILED = 1;
const int SUCCESS = 0;
const int REBUILD_WHEN_SHAPE_CHANGED = 2;
inline bool CHECK_FAILED(int status) { return status & FAILED; }
inline bool CHECK_SUCCESS(int status) { return !CHECK_FAILED(status); }
inline bool CHECK_REBUILD_WHEN_SHAPE_CHANGED(int status) {
  return status & REBUILD_WHEN_SHAPE_CHANGED;
}
Y
Yan Chunwei 已提交
35

36 37
using cvt_func_type =
    std::function<int(void* ctx, OpLite* op, KernelBase* kernel)>;
38
using cvt_map_type = std::map<int, std::map<std::string, cvt_func_type>>;
39
class SubgraphBridgeRegistry {
Y
Yan Chunwei 已提交
40
 public:
41
  static SubgraphBridgeRegistry& Instance();
Y
Yan Chunwei 已提交
42

43
  void Insert(const std::string& op_type,
44
              const TargetType& target,
45
              const cvt_func_type& cvt_func_name);
46
  const cvt_func_type& Select(const std::string& op_type,
47 48
                              const TargetType& target) const;
  bool Exists(const std::string& op_type, const TargetType& target) const;
49
  SubgraphBridgeRegistry() = default;
Y
Yan Chunwei 已提交
50 51 52

 private:
  cvt_map_type map_;
53
  DISALLOW_COPY_AND_ASSIGN(SubgraphBridgeRegistry);
Y
Yan Chunwei 已提交
54 55
};

56
}  // namespace subgraph
Y
Yan Chunwei 已提交
57 58 59
}  // namespace lite
}  // namespace paddle

60
#define STATIC_ASSERT_JITKERNEL_GLOBAL_NAMESPACE_LITE(uniq_name, msg)         \
Y
Yan Chunwei 已提交
61 62 63 64 65
  struct __test_global_namespace_##uniq_name##__ {};                          \
  static_assert(std::is_same<::__test_global_namespace_##uniq_name##__,       \
                             __test_global_namespace_##uniq_name##__>::value, \
                msg)

66
#define REGISTER_SUBGRAPH_BRIDGE(op_type__, target__, cvt_func_name)      \
67
  STATIC_ASSERT_JITKERNEL_GLOBAL_NAMESPACE_LITE(                          \
68
      __reg_subgraph_bridge_##op_type__##_##target__##__,                 \
69 70
      "REGISTER_SUBGRAPH_BRIDGE must be called in global namespace only " \
      "once!");                                                           \
71
  int __reg_subgraph_bridge_##op_type__##_##target__##_Insert() {         \
72
    paddle::lite::subgraph::SubgraphBridgeRegistry::Instance().Insert(    \
73
        #op_type__, TARGET(target__), cvt_func_name);                     \
74
    return 0;                                                             \
Y
Yan Chunwei 已提交
75 76
  }

77 78 79 80
#define USE_SUBGRAPH_BRIDGE(op_type__, target__)                            \
  extern int __reg_subgraph_bridge_##op_type__##_##target__##_Insert();     \
  static int __reg_subgraph_bridge_##op_type__##_##target__##_Insert_return \
      UNUSED = __reg_subgraph_bridge_##op_type__##_##target__##_Insert();