@@ -473,10 +473,13 @@ namespace pwr::intel
473473 currentSample.vramReadBandwidth ,
474474 pm_gpu_power_telemetry_info.gpu_mem_read_bandwidth_bps ,
475475 GpuTelemetryCapBits::gpu_mem_read_bandwidth);
476+ pmlog_verb (v::gpu)(std::format (" VR read BW bSupported [{}] type [{}] units [{}] data [{}]" ,
477+ currentSample.vramReadBandwidth .bSupported , (int )currentSample.vramReadBandwidth .type ,
478+ (int )currentSample.vramReadBandwidth .units , currentSample.vramReadBandwidth .value .datau64 ));
476479 if (result != CTL_RESULT_SUCCESS ||
477480 !(HasTelemetryCapBit (GpuTelemetryCapBits::gpu_mem_read_bandwidth))) {
478481 useNewBandwidthTelemetry = false ;
479- pmlog_dbg (" V1 vram bandwidth not available, falling back to V0 counters" )
482+ pmlog_info (" V1 vram bandwidth not available, falling back to V0 counters" )
480483 .code (result).pmwatch (HasTelemetryCapBit (GpuTelemetryCapBits::gpu_mem_read_bandwidth));
481484 }
482485 }
@@ -485,10 +488,13 @@ namespace pwr::intel
485488 currentSample.vramWriteBandwidth ,
486489 pm_gpu_power_telemetry_info.gpu_mem_write_bandwidth_bps ,
487490 GpuTelemetryCapBits::gpu_mem_write_bandwidth);
491+ pmlog_verb (v::gpu)(std::format (" VR write BW bSupported [{}] type [{}] units [{}] data [{}]" ,
492+ currentSample.vramWriteBandwidth .bSupported , (int )currentSample.vramWriteBandwidth .type ,
493+ (int )currentSample.vramWriteBandwidth .units , currentSample.vramWriteBandwidth .value .datau64 ));
488494 if (result != CTL_RESULT_SUCCESS ||
489495 !(HasTelemetryCapBit (GpuTelemetryCapBits::gpu_mem_write_bandwidth))) {
490496 useNewBandwidthTelemetry = false ;
491- pmlog_dbg (" V1 vram bandwidth not available, falling back to V0 counters" )
497+ pmlog_info (" V1 vram bandwidth not available, falling back to V0 counters" )
492498 .code (result).pmwatch (HasTelemetryCapBit (GpuTelemetryCapBits::gpu_mem_write_bandwidth));
493499 }
494500 }
0 commit comments