File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
projects/rocprofiler-sdk/source/lib/python/rocpd/source Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -276,9 +276,8 @@ write_perfetto(
276276
277277 return rocpd::read_sql_query<types::region_arg>(
278278 conn,
279- fmt::format (" SELECT * FROM region_args WHERE guid='{}' AND id={}" ,
280- process.guid ,
281- region_id));
279+ fmt::format (
280+ " SELECT * FROM region_args WHERE guid='{}' AND id={}" , process.guid , region_id));
282281 };
283282
284283 auto is_hip_event_api = [](std::string_view opname) {
@@ -465,7 +464,7 @@ write_perfetto(
465464 auto want_event_handle_annotations =
466465 ocfg.annotate_args && is_hip_event_api (_canon) && !is_event_create_api (_canon);
467466 auto _args = want_event_handle_annotations ? read_region_args (itr.id )
468- : std::vector<types::region_arg>{};
467+ : std::vector<types::region_arg>{};
469468
470469 auto _category = ::perfetto::DynamicCategory{get_category_string (itr.category )};
471470 TRACE_EVENT_BEGIN (
You can’t perform that action at this time.
0 commit comments