algo.h 2.1 KB
Newer Older
1 2 3 4
/**
 * \file dnn/src/arm_common/elemwise/ternary/algo.h
 * 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 9 10 11 12 13 14 15 16
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or
 * implied.
 */
#pragma once
#include "src/arm_common/elemwise/opr_impl.h"
namespace megdnn {
namespace arm_common {

M
Megvii Engine Team 已提交
17 18 19 20 21 22 23 24 25 26 27 28 29 30
#define DECL_CB(case)                                                                 \
    class ElemwiseImpl::AlgoTernaryFma3##case final : public ElemwiseImpl::AlgoBase { \
        mutable std::string m_name;                                                   \
        AlgoAttribute attribute() const override {                                    \
            return AlgoAttribute::REPRODUCIBLE;                                       \
        }                                                                             \
        const char* name() const override {                                           \
            if (m_name.empty()) {                                                     \
                m_name = ssprintf("Elemwise::AlgoTernaryFma3" #case);                 \
            }                                                                         \
            return m_name.c_str();                                                    \
        }                                                                             \
        bool is_available(const KernParam&) const override;                           \
        void exec(const KernParam&) const override;                                   \
31 32 33 34 35
    };

DECL_CB(VecVecVec);
DECL_CB(VecVecScalar);
DECL_CB(Bcast101VecBcast101);
36
DECL_CB(Bcast111CVecBcast111C);
37
DECL_CB(Bcast101xXVecBcast101xX);
38
DECL_CB(VecBcast101Vec);
39
DECL_CB(VecBcast111CVec);
40
DECL_CB(VecBcast101xXVec);
41 42 43 44 45 46
DECL_CB(VecScalarVec);
DECL_CB(VecScalarScalar);
#undef DECL_CB
}  // namespace arm_common
}  // namespace megdnn
   // vim: syntax=cpp.doxygen