opr_impl.h 1.7 KB
Newer Older
1 2 3 4
/**
 * \file dnn/src/naive/matrix_mul/opr_impl.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
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
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 26 27 28 29
 */
#pragma once
#include "megdnn/oprs.h"

namespace megdnn {
namespace naive {

class MatrixMulForwardImpl : public MatrixMulForward {
public:
    using MatrixMulForward::MatrixMulForward;

    void exec(_megdnn_tensor_in A, _megdnn_tensor_in B, _megdnn_tensor_out C,
              _megdnn_workspace workspace) override;

    size_t get_workspace_in_bytes(const TensorLayout&, const TensorLayout&,
                                  const TensorLayout&) override;

    std::vector<Algorithm*> get_all_algorithms(
            const TensorLayout& /*A*/, const TensorLayout& /*B*/,
30
            const TensorLayout& /*C*/) override;
31

32 33 34 35 36
    Algorithm* get_algorithm_heuristic(
            const TensorLayout& /*A*/, const TensorLayout& /*B*/,
            const TensorLayout& /*C*/, size_t /*workspace_limit_in_bytes*/,
            const AlgoAttribute& /*positive_attr*/,
            const AlgoAttribute& /*negative_attr*/) override;
37

38 39
    Algorithm* get_algorithm_from_desc(const AlgorithmDesc&) override;

40 41 42 43 44 45 46 47 48 49 50 51
    const char* get_algorithm_set_name() const override { return "DEFAULT"; }

private:
    static void exec_internal(_megdnn_tensor_in A, _megdnn_tensor_in B,
                              _megdnn_tensor_out C, _megdnn_workspace workspace,
                              const Param& param);
};

}  // namespace naive
}  // namespace megdnn

// vim: syntax=cpp.doxygen