Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix More link #201

Draft
wants to merge 1 commit into
base: amd-staging
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions include/rocm_smi/rocm_smi.h
Original file line number Diff line number Diff line change
Expand Up @@ -1240,19 +1240,19 @@ typedef union id {
uint64_t id; //!< uint64_t representation of value
const char *name; //!< name string (applicable to functions only)
union {
//!< Used for ::rsmi_memory_type_t variants
/** Used for ::rsmi_memory_type_t variants */
rsmi_memory_type_t memory_type;
//!< Used for ::rsmi_temperature_metric_t variants
/** Used for ::rsmi_temperature_metric_t variants */
rsmi_temperature_metric_t temp_metric;
//!< Used for ::rsmi_event_type_t variants
/** Used for ::rsmi_event_type_t variants */
rsmi_event_type_t evnt_type;
//!< Used for ::rsmi_event_group_t variants
/** Used for ::rsmi_event_group_t variants */
rsmi_event_group_t evnt_group;
//!< Used for ::rsmi_clk_type_t variants
/** Used for ::rsmi_clk_type_t variants */
rsmi_clk_type_t clk_type;
//!< Used for ::rsmi_fw_block_t variants
/** Used for ::rsmi_fw_block_t variants */
rsmi_fw_block_t fw_block;
//!< Used for ::rsmi_gpu_block_t variants
/** Used for ::rsmi_gpu_block_t variants */
rsmi_gpu_block_t gpu_block_type;
};
} rsmi_func_id_value_t;
Expand Down