ROCr-runtime: Allow core dumps for gfx115x (#1827)

Core dumps are not supporetd for gfx110x, but should be possible for
gfx115x.  The current code disables core dumps completly for all gfx11xx
agents, relax this to allow gfx115x.
Cette révision appartient à :
lancesix
2025-12-02 11:51:29 +00:00
révisé par GitHub
Parent cf91f5f77a
révision 7ba0f1bdcf
2 fichiers modifiés avec 4 ajouts et 2 suppressions
+2 -1
Voir le fichier
@@ -1326,7 +1326,8 @@ bool AqlQueue::ExceptionHandler(hsa_signal_value_t error_code, void* arg) {
// Fallback if KFD does not support GPU core dump. In this case, the core
// dump is generated by hsa-runtime.
if (!core::Runtime::runtime_singleton_->KfdVersion().supports_core_dump &&
queue->agent_->supported_isas()[0]->GetMajorVersion() != 11) {
!(queue->agent_->supported_isas()[0]->GetMajorVersion() == 11
&& queue->agent_->supported_isas()[0]->GetMinorVersion() < 5)) {
if (pcs::PcsRuntime::instance()->SessionsActive())
fprintf(stderr, "GPU core dump skipped because PC Sampling active\n");
+2 -1
Voir le fichier
@@ -2239,7 +2239,8 @@ bool Runtime::VMFaultHandler(hsa_signal_value_t val, void* arg) {
// Fallback if KFD does not support GPU core dump. In this case, the core dump is
// generated by hsa-runtime.
if (faulty_agent &&
faulty_agent->supported_isas()[0]->GetMajorVersion() != 11 &&
!(faulty_agent->supported_isas()[0]->GetMajorVersion() == 11
&& faulty_agent->supported_isas()[0]->GetMinorVersion() < 5) &&
!runtime_singleton_->KfdVersion().supports_core_dump) {
if (pcs::PcsRuntime::instance()->SessionsActive())