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

namespace paddle {
namespace lite {

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

N
nhzlx 已提交
52 53 54 55 56 57 58 59 60 61 62
static size_t PrecisionTypeLength(PrecisionType type) {
  switch (type) {
    case PrecisionType::kFloat:
      return 4;
    case PrecisionType::kInt8:
      return 1;
    default:
      return 4;
  }
}

S
update  
superjomn 已提交
63
// Some helper macro to get a specific TargetType.
S
superjomn 已提交
64
#define TARGET(item__) paddle::lite::TargetType::item__
S
superjomn 已提交
65 66 67
// Some helper macro to get a specific PrecisionType.
#define PRECISION(item__) paddle::lite::PrecisionType::item__
#define DATALAYOUT(item__) paddle::lite::DataLayoutType::item__
S
superjomn 已提交
68

S
superjomn 已提交
69
static const std::string& TargetToStr(TargetType target) {
N
nhzlx 已提交
70 71
  static const std::string target2string[] = {"unk",  "host", "x86",
                                              "cuda", "arm",  "any"};
S
superjomn 已提交
72 73 74
  auto x = static_cast<int>(target);
  CHECK_LT(x, static_cast<int>(TARGET(NUM)));
  return target2string[x];
S
superjomn 已提交
75 76 77
}

static const std::string& PrecisionToStr(PrecisionType precision) {
78 79
  static const std::string precision2string[] = {"unk", "float", "int8_t",
                                                 "any"};
S
superjomn 已提交
80 81 82
  auto x = static_cast<int>(precision);
  CHECK_LT(x, static_cast<int>(PRECISION(NUM)));
  return precision2string[x];
S
superjomn 已提交
83 84
}

S
superjomn 已提交
85
static const std::string& DataLayoutToStr(DataLayoutType layout) {
S
Superjomn 已提交
86
  static const std::string datalayout2string[] = {"unk", "NCHW", "any"};
S
superjomn 已提交
87 88 89
  auto x = static_cast<int>(layout);
  CHECK_LT(x, static_cast<int>(DATALAYOUT(NUM)));
  return datalayout2string[x];
S
superjomn 已提交
90 91
}

92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
static const std::string& TargetRepr(TargetType target) {
  static const std::string target2string[] = {"kUnk", "kHost", "kX86", "kCUDA",
                                              "kAny"};
  auto x = static_cast<int>(target);
  CHECK_LT(x, static_cast<int>(TARGET(NUM)));
  return target2string[x];
}

static const std::string& PrecisionRepr(PrecisionType precision) {
  static const std::string precision2string[] = {"kUnk", "kFloat", "kInt8",
                                                 "kAny"};
  auto x = static_cast<int>(precision);
  CHECK_LT(x, static_cast<int>(PRECISION(NUM)));
  return precision2string[x];
}

static const std::string& DataLayoutRepr(DataLayoutType layout) {
  static const std::string datalayout2string[] = {"kUnk", "kNCHW", "kAny"};
  auto x = static_cast<int>(layout);
  CHECK_LT(x, static_cast<int>(DATALAYOUT(NUM)));
  return datalayout2string[x];
}

S
superjomn 已提交
115
/*
S
superjomn 已提交
116 117
 * 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 已提交
118
 */
S
superjomn 已提交
119
struct Place {
S
superjomn 已提交
120 121 122
  TargetType target{TARGET(kUnk)};
  PrecisionType precision{PRECISION(kUnk)};
  DataLayoutType layout{DATALAYOUT(kUnk)};
S
superjomn 已提交
123
  int16_t device{0};  // device ID
S
superjomn 已提交
124

S
superjomn 已提交
125 126
  Place() = default;
  Place(TargetType target, PrecisionType precision,
S
superjomn 已提交
127
        DataLayoutType layout = DATALAYOUT(kNCHW), int16_t device = 0)
S
Superjomn 已提交
128 129
      : target(target), precision(precision), layout(layout), device(device) {}

S
superjomn 已提交
130 131 132 133 134 135 136
  bool is_valid() const {
    return target != TARGET(kUnk) && precision != PRECISION(kUnk) &&
           layout != DATALAYOUT(kUnk);
  }

  size_t hash() const;

S
Superjomn 已提交
137 138 139 140
  bool operator==(const Place& other) const {
    return target == other.target && precision == other.precision &&
           layout == other.layout && device == other.device;
  }
S
superjomn 已提交
141

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

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

S
Superjomn 已提交
146 147 148 149 150
  friend std::ostream& operator<<(std::ostream& os, const Place& other) {
    os << other.DebugString();
    return os;
  }

S
Superjomn 已提交
151
  std::string DebugString() const;
S
superjomn 已提交
152
};
S
superjomn 已提交
153

S
superjomn 已提交
154 155
// Memory copy directions.
enum class IoDirection {
S
update  
superjomn 已提交
156 157 158
  HtoH = 0,  // Host to host
  HtoD,      // Host to device
  DtoH,      // Device to host
S
Superjomn 已提交
159
  DtoD,      // Device to device
S
superjomn 已提交
160 161 162
};

// This interface should be specified by each kind of target.
S
Superjomn 已提交
163
template <TargetType Target, typename StreamTy = int, typename EventTy = int>
S
superjomn 已提交
164 165
class TargetWrapper {
 public:
S
Superjomn 已提交
166 167
  using stream_t = StreamTy;
  using event_t = EventTy;
S
superjomn 已提交
168 169 170 171 172 173 174 175 176 177 178 179 180 181 182

  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) {}

183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199
  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.
S
Superjomn 已提交
200 201
using TargetWrapperHost = TargetWrapper<TARGET(kHost)>;
using TargetWrapperX86 = TargetWrapperHost;
202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223
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 已提交
224

S
Superjomn 已提交
225
  static void MemcpySync(void* dst, const void* src, size_t size,
226
                         IoDirection dir);
S
Superjomn 已提交
227 228
  static void MemcpyAsync(void* dst, const void* src, size_t size,
                          IoDirection dir, const stream_t& stream) {
S
superjomn 已提交
229 230 231 232
    MemcpySync(dst, src, size, dir);
  }
};

S
superjomn 已提交
233
#ifdef LITE_WITH_CUDA
S
Superjomn 已提交
234 235
using TargetWrapperCuda =
    TargetWrapper<TARGET(kCUDA), cudaStream_t, cudaEvent_t>;
S
superjomn 已提交
236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266
// 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

267 268 269 270 271 272 273 274 275 276 277 278 279 280 281
template <TargetType Target>
void CopySync(void* dst, void* src, size_t size, IoDirection dir) {
  switch (Target) {
    case TARGET(kX86):
    case TARGET(kHost):
    case TARGET(kARM):
      TargetWrapperX86::MemcpySync(dst, src, size, IoDirection::HtoH);
      break;
#ifdef LITE_WITH_CUDA
    case TARGET(kCUDA):
      TargetWrapperCuda::MemcpySync(dst, src, size, dir);
#endif
  }
}

S
superjomn 已提交
282 283
}  // namespace lite
}  // namespace paddle