/* Copyright (c) 2021 PaddlePaddle Authors. All Rights Reserved. Licensed 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. */ #pragma once #include "paddle/fluid/framework/op_registry.h" #include "paddle/phi/backends/onednn/onednn_reuse.h" namespace paddle { namespace operators { using phi::funcs::CreateKey; using phi::funcs::OneDNNGetDataType; using phi::funcs::RNNReorderType; using OneDNNMemoryFormat = dnnl::memory::format_tag; template class RNNMKLDNNHandler : public phi::funcs::OneDNNHandlerT { public: RNNMKLDNNHandler(const paddle::framework::ExecutionContext& ctx, const phi::OneDNNContext& dev_ctx, const dnnl::engine onednn_engine, platform::Place cpu_place, const phi::DenseTensor* input, const phi::DenseTensor* weight_h, const phi::DenseTensor* h0, const bool is_reverse, const int64_t N, const int64_t Ti, const int64_t IC, const int64_t OC, const int64_t G, const std::string& unique_name) : phi::funcs::OneDNNHandlerT( dev_ctx, dev_ctx.GetEngine(), cpu_place, CreateKey(dev_ctx, unique_name, OneDNNGetDataType(), Ti)), N(N), Ti(Ti), IC(IC), OC(OC), G(G) { // Create memory key without Ti because weights, bias and h0 memories // do not depend on Ti size but primitive and input/output memory do memory_key_ = phi::funcs::ExtendKeyWithThreadInfoIfNeeded( dev_ctx, CreateKey(dev_ctx, unique_name, OneDNNGetDataType())); // Is it int8 kernel const bool is_INT8 = std::is_same::value; if (is_INT8) { // Int8 attributes const float scale_data = ctx.Attr("Scale_data"); const float shift_data = ctx.Attr("Shift_data"); const auto scale_weights = ctx.Attr>("Scale_weights"); const int weights_scale_mask = 0 + (1 << 3) // bit, indicating the unique scales for `g` dim in `ldigo` + (1 << 4); // bit, indicating the unique scales for `o` dim in `ldigo` attr_.set_rnn_data_qparams(scale_data, shift_data); attr_.set_rnn_weights_qparams(weights_scale_mask, scale_weights); } } bool is_NTC() { return this->is_NTC(this->fwd_pd_->dst_desc()); } bool is_NTC(const dnnl::memory::desc& md) { auto ntc_md = dnnl::memory::desc( md.dims(), md.data_type(), dnnl::memory::format_tag::ntc); return md == ntc_md; } void reorderRNNdata(void* input_data, void* output_data, std::vector lod, const bool is_reverse, RNNReorderType reorder_type) { switch (reorder_type) { // Reorder input memory [WORDS, C] + LoD -> [N, T, C] case RNNReorderType::PP_NTC: { auto* input_data_iter = reinterpret_cast(input_data); auto* output_data_iter = reinterpret_cast(output_data); for (int n = 0; n < N; ++n) { const auto num_elements = (lod[n + 1] - lod[n]) * IC; const auto offset = is_reverse ? (Ti * IC - num_elements) : 0; memcpy(output_data_iter + n * Ti * IC + offset, input_data_iter, sizeof(T) * num_elements); input_data_iter += num_elements; } } break; // Reorder input memory [WORDS, C] + LoD -> [T, N, C] case RNNReorderType::PP_TNC: { auto* input_data_iter = reinterpret_cast(input_data); auto* output_data_iter = reinterpret_cast(output_data); for (int n = 0; n < N; ++n) { const auto num_elements = (lod[n + 1] - lod[n]); const auto offset = is_reverse ? (Ti - num_elements) : 0; for (size_t t = 0; t < num_elements; ++t) { memcpy(output_data_iter + (t + offset) * N * IC + n * IC, input_data_iter, sizeof(T) * IC); input_data_iter += IC; } } } break; // Reorder output values to PP format [N, T, C] -> [WORDS, C] case RNNReorderType::NTC_PP: { auto* input_data_iter = reinterpret_cast(input_data); auto* output_data_iter = reinterpret_cast(output_data); for (int n = 0; n < N; ++n) { const auto num_elements = (lod[n + 1] - lod[n]) * OC; const auto offset = is_reverse ? (Ti * OC - num_elements) : 0; memcpy(output_data_iter, input_data_iter + n * Ti * OC + offset, sizeof(T_out) * num_elements); output_data_iter += num_elements; } } break; // Reorder output values to PP format [T, N, C] -> [WORDS, C] case RNNReorderType::TNC_PP: { auto* input_data_iter = reinterpret_cast(input_data); auto* output_data_iter = reinterpret_cast(output_data); for (int n = 0; n < N; ++n) { const auto num_elements = lod[n + 1] - lod[n]; const auto offset = is_reverse ? (Ti - num_elements) : 0; for (size_t t = 0; t < num_elements; ++t) { memcpy(output_data_iter, input_data_iter + (t + offset) * N * OC + n * OC, sizeof(T_out) * OC); output_data_iter += OC; } } } break; } } std::shared_ptr AcquireInputMemoryWithReorder( const phi::DenseTensor* input, const bool is_reverse) { const auto name = this->key_ + "@input_mem"; auto memory_p = std::static_pointer_cast(this->dev_ctx_.GetBlob(name)); if (!memory_p) { memory_p = std::make_shared(this->fwd_pd_->src_desc(), this->engine_); this->dev_ctx_.SetBlob(name, memory_p); } const auto& input_lod = input->lod()[0]; auto* x_data = phi::funcs::to_void_cast(input->data()); auto* x_onednn_data = memory_p->get_data_handle(); memset(x_onednn_data, 0, sizeof(T) * N * Ti * IC); if (is_NTC(this->fwd_pd_->src_desc())) { reorderRNNdata( x_data, x_onednn_data, input_lod, is_reverse, RNNReorderType::PP_NTC); } else { reorderRNNdata( x_data, x_onednn_data, input_lod, is_reverse, RNNReorderType::PP_TNC); } return memory_p; } std::shared_ptr AcquireOutputMemory() { const auto name = this->key_ + "@output_mem"; auto memory_p = std::static_pointer_cast(this->dev_ctx_.GetBlob(name)); if (!memory_p) { memory_p = std::make_shared(this->fwd_pd_->dst_desc(), this->engine_); this->dev_ctx_.SetBlob(name, memory_p); } return memory_p; } // H0 is for now persistable template std::shared_ptr AcquireH0Memory(const phi::DenseTensor* h0) { const std::string h0_key = memory_key_ + "@h0"; auto memory_p = std::static_pointer_cast(this->dev_ctx_.GetBlob(h0_key)); if (!memory_p) { auto user_h0_memory = dnnl::memory(); if (h0) { user_h0_memory = dnnl::memory( {{1, 1, N, OC}, OneDNNGetDataType(), OneDNNMemoryFormat::ldnc}, this->engine_, phi::funcs::to_void_cast(h0->data())); } else { user_h0_memory = dnnl::memory( {{1, 1, N, OC}, OneDNNGetDataType(), OneDNNMemoryFormat::ldnc}, this->engine_); memset(user_h0_memory.get_data_handle(), 0, sizeof(U) * N * OC); } memory_p = std::make_shared(this->fwd_pd_->src_iter_desc(), this->engine_); auto& astream = phi::OneDNNContext::tls().get_stream(); dnnl::reorder(user_h0_memory, *memory_p, attr_) .execute(astream, user_h0_memory, *memory_p); this->dev_ctx_.SetBlob(h0_key, memory_p); } return memory_p; } protected: // RNN dimensions // N - Batch Size // Ti - Max sentence length // IC - Input Channels // OC - Output Channels // G - Number of gates const int64_t N, Ti, IC, OC, G; // Memory size of weights, bias and h0 does not depend // on Ti size, thus we need another key to cache them std::string memory_key_; dnnl::primitive_attr attr_; }; } // namespace operators } // namespace paddle