mem_tracing.h 1.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/* Copyright (c) 2021 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

17
#include <map>
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
#include <string>

#include "paddle/fluid/platform/place.h"
#include "paddle/fluid/platform/profiler/trace_event.h"

namespace paddle {
namespace platform {
// Memory event tracing. A trace marks memory manipulation such as allocation
// and free.
// The events can be used to draw memory variation curve.
class RecordMemEvent {
 public:
  /**
   * @param ptr:  Pointer address allocated or free.
   * @param place: Device for this memory event.
   * @param size: Memory size allocated or free.
   * @param type: Denote manipulation type for this memory event.
   */
  explicit RecordMemEvent(
      const void* ptr,
      const Place& place,
      size_t size,
      const TracerMemEventType type = TracerMemEventType::Allocate);
41 42 43 44 45 46 47 48 49 50 51

  // size_cache: In the outer map, key is device type, 'cpu'  or 'gpu', and in
  // the inner map, key is device ip.
  //   Values record memory sizes for current_allocated, current_reserved,
  //   peak_allocated and peak_reserved.
  // has_initialized: Flags to denote whether memory cache for some device has
  // collected once.

  static std::map<const char*, std::map<uint64_t, std::vector<uint64_t>>>
      size_cache;
  static std::map<const char*, std::map<uint64_t, bool>> has_initialized;
52 53 54 55
};

}  // namespace platform
}  // namespace paddle