From ed50f46a75c9334e83e8cbab4efcb683802f6f38 Mon Sep 17 00:00:00 2001 From: xuchen-amd Date: Wed, 2 Oct 2024 16:29:03 -0400 Subject: [PATCH] Rebranding of lib core, console log. --- source/lib/core/argparse.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/source/lib/core/argparse.cpp b/source/lib/core/argparse.cpp index c91ad674b..5ce3c0d92 100644 --- a/source/lib/core/argparse.cpp +++ b/source/lib/core/argparse.cpp @@ -855,7 +855,7 @@ add_core_arguments(parser_t& _parser, parser_data& _data) "active " "threads would equate to ~1 second of realtime. If this proves to be " "difficult to handle in practice, please file a feature request for " - "omnitrace to auto-scale based on the number of threads.") + "rocprof-sys to auto-scale based on the number of threads.") .count(1) .dtype("clock-id") .action([&](parser_t& p) { @@ -1191,14 +1191,14 @@ add_core_arguments(parser_t& _parser, parser_data& _data) add_group_arguments(_parser, "sampling", _data); - _parser.start_group("HARDWARE COUNTER OPTIONS", "See also: omnitrace-avail -H"); + _parser.start_group("HARDWARE COUNTER OPTIONS", "See also: rocprof-sys-avail -H"); if(_data.environ_filter("cpu_events", _data)) { _parser .add_argument({ "-C", "--cpu-events" }, "Set the CPU hardware counter events to record (ref: " - "`omnitrace-avail -H -c CPU`)") + "`rocprof-sys-avail -H -c CPU`)") .min_count(1) .dtype("[EVENT ...]") .action([&](parser_t& p) { @@ -1216,7 +1216,7 @@ add_core_arguments(parser_t& _parser, parser_data& _data) _parser .add_argument({ "-G", "--gpu-events" }, "Set the GPU hardware counter events to record (ref: " - "`omnitrace-avail -H -c GPU`)") + "`rocprof-sys-avail -H -c GPU`)") .min_count(1) .dtype("[EVENT ...]") .action([&](parser_t& p) { @@ -1353,7 +1353,7 @@ add_group_arguments(parser_t& _parser, const std::string& _group_name, parser_da }), _choices.end()); _choices.emplace_back( - "... run `omnitrace-avail -H -c CPU` for full list ..."); + "... run `rocprof-sys-avail -H -c CPU` for full list ..."); itr.second->set_choices(_choices); } } @@ -1414,7 +1414,7 @@ add_extended_arguments(parser_t& _parser, parser_data& _data) }), _choices.end()); _choices.emplace_back( - "... run `omnitrace-avail -H -c CPU` for full list ..."); + "... run `rocprof-sys-avail -H -c CPU` for full list ..."); itr.second->set_choices(_choices); }