Mesa (master): radv/aco: enable storageInputOutput16 on GFX9+

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Tue May 19 17:18:30 UTC 2020


Module: Mesa
Branch: master
Commit: 0fb3dc8d1030cf3c373bf90dea61d03d22950b58
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=0fb3dc8d1030cf3c373bf90dea61d03d22950b58

Author: Samuel Pitoiset <samuel.pitoiset at gmail.com>
Date:   Thu May  7 11:41:01 2020 +0200

radv/aco: enable storageInputOutput16 on GFX9+

Signed-off-by: Samuel Pitoiset <samuel.pitoiset at gmail.com>
Reviewed-by: Rhys Perry <pendingchaos02 at gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4966>

---

 src/amd/vulkan/radv_device.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/amd/vulkan/radv_device.c b/src/amd/vulkan/radv_device.c
index 682b3f3b173..357ab077492 100644
--- a/src/amd/vulkan/radv_device.c
+++ b/src/amd/vulkan/radv_device.c
@@ -987,7 +987,7 @@ void radv_GetPhysicalDeviceFeatures2(
 			features->storageBuffer16BitAccess = enable;
 			features->uniformAndStorageBuffer16BitAccess = enable;
 			features->storagePushConstant16 = enable;
-			features->storageInputOutput16 = pdevice->rad_info.has_double_rate_fp16 && !pdevice->use_aco && LLVM_VERSION_MAJOR >= 9;
+			features->storageInputOutput16 = pdevice->rad_info.has_double_rate_fp16 && (LLVM_VERSION_MAJOR >= 9 || pdevice->use_aco);
 			break;
 		}
 		case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_SAMPLER_YCBCR_CONVERSION_FEATURES: {
@@ -1207,7 +1207,7 @@ void radv_GetPhysicalDeviceFeatures2(
 			features->storageBuffer16BitAccess = storage16_enable;
 			features->uniformAndStorageBuffer16BitAccess = storage16_enable;
 			features->storagePushConstant16 = storage16_enable;
-			features->storageInputOutput16 = pdevice->rad_info.has_double_rate_fp16 && !pdevice->use_aco && LLVM_VERSION_MAJOR >= 9;
+			features->storageInputOutput16 = pdevice->rad_info.has_double_rate_fp16 && (LLVM_VERSION_MAJOR >= 9 || pdevice->use_aco);
 			features->multiview = true;
 			features->multiviewGeometryShader = true;
 			features->multiviewTessellationShader = true;



More information about the mesa-commit mailing list