Skip to content

Commit

Permalink
small fixes (Xilinx#8414)
Browse files Browse the repository at this point in the history
Signed-off-by: AShivangi <[email protected]>
  • Loading branch information
AShivangi authored Sep 12, 2024
1 parent e4e43f9 commit f7072d3
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 6 deletions.
1 change: 0 additions & 1 deletion src/runtime_src/core/common/info_platform.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,6 @@ add_platform_info(const xrt_core::device* device, ptree_type& pt_platform_array)
add_versal_controller_info(device, pt_platform);
else
add_controller_info(device, pt_platform);
add_clock_info(device, pt_platform);
add_mac_info(device, pt_platform);
add_config_info(device, pt_platform);
break;
Expand Down
2 changes: 1 addition & 1 deletion src/runtime_src/core/common/query_requests.h
Original file line number Diff line number Diff line change
Expand Up @@ -1684,7 +1684,7 @@ struct aie_partition_info : request
uint64_t migrations;
uint64_t preemptions;
uint64_t errors;
qos_info QoS;
qos_info qos;
};

using result_type = std::vector<struct data>;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ populate_aie_partition(const xrt_core::device* device)
pt_entry.put("migrations", entry.migrations);
pt_entry.put("errors", entry.errors);

xrt_core::query::aie_partition_info::qos_info qos = entry.QoS;
xrt_core::query::aie_partition_info::qos_info qos = entry.qos;
pt_entry.put("gops", qos.gops);
pt_entry.put("egops", qos.egops);
pt_entry.put("fps", qos.fps);
Expand Down
4 changes: 2 additions & 2 deletions src/runtime_src/core/tools/common/reports/ReportTelemetry.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,8 @@ generate_opcode_string(const boost::property_tree::ptree& pt)
std::stringstream ss;

const std::vector<Table2D::HeaderData> opcode_headers = {
{"Opcode", Table2D::Justification::left},
{"Receive Count", Table2D::Justification::left}
{"Mailbox Opcode", Table2D::Justification::left},
{"Count", Table2D::Justification::left}
};
Table2D opcode_table(opcode_headers);

Expand Down
2 changes: 1 addition & 1 deletion src/runtime_src/core/tools/xbutil2/OO_Performance.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ namespace po = boost::program_options;
// ----- C L A S S M E T H O D S -------------------------------------------

OO_Performance::OO_Performance( const std::string &_longName, bool _isHidden )
: OptionOptions(_longName, _isHidden, "Modes: default, powersaver, balanced, performance")
: OptionOptions(_longName, _isHidden, "Modes: default, powersaver, balanced, performance, turbo")
, m_device("")
, m_action("")
, m_help(false)
Expand Down

0 comments on commit f7072d3

Please sign in to comment.