Skip to content

Commit ed50f46

Browse files
committed
Rebranding of lib core, console log.
1 parent 90bc2fe commit ed50f46

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

source/lib/core/argparse.cpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -855,7 +855,7 @@ add_core_arguments(parser_t& _parser, parser_data& _data)
855855
"active "
856856
"threads would equate to ~1 second of realtime. If this proves to be "
857857
"difficult to handle in practice, please file a feature request for "
858-
"omnitrace to auto-scale based on the number of threads.")
858+
"rocprof-sys to auto-scale based on the number of threads.")
859859
.count(1)
860860
.dtype("clock-id")
861861
.action([&](parser_t& p) {
@@ -1191,14 +1191,14 @@ add_core_arguments(parser_t& _parser, parser_data& _data)
11911191

11921192
add_group_arguments(_parser, "sampling", _data);
11931193

1194-
_parser.start_group("HARDWARE COUNTER OPTIONS", "See also: omnitrace-avail -H");
1194+
_parser.start_group("HARDWARE COUNTER OPTIONS", "See also: rocprof-sys-avail -H");
11951195

11961196
if(_data.environ_filter("cpu_events", _data))
11971197
{
11981198
_parser
11991199
.add_argument({ "-C", "--cpu-events" },
12001200
"Set the CPU hardware counter events to record (ref: "
1201-
"`omnitrace-avail -H -c CPU`)")
1201+
"`rocprof-sys-avail -H -c CPU`)")
12021202
.min_count(1)
12031203
.dtype("[EVENT ...]")
12041204
.action([&](parser_t& p) {
@@ -1216,7 +1216,7 @@ add_core_arguments(parser_t& _parser, parser_data& _data)
12161216
_parser
12171217
.add_argument({ "-G", "--gpu-events" },
12181218
"Set the GPU hardware counter events to record (ref: "
1219-
"`omnitrace-avail -H -c GPU`)")
1219+
"`rocprof-sys-avail -H -c GPU`)")
12201220
.min_count(1)
12211221
.dtype("[EVENT ...]")
12221222
.action([&](parser_t& p) {
@@ -1353,7 +1353,7 @@ add_group_arguments(parser_t& _parser, const std::string& _group_name, parser_da
13531353
}),
13541354
_choices.end());
13551355
_choices.emplace_back(
1356-
"... run `omnitrace-avail -H -c CPU` for full list ...");
1356+
"... run `rocprof-sys-avail -H -c CPU` for full list ...");
13571357
itr.second->set_choices(_choices);
13581358
}
13591359
}
@@ -1414,7 +1414,7 @@ add_extended_arguments(parser_t& _parser, parser_data& _data)
14141414
}),
14151415
_choices.end());
14161416
_choices.emplace_back(
1417-
"... run `omnitrace-avail -H -c CPU` for full list ...");
1417+
"... run `rocprof-sys-avail -H -c CPU` for full list ...");
14181418
itr.second->set_choices(_choices);
14191419
}
14201420

0 commit comments

Comments
 (0)