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

CR-1206954 fix : Change the text displayed by xrt-smi help #8554

Merged
merged 6 commits into from
Oct 23, 2024
Merged
Show file tree
Hide file tree
Changes from 3 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
2 changes: 1 addition & 1 deletion src/runtime_src/core/tools/xbutil2/SubCmdValidate.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ static const std::pair<std::string, std::string> quick_test = {"quick", "Only th

SubCmdValidate::SubCmdValidate(bool _isHidden, bool _isDepricated, bool _isPreliminary, const boost::property_tree::ptree& configurations)
: SubCmd("validate",
"Validates the basic shell acceleration functionality")
"Validates the basic device acceleration functionality")
, m_device("")
, m_tests_to_run({"all"})
, m_format("JSON")
Expand Down
8 changes: 4 additions & 4 deletions src/runtime_src/core/tools/xbutil2/xbutil.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -106,11 +106,11 @@ int main( int argc, char** argv )

// -- Program Description
const std::string description =
"The Xilinx (R) Run Time - System Management Interface (xrt-smi) is a standalone"
" command line utility that is included with the Xilinx Run Time (XRT) installation"
"The XRT - System Management Interface (xrt-smi) is a standalone"
" command line utility that is included with the XRT installation"
" package. It includes multiple commands to identify and validate the installed"
" card(s).\n\nThis information can be used for both card administration and"
" application debugging.";
" device(s).\n\nThe reports produced by xrt-smi may be used for device"
" administration, monitoring and troubleshooting application behavior.";

// -- Ready to execute the code
try {
Expand Down
Loading