forked from apache/mxnet
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix reshape to add in-place back (apache#14903)
* fix reshape * save * fix reshape * clean code * fix memory allocation & lint * add unit test * req type * add comments to describe the logic
- Loading branch information
Showing
5 changed files
with
261 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,194 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
/*! | ||
* \file mkldnn_reshape.cc | ||
* \brief Implement reshape operator via MKL-DNN reorder primitive | ||
* \author Tao Lv | ||
*/ | ||
|
||
#if MXNET_USE_MKLDNN == 1 | ||
|
||
#include <mkldnn.hpp> | ||
#include "../../tensor/matrix_op-inl.h" | ||
|
||
namespace mxnet { | ||
namespace op { | ||
|
||
bool SupportMKLDNNReshape(const ReshapeParam ¶m, | ||
const NDArray &data) { | ||
auto data_ndim = data.shape().ndim(); | ||
|
||
if (data_ndim > 4 || | ||
data.dtype() != mshadow::kFloat32 || | ||
param.shape.ndim() > 4) | ||
return false; | ||
|
||
return true; | ||
} | ||
|
||
typedef ParamOpSign<ReshapeParam> MKLDNNReshapeSignature; | ||
|
||
class MKLDNNReshapeForward { | ||
std::shared_ptr<mkldnn::memory> data_; | ||
std::shared_ptr<mkldnn::memory> out_; | ||
std::shared_ptr<mkldnn::memory> temp_; | ||
std::vector<mkldnn::primitive> prims_; | ||
|
||
bool needInvalidateInput = false; | ||
|
||
public: | ||
MKLDNNReshapeForward(const ReshapeParam ¶m, | ||
const OpReqType &req, | ||
const NDArray &input, | ||
const NDArray &output) { | ||
auto engine = CpuEngine::Get()->get_engine(); | ||
|
||
// data_ | ||
auto in_mem = input.GetMKLDNNData(); | ||
auto in_pd = in_mem->get_primitive_desc(); | ||
data_ = std::make_shared<mkldnn::memory>(in_pd, nullptr); | ||
|
||
// temp_ | ||
auto temp_dims = mkldnn::memory::dims(input.shape().begin(), input.shape().end()); | ||
auto temp_type = static_cast<mkldnn::memory::data_type>(in_pd.desc().data.data_type); | ||
auto temp_fmt = static_cast<mkldnn::memory::format>(GetDefaultFormat(in_pd.desc())); | ||
auto temp_desc = mkldnn::memory::desc(temp_dims, temp_type, temp_fmt); | ||
auto temp_pd = mkldnn::memory::primitive_desc(temp_desc, engine); | ||
temp_ = std::make_shared<mkldnn::memory>(temp_pd, nullptr); | ||
|
||
// destination | ||
out_ = std::make_shared<mkldnn::memory>(temp_pd, nullptr); | ||
|
||
if (req == kWriteInplace) { | ||
// If the input has MKL-DNN internal layout, we need reorder it to a temporal buffer with | ||
// default layout and copy from the temporal buffer back to output buffer which has the same | ||
// address with input buffer. | ||
// If the input has default layout, then nothing need to do. | ||
if (input.IsMKLDNNData()) { | ||
prims_.push_back(mkldnn::reorder(*data_, *temp_)); // reorder to default | ||
prims_.push_back(mkldnn::reorder(*temp_, *out_)); // copy back | ||
needInvalidateInput = true; | ||
} | ||
} else if (req == kWriteTo) { | ||
if (input.IsMKLDNNData()) { | ||
prims_.push_back(mkldnn::reorder(*data_, *temp_)); // reorder to default | ||
prims_.push_back(mkldnn::reorder(*temp_, *out_)); // copy to the output buffer | ||
needInvalidateInput = false; | ||
} else { | ||
prims_.push_back(mkldnn::reorder(*data_, *out_)); // copy directly from input to output | ||
needInvalidateInput = false; | ||
} | ||
} else { | ||
LOG(FATAL) << "not supported req type: " << req; | ||
} | ||
} | ||
|
||
int GetWorkspaceSize() { | ||
return temp_ ? temp_->get_primitive_desc().get_size() : 0; | ||
} | ||
|
||
void SetNewMem(const NDArray &input, const NDArray &output, void* workspace = nullptr) { | ||
if (input.IsMKLDNNData()) { | ||
this->data_->set_data_handle(input.GetMKLDNNData()->get_data_handle()); | ||
} else { | ||
MSHADOW_TYPE_SWITCH(input.dtype(), DTYPE, { | ||
this->data_->set_data_handle(input.data().dptr<DTYPE>()); | ||
}) | ||
} | ||
|
||
if (output.IsMKLDNNData()) { | ||
this->out_->set_data_handle(output.GetMKLDNNData()->get_data_handle()); | ||
} else { | ||
MSHADOW_TYPE_SWITCH(output.dtype(), DTYPE, { | ||
this->out_->set_data_handle(output.data().dptr<DTYPE>()); | ||
}) | ||
} | ||
|
||
if (workspace) { | ||
this->temp_->set_data_handle(workspace); | ||
} | ||
} | ||
|
||
void Execute(const NDArray &input, | ||
const NDArray &output, | ||
void* workspace = nullptr) { | ||
// set memory handles | ||
SetNewMem(input, output, workspace); | ||
// register primitives | ||
auto stream = MKLDNNStream::Get(); | ||
for (auto &v : this->prims_) { | ||
stream->RegisterPrim(v); | ||
} | ||
stream->Submit(); | ||
// invalidate mkldnn memory in input | ||
if (needInvalidateInput) { | ||
const_cast<NDArray &>(input).InvalidateMKLDNNData(); | ||
} | ||
} | ||
}; | ||
|
||
static MKLDNNReshapeForward &GetReshapeForward(const ReshapeParam& param, | ||
const OpReqType &req, | ||
const NDArray &input, | ||
const NDArray &output) { | ||
#if DMLC_CXX11_THREAD_LOCAL | ||
static thread_local std::unordered_map<MKLDNNReshapeSignature, | ||
MKLDNNReshapeForward, OpHash> fwds; | ||
#else | ||
static MX_THREAD_LOCAL std::unordered_map<MKLDNNReshapeSignature, | ||
MKLDNNReshapeForward, OpHash> fwds; | ||
#endif | ||
MKLDNNReshapeSignature key(param); | ||
key.AddSign(req); | ||
key.AddSign(input); | ||
key.AddSign(output); | ||
|
||
auto it = fwds.find(key); | ||
if (it == fwds.end()) { | ||
MKLDNNReshapeForward fwd(param, req, input, output); | ||
it = AddToCache(&fwds, key, fwd); | ||
} | ||
return it->second; | ||
} | ||
|
||
void MKLDNNReshapeForward(const nnvm::NodeAttrs& attrs, | ||
const OpContext &ctx, | ||
const NDArray &input, | ||
const OpReqType &req, | ||
const NDArray &output) { | ||
const ReshapeParam& param = nnvm::get<ReshapeParam>(attrs.parsed); | ||
if (req == kNullOp) return; | ||
CHECK_NE(req, kAddTo) << "kAddTo is not supported yet"; | ||
|
||
auto fwd = GetReshapeForward(param, req, input, output); | ||
auto ws_size = fwd.GetWorkspaceSize(); | ||
void* ws_ptr = nullptr; | ||
if (ws_size) { | ||
mshadow::Stream<cpu> *s = ctx.get_stream<cpu>(); | ||
mshadow::Tensor<cpu, 1, char> ws = ctx.requested[0] | ||
.get_space_typed<cpu, 1, char>(mshadow::Shape1(ws_size), s); | ||
ws_ptr = reinterpret_cast<void*>(ws.dptr_); | ||
} | ||
|
||
fwd.Execute(input, output, ws_ptr); | ||
} | ||
} // namespace op | ||
} // namespace mxnet | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters