aligned_allocator.cc 2.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
// Copyright (c) 2018 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/memory/allocation/aligned_allocator.h"
16

17
#include "paddle/fluid/platform/enforce.h"
18 19 20 21 22

namespace paddle {
namespace memory {
namespace allocation {

L
Leo Chen 已提交
23
// For memory address alignment
24 25
class AlignedAllocation : public Allocation {
 public:
26
  AlignedAllocation(DecoratedAllocationPtr underlying_allocation, size_t offset)
27 28
      : Allocation(
            reinterpret_cast<uint8_t*>(underlying_allocation->ptr()) + offset,
F
From00 已提交
29
            underlying_allocation->base_ptr(),
30 31 32
            underlying_allocation->size() - offset,
            underlying_allocation->place()),
        underlying_allocation_(std::move(underlying_allocation)) {}
Y
Yu Yang 已提交
33

34
 private:
35
  DecoratedAllocationPtr underlying_allocation_;
36 37 38 39 40
};

AlignedAllocator::AlignedAllocator(
    const std::shared_ptr<Allocator>& underlyning_allocator, size_t alignment)
    : underlying_allocator_(underlyning_allocator), alignment_(alignment) {
41 42 43 44
  PADDLE_ENFORCE_GT(
      alignment_, 0,
      platform::errors::InvalidArgument(
          "Alignment should be larger than 0, but got %d", alignment_));
45
  if (alignment_ & (alignment_ - 1)) {
46 47
    PADDLE_THROW(platform::errors::InvalidArgument(
        "Alignment should be power of 2 (2^N), but got %d", alignment_));
48 49 50 51
  }
}

bool AlignedAllocator::IsAllocThreadSafe() const {
S
sneaxiy 已提交
52 53 54
  return underlying_allocator_->IsAllocThreadSafe();
}

55
pten::Allocation* AlignedAllocator::AllocateImpl(size_t size) {
56 57
  auto raw_allocation = underlying_allocator_->Allocate(size + alignment_);
  size_t offset = AlignedPtrOffset(raw_allocation->ptr(), alignment_);
58 59 60
  auto* p = new AlignedAllocation(
      static_unique_ptr_cast<Allocation>(std::move(raw_allocation)), offset);
  return p;
61 62
}

63 64 65
void AlignedAllocator::FreeImpl(pten::Allocation* allocation) {
  delete allocation;
}
66

67 68 69
}  // namespace allocation
}  // namespace memory
}  // namespace paddle