/* 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. */ #include "paddle/phi/api/lib/kernel_dispatch.h" #include "paddle/phi/api/include/context_pool.h" #include "paddle/phi/core/compat/convert_utils.h" #ifdef _MSC_VER #include #endif namespace paddle { namespace experimental { namespace detail { BackendSet GetTensorBackendSet(const phi::TensorBase& t) { if (t.initialized()) { BackendSet backend_set(phi::TransToPhiBackend(t.place())); switch (t.layout()) { case DataLayout::MKLDNN: backend_set = backend_set | BackendSet(Backend::MKLDNN); break; default: // do nothing break; } return backend_set; } return BackendSet(Backend::UNDEFINED); } std::size_t CountLeadingZeros(uint64_t val) { #if defined(__clang__) || defined(__GNUC__) return __builtin_clzl(val); #elif defined(_MSC_VER) return __lzcnt64(val); #else if (val == 0) { return 64; } std::size_t zero_bits = 0; for (std::size_t shift = 64 >> 1; shift; shift >>= 1) { uint64_t tmp = val >> shift; if (tmp) { val = tmp; } else { zero_bits |= shift; } } return zero_bits; #endif } } // namespace detail phi::DeviceContext* GetDeviceContextByBackend(phi::Backend backend) { auto& pool = paddle::experimental::DeviceContextPool::Instance(); return pool.GetMutable(phi::TransToPhiPlace(backend)); } DataType ParseDataType(DataType dtype) { return dtype; } DataType ParseDataType(const Tensor& tensor) { return tensor.type(); } DataType ParseDataType(const std::vector& tensors) { if (tensors.empty()) { return DataType::UNDEFINED; } DataType dtype = tensors[0].type(); auto n = tensors.size(); for (size_t i = 1; i < n; ++i) { if (tensors[i].type() != dtype) { PADDLE_THROW(platform::errors::InvalidArgument( "The data_type of input tensor in list isn't consistent, " "the first tensor is %s, but %dth tensor is %s.", dtype, i, tensors[i].type())); } } return dtype; } DataType ParseDataTypeWithInputOrder(DataType dtype, const Tensor& tensor) { return dtype != DataType::UNDEFINED ? dtype : ParseDataType(tensor); } Backend ParseBackend(const Place& place) { return phi::TransToPhiBackend(place); } Backend ParseBackend(const Tensor& tensor) { return phi::TransToPhiBackend(tensor.inner_place()); } Backend ParseBackendWithInputOrder(const Place& place, const Tensor& tensor) { return place.GetType() != phi::AllocationType::UNDEFINED ? ParseBackend(place) : ParseBackend(tensor); } DataLayout ParseLayout(DataLayout layout) { return layout; } DataLayout ParseLayout(const Tensor& tensor) { return tensor.layout(); } DataLayout ParseLayoutWithInputOrder(DataLayout layout, const Tensor& tensor) { return layout != DataLayout::UNDEFINED ? layout : ParseLayout(tensor); } } // namespace experimental } // namespace paddle