target_wrapper.h 7.0 KB
Newer Older
S
superjomn 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
// 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
16
#include <glog/logging.h>
S
superjomn 已提交
17
#include <iostream>
S
superjomn 已提交
18
#include <sstream>
S
superjomn 已提交
19 20 21 22
#ifdef LITE_WITH_CUDA
#include <cuda.h>
#include <cuda_runtime.h>
#endif
S
superjomn 已提交
23 24 25 26

namespace paddle {
namespace lite {

S
superjomn 已提交
27 28 29 30 31
enum class TargetType : int {
  kUnk = 0,
  kHost,
  kX86,
  kCUDA,
S
Superjomn 已提交
32
  kAny,  // any target
S
superjomn 已提交
33
  NUM,   // number of fields.
S
Superjomn 已提交
34 35 36 37 38 39
};
enum class PrecisionType : int {
  kUnk = 0,
  kFloat,
  kInt8,
  kAny,  // any precision
S
superjomn 已提交
40
  NUM,   // number of fields.
S
Superjomn 已提交
41 42 43 44 45
};
enum class DataLayoutType : int {
  kUnk = 0,
  kNCHW,
  kAny,  // any data layout
S
superjomn 已提交
46
  NUM,   // number of fields.
S
superjomn 已提交
47
};
S
superjomn 已提交
48

S
update  
superjomn 已提交
49
// Some helper macro to get a specific TargetType.
S
superjomn 已提交
50 51
#define TARGET(item__) paddle::lite::TargetType::item__
#define TARGET_VAL(item__) static_cast<int>(TARGET(item__))
S
superjomn 已提交
52 53 54 55
// Some helper macro to get a specific PrecisionType.
#define PRECISION(item__) paddle::lite::PrecisionType::item__
#define PRECISION_VAL(item__) static_cast<int>(PRECISION(item__))
#define DATALAYOUT(item__) paddle::lite::DataLayoutType::item__
S
superjomn 已提交
56

S
superjomn 已提交
57 58
constexpr const int kNumPrecisions = PRECISION_VAL(NUM);
constexpr const int kNumTargets = TARGET_VAL(NUM);
S
superjomn 已提交
59

S
Superjomn 已提交
60 61
static const std::string target2string[] = {"unk", "host", "x86", "cuda",
                                            "any"};
S
superjomn 已提交
62
static const std::string& TargetToStr(TargetType target) {
S
superjomn 已提交
63 64 65
  auto x = static_cast<int>(target);
  CHECK_LT(x, static_cast<int>(TARGET(NUM)));
  return target2string[x];
S
superjomn 已提交
66 67
}

S
Superjomn 已提交
68
static const std::string precision2string[] = {"unk", "float", "int8", "any"};
S
superjomn 已提交
69
static const std::string& PrecisionToStr(PrecisionType precision) {
S
superjomn 已提交
70 71 72
  auto x = static_cast<int>(precision);
  CHECK_LT(x, static_cast<int>(PRECISION(NUM)));
  return precision2string[x];
S
superjomn 已提交
73 74
}

S
Superjomn 已提交
75
static const std::string datalayout2string[] = {"unk", "NCHW", "any"};
S
superjomn 已提交
76 77 78 79
static const std::string& DataLayoutToStr(DataLayoutType layout) {
  auto x = static_cast<int>(layout);
  CHECK_LT(x, static_cast<int>(DATALAYOUT(NUM)));
  return datalayout2string[x];
S
superjomn 已提交
80 81
}

S
superjomn 已提交
82
/*
S
superjomn 已提交
83 84
 * Place specifies the execution context of a Kernel or input/output for a
 * kernel. It is used to make the analysis of the MIR more clear and accurate.
S
superjomn 已提交
85
 */
S
superjomn 已提交
86
struct Place {
S
superjomn 已提交
87 88 89
  TargetType target{TARGET(kUnk)};
  PrecisionType precision{PRECISION(kUnk)};
  DataLayoutType layout{DATALAYOUT(kUnk)};
S
Superjomn 已提交
90
  short device{0};  // device ID
S
superjomn 已提交
91

S
superjomn 已提交
92 93
  Place() = default;
  Place(TargetType target, PrecisionType precision,
S
Superjomn 已提交
94 95 96
        DataLayoutType layout = DATALAYOUT(kNCHW), short device = 0)
      : target(target), precision(precision), layout(layout), device(device) {}

S
superjomn 已提交
97 98 99 100 101 102 103
  bool is_valid() const {
    return target != TARGET(kUnk) && precision != PRECISION(kUnk) &&
           layout != DATALAYOUT(kUnk);
  }

