device_memory_aligment.h 1.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/* Copyright (c) 2019 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 <stddef.h>
W
wanghuancoder 已提交
17

18 19
#include "paddle/fluid/platform/cpu_info.h"
#include "paddle/fluid/platform/place.h"
20
#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP)
21 22
#include "paddle/fluid/platform/gpu_info.h"
#endif
23
#if defined(PADDLE_WITH_ASCEND_CL)
24
#include "paddle/fluid/platform/device/npu/npu_info.h"
25
#endif
26 27 28

namespace paddle {
namespace platform {
29 30
size_t Alignment(size_t size, const platform::Place &place,
                 int align_size = -1);
31 32
}  // namespace platform
}  // namespace paddle