/* Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved. Copyright (c) 2022 NVIDIA Corporation. 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 #include // NOLINT #include #include // NOLINT #include #include #include #include #include "paddle/fluid/memory/malloc.h" #include "paddle/fluid/platform/device/gpu/gpu_types.h" #include "paddle/phi/backends/context_pool.h" #include "paddle/phi/backends/cpu/cpu_context.h" #include "paddle/phi/backends/custom/custom_context.h" #include "paddle/phi/backends/gpu/gpu_decls.h" #include "paddle/phi/core/device_context.h" #ifdef PADDLE_WITH_CUDA #include "paddle/fluid/platform/device/gpu/gpu_helper.h" #include "paddle/fluid/platform/dynload/cublas.h" #include "paddle/fluid/platform/dynload/cublasLt.h" #include "paddle/fluid/platform/dynload/cudnn.h" #include "paddle/fluid/platform/dynload/cusolver.h" #include "paddle/fluid/platform/dynload/cusparse.h" #include "paddle/phi/backends/gpu/gpu_context.h" #if !defined(__APPLE__) && defined(PADDLE_WITH_NCCL) #include "paddle/fluid/platform/dynload/nccl.h" #endif #include "paddle/fluid/platform/device/gpu/gpu_info.h" #endif #ifdef PADDLE_WITH_HIP #include "paddle/fluid/platform/device/gpu/gpu_helper.h" // NOLINT #include "paddle/fluid/platform/dynload/miopen.h" #include "paddle/fluid/platform/dynload/rocblas.h" #include "paddle/phi/backends/gpu/gpu_context.h" // NOLINT #if !defined(__APPLE__) && defined(PADDLE_WITH_RCCL) #include "paddle/fluid/platform/dynload/rccl.h" #endif #include "paddle/fluid/platform/device/gpu/gpu_info.h" // NOLINT #endif #if defined(PADDLE_WITH_XPU_BKCL) #include "xpu/bkcl.h" #endif #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 #include "glog/logging.h" #include "paddle/fluid/platform/enforce.h" #include "paddle/fluid/platform/place.h" #include "paddle/phi/backends/device_ext.h" #include "paddle/phi/backends/stream.h" #if !defined(PADDLE_WITH_XPU_KP) || defined(__xpu_on_host__) #include "unsupported/Eigen/CXX11/Tensor" #endif namespace Eigen { struct DefaultDevice; struct GpuDevice; } // namespace Eigen #ifdef PADDLE_WITH_XPU #include "paddle/fluid/platform/device/xpu/xpu_header.h" #include "paddle/fluid/platform/device/xpu/xpu_info.h" #include "paddle/phi/backends/xpu/xpu_context.h" #endif namespace paddle { namespace platform { enum DeviceType { CPU = 0, CUDA = 1, NPU = 2, XPU = 3, IPU = 4, CUSTOM_DEVICE = 6, MAX_DEVICE_TYPES = 7, }; DeviceType Place2DeviceType(const platform::Place& place); constexpr DeviceType kCPU = DeviceType::CPU; constexpr DeviceType kCUDA = DeviceType::CUDA; constexpr DeviceType kXPU = DeviceType::XPU; constexpr DeviceType kIPU = DeviceType::IPU; constexpr DeviceType kCUSTOM_DEVICE = DeviceType::CUSTOM_DEVICE; using DeviceContext = phi::DeviceContext; // Graphcore IPU #ifdef PADDLE_WITH_IPU class IPUDeviceContext : public DeviceContext, public phi::TypeInfoTraits { public: IPUDeviceContext() = delete; explicit IPUDeviceContext(IPUPlace place); virtual ~IPUDeviceContext(); Eigen::DefaultDevice* eigen_device() const { return nullptr; } const Place& GetPlace() const override; /*! \brief Wait for all operations completion in the stream. */ void Wait() const override; static const char* name() { return "IPUDeviceContext"; } private: IPUPlace place_; }; #endif #ifdef PADDLE_WITH_XPU namespace xpu = baidu::xpu::api; using XPUDeviceContext = phi::XPUContext; #endif #if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP) using CUDAPinnedDeviceContext = phi::GPUPinnedContext; #endif #ifdef PADDLE_WITH_CUSTOM_DEVICE using CustomDeviceContext = phi::CustomContext; #endif void EmplaceDeviceContexts( std::map>>* place_to_device_context, const std::vector& places, bool disable_setting_default_stream_for_allocator, int stream_priority); using DeviceContextPool = phi::DeviceContextPool; } // namespace platform } // namespace paddle namespace phi { #ifdef PADDLE_WITH_IPU template <> struct DefaultDeviceContextType { using TYPE = paddle::platform::IPUDeviceContext; }; #endif #if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP) template <> struct DefaultDeviceContextType { using TYPE = paddle::platform::CUDAPinnedDeviceContext; }; #endif } // namespace phi