  size_t hash() const;

S
Superjomn 已提交
104 105 106 107
  bool operator==(const Place& other) const {
    return target == other.target && precision == other.precision &&
           layout == other.layout && device == other.device;
  }
S
superjomn 已提交
108

S
Superjomn 已提交
109 110
  bool operator!=(const Place& other) const { return !(*this == other); }

S
Superjomn 已提交
111
  friend bool operator<(const Place& a, const Place& b);
S
superjomn 已提交
112

S
Superjomn 已提交
113 114 115 116 117
  friend std::ostream& operator<<(std::ostream& os, const Place& other) {
    os << other.DebugString();
    return os;
  }

S
Superjomn 已提交
118
  std::string DebugString() const;
S
superjomn 已提交
119
};
S
superjomn 已提交
120

S
superjomn 已提交
121 122
// Memory copy directions.
enum class IoDirection {
S
update  
superjomn 已提交
123 124 125
  HtoH = 0,  // Host to host
  HtoD,      // Host to device
  DtoH,      // Device to host
S
Superjomn 已提交
126
  DtoD,      // Device to device
S
superjomn 已提交
127 128 129
};

// This interface should be specified by each kind of target.
S
Superjomn 已提交
130
template <TargetType Target, typename StreamTy = int, typename EventTy = int>
S
superjomn 已提交
131 132
class TargetWrapper {
 public:
S
Superjomn 已提交
133 134
  using stream_t = StreamTy;
  using event_t = EventTy;
S
superjomn 已提交
135 136 137 138 139 140 141 142 143 144 145 146 147 148 149

  static size_t num_devices() { return 0; }
  static size_t maximum_stream() { return 0; }

  static void CreateStream(stream_t* stream) {}
  static void DestroyStream(const stream_t& stream) {}

  static void CreateEvent(event_t* event) {}
  static void DestroyEvent(const event_t& event) {}

  static void RecordEvent(const event_t& event) {}
  static void SyncEvent(const event_t& event) {}

  static void StreamSync(const stream_t& stream) {}

150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188
  static void* Malloc(size_t size) {
    LOG(FATAL) << "Unimplemented malloc for " << TargetToStr(Target);
    return nullptr;
  }
  static void Free(void* ptr) { LOG(FATAL) << "Unimplemented"; }

  static void MemcpySync(void* dst, const void* src, size_t size,
                         IoDirection dir) {
    LOG(FATAL) << "Unimplemented";
  }
  static void MemcpyAsync(void* dst, const void* src, size_t size,
                          IoDirection dir, const stream_t& stream) {
    MemcpySync(dst, src, size, dir);
  }
};

// This interface should be specified by each kind of target.
template <>
class TargetWrapper<TARGET(kHost)> {
 public:
  using stream_t = int;
  using event_t = int;

  static size_t num_devices() { return 0; }
  static size_t maximum_stream() { return 0; }

  static void CreateStream(stream_t* stream) {}
  static void DestroyStream(const stream_t& stream) {}

  static void CreateEvent(event_t* event) {}
  static void DestroyEvent(const event_t& event) {}

  static void RecordEvent(const event_t& event) {}
  static void SyncEvent(const event_t& event) {}

  static void StreamSync(const stream_t& stream) {}

  static void* Malloc(size_t size);
  static void Free(void* ptr);
S
superjomn 已提交
189

S
Superjomn 已提交
190
  static void MemcpySync(void* dst, const void* src, size_t size,
191
                         IoDirection dir);
S
Superjomn 已提交
192 193
  static void MemcpyAsync(void* dst, const void* src, size_t size,
                          IoDirection dir, const stream_t& stream) {
S
superjomn 已提交
194 195 196 197
    MemcpySync(dst, src, size, dir);
  }
};

S
superjomn 已提交
198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229
#ifdef LITE_WITH_CUDA
// This interface should be specified by each kind of target.
template <>
class TargetWrapper<TARGET(kCUDA), cudaStream_t, cudaEvent_t> {
 public:
  using stream_t = cudaStream_t;
  using event_t = cudaEvent_t;

  static size_t num_devices() { return 0; }
  static size_t maximum_stream() { return 0; }

  static void CreateStream(stream_t* stream) {}
  static void DestroyStream(const stream_t& stream) {}

  static void CreateEvent(event_t* event) {}
  static void DestroyEvent(const event_t& event) {}

  static void RecordEvent(const event_t& event) {}
  static void SyncEvent(const event_t& event) {}

  static void StreamSync(const stream_t& stream) {}

  static void* Malloc(size_t size);
  static void Free(void* ptr);

  static void MemcpySync(void* dst, const void* src, size_t size,
                         IoDirection dir);
  static void MemcpyAsync(void* dst, const void* src, size_t size,
                          IoDirection dir, const stream_t& stream);
};
#endif  // LITE_WITH_CUDA

S
superjomn 已提交
230 231
}  // namespace lite
}  // namespace paddle