Skip to content

Commit

Permalink
ROCProfV3: fatal message if PC sampling unsupported, but requested (#60)
Browse files Browse the repository at this point in the history
If a user requests PC sampling on a system that does not support this feature,
report a fatal error message and stop executing the program.
  • Loading branch information
vlaindic authored Dec 20, 2024
1 parent 200a862 commit 0ce75c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/lib/rocprofiler-sdk-tool/tool.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1334,7 +1334,7 @@ tool_init(rocprofiler_client_finalize_t fini_func, void* tool_data)
}
}
if(!config_match_found)
ROCP_ERROR << "Given PC sampling configuration is not supported on any of the agents";
ROCP_FATAL << "Given PC sampling configuration is not supported on any of the agents";
}

for(auto itr : get_buffers().as_array())
Expand Down

0 comments on commit 0ce75c1

Please sign in to comment.