2019-04-17 10:49:11 +08:00
|
|
|
//
|
|
|
|
// CPUMatMul.cpp
|
|
|
|
// MNN
|
|
|
|
//
|
|
|
|
// Created by MNN on 2018/08/06.
|
|
|
|
// Copyright © 2018, Alibaba Group Holding Limited
|
|
|
|
//
|
|
|
|
|
2020-02-26 09:57:17 +08:00
|
|
|
#include "CPUMatMul.hpp"
|
|
|
|
#include "CPUBackend.hpp"
|
2019-12-27 22:16:57 +08:00
|
|
|
#include "math/Matrix.hpp"
|
2020-05-15 14:49:10 +08:00
|
|
|
#include "compute/CommonOptFunction.h"
|
2019-12-27 22:16:57 +08:00
|
|
|
#include "core/Macro.h"
|
2020-02-26 09:57:17 +08:00
|
|
|
#include "core/Concurrency.h"
|
2021-04-08 15:34:23 +08:00
|
|
|
#include "core/AutoStorage.h"
|
2020-11-05 16:41:56 +08:00
|
|
|
#include "math/Vec.hpp"
|
|
|
|
#include <limits>
|
2021-01-05 15:30:28 +08:00
|
|
|
|
2020-11-05 16:41:56 +08:00
|
|
|
using Vec4 = MNN::Math::Vec<float, 4>;
|
2019-04-17 10:49:11 +08:00
|
|
|
namespace MNN {
|
|
|
|
|
2021-06-11 17:17:13 +08:00
|
|
|
CPUMatMul::CPUMatMul(Backend* backend, bool transposeA, bool transposeB, bool transposeC, bool multiThread)
|
|
|
|
: Execution(backend), mTransposeA(transposeA), mTransposeB(transposeB), mTransposeC(transposeC), mSupportMultiThread(multiThread) {
|
2020-07-04 01:21:30 +08:00
|
|
|
mComputer.reset(new StrassenMatrixComputor(backend, mSupportMultiThread, 5));
|
|
|
|
}
|
2020-11-05 16:41:56 +08:00
|
|
|
|
2021-06-11 17:17:13 +08:00
|
|
|
void CPUMatMul::_scheduleForVecE(int e, int l, int h) {
|
2020-11-05 16:41:56 +08:00
|
|
|
int numberThread = mSupportMultiThread ? static_cast<CPUBackend*>(backend())->threadNumber() : 1;
|
|
|
|
MNN_ASSERT(e == 1);
|
2021-01-06 16:29:37 +08:00
|
|
|
MatMulParam param;
|
|
|
|
param.e = 1;
|
|
|
|
param.l = l;
|
|
|
|
param.h = h;
|
|
|
|
param.BTranspose = mTransposeB;
|
|
|
|
param.numberThread = numberThread;
|
2021-06-11 17:17:13 +08:00
|
|
|
auto func = static_cast<CPUBackend*>(backend())->functions()->MNNComputeMatMulForE_1;
|
|
|
|
mPostFunctions.emplace_back(std::make_pair([param, func](
|
|
|
|
int tId, const float* A, const float* B, const float* biasPtr, float* C) {
|
|
|
|
func(A, B, C, biasPtr, ¶m, tId);
|
2021-01-06 16:29:37 +08:00
|
|
|
}, numberThread));
|
2020-11-05 16:41:56 +08:00
|
|
|
}
|
|
|
|
|
2021-06-11 17:17:13 +08:00
|
|
|
void CPUMatMul::_scheduleForVec(int e, int l, int h) {
|
2020-11-05 16:41:56 +08:00
|
|
|
int numberThread = mSupportMultiThread ? static_cast<CPUBackend*>(backend())->threadNumber() : 1;
|
2021-06-11 17:17:13 +08:00
|
|
|
MatMulParam param;
|
|
|
|
param.e = e;
|
|
|
|
param.l = l;
|
|
|
|
param.h = 1;
|
|
|
|
param.ATranspose = mTransposeA;
|
|
|
|
param.numberThread = numberThread;
|
|
|
|
auto func = static_cast<CPUBackend*>(backend())->functions()->MNNComputeMatMulForH_1;
|
2020-11-05 16:41:56 +08:00
|
|
|
// TODD: Support e = 1
|
|
|
|
MNN_ASSERT(h == 1);
|
2021-06-11 17:17:13 +08:00
|
|
|
mPostFunctions.emplace_back(std::make_pair([param, func](
|
|
|
|
int tId, const float* A, const float* B, const float* biasPtr, float* C) {
|
|
|
|
func(A, B, C, biasPtr, ¶m, tId);
|
|
|
|
}, numberThread));
|
2020-11-05 16:41:56 +08:00
|
|
|
}
|
|
|
|
|
2020-05-15 14:49:10 +08:00
|
|
|
ErrorCode CPUMatMul::onResize(const std::vector<Tensor*>& inputs, const std::vector<Tensor*>& outputs) {
|
2020-07-04 01:21:30 +08:00
|
|
|
const Tensor* A = inputs[0];
|
|
|
|
const Tensor* B = inputs[1];
|
2020-05-15 14:49:10 +08:00
|
|
|
Tensor* C = outputs[0];
|
|
|
|
auto w0 = inputs[0]->length(1);
|
|
|
|
auto h0 = inputs[0]->length(0);
|
2021-04-08 15:34:23 +08:00
|
|
|
auto core = static_cast<CPUBackend*>(backend())->functions();
|
2020-07-04 01:21:30 +08:00
|
|
|
mPreFunctions.clear();
|
|
|
|
mPostFunctions.clear();
|
2021-06-11 17:17:13 +08:00
|
|
|
auto e = A->length(0);
|
|
|
|
auto h = B->length(1);
|
|
|
|
auto l = A->length(1);
|
2020-05-15 14:49:10 +08:00
|
|
|
if (mTransposeA) {
|
2021-06-11 17:17:13 +08:00
|
|
|
l = A->length(0);
|
|
|
|
e = A->length(1);
|
2020-02-26 09:57:17 +08:00
|
|
|
}
|
2021-06-11 17:17:13 +08:00
|
|
|
if (mTransposeB) {
|
|
|
|
h = B->length(0);
|
|
|
|
}
|
|
|
|
// If encoded but resized as h=1/e=1, the computer should clear firstly
|
|
|
|
mComputer->onReset();
|
|
|
|
if (h == 1) {
|
|
|
|
_scheduleForVec(e, l, h);
|
|
|
|
return NO_ERROR;
|
|
|
|
}
|
|
|
|
if (e == 1) {
|
|
|
|
const float* biasPtr = nullptr;
|
|
|
|
_scheduleForVecE(e, l, h);
|
|
|
|
return NO_ERROR;
|
2020-11-05 16:41:56 +08:00
|
|
|
}
|
2020-07-04 01:21:30 +08:00
|
|
|
int eP, lP, hP;
|
2021-04-08 15:34:23 +08:00
|
|
|
core->MNNGetMatMulPackMode(&eP, &lP, &hP);
|
|
|
|
AutoRelease<Tensor> AT(Tensor::createDevice<float>({UP_DIV(l, core->pack), e, core->pack}));
|
|
|
|
AutoRelease<Tensor> BT(Tensor::createDevice<float>({UP_DIV(h, hP), UP_DIV(l, lP) * lP, hP}));
|
|
|
|
AutoRelease<Tensor> CT(Tensor::createDevice<float>({UP_DIV(h, core->pack), e, core->pack}));
|
2020-07-04 01:21:30 +08:00
|
|
|
auto res = backend()->onAcquireBuffer(BT.get(), Backend::DYNAMIC);
|
|
|
|
if (!res) {
|
|
|
|
return OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
auto BTPtr = BT->host<float>();
|
|
|
|
float* BTempPtr = BTPtr;
|
|
|
|
int numberThread = mSupportMultiThread ? ((CPUBackend*)backend())->threadNumber() : 1;
|
2021-06-11 17:17:13 +08:00
|
|
|
mPreFunctions.emplace_back(std::make_pair([BTempPtr, l, h, this, core] (int tId, const float* APtr, const float* BPtr, const float* Bias) {
|
2021-04-08 15:34:23 +08:00
|
|
|
core->MNNPackForMatMul_B(BTempPtr, BPtr, h, l, mTransposeB);
|
2020-07-04 01:21:30 +08:00
|
|
|
} , 1));
|
|
|
|
res = backend()->onAcquireBuffer(AT.get(), Backend::DYNAMIC);
|
|
|
|
res = res && backend()->onAcquireBuffer(CT.get(), Backend::DYNAMIC);
|
|
|
|
if (!res) {
|
|
|
|
return OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
auto ATPtr = AT->host<float>();
|
|
|
|
if (mTransposeA) {
|
|
|
|
// l, e -> lC4, e, 4
|
2021-06-11 17:17:13 +08:00
|
|
|
mPreFunctions.emplace_back(std::make_pair([ATPtr, e, l, core](int tId, const float* APtr, const float* BPtr, const float* Bias) {
|
2021-04-08 15:34:23 +08:00
|
|
|
core->MNNPackCUnit(ATPtr, APtr, e, l);
|
2020-07-04 01:21:30 +08:00
|
|
|
}, 1));
|
|
|
|
} else {
|
|
|
|
// e, l -> lC4, e, 4
|
2020-12-15 14:12:35 +08:00
|
|
|
mPreFunctions.emplace_back(std::make_pair(
|
2021-06-11 17:17:13 +08:00
|
|
|
[ATPtr, e, l, core](int tId, const float* APtr, const float* BPtr, const float* Bias) {
|
2021-04-08 15:34:23 +08:00
|
|
|
core->MNNPackCUnitTranspose(ATPtr, APtr, e, l);
|
|
|
|
}, 1));
|
2020-07-04 01:21:30 +08:00
|
|
|
}
|
2021-04-08 15:34:23 +08:00
|
|
|
AutoRelease<Tensor> biasWrap;
|
2020-11-05 16:41:56 +08:00
|
|
|
std::vector<Tensor*> strassenInputs = {AT.get(), BT.get()};
|
|
|
|
std::vector<float> postParameters;
|
|
|
|
if (inputs.size() > 2) {
|
|
|
|
auto bias = inputs[2];
|
|
|
|
auto biasLength = bias->elementSize();
|
2021-04-08 15:34:23 +08:00
|
|
|
if (biasLength % core->pack != 0) {
|
2021-06-11 17:17:13 +08:00
|
|
|
mStrassenUseBiasDirectly = false;
|
2020-11-05 16:41:56 +08:00
|
|
|
// Padding to align of 4
|
2021-04-08 15:34:23 +08:00
|
|
|
biasWrap.reset(Tensor::createDevice<float>({UP_DIV(biasLength, core->pack) * core->pack}));
|
2020-11-19 10:50:09 +08:00
|
|
|
res = backend()->onAcquireBuffer(biasWrap.get(), Backend::DYNAMIC);
|
2020-11-05 16:41:56 +08:00
|
|
|
if (!res) {
|
|
|
|
return OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
auto bdest = biasWrap->host<float>();
|
2020-12-15 14:12:35 +08:00
|
|
|
mPreFunctions.emplace_back(std::make_pair(
|
2021-06-11 17:17:13 +08:00
|
|
|
[biasLength, bdest, core](int tId, const float* APtr, const float* BPtr, const float* borigin) {
|
2021-04-08 15:34:23 +08:00
|
|
|
::memset(bdest, 0, UP_DIV(biasLength, core->pack) * core->bytes * core->pack);
|
|
|
|
::memcpy(bdest, borigin, biasLength * core->bytes);
|
2020-11-05 16:41:56 +08:00
|
|
|
}, 1));
|
|
|
|
strassenInputs.emplace_back(biasWrap.get());
|
|
|
|
} else {
|
2021-06-11 17:17:13 +08:00
|
|
|
mStrassenUseBiasDirectly = true;
|
2020-11-05 16:41:56 +08:00
|
|
|
strassenInputs.emplace_back(bias);
|
|
|
|
}
|
|
|
|
postParameters = {
|
|
|
|
1.0f,
|
|
|
|
1.0f,
|
|
|
|
-std::numeric_limits<float>().max(),
|
|
|
|
std::numeric_limits<float>().max(),
|
|
|
|
};
|
|
|
|
}
|
2021-06-11 17:17:13 +08:00
|
|
|
auto code = mComputer->onEncode(strassenInputs, {CT.get()}, postParameters, l);
|
2020-07-04 01:21:30 +08:00
|
|
|
if (NO_ERROR != code) {
|
|
|
|
return code;
|
|
|
|
}
|
2021-04-08 15:34:23 +08:00
|
|
|
if (nullptr != biasWrap.get()) {
|
|
|
|
backend()->onReleaseBuffer(biasWrap.get(), Backend::DYNAMIC);
|
|
|
|
}
|
2020-05-16 22:21:15 +08:00
|
|
|
|
2021-04-08 15:34:23 +08:00
|
|
|
auto CTPtr = CT->host<float>();
|
2020-07-04 01:21:30 +08:00
|
|
|
// hC4, e, 4 -> e, h
|
2021-06-11 17:17:13 +08:00
|
|
|
if (mTransposeC) {
|
|
|
|
mPostFunctions.emplace_back(std::make_pair([CTPtr, e, h, core](
|
|
|
|
int tId, const float* APtr, const float* BPtr, const float* biasPtr, float* CPtr) {
|
|
|
|
core->MNNUnpackCUnitTranspose(CPtr, CTPtr, e, h);
|
|
|
|
}, 1));
|
|
|
|
} else {
|
|
|
|
mPostFunctions.emplace_back(std::make_pair([CTPtr, e, h, core](
|
|
|
|
int tId, const float* APtr, const float* BPtr, const float* biasPtr, float* CPtr) {
|
|
|
|
core->MNNUnpackCUnit(CPtr, CTPtr, e, h);
|
|
|
|
}, 1));
|
|
|
|
}
|
2020-07-04 01:21:30 +08:00
|
|
|
backend()->onReleaseBuffer(AT.get(), Backend::DYNAMIC);
|
|
|
|
backend()->onReleaseBuffer(BT.get(), Backend::DYNAMIC);
|
|
|
|
backend()->onReleaseBuffer(CT.get(), Backend::DYNAMIC);
|
2020-05-15 14:49:10 +08:00
|
|
|
return NO_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
ErrorCode CPUMatMul::onExecute(const std::vector<Tensor*>& inputs, const std::vector<Tensor*>& outputs) {
|
2020-12-15 14:12:35 +08:00
|
|
|
|
|
|
|
auto APtr = inputs[0]->host<float>();
|
|
|
|
auto BPtr = inputs[1]->host<float>();
|
|
|
|
auto CPtr = outputs[0]->host<float>();
|
|
|
|
|
2021-06-11 17:17:13 +08:00
|
|
|
const float* biasPtr = nullptr;
|
|
|
|
if (inputs.size() > 2) {
|
|
|
|
biasPtr = inputs[2]->host<float>();
|
|
|
|
}
|
|
|
|
execute(APtr, BPtr, CPtr, biasPtr);
|
|
|
|
return NO_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CPUMatMul::execute(const float* APtr, const float* BPtr, float* CPtr, const float* biasPtr) {
|
2020-07-04 01:21:30 +08:00
|
|
|
for (auto& f : mPreFunctions) {
|
|
|
|
MNN_CONCURRENCY_BEGIN(tId, f.second) {
|
2021-06-11 17:17:13 +08:00
|
|
|
f.first(tId, APtr, BPtr, biasPtr);
|
2020-07-04 01:21:30 +08:00
|
|
|
}
|
|
|
|
MNN_CONCURRENCY_END();
|
|
|
|
}
|
2021-06-11 17:17:13 +08:00
|
|
|
if (mStrassenUseBiasDirectly) {
|
|
|
|
mComputer->onExecute(nullptr, nullptr, (uint8_t*)biasPtr, nullptr);
|
|
|
|
} else {
|
|
|
|
mComputer->onExecute();
|
|
|
|
}
|
2020-07-04 01:21:30 +08:00
|
|
|
for (auto& f : mPostFunctions) {
|
|
|
|
MNN_CONCURRENCY_BEGIN(tId, f.second) {
|
2021-06-11 17:17:13 +08:00
|
|
|
f.first(tId, APtr, BPtr, biasPtr, CPtr);
|
2020-07-04 01:21:30 +08:00
|
|
|
}
|
|
|
|
MNN_CONCURRENCY_END();
|
|
|
|
}
|
2019-04-17 10:49:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
class CPUMatMulCreator : public CPUBackend::Creator {
|
|
|
|
public:
|
|
|
|
virtual Execution* onCreate(const std::vector<Tensor*>& inputs, const std::vector<Tensor*>& outputs,
|
|
|
|
const MNN::Op* op, Backend* backend) const override {
|
|
|
|
auto param = op->main_as_MatMul();
|
2021-06-11 17:17:13 +08:00
|
|
|
return new CPUMatMul(backend, param->transposeA(), param->transposeB(), true, true);
|
2019-04-17 10:49:11 +08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
REGISTER_CPU_OP_CREATOR(CPUMatMulCreator, OpType_MatMul);
|
|
|
|
|
|
|
|
} // namespace MNN
|