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
#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 54 55 56 57 58 59 60 61 62 63 64 65
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 已提交
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 117 118
    }
    else {
        // CUDA
        megdnn_throw_if(platform != megcorePlatformCUDA, megdnn_error,
                        "platform should be CUDA Platform");
119
#if MEGDNN_WITH_CUDA
M
Megvii Engine Team 已提交
120
        return make_unique<cuda::HandleImpl>(computing_handle);
121
#else
122
        return nullptr;
M
Megvii Engine Team 已提交
123
#endif
124
    }
M
Megvii Engine Team 已提交
125 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
    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();
164
    }
M
Megvii Engine Team 已提交
165 166
    if (m_on_opr_destructed) {
        m_on_opr_destructed(opr);
167
    }
M
Megvii Engine Team 已提交
168
}
169

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

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

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