handle.cpp 6.4 KB
Newer Older
1 2 3 4
/**
 * \file dnn/src/common/handle.cpp
 * MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
 *
5
 * Copyright (c) 2014-2021 Megvii Inc. All rights reserved.
6 7 8
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
M
Megvii Engine Team 已提交
9 10
 * "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or
 * implied.
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
 */

#include "megdnn/basic_types.h"

#include "src/common/handle_impl.h"
#include "src/common/utils.h"
#include "src/fallback/handle.h"
#include "src/naive/handle.h"

#include "midout.h"

#if MEGDNN_X86
#include "src/x86/handle.h"
#endif

26 27 28 29 30 31 32 33
#if MEGDNN_ARMV7
#include "src/armv7/handle.h"
#endif

#if MEGDNN_AARCH64
#include "src/aarch64/handle.h"
#endif

34

35

36 37 38 39 40
#if MEGDNN_WITH_CUDA
#include "src/cuda/handle.h"
#endif


41 42 43 44 45 46 47 48
#if MEGDNN_WITH_CAMBRICON
#include "src/cambricon/handle.h"
#endif

#ifdef MEGDNN_WITH_ATLAS
#include "src/atlas/handle.h"
#endif

49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
using namespace megdnn;

MIDOUT_DECL(HandlePlatform);
MIDOUT_DECL(HandleOpr);

Handle::Handle(megcoreComputingHandle_t computing_handle, HandleType type)
        : m_computing_handle(computing_handle), m_handle_type(type) {}

std::unique_ptr<Handle> Handle::make(megcoreComputingHandle_t computing_handle,
                                     int debug_level) {
    (void)debug_level;
    megcoreDeviceHandle_t device_handle;
    megcorePlatform_t platform;
    megcoreGetDeviceHandle(computing_handle, &device_handle);

    megcoreGetPlatform(device_handle, &platform);
    if (platform == megcorePlatformCPU) {
        // only enable midout for CPU, becuase CPU might be unused when some
        // other platforms are used
        MIDOUT_BEGIN(HandlePlatform, midout_iv(megcorePlatformCPU)) {
M
Megvii Engine Team 已提交
69
            // CPU
70 71 72 73 74 75 76 77 78 79
#if MEGDNN_NAIVE
            return make_unique<naive::HandleImpl>(computing_handle);
#else
            if (debug_level == 0) {
#if MEGDNN_X86
                // Because of ICC bug, we cannot use make_unique here. It will
                // trigger an internal compiler error.
                return std::unique_ptr<x86::HandleImpl>(
                        new x86::HandleImpl(computing_handle));
                // return make_unique<x86::HandleImpl>(computing_handle);
80 81 82 83
#elif MEGDNN_ARMV7
                return make_unique<armv7::HandleImpl>(computing_handle);
#elif MEGDNN_AARCH64
                return make_unique<aarch64::HandleImpl>(computing_handle);
84 85 86 87 88 89 90 91
#else
                return make_unique<fallback::HandleImpl>(computing_handle);
#endif
            } else if (debug_level == 1) {
                return make_unique<fallback::HandleImpl>(computing_handle);
            } else if (debug_level == 2) {
                return make_unique<naive::HandleImpl>(computing_handle);
            } else {
M
Megvii Engine Team 已提交
92
                megdnn_throw("Debug level must be 0/1/2.");
93
            }
94 95
#endif
        }
M
Megvii Engine Team 已提交
96 97 98 99
        MIDOUT_END();

    }
    else if (platform == megcorePlatformROCM) {
100
#if MEGDNN_WITH_ROCM
M
Megvii Engine Team 已提交
101
        return make_rocm_handle(computing_handle);
102
#else
M
Megvii Engine Team 已提交
103
        return nullptr;
104
#endif
M
Megvii Engine Team 已提交
105
    } else if (platform == megcorePlatformCambricon) {
106
#if MEGDNN_WITH_CAMBRICON
M
Megvii Engine Team 已提交
107
        return make_unique<cambricon::HandleImpl>(computing_handle);
108
#else
M
Megvii Engine Team 已提交
109
        return nullptr;
110
#endif
M
Megvii Engine Team 已提交
111
    } else if (platform == megcorePlatformAtlas) {
112
#if MEGDNN_WITH_ATLAS
M
Megvii Engine Team 已提交
113
        return make_unique<atlas::HandleImpl>(computing_handle);
114
#else
M
Megvii Engine Team 已提交
115
        return nullptr;
116
#endif
M
Megvii Engine Team 已提交
117 118 119 120 121
    }
    else {
        // CUDA
        megdnn_throw_if(platform != megcorePlatformCUDA, megdnn_error,
                        "platform should be CUDA Platform");
122
#if MEGDNN_WITH_CUDA
M
Megvii Engine Team 已提交
123
        return make_unique<cuda::HandleImpl>(computing_handle);
124
#else
125
        return nullptr;
M
Megvii Engine Team 已提交
126
#endif
127
    }
M
Megvii Engine Team 已提交
128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167
    return nullptr;
}


