handle.cpp 6.3 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
#if MEGDNN_WITH_CUDA
#include "src/cuda/handle.h"
#endif

38 39 40 41 42 43 44 45
#if MEGDNN_WITH_CAMBRICON
#include "src/cambricon/handle.h"
#endif

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

46 47 48 49 50 51 52 53
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) {}

M
Megvii Engine Team 已提交
54 55
std::unique_ptr<Handle> Handle::make(
        megcoreComputingHandle_t computing_handle, int debug_level) {
56 57 58 59 60 61 62 63 64 65
    (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 已提交
66
            // CPU
67 68 69 70 71 72 73 74 75 76
#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);
77 78 79 80
#elif MEGDNN_ARMV7
                return make_unique<armv7::HandleImpl>(computing_handle);
#elif MEGDNN_AARCH64
                return make_unique<aarch64::HandleImpl>(computing_handle);
81 82 83 84 85 86 87 88
#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 已提交
89
                megdnn_throw("Debug level must be 0/1/2.");
90
            }
91 92
#endif
        }
M
Megvii Engine Team 已提交
93 94 95 96
        MIDOUT_END();

    }
    else if (platform == megcorePlatformROCM) {
97
#if MEGDNN_WITH_ROCM
M
Megvii Engine Team 已提交
98
        return make_rocm_handle(computing_handle);
99
#else
M
Megvii Engine Team 已提交
100
        return nullptr;
101
#endif
M
Megvii Engine Team 已提交
102
    } else if (platform == megcorePlatformCambricon) {
103
#if MEGDNN_WITH_CAMBRICON
M
Megvii Engine Team 已提交
104
        return make_unique<cambricon::HandleImpl>(computing_handle);
105
#else
M
Megvii Engine Team 已提交
106
        return nullptr;
107
#endif
M
Megvii Engine Team 已提交
108
    } else if (platform == megcorePlatformAtlas) {
109
#if MEGDNN_WITH_ATLAS
M
Megvii Engine Team 已提交
110
        return make_unique<atlas::HandleImpl>(computing_handle);
111
#else
M
Megvii Engine Team 已提交
112
        return nullptr;
113
#endif
M
Megvii Engine Team 已提交
114 115 116
    }
    else {
        // CUDA
M
Megvii Engine Team 已提交
117 118 119
        megdnn_throw_if(
                platform != megcorePlatformCUDA, megdnn_error,
                "platform should be CUDA Platform");
120
#if MEGDNN_WITH_CUDA
M
Megvii Engine Team 已提交
121
        return make_unique<cuda::HandleImpl>(computing_handle);
122
#else
123
        return nullptr;
M
Megvii Engine Team 已提交
124
#endif
125
    }
M
Megvii Engine Team 已提交
126 127 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
    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();
165
    }
M
Megvii Engine Team 已提交
166 167
    if (m_on_opr_destructed) {
        m_on_opr_destructed(opr);
168
    }
M
Megvii Engine Team 已提交
169
}
170

M
Megvii Engine Team 已提交
171 172 173
OperatorBase::~OperatorBase() {
    m_handle->on_opr_destructed(this);
}
174

M
Megvii Engine Team 已提交
175 176
template <typename Opr>
std::unique_ptr<Opr> Handle::create_operator() {
177 178 179 180 181 182 183 184
#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 已提交
185 186
    switch (m_handle_type) {
        CASE(NAIVE, naive);
187
#if !MEGDNN_NAIVE
M
Megvii Engine Team 已提交
188
        CASE(FALLBACK, fallback);
189
#if MEGDNN_X86
M
Megvii Engine Team 已提交
190
        CASE(X86, x86);
191
#endif
192
#if MEGDNN_ARMV7
M
Megvii Engine Team 已提交
193
        CASE(ARMV7, armv7);
194 195
#endif
#if MEGDNN_AARCH64
M
Megvii Engine Team 已提交
196
        CASE(AARCH64, aarch64);
197 198
#endif
#if MEGDNN_ARMV7 || MEGDNN_AARCH64
M
Megvii Engine Team 已提交
199
        CASE(ARM_COMMON, arm_common);
200
#endif
201 202
#endif  // !MEGDNN_NAIVE
#if MEGDNN_WITH_CUDA
M
Megvii Engine Team 已提交
203
        CASE(CUDA, cuda);
204 205
#endif
#if MEGDNN_WITH_ATLAS
M
Megvii Engine Team 已提交
206
        CASE(ATLAS, atlas);
207
#endif
208
#if MEGDNN_WITH_ROCM
M
Megvii Engine Team 已提交
209 210 211
        case HandleType::ROCM: {
            MIDOUT_BEGIN(HandleOpr, Opr, midout_iv(HandleType::ROCM)) {
                return create_rocm_operator<Opr>();
212
            }
M
Megvii Engine Team 已提交
213 214
            MIDOUT_END();
        }
215
#endif
216 217
#if MEGDNN_WITH_CAMBRICON
            CASE(CAMBRICON, cambricon);
218
#endif
M
Megvii Engine Team 已提交
219 220
        default:
            megdnn_throw("bad handle type");
221
    }
M
Megvii Engine Team 已提交
222 223
#undef CASE
}
224 225

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