malloc.cc 1.7 KB
Newer Older
1
/* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserved.
2 3 4 5 6 7 8 9 10 11 12 13 14

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. */

G
gongweibao 已提交
15 16
#include <vector>

L
liaogang 已提交
17
#include "glog/logging.h"
18 19
#include "paddle/fluid/memory/allocation/allocator_facade.h"
#include "paddle/fluid/memory/malloc.h"
L
liaogang 已提交
20

21 22 23 24 25 26
DEFINE_bool(init_allocated_mem, false,
            "It is a mistake that the values of the memory allocated by "
            "BuddyAllocator are always zeroed in some op's implementation. "
            "To find this error in time, we use init_allocated_mem to indicate "
            "that initializing the allocated memory with a small value "
            "during unit testing.");
L
liaogang 已提交
27
DECLARE_double(fraction_of_gpu_memory_to_use);
L
liaogang 已提交
28

29 30 31
namespace paddle {
namespace memory {

32 33 34
std::shared_ptr<Allocation> AllocShared(const platform::Place& place,
                                        size_t size, Allocator::Attr attr) {
  return allocation::AllocatorFacade::Instance().AllocShared(place, size, attr);
L
liaogang 已提交
35
}
L
liaogang 已提交
36

37 38 39
std::unique_ptr<Allocation> Alloc(const platform::Place& place, size_t size,
                                  Allocator::Attr attr) {
  return allocation::AllocatorFacade::Instance().Alloc(place, size, attr);
40
}
41 42
}  // namespace memory
}  // namespace paddle