mirror of https://github.com/alibaba/MNN.git
37 lines
965 B
C++
37 lines
965 B
C++
//
|
|
// MetalMatMul.hpp
|
|
// MNN
|
|
//
|
|
// Created by MNN on 2019/01/30.
|
|
// Copyright © 2018, Alibaba Group Holding Limited
|
|
//
|
|
|
|
#ifndef MetalMatMul_hpp
|
|
#define MetalMatMul_hpp
|
|
|
|
#import "MetalExecution.hpp"
|
|
#import "MNN_generated.h"
|
|
#import "MetalBackend.hpp"
|
|
|
|
#if MNN_METAL_ENABLED
|
|
namespace MNN {
|
|
|
|
class MetalMatMul : public MetalExecution {
|
|
public:
|
|
MetalMatMul(Backend *backend, const MatMul *matmul);
|
|
virtual ~MetalMatMul() = default;
|
|
virtual void onEncode(const std::vector<Tensor *> &inputs, const std::vector<Tensor *> &outputs, id<MTLComputeCommandEncoder> encoder) override;
|
|
virtual ErrorCode onResize(const std::vector<Tensor *> &inputs, const std::vector<Tensor *> &outputs) override;
|
|
|
|
private:
|
|
id<MTLBuffer> mBias = nil;
|
|
id<MTLBuffer> mWeight = nil;
|
|
id<MTLBuffer> mConstBuffer = nil;
|
|
bool mTransposeA = false;
|
|
bool mTransposeB = false;
|
|
};
|
|
|
|
} // namespace MNN
|
|
#endif /* MNN_METAL_ENABLED */
|
|
#endif /* MetalMatMul_hpp */
|