void Handle::set_destructor(const thin_function<void()>& d) {
    megdnn_assert(!m_destructor, "destructor can be set only once");
    m_destructor = d;
}

Handle::~Handle() {
    if (m_destructor)
        m_destructor();
    m_alive_magic = 0;
}

size_t Handle::alignment_requirement() const {
    // default to 32
    return 32;
}

size_t Handle::image2d_pitch_alignment() const {
    megdnn_throw("image2d tensor format not supported on this handle");
}

megdnn::HandleImplHelper::HandleVendorType Handle::vendor_type() const {
    return HandleVendorType::NOT_SPEC;
}

bool Handle::check_cross_dev_copy_constraint(const TensorLayout& src) {
    return src.is_contiguous();
}

void Handle::on_opr_destructed(OperatorBase* opr) {
    if (m_alive_magic != ALIVE_MAGIC) {
        megdnn_log_error(
                "Handle is destructed before opr gets destructed. "
                "Please fix the destruction order as this would cause "
                "undefined memory access. "
                "Abort now to avoid further problems.");
        abort();
168
    }
M
Megvii Engine Team 已提交
169 170
    if (m_on_opr_destructed) {
        m_on_opr_destructed(opr);
171
    }
M
Megvii Engine Team 已提交
172
}
173

M
Megvii Engine Team 已提交
174 175 176
OperatorBase::~OperatorBase() {
    m_handle->on_opr_destructed(this);
}
177

M
Megvii Engine Team 已提交
178 179
template <typename Opr>
std::unique_ptr<Opr> Handle::create_operator() {
180 181 182 183 184 185 186 187
#define CASE(etype, nm)                                                        \
    case HandleType::etype: {                                                  \
        MIDOUT_BEGIN(HandleOpr, Opr, midout_iv(HandleType::etype)) {           \
            return static_cast<nm::HandleImpl*>(this)->create_operator<Opr>(); \
        }                                                                      \
        MIDOUT_END();                                                          \
    }

M
Megvii Engine Team 已提交
188 189
    switch (m_handle_type) {
        CASE(NAIVE, naive);
190
#if !MEGDNN_NAIVE
M
Megvii Engine Team 已提交
191
        CASE(FALLBACK, fallback);
192
#if MEGDNN_X86
M
Megvii Engine Team 已提交
193
        CASE(X86, x86);
194
#endif
195
#if MEGDNN_ARMV7
M
Megvii Engine Team 已提交
196
        CASE(ARMV7, armv7);
197 198
#endif
#if MEGDNN_AARCH64
M
Megvii Engine Team 已提交
199
        CASE(AARCH64, aarch64);
200 201
#endif
#if MEGDNN_ARMV7 || MEGDNN_AARCH64
M
Megvii Engine Team 已提交
202
        CASE(ARM_COMMON, arm_common);
203
#endif
204 205
#endif  // !MEGDNN_NAIVE
#if MEGDNN_WITH_CUDA
M
Megvii Engine Team 已提交
206
        CASE(CUDA, cuda);
207 208
#endif
#if MEGDNN_WITH_ATLAS
M
Megvii Engine Team 已提交
209
        CASE(ATLAS, atlas);
210
#endif
211
#if MEGDNN_WITH_ROCM
M
Megvii Engine Team 已提交
212 213 214
        case HandleType::ROCM: {
            MIDOUT_BEGIN(HandleOpr, Opr, midout_iv(HandleType::ROCM)) {
                return create_rocm_operator<Opr>();
215
            }
M
Megvii Engine Team 已提交
216 217
            MIDOUT_END();
        }
218
#endif
219 220
#if MEGDNN_WITH_CAMBRICON
            CASE(CAMBRICON, cambricon);
221
#endif
M
Megvii Engine Team 已提交
222 223
        default:
            megdnn_throw("bad handle type");
224
    }
M
Megvii Engine Team 已提交
225 226
#undef CASE
}
227 228

#define INST(opr) template std::unique_ptr<opr> Handle::create_operator();
M
Megvii Engine Team 已提交
229
MEGDNN_FOREACH_OPR_CLASS(INST)
230 231
#undef INST
// vim: syntax=cpp.doxygen