This repository was archived by the owner on Nov 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6.7k
[MKLDNN]Add quantized concat #13297
Merged
Merged
[MKLDNN]Add quantized concat #13297
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
c41349d
Add quantized concat
ZhennanQin d018311
Fix non-mkldnn build
ZhennanQin 8a05091
Add size check for MKLDNNQuantizedConcatForward
ZhennanQin f681e20
use all capital for constant
ZhennanQin 152ad06
Rename constant with Google C++ style.
ZhennanQin 461b85f
Address apeforest comments
ZhennanQin a747286
Merge remote-tracking branch 'offical/master' into quantized_concat
ZhennanQin b9daa00
Address apeforest comments
ZhennanQin ff586e7
fix lint
ZhennanQin 18d8c6e
Add frontend interface.
ZhennanQin fc4a443
Merge remote-tracking branch 'offical/master' into quantized_concat
ZhennanQin 9f2628b
Retrigger CI
ZhennanQin File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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,83 @@ | ||
| /* | ||
| * 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_concat-inl.h | ||
| * \brief | ||
| * \author Wenting Jiang | ||
| */ | ||
| #ifndef MXNET_OPERATOR_NN_MKLDNN_MKLDNN_CONCAT_INL_H_ | ||
| #define MXNET_OPERATOR_NN_MKLDNN_MKLDNN_CONCAT_INL_H_ | ||
|
|
||
|
|
||
| #if MXNET_USE_MKLDNN == 1 | ||
| #include <vector> | ||
| #include <utility> | ||
| #include "../concat-inl.h" | ||
| #include "./mkldnn_ops-inl.h" | ||
| #include "./mkldnn_base-inl.h" | ||
|
|
||
| namespace mxnet { | ||
| namespace op { | ||
|
|
||
| class MKLDNNConcatFwd { | ||
| public: | ||
| mkldnn::concat::primitive_desc fwd_pd; | ||
|
|
||
| MKLDNNConcatFwd(int concat_dim, const std::vector<mkldnn::memory::primitive_desc> &data_md) | ||
| : fwd_pd(concat_dim, data_md) { | ||
| data.resize(data_md.size()); | ||
| } | ||
|
|
||
| void SetNewMem(const std::vector<const mkldnn::memory *> &in_data, const mkldnn::memory &output); | ||
|
|
||
| const mkldnn::concat &GetFwd() const; | ||
|
|
||
| private: | ||
| std::shared_ptr<mkldnn::concat> fwd; | ||
| std::vector<std::shared_ptr<mkldnn::memory>> data; | ||
| std::vector<mkldnn::primitive::at> data_mem; | ||
| std::shared_ptr<mkldnn::memory> out; | ||
| }; | ||
|
|
||
| static MKLDNNConcatFwd &GetConcatForward( | ||
|
ZhennanQin marked this conversation as resolved.
|
||
| int concat_dim, const std::vector<NDArray> &in_data, | ||
| const std::vector<mkldnn::memory::primitive_desc> &data_md) { | ||
| #if DMLC_CXX11_THREAD_LOCAL | ||
| static thread_local std::unordered_map<OpSignature, MKLDNNConcatFwd, OpHash> fwds; | ||
| #else | ||
| static MX_THREAD_LOCAL std::unordered_map<OpSignature, MKLDNNConcatFwd, OpHash> fwds; | ||
| #endif | ||
| OpSignature key; | ||
| key.AddSign(concat_dim); | ||
| key.AddSign(in_data); | ||
|
|
||
| auto it = fwds.find(key); | ||
| if (it == fwds.end()) { | ||
| MKLDNNConcatFwd fwd(concat_dim, data_md); | ||
| it = AddToCache(&fwds, key, fwd); | ||
| } | ||
| return it->second; | ||
| } | ||
|
|
||
| } // namespace op | ||
| } // namespace mxnet | ||
|
|
||
| #endif // MXNET_USE_MKLDNN == 1 | ||
| #endif // MXNET_OPERATOR_NN_MKLDNN_MKLDNN_CONCAT_INL_H_ | ||
This file contains hidden or 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
119 changes: 119 additions & 0 deletions
119
src/operator/quantization/mkldnn/mkldnn_quantized_concat.cc
This file contains hidden or 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,119 @@ | ||
| /* | ||
| * 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. | ||
| */ | ||
|
|
||
| /*! | ||
| * Copyright (c) 2018 by Contributors | ||
| * \file quantized_concat.cc | ||
| * \brief | ||
| */ | ||
|
|
||
| #if MXNET_USE_MKLDNN == 1 | ||
| #include "../../nn/mkldnn/mkldnn_concat-inl.h" | ||
| #include "../quantization_utils.h" | ||
|
|
||
| namespace mxnet { | ||
| namespace op { | ||
|
|
||
| namespace quantized_concat_enum { | ||
|
ZhennanQin marked this conversation as resolved.
|
||
| enum QuantizedConcatOutputs { kOut, kMin, kMax }; | ||
| } | ||
|
|
||
| static float GetScale(const NDArray& data, float min, float max) { | ||
| auto data_range = (data.dtype() == mshadow::kInt8) ? kInt8Range : kUint8Range; | ||
| return data_range / MaxAbs(min, max); | ||
| } | ||
|
|
||
| static void MKLDNNQuantizedConcatForward(const nnvm::NodeAttrs& attrs, const OpContext& ctx, | ||
| const std::vector<NDArray>& in_data, | ||
| const std::vector<OpReqType>& req, | ||
| const std::vector<NDArray>& out_data) { | ||
| const ConcatParam& param_ = nnvm::get<ConcatParam>(attrs.parsed); | ||
| CHECK_EQ(in_data.size(), static_cast<size_t>(param_.num_args * 3)); | ||
| CHECK_EQ(out_data.size(), 3U); | ||
| // Collect data min/max and output_neg_min, output_pos_max | ||
| std::vector<float> data_min(param_.num_args); | ||
| std::vector<float> data_max(param_.num_args); | ||
| float output_neg_min = 0.f; // 0.f is the maximum for output_neg_min | ||
| float output_pos_max = 0.f; // 0.f is the minimum for output_pos_max | ||
| for (int i = 0; i < param_.num_args; ++i) { | ||
| data_min[i] = in_data[param_.num_args + 2 * i].data().dptr<float>()[0]; | ||
| if (data_min[i] < output_neg_min) output_neg_min = data_min[i]; | ||
| data_max[i] = in_data[param_.num_args + 2 * i + 1].data().dptr<float>()[0]; | ||
| if (data_max[i] > output_pos_max) output_pos_max = data_max[i]; | ||
| } | ||
| out_data[quantized_concat_enum::kMin].data().dptr<float>()[0] = output_neg_min; | ||
| out_data[quantized_concat_enum::kMax].data().dptr<float>()[0] = output_pos_max; | ||
| auto out_scale = GetScale(out_data[quantized_concat_enum::kOut], output_neg_min, output_pos_max); | ||
| std::vector<mkldnn::memory::primitive_desc> data_md; | ||
| std::vector<const mkldnn::memory*> data_mem; | ||
| // new_data_mem is for auto-free new created mkldnn memory | ||
| std::vector<std::shared_ptr<mkldnn::memory>> new_data_mem; | ||
| for (int i = 0; i < param_.num_args; ++i) { | ||
| auto i_scale = GetScale(in_data[i], data_min[i], data_max[i]); | ||
| if (i_scale == out_scale) { | ||
| auto mem = in_data[i].GetMKLDNNData(); | ||
| data_mem.push_back(mem); | ||
| data_md.push_back(mem->get_primitive_desc()); | ||
| } else { | ||
| auto mem = in_data[i].GetMKLDNNData(); | ||
| auto pd = mem->get_primitive_desc(); | ||
| const auto rescaled_mem = std::make_shared<mkldnn::memory>(pd); | ||
| new_data_mem.push_back(rescaled_mem); | ||
| std::vector<float> reorder_scale = {out_scale / i_scale}; | ||
| primitive_attr reorder_attr; | ||
| reorder_attr.set_int_output_round_mode(round_mode::round_nearest); | ||
| reorder_attr.set_output_scales(0, reorder_scale); | ||
| const auto reorder_pd = mkldnn::reorder::primitive_desc(pd, pd, reorder_attr); | ||
| MKLDNNStream::Get()->RegisterPrim(mkldnn::reorder(reorder_pd, *mem, *rescaled_mem)); | ||
| data_mem.push_back(rescaled_mem.get()); | ||
| data_md.push_back(pd); | ||
| } | ||
| } | ||
| MKLDNNConcatFwd& fwd = GetConcatForward(param_.dim, in_data, data_md); | ||
| mxnet::mkldnn_output_t out_mem = | ||
| CreateMKLDNNMem(out_data[quantized_concat_enum::kOut], fwd.fwd_pd.dst_primitive_desc(), | ||
| req[concat_enum::kOut]); | ||
| fwd.SetNewMem(data_mem, *out_mem.second); | ||
| MKLDNNStream::Get()->RegisterPrim(fwd.GetFwd()); | ||
| CommitOutput(out_data[concat_enum::kOut], out_mem); | ||
| MKLDNNStream::Get()->Submit(); | ||
| } | ||
|
|
||
| inline static bool ConcatStorageType(const nnvm::NodeAttrs& attrs, const int dev_mask, | ||
| DispatchMode* dispatch_mode, std::vector<int>* in_attrs, | ||
| std::vector<int>* out_attrs) { | ||
| const ConcatParam& param_ = nnvm::get<ConcatParam>(attrs.parsed); | ||
| CHECK_EQ(in_attrs->size(), static_cast<size_t>(param_.num_args * 3)); | ||
| CHECK_EQ(out_attrs->size(), 3U); | ||
|
|
||
| return MKLDNNStorageType(attrs, dev_mask, true, dispatch_mode, in_attrs, out_attrs); | ||
| } | ||
|
|
||
| NNVM_REGISTER_OP(_contrib_quantized_concat) | ||
| .set_attr<FInferStorageType>("FInferStorageType", ConcatStorageType) | ||
| .set_attr<FComputeEx>("FComputeEx<cpu>", MKLDNNQuantizedConcatForward) | ||
| .set_attr<FResourceRequest>("FResourceRequest", [](const NodeAttrs& n) { | ||
| return std::vector<ResourceRequest>{ResourceRequest::kTempSpace}; | ||
| }) | ||
| .set_attr<bool>("TIsMKLDNN", true); | ||
|
|
||
| } // namespace op | ||
| } // namespace mxnet | ||
|
|
||
| #endif // MXNET_USE_MKLDNN == 1 | ||
This file contains hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.