// 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. #include "paddle/phi/common/memory_utils.h" namespace phi { namespace memory_utils { Allocator::AllocationPtr Alloc(const phi::GPUPlace& place, size_t size, const phi::Stream& stream) { return MemoryUtils::Instance().Alloc(place, size, stream); } Allocator::AllocationPtr Alloc(const phi::Place& place, size_t size) { return MemoryUtils::Instance().Alloc(place, size); } std::shared_ptr AllocShared(const phi::Place& place, size_t size, const phi::Stream& stream) { return MemoryUtils::Instance().AllocShared(place, size, stream); } std::shared_ptr AllocShared(const phi::Place& place, size_t size) { return MemoryUtils::Instance().AllocShared(place, size); } bool InSameStream(const std::shared_ptr& allocation, const phi::Stream& stream) { return MemoryUtils::Instance().InSameStream(allocation, stream); } void AllocationDeleter(Allocation* allocation) { MemoryUtils::Instance().AllocationDeleter(allocation); } void Copy(const Place& dst_place, void* dst, const Place& src_place, const void* src, size_t num, void* stream) { MemoryUtils::Instance().Copy(dst_place, dst, src_place, src, num, stream); } void Copy(const Place& dst_place, void* dst, const Place& src_place, const void* src, size_t num) { MemoryUtils::Instance().Copy(dst_place, dst, src_place, src, num); } int64_t DeviceMemoryStatCurrentValue(const std::string& stat_type, int dev_id) { return MemoryUtils::Instance().DeviceMemoryStatCurrentValue(stat_type, dev_id); } #if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP) void GpuMemoryUsage(size_t* available, size_t* total) { return MemoryUtils::Instance().GpuMemoryUsage(available, total); } #endif } // namespace memory_utils } // namespace phi