utils.h 2.3 KB
Newer Older
C
chenjian 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/* Copyright (c) 2022 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

C
chenjian 已提交
16 17
#include <ctime>
#include <string>
C
chenjian 已提交
18
#include "paddle/fluid/platform/dynload/cupti.h"
C
chenjian 已提交
19
#include "paddle/fluid/platform/enforce.h"
C
chenjian 已提交
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
#include "paddle/fluid/platform/os_info.h"

namespace paddle {
namespace platform {

template <typename... Args>
std::string string_format(const std::string& format, Args... args) {
  int size_s = std::snprintf(nullptr, 0, format.c_str(), args...) +
               1;  // Extra space for '\0'
  PADDLE_ENFORCE_GE(size_s, 0, platform::errors::Fatal(
                                   "Error during profiler data formatting."));
  auto size = static_cast<size_t>(size_s);
  auto buf = std::make_unique<char[]>(size);
  std::snprintf(buf.get(), size, format.c_str(), args...);
  return std::string(buf.get(), size - 1);  // exclude the '\0'
}

static std::string GetStringFormatLocalTime() {
  std::time_t rawtime;
  std::tm* timeinfo;
  char buf[100];
  std::time(&rawtime);
  timeinfo = std::localtime(&rawtime);
  std::strftime(buf, 100, "%F-%X", timeinfo);
  return std::string(buf);
}

47 48 49 50 51 52 53 54 55 56
static int64_t nsToUs(uint64_t end_ns, uint64_t start_ns = 0) {
  return (end_ns - start_ns) / 1000;
}

static float nsToUsFloat(uint64_t end_ns, uint64_t start_ns = 0) {
  return static_cast<float>(end_ns - start_ns) / 1000;
}
static float nsToMsFloat(uint64_t end_ns, uint64_t start_ns = 0) {
  return static_cast<float>(end_ns - start_ns) / 1000 / 1000;
}
C
chenjian 已提交
57

C
chenjian 已提交
58 59 60 61 62 63
#ifdef PADDLE_WITH_CUPTI
float CalculateEstOccupancy(uint32_t deviceId, uint16_t registersPerThread,
                            int32_t staticSharedMemory,
                            int32_t dynamicSharedMemory, int32_t blockX,
                            int32_t blockY, int32_t blockZ, float blocksPerSm);
#endif
C
chenjian 已提交
64 65
}  // namespace platform
}  // namespace paddle