diff --git a/cmake/phi.cmake b/cmake/phi.cmake index 9f716969dcdec8cfdddfbbca3d1c012d590ead31..e320473d9be2f9d725b12bd03526162cb384afd8 100644 --- a/cmake/phi.cmake +++ b/cmake/phi.cmake @@ -103,6 +103,9 @@ function(kernel_declare TARGET_LIST) elseif(${kernel_path} MATCHES "./kps\/") file(APPEND ${kernel_declare_file} "PD_DECLARE_KERNEL(${kernel_name}, KPS, ALL_LAYOUT);\n") + elseif(${kernel_path} MATCHES "./onednn\/") + file(APPEND ${kernel_declare_file} + "PD_DECLARE_KERNEL(${kernel_name}, OneDNN, ALL_LAYOUT);\n") else() # deal with device independent kernel, now we use CPU temporaary file(APPEND ${kernel_declare_file} diff --git a/paddle/fluid/framework/operator.cc b/paddle/fluid/framework/operator.cc index 83521be98fc172ae5315b9c36177160f37902d39..4f50996267b97b927bcfee8542401a889c1c58ac 100644 --- a/paddle/fluid/framework/operator.cc +++ b/paddle/fluid/framework/operator.cc @@ -1276,24 +1276,32 @@ bool OperatorWithKernel::SupportNPU() const { bool OperatorWithKernel::SupportsMKLDNN( const proto::VarType::Type data_type) const { - auto op_kernel_iter = OperatorWithKernel::AllOpKernels().find(type_); - if (op_kernel_iter == OperatorWithKernel::AllOpKernels().end()) { - VLOG(6) << "Warning: " << type_ - << " don't find its MKLDNN Kernel in Fluid " - "Registered Kernels. And We don't " - "search its kernels in phi lib, " - "SupportsMKLDNN() return false."; - return false; + auto phi_kernels = phi::KernelFactory::Instance().SelectKernelMap( + phi::TransToPhiKernelName(type_)); + auto has_phi_kernel = + std::any_of(phi_kernels.begin(), + phi_kernels.end(), + [](phi::KernelKeyMap::const_reference kern_pair) { + return kern_pair.first.backend() == phi::Backend::ONEDNN; + }); + if (has_phi_kernel) { + return true; + } else { + auto op_kernel_iter = OperatorWithKernel::AllOpKernels().find(type_); + if (op_kernel_iter == OperatorWithKernel::AllOpKernels().end()) { + return false; + } else { + auto& op_kernels = op_kernel_iter->second; + return std::any_of( + op_kernels.begin(), + op_kernels.end(), + [data_type](OpKernelMap::const_reference kern_pair) { + return platform::is_cpu_place(kern_pair.first.place_) && + kern_pair.first.library_type_ == LibraryType::kMKLDNN && + kern_pair.first.data_type_ == data_type; + }); + } } - auto& op_kernels = op_kernel_iter->second; - return std::any_of(op_kernels.begin(), - op_kernels.end(), - [data_type](OpKernelMap::const_reference kern_pair) { - return platform::is_cpu_place(kern_pair.first.place_) && - kern_pair.first.library_type_ == - LibraryType::kMKLDNN && - kern_pair.first.data_type_ == data_type; - }); } bool OperatorWithKernel::SupportsKernelType( diff --git a/paddle/fluid/framework/phi_utils.cc b/paddle/fluid/framework/phi_utils.cc index fada192e55e148e2dfd8a19f0f1327bccbf5d082..2e56fea28e0b53e31b67506f5c3fdee440477635 100644 --- a/paddle/fluid/framework/phi_utils.cc +++ b/paddle/fluid/framework/phi_utils.cc @@ -66,7 +66,7 @@ OpKernelType TransPhiKernelKeyToOpKernelType(const phi::KernelKey& kernel_key) { platform::Place place = phi::TransToPhiPlace(kernel_key.backend(), false); DataLayout data_layout = kernel_key.layout(); LibraryType library_type = LibraryType::kPlain; - if (kernel_key.backend() == phi::Backend::MKLDNN) { + if (kernel_key.backend() == phi::Backend::ONEDNN) { library_type = LibraryType::kMKLDNN; } else if (kernel_key.backend() == phi::Backend::GPUDNN) { library_type = LibraryType::kCUDNN; @@ -87,7 +87,7 @@ phi::KernelKey TransOpKernelTypeToPhiKernelKey( backend = phi::Backend::GPUDNN; break; case LibraryType::kMKLDNN: - backend = phi::Backend::MKLDNN; + backend = phi::Backend::ONEDNN; break; case LibraryType::kKP: backend = phi::Backend::KPS; diff --git a/paddle/fluid/framework/phi_utils_test.cc b/paddle/fluid/framework/phi_utils_test.cc index e8f88250060943aa9213aa3a7457e9352a7be219..94ab77f310f9954a0f65835ad348c115bd8f20d3 100644 --- a/paddle/fluid/framework/phi_utils_test.cc +++ b/paddle/fluid/framework/phi_utils_test.cc @@ -32,7 +32,7 @@ TEST(PhiUtils, TransPhiKernelKeyToOpKernelType) { #ifdef PADDLE_WITH_MKLDNN phi::KernelKey kernel_key_mkldnn( - phi::Backend::MKLDNN, phi::DataLayout::NCHW, phi::DataType::FLOAT32); + phi::Backend::ONEDNN, phi::DataLayout::NCHW, phi::DataType::FLOAT32); op_kernel_type = paddle::framework::TransPhiKernelKeyToOpKernelType(kernel_key_mkldnn); ASSERT_EQ(op_kernel_type.data_type_, paddle::framework::proto::VarType::FP32); @@ -76,7 +76,7 @@ TEST(PhiUtils, TransOpKernelTypeToPhiKernelKey) { paddle::framework::TransOpKernelTypeToPhiKernelKey(op_kernel_type_mkldnn); ASSERT_EQ(kernel_key_mkldnn.dtype(), phi::DataType::FLOAT32); ASSERT_EQ(kernel_key_mkldnn.layout(), phi::DataLayout::MKLDNN); - ASSERT_EQ(kernel_key_mkldnn.backend(), phi::Backend::MKLDNN); + ASSERT_EQ(kernel_key_mkldnn.backend(), phi::Backend::ONEDNN); #endif #ifdef PADDLE_WITH_CUDA diff --git a/paddle/fluid/operators/mkldnn/activation_mkldnn_op.cc b/paddle/fluid/operators/mkldnn/activation_mkldnn_op.cc index c9b451499529097497e2c09dd29471e0db5ae31a..eb0d03ce00a978c904d20c29a1a3728a5fc875b3 100644 --- a/paddle/fluid/operators/mkldnn/activation_mkldnn_op.cc +++ b/paddle/fluid/operators/mkldnn/activation_mkldnn_op.cc @@ -20,13 +20,6 @@ namespace phi { class DenseTensor; } // namespace phi -namespace paddle { -namespace framework {} // namespace framework -namespace platform { -class MKLDNNDeviceContext; -} // namespace platform -} // namespace paddle - namespace paddle { namespace operators { diff --git a/paddle/fluid/operators/mkldnn/batch_norm_mkldnn_op.cc b/paddle/fluid/operators/mkldnn/batch_norm_mkldnn_op.cc index ee83ffffd9786fd7aeeb0687901dc10d5341222b..f41068dd5f1aec0d857d52bf477f74a04eae067d 100644 --- a/paddle/fluid/operators/mkldnn/batch_norm_mkldnn_op.cc +++ b/paddle/fluid/operators/mkldnn/batch_norm_mkldnn_op.cc @@ -19,13 +19,6 @@ namespace phi { class DenseTensor; } // namespace phi -namespace paddle { -namespace framework {} // namespace framework -namespace platform { -class MKLDNNDeviceContext; -} // namespace platform -} // namespace paddle - namespace paddle { namespace operators { diff --git a/paddle/fluid/operators/mkldnn/fc_mkldnn_op.cc b/paddle/fluid/operators/mkldnn/fc_mkldnn_op.cc index 8cfbc95be7a1a7c63d13635954bf2bdb8eb4e0ad..7404972ea7cca0177a157c127055abaaf7e91046 100644 --- a/paddle/fluid/operators/mkldnn/fc_mkldnn_op.cc +++ b/paddle/fluid/operators/mkldnn/fc_mkldnn_op.cc @@ -21,13 +21,6 @@ namespace phi { class DenseTensor; } // namespace phi -namespace paddle { -namespace framework {} // namespace framework -namespace platform { -class MKLDNNDeviceContext; -} // namespace platform -} // namespace paddle - namespace paddle { namespace operators { diff --git a/paddle/fluid/operators/mkldnn/log_softmax_mkldnn_op.cc b/paddle/fluid/operators/mkldnn/log_softmax_mkldnn_op.cc deleted file mode 100644 index b8ca40a0309e6fcbe72fdf15ddff16e68cf13909..0000000000000000000000000000000000000000 --- a/paddle/fluid/operators/mkldnn/log_softmax_mkldnn_op.cc +++ /dev/null @@ -1,76 +0,0 @@ -/* Copyright (c) 2022 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. */ - -#include "paddle/fluid/platform/mkldnn_reuse.h" - -namespace paddle { -namespace operators { - -using framework::Tensor; - -template -class LogSoftmaxMKLDNNHandler - : public platform::MKLDNNHandlerNoCachingT { - public: - LogSoftmaxMKLDNNHandler(const dnnl::engine mkldnn_engine, - platform::Place cpu_place, - const Tensor* x, - const int axis) - : platform::MKLDNNHandlerNoCachingT( - mkldnn_engine, cpu_place) { - this->AcquireForwardPrimitiveDescriptor( - dnnl::prop_kind::forward_inference, x->mem_desc(), axis); - } -}; - -template -class LogSoftmaxMKLDNNKernel : public framework::OpKernel { - public: - void Compute(const framework::ExecutionContext& ctx) const override { - auto& dev_ctx = - ctx.template device_context(); - const auto& mkldnn_engine = dev_ctx.GetEngine(); - - const Tensor* x = ctx.Input("X"); - Tensor* out = ctx.Output("Out"); - - int axis = ctx.Attr("axis"); - axis = axis >= 0 ? axis : x->dims().size() + axis; - - LogSoftmaxMKLDNNHandler handler(mkldnn_engine, ctx.GetPlace(), x, axis); - - auto src_memory_p = handler.AcquireSrcMemory(x); - auto dst_memory_p = handler.AcquireDstMemory(out); - - auto logsoftmax_p = handler.AcquireForwardPrimitive(); - - auto& astream = platform::MKLDNNDeviceContext::tls().get_stream(); - logsoftmax_p->execute( - astream, - {{DNNL_ARG_SRC, *src_memory_p}, {DNNL_ARG_DST, *dst_memory_p}}); - astream.wait(); - - out->set_mem_desc(dst_memory_p->get_desc()); - } -}; -} // namespace operators -} // namespace paddle - -namespace ops = paddle::operators; - -REGISTER_OP_KERNEL(log_softmax, - MKLDNN, - ::paddle::platform::CPUPlace, - ops::LogSoftmaxMKLDNNKernel, - ops::LogSoftmaxMKLDNNKernel); diff --git a/paddle/fluid/operators/mkldnn/mul_mkldnn_op.cc b/paddle/fluid/operators/mkldnn/mul_mkldnn_op.cc index 813ebb2c81ce9d0d654f7da1075335c32430938b..ec341c30773e8962f6f080fcea377f88f671f4a4 100644 --- a/paddle/fluid/operators/mkldnn/mul_mkldnn_op.cc +++ b/paddle/fluid/operators/mkldnn/mul_mkldnn_op.cc @@ -21,13 +21,6 @@ namespace phi { class DenseTensor; } // namespace phi -namespace paddle { -namespace framework {} // namespace framework -namespace platform { -class MKLDNNDeviceContext; -} // namespace platform -} // namespace paddle - namespace paddle { namespace operators { diff --git a/paddle/fluid/operators/mkldnn/sum_mkldnn_op.cc b/paddle/fluid/operators/mkldnn/sum_mkldnn_op.cc index 2202349bd66c1605a4c1d34750639e7ee3a46947..f71785e72cd4df0c53a0e78aadd7c372968c9417 100644 --- a/paddle/fluid/operators/mkldnn/sum_mkldnn_op.cc +++ b/paddle/fluid/operators/mkldnn/sum_mkldnn_op.cc @@ -31,13 +31,6 @@ namespace phi { class DenseTensor; } // namespace phi -namespace paddle { -namespace framework {} // namespace framework -namespace platform { -class MKLDNNDeviceContext; -} // namespace platform -} // namespace paddle - namespace paddle { namespace operators { diff --git a/paddle/fluid/platform/CMakeLists.txt b/paddle/fluid/platform/CMakeLists.txt index b00e4056259d93face5ab11304388c18d4956fe8..2ff31aa5b54fc04c6fb0a8074dcb582c41f4f343 100644 --- a/paddle/fluid/platform/CMakeLists.txt +++ b/paddle/fluid/platform/CMakeLists.txt @@ -195,6 +195,7 @@ cc_library( # memcpy depends on device_context, here add deps individually for # avoiding cycle dependencies + cc_library( device_context SRCS device_context.cc @@ -219,12 +220,17 @@ cc_library( ${XPU_CTX_DEPS} ${MLU_CTX_DEPS} eigen3 - cpu_context generator) if(WITH_XPU) target_link_libraries(device_context xpu_context xpu_resource_pool) endif() +if(WITH_MKLDNN) + target_link_libraries(device_context onednn_context) +endif() + +target_link_libraries(device_context cpu_context) + cc_library( collective_helper SRCS collective_helper.cc gen_comm_id_helper.cc diff --git a/paddle/fluid/platform/device_context.cc b/paddle/fluid/platform/device_context.cc index 6bceb696c0f8e18c36472be34eb8efb2a471cd85..1e978f078dc848dc36c76ad31b19940235fd5a6f 100644 --- a/paddle/fluid/platform/device_context.cc +++ b/paddle/fluid/platform/device_context.cc @@ -753,275 +753,6 @@ Eigen::DefaultDevice* CUDAPinnedDeviceContext::eigen_device() const { const Place& CUDAPinnedDeviceContext::GetPlace() const { return place_; } #endif -#ifdef PADDLE_WITH_MKLDNN -MKLDNNDeviceContext::MKLDNNDeviceContext(CPUPlace place) - : phi::CPUContext(place), p_blobmap_() { - p_blobmap_.reset(new BlobMap()); - p_exec_items_.reset(new ExecShape()); - p_mutex_.reset(new std::mutex()); -} - -MKLDNNDeviceContextThreadLocals::Body::Body() - : cur_engine(dnnl::engine::kind::cpu, 0), cur_stream(cur_engine) { - cur_mkldnn_session_id = kMKLDNNSessionID_Default; - cur_input_shape_str = ""; - cur_input_shape_cache_capacity = 1; - cur_paddle_data_layout = paddle::framework::DataLayout::kNCHW; -} - -// When Thread finish we clear oneDNN cache -// This is needed when we have one executor used by many threads -// e.g. test_analyzer_detect. Thread ID is not part of caching key -// (for naive executor) so we need to clear cache when one thread finish -// and other is to start inference -// TODO(jczaja): Ideally it would be good to clear only part of cache -// related to thread that is to be terminated -MKLDNNDeviceContextThreadLocals::Body::~Body() { - auto cpu_place = paddle::platform::CPUPlace(); - platform::DeviceContextPool& pool = platform::DeviceContextPool::Instance(); - platform::MKLDNNDeviceContext* dev_ctx = - (platform::MKLDNNDeviceContext*)pool.Get(cpu_place); - dev_ctx->ResetBlobMap(exec_ptr_); -} - -void MKLDNNDeviceContextThreadLocals::Body::set_cur_mkldnn_session_id( - size_t sid) { - cur_mkldnn_session_id = sid; -} -size_t MKLDNNDeviceContextThreadLocals::Body::get_cur_mkldnn_session_id(void) { - return cur_mkldnn_session_id; -} - -void MKLDNNDeviceContextThreadLocals::Body::set_cur_input_shape_str( - std::string input_shape_str) { - cur_input_shape_str = input_shape_str; -} -void MKLDNNDeviceContextThreadLocals::Body::set_cur_input_shape_cache_capacity( - int input_shape_cache_capacity) { - cur_input_shape_cache_capacity = input_shape_cache_capacity; -} - -void MKLDNNDeviceContextThreadLocals::Body::set_cur_paddle_data_layout( - framework::DataLayout dl) { - cur_paddle_data_layout = dl; -} - -framework::DataLayout -MKLDNNDeviceContextThreadLocals::Body::get_cur_paddle_data_layout(void) { - return cur_paddle_data_layout; -} - -void MKLDNNDeviceContextThreadLocals::Body::log_lib_version(void) { - if (!said_once) { - said_once = true; - auto dv = dnnl::version(); - LOG(INFO) << "oneDNN v" << dv->major << "." << dv->minor << "." - << dv->patch; - } -} - -const dnnl::engine& MKLDNNDeviceContextThreadLocals::Body::get_engine(void) { - return cur_engine; -} - -dnnl::stream& MKLDNNDeviceContextThreadLocals::Body::get_stream(void) { - return cur_stream; -} - -void MKLDNNDeviceContext::ResetBlobMap(void* ptr) { - VLOG(4) << tls().get_curr_exec() << " " << ptr; - std::lock_guard lock(*p_mutex_); - if (block_next_cache_clearing_ == 0) { - VLOG(3) << "Clearing DNNL cache."; - // If no specific executor pointer then clear - // everything. For executor pointer then clear only - // objects allocated when using given executor - if (ptr == nullptr) { - p_blobmap_->clear(); - } else { - // Iterate through all shapes and release - // for each shape and active executor all entries - // of this executor - for (auto& s : *p_exec_items_) { - for (auto& v : (*s.second)[ptr]) { - (v.first)->erase(v.second); - } - s.second->erase(ptr); - } - } - // Reset paddle layout to NCHW - VLOG(3) << "Resetting Paddle data layout to NCHW."; - platform::MKLDNNDeviceContext::tls().set_cur_paddle_data_layout( - paddle::framework::DataLayout::kNCHW); - } else { - --block_next_cache_clearing_; - VLOG(3) << "Prevented Clearing DNNL cache. Updated " - "block_next_cache_clearing_ : " - << block_next_cache_clearing_; - PADDLE_ENFORCE_GE(block_next_cache_clearing_, - 0, - platform::errors::InvalidArgument( - "Cache clearing mark should be non-negative " - ". But received %d.", - block_next_cache_clearing_)); - } -} - -void MKLDNNDeviceContext::RemoveShapeEntriesWithExecutor(void) const { - p_exec_items_->erase(p_exec_items_->begin()); -} - -void MKLDNNDeviceContext::LinkEntryWithExecutor(BlobPtr_t pblob, - KeyBlob::iterator it) const { - // Take current input shape from TLS - // Take current executor addess from TLS - // and for this executor's items add the one defined with arguments - auto key_it = p_exec_items_ - ->insert(std::make_pair(tls().cur_input_shape_str, - std::make_shared())) - .first; - (*key_it->second)[tls().get_curr_exec()].push_back(std::make_pair(pblob, it)); - - VLOG(3) << "LinkEntryWithExecutor, shapes: " << p_exec_items_->size() - << " curr exec size: " - << (*key_it->second)[tls().get_curr_exec()].size() << "\n"; -} - -void MKLDNNDeviceContext::BlockNextCacheClearing() { - std::lock_guard lock(*p_mutex_); - ++block_next_cache_clearing_; - VLOG(3) << "Next DNNL cache clearing has been blocked. Updated " - "block_next_cache_clearing_ : " - << block_next_cache_clearing_; -} - -size_t MKLDNNDeviceContext::GetShapeBlobSize() const { - std::lock_guard lock(*p_mutex_); - BlobMap* pMap = p_blobmap_.get(); - auto map_it = pMap->find(tls().cur_mkldnn_session_id); - if (map_it == pMap->end()) { - PADDLE_THROW(platform::errors::NotFound( - "MKLDNNDeviceContext don't find cur_mkldnn_session_id: %d.", - tls().cur_mkldnn_session_id)); - } - return map_it->second->size(); -} - -void MKLDNNDeviceContext::SetBlob(const std::string& name, - BlobPtr_t data) const { - BlobMap* pMap = p_blobmap_.get(); - BlobPtr_t sBlob = nullptr; - BlobPtr_t pBlob = nullptr; - - int sid = tls().get_cur_mkldnn_session_id(); - - std::lock_guard lock(*p_mutex_); - - // Find ShapeBlob for current mkldnn session id. - auto map_it = pMap->find(sid); - - if (map_it == pMap->end()) { - // 1st time to set blob in current thread - sBlob = std::make_shared(); - (*pMap)[sid] = sBlob; - VLOG(2) << "SetBlob: sid=" << sid << ", add new sid\n"; - } else { - sBlob = map_it->second; - } - - // Find KeyBlob for current input shape - auto key_it = sBlob->find(tls().cur_input_shape_str); - - if (key_it == sBlob->end()) { - // In cache clearing mode, cur_input_shape_cache_capacity defines - // max pblob capacity - if ((static_cast(sid) == - MKLDNNDeviceContextThreadLocals::kMKLDNNSessionID_CacheClearing) && - sBlob->size() && - (sBlob->size() >= - static_cast(tls().cur_input_shape_cache_capacity))) { - VLOG(2) << "sid=" << sid - << ", remove all blobs of shape: " << sBlob->begin()->first; - sBlob->erase(sBlob->begin()->first); - RemoveShapeEntriesWithExecutor(); - } - pBlob = std::make_shared(); - (*sBlob)[tls().cur_input_shape_str] = pBlob; - } else { - pBlob = key_it->second; - } - - // Find Blob via name - auto blob_it = pBlob->find(name); - if (blob_it == pBlob->end()) { - auto el = - pBlob->insert(std::make_pair(name, data)); // (*pBlob)[name] = data; - // Register new element in per executor map - // to have easily erased when executor terminated - LinkEntryWithExecutor(pBlob, el.first); - } else { - blob_it->second = data; // set data to existing blob - } - VLOG(2) << "SetBlob: sid=" << sid << ", add blob=" << name << "\n"; - // lock will be automatically released when out of scope - return; -} - -unsigned int MKLDNNDeviceContext::GetCachedObjectsNumber(void) const { - unsigned int num_entries = 0; - for (auto const& l3 : *p_blobmap_) { - for (auto const& l2 : *(l3.second)) { - num_entries += (l2.second)->size(); - } - } - return num_entries; -} - -MKLDNNDeviceContext::BlobPtr_t MKLDNNDeviceContext::GetBlob( - const std::string& name) const { - BlobMap* pMap = p_blobmap_.get(); - BlobPtr_t sBlob = nullptr; - BlobPtr_t pBlob = nullptr; - - int sid = tls().get_cur_mkldnn_session_id(); - - std::lock_guard lock(*p_mutex_); - - // Find ShapeBlob for current mkldnn session id firstly - auto map_it = pMap->find(sid); - // (jczaja): After first iteration of model's execution we - // should have all elements cached (mostly) so failures are unlikely (less - // likely for dynamic shapes) - if (unlikely(map_it == pMap->end())) { - VLOG(2) << "GetBlob: sid=" << sid << ", miss sid\n"; - return nullptr; - } - sBlob = map_it->second; - - // Find KeyBlob for current input shape secondly - auto sBlob_it = sBlob->find(tls().cur_input_shape_str); - if (unlikely(sBlob_it == sBlob->end())) { - VLOG(2) << "GetBlob: sid=" << tls().cur_input_shape_str - << ", miss input_shape_str\n"; - return nullptr; - } - pBlob = sBlob_it->second; - - // Find Blob via name - auto key_it = pBlob->find(name); - - if (unlikely(key_it == pBlob->end())) { - VLOG(2) << "GetBlob sid=" << sid << ", miss blob=" << name << "\n"; - return nullptr; - } - - VLOG(2) << "GetBlob sid=" << sid << ", get blob=" << name << "\n"; - // lock will be automatically released when out of scope - return key_it->second; -} - -#endif - #ifdef PADDLE_WITH_CUSTOM_DEVICE CustomDeviceContext::CustomDeviceContext(CustomPlace place) : phi::CustomContext(place) { diff --git a/paddle/fluid/platform/device_context.h b/paddle/fluid/platform/device_context.h index 4459c913f005dbbfe4fa5865d2b87f13a11e9f19..d0443e30cf9c6af7ff05d4bbc581eab191e6d5b6 100644 --- a/paddle/fluid/platform/device_context.h +++ b/paddle/fluid/platform/device_context.h @@ -59,6 +59,7 @@ limitations under the License. */ #ifdef PADDLE_WITH_MKLDNN #include "dnnl.hpp" // NOLINT #include "paddle/fluid/framework/data_layout.h" +#include "paddle/phi/backends/onednn/onednn_context.h" #endif #include @@ -716,132 +717,8 @@ struct DefaultDeviceContextType { #endif #ifdef PADDLE_WITH_MKLDNN - -class MKLDNNDeviceContextThreadLocals { - // default mkldnn session id - - typedef MKLDNNDeviceContextThreadLocals self; - struct Body { - bool said_once = false; - size_t cur_mkldnn_session_id; - // Current data input shape string. - // - For fixed-shape, it's a null string in default. - // - For dynamic-shape, it's user specific. - std::string cur_input_shape_str; - // the cache capacity of different input shapes for MKLDNN. - // Default 1 means fixed input shape, not dynamic shape. - int cur_input_shape_cache_capacity; - // Recently registered data_format. This is needed to - // know for converting MKL-DNN Tensor to non MKL-DNN - paddle::framework::DataLayout cur_paddle_data_layout; - // MKL-DNN stream used for execution of primitives (per-thread) - dnnl::engine cur_engine; - dnnl::stream cur_stream; - std::string key_suffix; // Key identifying current Executor - bool key_attach_thread_id = true; - void* exec_ptr_ = nullptr; - - Body(); - ~Body(); - void set_cur_mkldnn_session_id(size_t sid); - size_t get_cur_mkldnn_session_id(void); - void set_cur_input_shape_str(std::string input_shape_str); - void set_cur_input_shape_cache_capacity(int input_shape_cache_capacity); - void set_cur_paddle_data_layout(framework::DataLayout dl); - framework::DataLayout get_cur_paddle_data_layout(void); - void log_lib_version(void); - const dnnl::engine& get_engine(void); - dnnl::stream& get_stream(void); - void set_key_suffix(const std::string& suffix) { key_suffix = suffix; } - const std::string& get_key_suffix(void) const { return key_suffix; } - void disable_tid_in_key(void) { key_attach_thread_id = false; } - bool is_tid_used_in_key(void) const { return key_attach_thread_id; } - void set_curr_exec(void* exec_ptr) { exec_ptr_ = exec_ptr; } - void* get_curr_exec(void) const { return exec_ptr_; } - }; - MKLDNNDeviceContextThreadLocals() = default; - MKLDNNDeviceContextThreadLocals(const MKLDNNDeviceContextThreadLocals& c) = - delete; - - public: - // default mkldnn session id - static constexpr size_t kMKLDNNSessionID_Default = 0; - // mkldnn session id for cache clearing mode - static constexpr size_t kMKLDNNSessionID_CacheClearing = -1; - static Body& fetch() { - thread_local Body b; - return b; - } -}; - -class MKLDNNDeviceContext : public phi::CPUContext { - public: - template - using BlobPtr_t = std::shared_ptr; - template - using umap_value_smart_t = std::unordered_map>; - template - using umap_key_string_t = umap_value_smart_t; - - // Following three maps are used to cache MKLDNN primitives. - // There relations are: - // - BlobMap = Map - // - ShapeBlob = Map - // - KeyBlob = Map - - using KeyBlob = umap_key_string_t; - using ShapeBlob = umap_key_string_t; - using BlobMap = umap_value_smart_t; - - // Auxillary two-level structure (shape, executor) to easier control - // clearing cache objects related to specific executor - - using ExecKey = void*; - using ExecMapCacheIterPair = std::pair, KeyBlob::iterator>; - using ExecMap = - std::unordered_map>; - using ExecShape = std::unordered_map>; - - explicit MKLDNNDeviceContext(CPUPlace place); - - /* \brief Get the active engine */ - const dnnl::engine& GetEngine() const { return tls().get_engine(); } - - // Register object to currently used executor's map - void LinkEntryWithExecutor(BlobPtr_t, KeyBlob::iterator) const; - void RemoveShapeEntriesWithExecutor(void) const; - - // Remove all entries from the blob map - void ResetBlobMap(void* ptr); - - // Prevent next ResetBlobMap() - void BlockNextCacheClearing(); - - // Get the ShapeBlob size in cur_mkldnn_session_id. - size_t GetShapeBlobSize() const; - - // Set data to blob (i.e. name/data pair). Create blob if not existing - void SetBlob(const std::string& name, std::shared_ptr data) const; - - // Calculate number of oneDNN objects cached - unsigned int GetCachedObjectsNumber(void) const; - - // Find a saved blob. Return nullptr if not found - std::shared_ptr GetBlob(const std::string& name) const; - - static auto tls() -> decltype(MKLDNNDeviceContextThreadLocals::fetch()) { - return MKLDNNDeviceContextThreadLocals::fetch(); - } - - private: - std::shared_ptr p_blobmap_; - // Map key is pointer of executor and value is a data(iterator in map) needed - // to erase - std::shared_ptr p_exec_items_; - std::shared_ptr p_mutex_; - // 0 - clearing is allowed. x > 0 do not clear. - unsigned int block_next_cache_clearing_ = 0; -}; +using MKLDNNDeviceContextThreadLocals = phi::OneDNNContextThreadLocals; +using MKLDNNDeviceContext = phi::OneDNNContext; #endif #ifdef PADDLE_WITH_CUSTOM_DEVICE diff --git a/paddle/phi/api/lib/kernel_dispatch.cc b/paddle/phi/api/lib/kernel_dispatch.cc index a534f02663dffe3b8a9533d8cb76851be71f1f8c..27e88d217971bb2d731f1cbf3a8c386fe4c352a1 100644 --- a/paddle/phi/api/lib/kernel_dispatch.cc +++ b/paddle/phi/api/lib/kernel_dispatch.cc @@ -57,7 +57,7 @@ BackendSet GetTensorBackendSet(const phi::TensorBase& t) { BackendSet backend_set(phi::TransToPhiBackend(t.place())); switch (t.layout()) { case DataLayout::MKLDNN: - backend_set = backend_set | BackendSet(Backend::MKLDNN); + backend_set = backend_set | BackendSet(Backend::ONEDNN); break; default: // do nothing diff --git a/paddle/phi/backends/CMakeLists.txt b/paddle/phi/backends/CMakeLists.txt index c981b625192dafeb14877381398cf242126b9860..50367a32b02b801823a479f6375325ccbbab4e8c 100644 --- a/paddle/phi/backends/CMakeLists.txt +++ b/paddle/phi/backends/CMakeLists.txt @@ -12,6 +12,10 @@ if(WITH_XPU) add_subdirectory(xpu) endif() +if(WITH_MKLDNN) + add_subdirectory(onednn) +endif() + cc_library( phi_context SRCS all_context.cc diff --git a/paddle/phi/backends/cpu/cpu_context.cc b/paddle/phi/backends/cpu/cpu_context.cc index 63b5d82f3bdd083192b2b5d18389870884bb76dc..d42189e00eeb836d61838ec3bb96ec52b6bbb0b1 100644 --- a/paddle/phi/backends/cpu/cpu_context.cc +++ b/paddle/phi/backends/cpu/cpu_context.cc @@ -14,8 +14,8 @@ #include "paddle/phi/backends/cpu/cpu_context.h" -#include "paddle/phi/api/ext/exception.h" #include "paddle/phi/common/place.h" +#include "paddle/phi/core/enforce.h" // NOTE: The paddle framework should add WITH_EIGEN option to support compile // without eigen. @@ -41,7 +41,10 @@ struct CPUContext::Impl { } Eigen::DefaultDevice* GetEigenDevice() const { - PD_CHECK(eigen_device_ != nullptr, "the cpu eigen_device is nullptr."); + PADDLE_ENFORCE_NE( + eigen_device_, + nullptr, + phi::errors::Unavailable("the cpu eigen_device is nullptr.")); return eigen_device_; } diff --git a/paddle/phi/backends/onednn/CMakeLists.txt b/paddle/phi/backends/onednn/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..a65d6b002f5f7d85e7be1bcb0e4310416b0f6d50 --- /dev/null +++ b/paddle/phi/backends/onednn/CMakeLists.txt @@ -0,0 +1,6 @@ +if(WITH_MKLDNN) + cc_library( + onednn_context + SRCS onednn_context.cc + DEPS cpu_context mkldnn) +endif() diff --git a/paddle/phi/backends/onednn/onednn_context.cc b/paddle/phi/backends/onednn/onednn_context.cc new file mode 100644 index 0000000000000000000000000000000000000000..950483a469ed81b0788eb3673bb2d63de5d4f54a --- /dev/null +++ b/paddle/phi/backends/onednn/onednn_context.cc @@ -0,0 +1,326 @@ +// Copyright (c) 2022 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. +#ifdef PADDLE_WITH_MKLDNN +#include "paddle/phi/backends/onednn/onednn_context.h" + +#include "paddle/phi/common/place.h" +#include "paddle/phi/core/enforce.h" + +#include "paddle/fluid/framework/expect.h" +#include "paddle/fluid/platform/device_context.h" + +namespace phi { + +OneDNNContextThreadLocals::Body::Body() + : cur_engine(dnnl::engine::kind::cpu, 0), cur_stream(cur_engine) { + cur_mkldnn_session_id = kMKLDNNSessionID_Default; + cur_input_shape_str = ""; + cur_input_shape_cache_capacity = 1; + cur_paddle_data_layout = DataLayout::kNCHW; +} + +// When Thread finish we clear oneDNN cache +// This is needed when we have one executor used by many threads +// e.g. test_analyzer_detect. Thread ID is not part of caching key +// (for naive executor) so we need to clear cache when one thread finish +// and other is to start inference +// TODO(jczaja): Ideally it would be good to clear only part of cache +// related to thread that is to be terminated +OneDNNContextThreadLocals::Body::~Body() { + auto cpu_place = phi::CPUPlace(); + // TODO(YuanRisheng): we need remove the dependency on fluid device context + // here + paddle::platform::DeviceContextPool& pool = + paddle::platform::DeviceContextPool::Instance(); + OneDNNContext* dev_ctx = static_cast(pool.Get(cpu_place)); + dev_ctx->ResetBlobMap(exec_ptr_); +} + +void OneDNNContextThreadLocals::Body::set_cur_mkldnn_session_id(size_t sid) { + cur_mkldnn_session_id = sid; +} +size_t OneDNNContextThreadLocals::Body::get_cur_mkldnn_session_id(void) { + return cur_mkldnn_session_id; +} + +void OneDNNContextThreadLocals::Body::set_cur_input_shape_str( + std::string input_shape_str) { + cur_input_shape_str = input_shape_str; +} +void OneDNNContextThreadLocals::Body::set_cur_input_shape_cache_capacity( + int input_shape_cache_capacity) { + cur_input_shape_cache_capacity = input_shape_cache_capacity; +} + +void OneDNNContextThreadLocals::Body::set_cur_paddle_data_layout( + DataLayout dl) { + cur_paddle_data_layout = dl; +} + +DataLayout OneDNNContextThreadLocals::Body::get_cur_paddle_data_layout(void) { + return cur_paddle_data_layout; +} + +void OneDNNContextThreadLocals::Body::log_lib_version(void) { + if (!said_once) { + said_once = true; + auto dv = dnnl::version(); + LOG(INFO) << "oneDNN v" << dv->major << "." << dv->minor << "." + << dv->patch; + } +} + +struct OneDNNContext::Impl { + Impl() : p_blobmap_() { + p_blobmap_.reset(new BlobMap()); + p_exec_items_.reset(new ExecShape()); + p_mutex_.reset(new std::mutex()); + } + + ~Impl() {} + + void ResetBlobMap(void* ptr) { + VLOG(4) << OneDNNContext::tls().get_curr_exec() << " " << ptr; + std::lock_guard lock(*p_mutex_); + if (block_next_cache_clearing_ == 0) { + VLOG(3) << "Clearing DNNL cache."; + // If no specific executor pointer then clear + // everything. For executor pointer then clear only + // objects allocated when using given executor + if (ptr == nullptr) { + p_blobmap_->clear(); + } else { + // Iterate through all shapes and release + // for each shape and active executor all entries + // of this executor + for (auto& s : *p_exec_items_) { + for (auto& v : (*s.second)[ptr]) { + (v.first)->erase(v.second); + } + s.second->erase(ptr); + } + } + // Reset paddle layout to NCHW + VLOG(3) << "Resetting Paddle data layout to NCHW."; + OneDNNContext::tls().set_cur_paddle_data_layout(DataLayout::kNCHW); + } else { + --block_next_cache_clearing_; + VLOG(3) << "Prevented Clearing DNNL cache. Updated " + "block_next_cache_clearing_ : " + << block_next_cache_clearing_; + PADDLE_ENFORCE_GE(block_next_cache_clearing_, + 0, + phi::errors::InvalidArgument( + "Cache clearing mark should be non-negative " + ". But received %d.", + block_next_cache_clearing_)); + } + } + + // Register object to currently used executor's map + void LinkEntryWithExecutor(BlobPtr_t pblob, + KeyBlob::iterator it) const { + // Take current input shape from TLS + // Take current executor addess from TLS + // and for this executor's items add the one defined with arguments + auto key_it = + p_exec_items_ + ->insert(std::make_pair(OneDNNContext::tls().cur_input_shape_str, + std::make_shared())) + .first; + (*key_it->second)[OneDNNContext::tls().get_curr_exec()].push_back( + std::make_pair(pblob, it)); + + VLOG(3) << "LinkEntryWithExecutor, shapes: " << p_exec_items_->size() + << " curr exec size: " + << (*key_it->second)[OneDNNContext::tls().get_curr_exec()].size() + << "\n"; + } + + void RemoveShapeEntriesWithExecutor() const { + p_exec_items_->erase(p_exec_items_->begin()); + } + + void BlockNextCacheClearing() { + std::lock_guard lock(*p_mutex_); + ++block_next_cache_clearing_; + VLOG(3) << "Next DNNL cache clearing has been blocked. Updated " + "block_next_cache_clearing_ : " + << block_next_cache_clearing_; + } + + size_t GetShapeBlobSize() const { + std::lock_guard lock(*p_mutex_); + BlobMap* pMap = p_blobmap_.get(); + auto map_it = pMap->find(OneDNNContext::tls().cur_mkldnn_session_id); + if (map_it == pMap->end()) { + PADDLE_THROW(phi::errors::NotFound( + "OneDNNContext don't find cur_mkldnn_session_id: %d.", + OneDNNContext::tls().cur_mkldnn_session_id)); + } + return map_it->second->size(); + } + + void SetBlob(const std::string& name, BlobPtr_t data) const { + BlobMap* pMap = p_blobmap_.get(); + BlobPtr_t sBlob = nullptr; + BlobPtr_t pBlob = nullptr; + + int sid = OneDNNContext::tls().get_cur_mkldnn_session_id(); + + std::lock_guard lock(*p_mutex_); + + // Find ShapeBlob for current mkldnn session id. + auto map_it = pMap->find(sid); + + if (map_it == pMap->end()) { + // 1st time to set blob in current thread + sBlob = std::make_shared(); + (*pMap)[sid] = sBlob; + VLOG(2) << "SetBlob: sid=" << sid << ", add new sid\n"; + } else { + sBlob = map_it->second; + } + + // Find KeyBlob for current input shape + auto key_it = sBlob->find(OneDNNContext::tls().cur_input_shape_str); + + if (key_it == sBlob->end()) { + // In cache clearing mode, cur_input_shape_cache_capacity defines + // max pblob capacity + if ((static_cast(sid) == + OneDNNContextThreadLocals::kMKLDNNSessionID_CacheClearing) && + sBlob->size() && + (sBlob->size() >= + static_cast( + OneDNNContext::tls().cur_input_shape_cache_capacity))) { + VLOG(2) << "sid=" << sid + << ", remove all blobs of shape: " << sBlob->begin()->first; + sBlob->erase(sBlob->begin()->first); + RemoveShapeEntriesWithExecutor(); + } + pBlob = std::make_shared(); + (*sBlob)[OneDNNContext::tls().cur_input_shape_str] = pBlob; + } else { + pBlob = key_it->second; + } + + // Find Blob via name + auto blob_it = pBlob->find(name); + if (blob_it == pBlob->end()) { + auto el = + pBlob->insert(std::make_pair(name, data)); // (*pBlob)[name] = data; + // Register new element in per executor map + // to have easily erased when executor terminated + LinkEntryWithExecutor(pBlob, el.first); + } else { + blob_it->second = data; // set data to existing blob + } + VLOG(2) << "SetBlob: sid=" << sid << ", add blob=" << name << "\n"; + // lock will be automatically released when out of scope + return; + } + + unsigned int GetCachedObjectsNumber(void) const { + unsigned int num_entries = 0; + for (auto const& l3 : *p_blobmap_) { + for (auto const& l2 : *(l3.second)) { + num_entries += (l2.second)->size(); + } + } + return num_entries; + } + + OneDNNContext::BlobPtr_t GetBlob(const std::string& name) const { + BlobMap* pMap = p_blobmap_.get(); + BlobPtr_t sBlob = nullptr; + BlobPtr_t pBlob = nullptr; + + int sid = OneDNNContext::tls().get_cur_mkldnn_session_id(); + + std::lock_guard lock(*p_mutex_); + + // Find ShapeBlob for current mkldnn session id firstly + auto map_it = pMap->find(sid); + // (jczaja): After first iteration of model's execution we + // should have all elements cached (mostly) so failures are unlikely (less + // likely for dynamic shapes) + if (unlikely(map_it == pMap->end())) { + VLOG(2) << "GetBlob: sid=" << sid << ", miss sid\n"; + return nullptr; + } + sBlob = map_it->second; + + // Find KeyBlob for current input shape secondly + auto sBlob_it = sBlob->find(OneDNNContext::tls().cur_input_shape_str); + if (unlikely(sBlob_it == sBlob->end())) { + VLOG(2) << "GetBlob: sid=" << OneDNNContext::tls().cur_input_shape_str + << ", miss input_shape_str\n"; + return nullptr; + } + pBlob = sBlob_it->second; + + // Find Blob via name + auto key_it = pBlob->find(name); + + if (unlikely(key_it == pBlob->end())) { + VLOG(2) << "GetBlob sid=" << sid << ", miss blob=" << name << "\n"; + return nullptr; + } + + VLOG(2) << "GetBlob sid=" << sid << ", get blob=" << name << "\n"; + // lock will be automatically released when out of scope + return key_it->second; + } + + std::shared_ptr p_blobmap_; + // Map key is pointer of executor and value is a data(iterator in map) needed + // to erase + std::shared_ptr p_exec_items_; + std::shared_ptr p_mutex_; + // 0 - clearing is allowed. x > 0 do not clear. + unsigned int block_next_cache_clearing_ = 0; +}; + +OneDNNContext::OneDNNContext(const Place& place) + : CPUContext(place), impl_(std::make_unique()) {} + +OneDNNContext::~OneDNNContext() = default; + +void OneDNNContext::ResetBlobMap(void* ptr) { impl_->ResetBlobMap(ptr); } + +void OneDNNContext::BlockNextCacheClearing() { + impl_->BlockNextCacheClearing(); +} + +size_t OneDNNContext::GetShapeBlobSize() const { + return impl_->GetShapeBlobSize(); +} + +void OneDNNContext::SetBlob(const std::string& name, + BlobPtr_t data) const { + impl_->SetBlob(name, data); +} + +unsigned int OneDNNContext::GetCachedObjectsNumber(void) const { + return impl_->GetCachedObjectsNumber(); +} + +OneDNNContext::BlobPtr_t OneDNNContext::GetBlob( + const std::string& name) const { + return impl_->GetBlob(name); +} + +} // namespace phi +#endif diff --git a/paddle/phi/backends/onednn/onednn_context.h b/paddle/phi/backends/onednn/onednn_context.h new file mode 100644 index 0000000000000000000000000000000000000000..d7cf8a0ff49021bb75d3304d6ac47a664e68d9ae --- /dev/null +++ b/paddle/phi/backends/onednn/onednn_context.h @@ -0,0 +1,143 @@ +/* Copyright (c) 2022 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 +#ifdef PADDLE_WITH_MKLDNN +#include +#include // NOLINT +#include "dnnl.hpp" // NOLINT +#include "paddle/phi/backends/cpu/cpu_context.h" +#include "paddle/phi/common/layout.h" +#include "paddle/phi/common/place.h" + +namespace phi { + +class OneDNNContextThreadLocals { + // default mkldnn session id + + typedef OneDNNContextThreadLocals self; + struct Body { + bool said_once = false; + size_t cur_mkldnn_session_id; + // Current data input shape string. + // - For fixed-shape, it's a null string in default. + // - For dynamic-shape, it's user specific. + std::string cur_input_shape_str; + // the cache capacity of different input shapes for MKLDNN. + // Default 1 means fixed input shape, not dynamic shape. + int cur_input_shape_cache_capacity; + // Recently registered data_format. This is needed to + // know for converting MKL-DNN Tensor to non MKL-DNN + DataLayout cur_paddle_data_layout; + // MKL-DNN stream used for execution of primitives (per-thread) + dnnl::engine cur_engine; + dnnl::stream cur_stream; + std::string key_suffix; // Key identifying current Executor + bool key_attach_thread_id = true; + void* exec_ptr_ = nullptr; + + Body(); + ~Body(); + void set_cur_mkldnn_session_id(size_t sid); + size_t get_cur_mkldnn_session_id(void); + void set_cur_input_shape_str(std::string input_shape_str); + void set_cur_input_shape_cache_capacity(int input_shape_cache_capacity); + void set_cur_paddle_data_layout(DataLayout dl); + DataLayout get_cur_paddle_data_layout(void); + void log_lib_version(void); + const dnnl::engine& get_engine(void) { return cur_engine; } + dnnl::stream& get_stream(void) { return cur_stream; } + void set_key_suffix(const std::string& suffix) { key_suffix = suffix; } + const std::string& get_key_suffix(void) const { return key_suffix; } + void disable_tid_in_key(void) { key_attach_thread_id = false; } + bool is_tid_used_in_key(void) const { return key_attach_thread_id; } + void set_curr_exec(void* exec_ptr) { exec_ptr_ = exec_ptr; } + void* get_curr_exec(void) const { return exec_ptr_; } + }; + OneDNNContextThreadLocals() = default; + OneDNNContextThreadLocals(const OneDNNContextThreadLocals& c) = delete; + + public: + // default mkldnn session id + static constexpr size_t kMKLDNNSessionID_Default = 0; + // mkldnn session id for cache clearing mode + static constexpr size_t kMKLDNNSessionID_CacheClearing = -1; + static Body& fetch() { + thread_local Body b; + return b; + } +}; + +class OneDNNContext : public CPUContext { + public: + template + using BlobPtr_t = std::shared_ptr; + template + using umap_value_smart_t = std::unordered_map>; + template + using umap_key_string_t = umap_value_smart_t; + + // Following three maps are used to cache MKLDNN primitives. + // There relations are: + // - BlobMap = Map + // - ShapeBlob = Map + // - KeyBlob = Map + + using KeyBlob = umap_key_string_t; + using ShapeBlob = umap_key_string_t; + using BlobMap = umap_value_smart_t; + + // Auxillary two-level structure (shape, executor) to easier control + // clearing cache objects related to specific executor + + using ExecKey = void*; + using ExecMapCacheIterPair = std::pair, KeyBlob::iterator>; + using ExecMap = + std::unordered_map>; + using ExecShape = std::unordered_map>; + + explicit OneDNNContext(const Place& place); + ~OneDNNContext(); + /* \brief Get the active engine */ + const dnnl::engine& GetEngine() const { return tls().get_engine(); } + + // Remove all entries from the blob map + void ResetBlobMap(void* ptr); + + // Prevent next ResetBlobMap() + void BlockNextCacheClearing(); + + // Get the ShapeBlob size in cur_mkldnn_session_id. + size_t GetShapeBlobSize() const; + + // Set data to blob (i.e. name/data pair). Create blob if not existing + void SetBlob(const std::string& name, std::shared_ptr data) const; + + // Calculate number of oneDNN objects cached + unsigned int GetCachedObjectsNumber(void) const; + + // Find a saved blob. Return nullptr if not found + std::shared_ptr GetBlob(const std::string& name) const; + + static auto tls() -> decltype(OneDNNContextThreadLocals::fetch()) { + return OneDNNContextThreadLocals::fetch(); + } + + private: + struct Impl; + std::unique_ptr impl_; +}; + +} // namespace phi +#endif diff --git a/paddle/phi/common/backend.h b/paddle/phi/common/backend.h index 3e1787cb12cfaec5afeef004e63af08b3a46c27b..c6d49bd5b978bf4b3fa7ec41f2568f72a7ea5afb 100644 --- a/paddle/phi/common/backend.h +++ b/paddle/phi/common/backend.h @@ -50,7 +50,7 @@ enum class Backend : uint8_t { MLU, // MLU currently does not exist at the same time as CUDA // the third library backend - MKLDNN, + ONEDNN, GPUDNN, // cuDNN and hipDNN // paddle kernel primitives backend @@ -118,8 +118,8 @@ inline std::ostream& operator<<(std::ostream& os, Backend backend) { case Backend::MLU: os << "MLU"; break; - case Backend::MKLDNN: - os << "MKLDNN"; + case Backend::ONEDNN: + os << "ONEDNN"; break; case Backend::GPUDNN: os << "GPUDNN"; @@ -160,8 +160,8 @@ inline Backend StringToBackend(const char* backend_cstr) { return Backend::NPU; } else if (s == std::string("MLU")) { return Backend::MLU; - } else if (s == std::string("MKLDNN")) { - return Backend::MKLDNN; + } else if (s == std::string("OneDNN")) { + return Backend::ONEDNN; } else if (s == std::string("GPUDNN")) { return Backend::GPUDNN; } else if (s == std::string("KPS")) { diff --git a/paddle/phi/core/compat/convert_utils.cc b/paddle/phi/core/compat/convert_utils.cc index 18c39bfae1d18c18b7408f563ad4171736903cea..231aaeebaccce4c71fabb43e5dd56153d8c74ead 100644 --- a/paddle/phi/core/compat/convert_utils.cc +++ b/paddle/phi/core/compat/convert_utils.cc @@ -66,7 +66,7 @@ phi::Place TransToPhiPlace(const Backend& backend, bool set_device_id) { set_device_id ? phi::backends::gpu::GetCurrentDeviceId() : 0); #endif #ifdef PADDLE_WITH_MKLDNN - case phi::Backend::MKLDNN: + case phi::Backend::ONEDNN: return phi::CPUPlace(); #endif #if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP) diff --git a/paddle/phi/core/kernel_factory.cc b/paddle/phi/core/kernel_factory.cc index d864544e10dd8da43f3f922a69f01f30409f17f3..d6f6e60fe2d3de76ebb668c246cb625e237ac492 100644 --- a/paddle/phi/core/kernel_factory.cc +++ b/paddle/phi/core/kernel_factory.cc @@ -46,9 +46,17 @@ const Kernel& KernelFactory::SelectKernel(const std::string& kernel_name, return empty_kernel; } auto kernel_iter = iter->second.find(kernel_key); + if (kernel_iter == iter->second.end() && + kernel_key.layout() != phi::DataLayout::ALL_LAYOUT) { + phi::KernelKey any_layout_kernel_key( + kernel_key.backend(), phi::DataLayout::ALL_LAYOUT, kernel_key.dtype()); + kernel_iter = iter->second.find(any_layout_kernel_key); + } + if (kernel_iter == iter->second.end()) { return empty_kernel; } + return kernel_iter->second; } diff --git a/paddle/phi/core/kernel_registry.h b/paddle/phi/core/kernel_registry.h index 65f655d50375cbd320d6222d5c86d6a542e9009e..010d5c2e0c3792ee7e669f9fc3994a4784b4d83f 100644 --- a/paddle/phi/core/kernel_registry.h +++ b/paddle/phi/core/kernel_registry.h @@ -56,6 +56,9 @@ struct KernelArgsParseFunctor { auto args_type = ParseArgType(Indices{}); for (auto arg_type : args_type) { if (arg_type == std::type_index(typeid(const CPUContext&)) +#if defined(PADDLE_WITH_MKLDNN) + || arg_type == std::type_index(typeid(const OneDNNContext&)) +#endif #if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP) || arg_type == std::type_index(typeid(const GPUContext&))) { #elif defined(PADDLE_WITH_XPU) @@ -63,6 +66,7 @@ struct KernelArgsParseFunctor { #elif defined(PADDLE_WITH_CUSTOM_DEVICE) || arg_type == std::type_index(typeid(const CustomContext&))) { #else + ) { #endif // do nothing, skip context arg now diff --git a/paddle/phi/core/kernel_utils.h b/paddle/phi/core/kernel_utils.h index 3b5fd0247a4847cf88ea9fa5f8629da7aee4725b..73814fc3f4048159a4a1809948654272c224a4d9 100644 --- a/paddle/phi/core/kernel_utils.h +++ b/paddle/phi/core/kernel_utils.h @@ -17,6 +17,7 @@ #include "paddle/phi/backends/cpu/cpu_context.h" #include "paddle/phi/backends/custom/custom_context.h" #include "paddle/phi/backends/gpu/gpu_context.h" +#include "paddle/phi/backends/onednn/onednn_context.h" #include "paddle/phi/backends/xpu/xpu_context.h" #include "paddle/phi/common/int_array.h" #include "paddle/phi/common/scalar.h" @@ -257,7 +258,9 @@ struct KernelImpl { #ifdef PADDLE_WITH_CUSTOM_DEVICE PD_SPECIALIZE_KernelCallHelper_FOR_DEVICE_CONTEXT(CustomContext); #endif - +#ifdef PADDLE_WITH_MKLDNN + PD_SPECIALIZE_KernelCallHelper_FOR_DEVICE_CONTEXT(OneDNNContext); +#endif /* Input Helpers */ PD_SPECIALIZE_KernelCallHelper_FOR_INPUT(DenseTensor); diff --git a/paddle/phi/kernels/CMakeLists.txt b/paddle/phi/kernels/CMakeLists.txt index af6cfb8812de833b1ba66010170fdf072466897e..455d42b548606de57d6adceeda267500dea19033 100644 --- a/paddle/phi/kernels/CMakeLists.txt +++ b/paddle/phi/kernels/CMakeLists.txt @@ -113,11 +113,13 @@ file( # file(GLOB kernel_cudnn "gpudnn/*.cu") # file(GLOB kernel_kps "kps/*.cu") file(GLOB kernel_xpu "xpu/*.cc") +file(GLOB kernel_onednn "onednn/*.cc") add_library(phi_cpu ${kernel_cc}) kernel_declare("${kernel_cc}") target_link_libraries(phi_cpu ${COMMON_KERNEL_DEPS}) -set_property(GLOBAL PROPERTY PHI_KERNELS phi_cpu) + +set(ADD_PHI_KERNELS phi_cpu) if(WITH_GPU OR WITH_ROCM) if(WITH_GPU) @@ -127,7 +129,7 @@ if(WITH_GPU OR WITH_ROCM) endif() kernel_declare("${kernel_cu}") target_link_libraries(phi_gpu ${COMMON_KERNEL_DEPS}) - set_property(GLOBAL PROPERTY PHI_KERNELS phi_cpu phi_gpu) + set(ADD_PHI_KERNELS ${ADD_PHI_KERNELS} phi_gpu) endif() if(WITH_XPU) @@ -148,5 +150,15 @@ if(WITH_XPU) kernel_declare("${kernel_xpu}") kernel_declare("${kernel_xpu_kps}") target_link_libraries(phi_xpu ${COMMON_KERNEL_DEPS}) - set_property(GLOBAL PROPERTY PHI_KERNELS phi_cpu phi_xpu) + set(ADD_PHI_KERNELS ${ADD_PHI_KERNELS} phi_xpu) +endif() + +if(WITH_MKLDNN) + add_library(phi_onednn ${kernel_onednn}) + kernel_declare(${kernel_onednn}) + set(COMMON_KERNEL_DEPS ${COMMON_KERNEL_DEPS} onednn_context) + target_link_libraries(phi_onednn ${COMMON_KERNEL_DEPS}) + set(ADD_PHI_KERNELS ${ADD_PHI_KERNELS} phi_onednn) endif() + +set_property(GLOBAL PROPERTY PHI_KERNELS ${ADD_PHI_KERNELS}) diff --git a/paddle/phi/kernels/cpu/log_softmax_kernel.cc b/paddle/phi/kernels/cpu/log_softmax_kernel.cc index 510eb7a6ca97ade101d8538e5a7bce99e747defa..0ba4aea78c3ca14b300bcf59025cffaa0cce9d77 100644 --- a/paddle/phi/kernels/cpu/log_softmax_kernel.cc +++ b/paddle/phi/kernels/cpu/log_softmax_kernel.cc @@ -116,5 +116,7 @@ void LogSoftmaxKernel(const Context& dev_ctx, } // namespace phi +// TODO(YuanRisheng): The layout of mkldnn kernel should be MKLDNN, we should +// support specifying the exact layout when the kernel is registered PD_REGISTER_KERNEL( log_softmax, CPU, ALL_LAYOUT, phi::LogSoftmaxKernel, float, double) {} diff --git a/paddle/phi/kernels/onednn/log_softmax_kernel.cc b/paddle/phi/kernels/onednn/log_softmax_kernel.cc new file mode 100644 index 0000000000000000000000000000000000000000..254e975dd45ec43820c16d692cad7a229149ec7f --- /dev/null +++ b/paddle/phi/kernels/onednn/log_softmax_kernel.cc @@ -0,0 +1,72 @@ +// Copyright (c) 2022 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. + +#include "paddle/phi/kernels/log_softmax_kernel.h" + +#include "paddle/fluid/platform/mkldnn_reuse.h" +#include "paddle/phi/backends/onednn/onednn_context.h" +#include "paddle/phi/common/bfloat16.h" +#include "paddle/phi/common/place.h" +#include "paddle/phi/core/kernel_registry.h" + +namespace phi { + +template +class LogSoftmaxMKLDNNHandler + : public paddle::platform:: + MKLDNNHandlerNoCachingT { + public: + LogSoftmaxMKLDNNHandler(const dnnl::engine mkldnn_engine, + Place cpu_place, + const DenseTensor& x, + const int axis) + : paddle::platform::MKLDNNHandlerNoCachingT( + mkldnn_engine, cpu_place) { + this->AcquireForwardPrimitiveDescriptor( + dnnl::prop_kind::forward_inference, x.mem_desc(), axis); + } +}; + +template +void LogSoftmaxKernel(const Context& dev_ctx, + const DenseTensor& x, + int axis, + DenseTensor* out) { + const auto& mkldnn_engine = dev_ctx.GetEngine(); + axis = axis >= 0 ? axis : x.dims().size() + axis; + + LogSoftmaxMKLDNNHandler handler( + mkldnn_engine, dev_ctx.GetPlace(), x, axis); + + auto src_memory_p = handler.AcquireSrcMemory(&x); + auto dst_memory_p = handler.AcquireDstMemory(out); + + auto logsoftmax_p = handler.AcquireForwardPrimitive(); + + auto& astream = OneDNNContext::tls().get_stream(); + logsoftmax_p->execute( + astream, {{DNNL_ARG_SRC, *src_memory_p}, {DNNL_ARG_DST, *dst_memory_p}}); + astream.wait(); + + out->set_mem_desc(dst_memory_p->get_desc()); +} + +} // namespace phi + +PD_REGISTER_KERNEL(log_softmax, + OneDNN, + ALL_LAYOUT, + phi::LogSoftmaxKernel, + float, + phi::dtype::bfloat16) {} diff --git a/paddle/phi/tests/common/test_backend.cc b/paddle/phi/tests/common/test_backend.cc index c1550e31fae8891e07d3cbebae4585c776deaf92..415c1f21465edd37ed96285d07ed74b8f46012f1 100644 --- a/paddle/phi/tests/common/test_backend.cc +++ b/paddle/phi/tests/common/test_backend.cc @@ -39,8 +39,8 @@ TEST(Backend, OStream) { oss << phi::Backend::NPU; EXPECT_EQ(oss.str(), "NPU"); oss.str(""); - oss << phi::Backend::MKLDNN; - EXPECT_EQ(oss.str(), "MKLDNN"); + oss << phi::Backend::ONEDNN; + EXPECT_EQ(oss.str(), "ONEDNN"); oss.str(""); oss << phi::Backend::GPUDNN; EXPECT_EQ(oss.str(), "GPUDNN"); @@ -63,7 +63,7 @@ TEST(Backend, StringToBackend) { EXPECT_EQ(phi::Backend::GPU, pexp::StringToBackend("GPU")); EXPECT_EQ(phi::Backend::XPU, pexp::StringToBackend("XPU")); EXPECT_EQ(phi::Backend::NPU, pexp::StringToBackend("NPU")); - EXPECT_EQ(phi::Backend::MKLDNN, pexp::StringToBackend("MKLDNN")); + EXPECT_EQ(phi::Backend::ONEDNN, pexp::StringToBackend("OneDNN")); EXPECT_EQ(phi::Backend::GPUDNN, pexp::StringToBackend("GPUDNN")); #if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP) EXPECT_EQ(phi::Backend::GPU, pexp::StringToBackend("KPS"));