target_wrapper.h 4.8 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 19 20 21

namespace paddle {
namespace lite {

S
superjomn 已提交
22 23 24 25 26 27 28 29 30
enum class TargetType : int {
  kUnk = 0,
  kHost,
  kX86,
  kCUDA,
  kLastAsPlaceHolder
};
enum class PrecisionType : int { kUnk = 0, kFloat, kInt8, kLastAsPlaceHolder };
enum class DataLayoutType : int { kUnk = 0, kNCHW, kLastAsPlaceHolder };
S
superjomn 已提交
31

S
update  
superjomn 已提交
32
// Some helper macro to get a specific TargetType.
S
superjomn 已提交
33 34
#define TARGET(item__) paddle::lite::TargetType::item__
#define TARGET_VAL(item__) static_cast<int>(TARGET(item__))
S
superjomn 已提交
35 36 37 38
// 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 已提交
39

S
superjomn 已提交
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
constexpr const int kNumPrecisions =
    PRECISION_VAL(kLastAsPlaceHolder) - PRECISION_VAL(kFloat);
constexpr const int kNumTargets =
    TARGET_VAL(kLastAsPlaceHolder) - TARGET_VAL(kHost);

static const std::string target2string[] = {"unk", "host", "x86", "cuda"};
static const std::string& TargetToStr(TargetType target) {
  return target2string[static_cast<int>(target)];
}

static const std::string precision2string[] = {"unk", "float", "int8"};
static const std::string& PrecisionToStr(PrecisionType precision) {
  return precision2string[static_cast<int>(precision)];
}

static const std::string datalayout2string[] = {"unk", "NCHW"};
static const std::string& DataLayoutToStr(DataLayoutType x) {
  return datalayout2string[static_cast<int>(x)];
}

S
superjomn 已提交
60
/*
S
superjomn 已提交
61 62
 * 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 已提交
63
 */
S
superjomn 已提交
64
struct Place {
S
superjomn 已提交
65 66 67
  TargetType target{TARGET(kUnk)};
  PrecisionType precision{PRECISION(kUnk)};
  DataLayoutType layout{DATALAYOUT(kUnk)};
S
Superjomn 已提交
68
  short device{0};  // device ID
S
superjomn 已提交
69

S
superjomn 已提交
70 71
  Place() = default;
  Place(TargetType target, PrecisionType precision,
S
Superjomn 已提交
72 73 74
        DataLayoutType layout = DATALAYOUT(kNCHW), short device = 0)
      : target(target), precision(precision), layout(layout), device(device) {}

S
superjomn 已提交
75 76 77 78 79 80 81
  bool is_valid() const {
    return target != TARGET(kUnk) && precision != PRECISION(kUnk) &&
           layout != DATALAYOUT(kUnk);
  }

  size_t hash() const;

S
Superjomn 已提交
82 83 84 85
  bool operator==(const Place& other) const {
    return target == other.target && precision == other.precision &&
           layout == other.layout && device == other.device;
  }
S
superjomn 已提交
86

S
superjomn 已提交
87 88 89 90 91 92 93
  friend bool operator<(const Place& a, const Place& b) {
    if (a.target != b.target) return a.target < b.target;
    if (a.precision != b.precision) return a.precision < b.precision;
    if (a.layout != b.layout) return a.layout < b.layout;
    if (a.device != b.device) return a.device < b.device;
    return true;
  }
S
superjomn 已提交
94

S
superjomn 已提交
95 96 97 98 99 100 101
  std::string DebugString() const {
    std::stringstream os;
    os << TargetToStr(target) << "/" << PrecisionToStr(precision) << "/"
       << DataLayoutToStr(layout);
    return os.str();
  }
};
S
superjomn 已提交
102

S
superjomn 已提交
103
// Event sync for multi-stream devices like CUDA and OpenCL.
S
update  
superjomn 已提交
104
// For the devices without support of stream, leave it empty.
S
superjomn 已提交
105 106 107 108 109
template <TargetType Target>
class Event {};

// Memory copy directions.
enum class IoDirection {
S
update  
superjomn 已提交
110 111 112
  HtoH = 0,  // Host to host
  HtoD,      // Host to device
  DtoH,      // Device to host
S
superjomn 已提交
113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
};

// This interface should be specified by each kind of target.
template <TargetType Target>
class TargetWrapper {
 public:
  using stream_t = int;
  using event_t = Event<Target>;

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

S
superjomn 已提交
136 137
  static void* Malloc(size_t size) { return new char[size]; }
  static void Free(void* ptr) { delete[] static_cast<char*>(ptr); }
S
superjomn 已提交
138 139 140 141 142 143 144 145 146 147

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

}  // namespace lite
}  // namespace paddle