7,652
社区成员
发帖
与我相关
我的任务
分享高通游戏设备上 AI 画质增强开启后,高负载场景出现掉帧、发热和耗电增加,如何平衡画质与性能?
AI 画质增强不能全程固定开启最高强度,否则在高负载游戏场景中会吃掉大量 GPU/NPU 资源。建议采用动态自适应方案。
def adjust_ai_enhancement(frame_rate, gpu_load, temperature):
if frame_rate < 45 or gpu_load > 90 or temperature > 45:
return "low"
elif frame_rate < 55 or gpu_load > 75:
return "medium"
else:
return "high"
def should_skip_enhancement(scene_type, motion_level):
if scene_type == "menu":
return True
if motion_level < 0.1:
return True
return False