Files
paddlepaddle--paddle/paddle/phi/backends/context_pool.h
T
2026-07-13 12:40:42 +08:00

122 lines
3.4 KiB
C++

/* Copyright (c) 2023 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 <future> // NOLINT
#include <map>
#include <memory>
#include <mutex> // NOLINT
#include <set>
#include "paddle/common/macros.h"
#include "paddle/phi/backends/all_context.h"
#include "paddle/phi/common/place.h"
#include "paddle/phi/core/device_context.h"
#include "paddle/utils/test_macros.h"
namespace phi {
#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP) || \
defined(PADDLE_WITH_CUSTOM_DEVICE)
PADDLE_API void SetAllowTF32Cublas(bool active);
/*Get the global variable allow_tf32_cublas value*/
PADDLE_API bool AllowTF32Cublas();
extern bool allow_tf32_cudnn;
/*Set the value of the global variable allow_tf32_cudnn*/
PADDLE_API void SetAllowTF32Cudnn(bool active);
/*Get the global variable allow_tf32_cudnn value*/
PADDLE_API bool AllowTF32Cudnn();
#endif // PADDLE_WITH_CUDA
template <typename Place>
struct DefaultDeviceContextType;
template <>
struct DefaultDeviceContextType<CPUPlace> {
using TYPE = CPUContext;
};
#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP)
template <>
struct DefaultDeviceContextType<GPUPlace> {
using TYPE = GPUContext;
};
#endif
#ifdef PADDLE_WITH_XPU
template <>
struct DefaultDeviceContextType<XPUPlace> {
using TYPE = XPUContext;
};
#endif
#ifdef PADDLE_WITH_CUSTOM_DEVICE
template <>
struct DefaultDeviceContextType<CustomPlace> {
using TYPE = CustomContext;
};
#else
template <>
struct DefaultDeviceContextType<CustomPlace> {
using TYPE = DeviceContext;
};
#endif
/*! \brief device context pool singleton */
class DeviceContextPool {
public:
PADDLE_API static DeviceContextPool& Instance();
/*! \brief Create should only called by Init function */
PADDLE_API static DeviceContextPool& Init(const std::vector<Place>& places);
PADDLE_API static bool IsInitialized();
PADDLE_API static void SetPool(DeviceContextPool* dev_pool);
/*! \brief Return handle of single device context. */
PADDLE_API DeviceContext* Get(const Place& place);
template <typename Place>
const typename DefaultDeviceContextType<Place>::TYPE* GetByPlace(
const Place& place) {
return reinterpret_cast<
const typename DefaultDeviceContextType<Place>::TYPE*>(Get(place));
}
PADDLE_API size_t Size() const;
PADDLE_API const
std::map<Place, std::shared_future<std::unique_ptr<DeviceContext>>>&
device_contexts() const;
PADDLE_API static void SetDeviceContexts(
const std::map<Place,
std::shared_future<std::unique_ptr<DeviceContext>>>*);
private:
explicit DeviceContextPool(const std::vector<Place>& places);
std::map<Place, std::shared_future<std::unique_ptr<DeviceContext>>>
device_contexts_;
static thread_local const std::
map<Place, std::shared_future<std::unique_ptr<DeviceContext>>>*
external_device_contexts_; // not owned
DISABLE_COPY_AND_ASSIGN(DeviceContextPool);
};
} // namespace phi