Cycles: Re-enable MNEE on HIP

This commit re-enables MNEE on the HIP backend for Cycles after the
recent update to HIP SDK 6.4 which fixed issues with MNEE.

Pull Request: https://projects.blender.org/blender/blender/pulls/145334
This commit is contained in:
Alaska
2025-09-01 16:51:44 +02:00
committed by Brecht Van Lommel
parent 2eaa8dc7d5
commit 2bb232f02d

View File

@@ -168,10 +168,7 @@ void device_hip_info(vector<DeviceInfo> &devices)
info.description = string(name);
info.num = num;
/* Disable MNEE as it causes stalls or has rendering artifacts on most AMD GPU configurations
* due to compiler bugs. And as further adjustments have been made to other areas of Cycles,
* more and more AMD GPUs are affected by these issues. */
info.has_mnee = false;
info.has_mnee = true;
info.has_nanovdb = true;
info.has_gpu_queue = true;