76ccf58008
Provides a RdcSmiDiagnostic module, which will call rocm_smi_lib. It will support following diagnostics: Get GPU Topology, Check GPU parameters and check processes running on the GPUs. The grpc client and server side diagnostics function is added. The diag module is added to the rdci. Change-Id: I10a0cf3c20556a61373ab686f82cae75acaa40dd
71 satır
2.6 KiB
C++
71 satır
2.6 KiB
C++
/*
|
|
Copyright (c) 2021 - present Advanced Micro Devices, Inc. All rights reserved.
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
in 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:
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
all copies or substantial portions of the Software.
|
|
|
|
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
|
|
AUTHORS 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 IN
|
|
THE SOFTWARE.
|
|
*/
|
|
#ifndef INCLUDE_RDC_LIB_IMPL_RDCSMIDIAGNOSTICIMPL_H_
|
|
#define INCLUDE_RDC_LIB_IMPL_RDCSMIDIAGNOSTICIMPL_H_
|
|
#include <memory>
|
|
#include <string>
|
|
#include "rdc_lib/rdc_common.h"
|
|
#include "rdc/rdc.h"
|
|
#include "rocm_smi/rocm_smi.h"
|
|
|
|
namespace amd {
|
|
namespace rdc {
|
|
|
|
class RdcSmiDiagnosticImpl {
|
|
public:
|
|
RdcSmiDiagnosticImpl();
|
|
|
|
rdc_status_t check_rsmi_process_info(
|
|
uint32_t gpu_index[RDC_MAX_NUM_DEVICES],
|
|
uint32_t gpu_count,
|
|
rdc_diag_test_result_t* result);
|
|
rdc_status_t check_rsmi_topo_info(
|
|
uint32_t gpu_index[RDC_MAX_NUM_DEVICES],
|
|
uint32_t gpu_count,
|
|
rdc_diag_test_result_t* result);
|
|
rdc_status_t check_rsmi_param_info(
|
|
uint32_t gpu_index[RDC_MAX_NUM_DEVICES],
|
|
uint32_t gpu_count,
|
|
rdc_diag_test_result_t* result);
|
|
|
|
private:
|
|
rdc_diag_result_t check_temperature_level(uint32_t gpu_index
|
|
, rsmi_temperature_type_t type
|
|
, char msg[MAX_DIAG_MSG_LENGTH]
|
|
, char per_gpu_msg[MAX_DIAG_MSG_LENGTH]);
|
|
std::string get_temperature_string(
|
|
rsmi_temperature_type_t type) const;
|
|
|
|
rdc_diag_result_t check_voltage_level(uint32_t gpu_index
|
|
, rsmi_voltage_type_t type
|
|
, char msg[MAX_DIAG_MSG_LENGTH]
|
|
, char per_gpu_msg[MAX_DIAG_MSG_LENGTH]);
|
|
std::string get_voltage_string(
|
|
rsmi_voltage_type_t type) const;
|
|
};
|
|
|
|
typedef std::shared_ptr<RdcSmiDiagnosticImpl> RdcSmiDiagnosticPtr;
|
|
|
|
} // namespace rdc
|
|
} // namespace amd
|
|
#endif // INCLUDE_RDC_LIB_IMPL_RDCSMIDIAGNOSTICIMPL_H_
|