“8fbb9fa3b797324ce4b28be6f82f04108de344a7”上不存在“paddle/fluid/platform/device/npu/npu_info.cc”
device_memory_aligment.cc 1.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/* 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. */

#include "paddle/fluid/platform/device_memory_aligment.h"

namespace paddle {
namespace platform {
19 20 21 22
size_t Alignment(size_t size, const platform::Place &place, int align_size) {
  size_t alignment = 0;
  if (align_size > 0) {
    alignment = align_size;
23
  } else {
24 25 26 27
    alignment = 1024;
    if (platform::is_cpu_place(place)) {
      alignment = CpuMinChunkSize();
    } else {
28
#if defined(PADDLE_WITH_CUDA) || defined(PADDLE_WITH_HIP)
29
      alignment = GpuMinChunkSize();
W
WangXi 已提交
30
#elif defined(PADDLE_WITH_XPU)
31
      alignment = alignment;
32
#elif defined(PADDLE_WITH_ASCEND_CL)
33
      alignment = NPUMinChunkSize();
34
#else
35 36
      PADDLE_THROW(platform::errors::PreconditionNotMet(
          "Fluid is not compiled with CUDA/XPU/NPU."));
37
#endif
38
    }
39
  }
40 41 42
  if (is_npu_place(place)) {
    size += 32;  // required by ascendcl
  }
43 44 45 46 47
  size_t remaining = size % alignment;
  return remaining == 0 ? size : size + (alignment - remaining);
}
}  // namespace platform
}  // namespace paddle