63064b0000
Also, * Fix some doxygen issues * Fix address sanitizer issues in rsmitst Change-Id: Ie6c6fd9af5c418210b7064e79650fb92cd4a5e2b
159 baris
4.5 KiB
C++
Executable File
159 baris
4.5 KiB
C++
Executable File
/*
|
|
* =============================================================================
|
|
* The University of Illinois/NCSA
|
|
* Open Source License (NCSA)
|
|
*
|
|
* Copyright (c) 2017, Advanced Micro Devices, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* Developed by:
|
|
*
|
|
* AMD Research and AMD ROC Software Development
|
|
*
|
|
* Advanced Micro Devices, Inc.
|
|
*
|
|
* www.amd.com
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to
|
|
* deal with the Software without restriction, including without limitation
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
*
|
|
* - Redistributions of source code must retain the above copyright notice,
|
|
* this list of conditions and the following disclaimers.
|
|
* - Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimers in
|
|
* the documentation and/or other materials provided with the distribution.
|
|
* - Neither the names of <Name of Development Group, Name of Institution>,
|
|
* nor the names of its contributors may be used to endorse or promote
|
|
* products derived from this Software without specific prior written
|
|
* permission.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
* THE CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
|
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
|
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
* DEALINGS WITH THE SOFTWARE.
|
|
*
|
|
*/
|
|
|
|
#include <assert.h>
|
|
|
|
#include <fstream>
|
|
#include <string>
|
|
#include <cstdint>
|
|
#include <map>
|
|
#include <iostream>
|
|
#include <sstream>
|
|
|
|
#include "rocm_smi/rocm_smi_main.h"
|
|
#include "rocm_smi/rocm_smi_monitor.h"
|
|
#include "rocm_smi/rocm_smi_utils.h"
|
|
#include "rocm_smi/rocm_smi_common.h"
|
|
#include "rocm_smi/rocm_smi_exception.h"
|
|
|
|
namespace amd {
|
|
namespace smi {
|
|
|
|
|
|
static const char *kPowerMonPMName = "amdgpu_pm_info";
|
|
|
|
// Using this map in case we add other files from dri directory to parse.
|
|
static const std::map<PowerMonTypes, const char *> kMonitorNameMap = {
|
|
{kPowerMaxGPUPower, kPowerMonPMName},
|
|
};
|
|
|
|
PowerMon::PowerMon(std::string path, RocmSMI_env_vars const *e) :
|
|
path_(path), env_(e) {
|
|
}
|
|
PowerMon::~PowerMon(void) {
|
|
}
|
|
|
|
static int parse_power_str(std::string s, PowerMonTypes type, uint64_t *val) {
|
|
std::stringstream ss(s);
|
|
std::string ln;
|
|
std::string search_str;
|
|
|
|
assert(val != nullptr);
|
|
|
|
switch (type) {
|
|
case kPowerMaxGPUPower:
|
|
search_str = "(max GPU)";
|
|
break;
|
|
|
|
default:
|
|
assert(false); // Invalid search Power type requested
|
|
return EINVAL;
|
|
}
|
|
|
|
bool found = false;
|
|
while (std::getline(ss, ln)) {
|
|
if (ln.rfind(search_str) != std::string::npos) {
|
|
found = true;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (!found) {
|
|
return EPERM;
|
|
}
|
|
|
|
ss.clear();
|
|
std::stringstream l_ss;
|
|
|
|
l_ss << ln;
|
|
|
|
double num_units;
|
|
std::string sz;
|
|
|
|
switch (type) {
|
|
case kPowerMaxGPUPower:
|
|
l_ss >> num_units;
|
|
l_ss >> sz;
|
|
assert(sz == "W"); // We only expect Watts at this time
|
|
if (sz != "W") {
|
|
throw amd::smi::rsmi_exception(RSMI_STATUS_UNEXPECTED_DATA,
|
|
__FUNCTION__);
|
|
}
|
|
|
|
if (num_units > static_cast<long double>(0xFFFFFFFFFFFFFFFF)/1000) {
|
|
throw amd::smi::rsmi_exception(RSMI_STATUS_UNEXPECTED_DATA,
|
|
__FUNCTION__);
|
|
}
|
|
*val = static_cast<uint64_t>(num_units * 1000); // Convert W to mW
|
|
break;
|
|
|
|
default:
|
|
assert(false); // Invalid search Power type requested
|
|
return EINVAL;
|
|
}
|
|
ss.clear();
|
|
return 0;
|
|
}
|
|
|
|
int PowerMon::readPowerValue(PowerMonTypes type, uint64_t *power) {
|
|
auto tempPath = path_;
|
|
std::string fstr;
|
|
|
|
assert(power != nullptr);
|
|
|
|
tempPath += "/";
|
|
tempPath += kMonitorNameMap.at(type);
|
|
|
|
DBG_FILE_ERROR(tempPath, (std::string *)nullptr)
|
|
int ret = ReadSysfsStr(tempPath, &fstr);
|
|
|
|
if (ret) {
|
|
return ret;
|
|
}
|
|
|
|
return parse_power_str(fstr, type, power);
|
|
}
|
|
|
|
} // namespace smi
|
|
} // namespace amd
|