diff options
author | Samuel Pitoiset <[email protected]> | 2020-06-05 09:27:01 +0200 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2020-06-17 18:12:51 +0200 |
commit | 51fb3b09dc1cd096f727f712c18a023c3886f660 (patch) | |
tree | 855f0d4db280d72bad414d5302eaa0ddf97c8f43 /src/amd/vulkan/radv_device.c | |
parent | abfe28a6bb637237b3a6873eda8b09cfe4faf1e2 (diff) |
radv/aco: enable FP16 features/extensions on GFX9+
This enables shaderFloat16, VK_AMD_gpu_shader_half_float and
VK_AMD_gpu_shader_int16.
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Daniel Schürmann <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5347>
Diffstat (limited to 'src/amd/vulkan/radv_device.c')
-rw-r--r-- | src/amd/vulkan/radv_device.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/amd/vulkan/radv_device.c b/src/amd/vulkan/radv_device.c index 6d86d88f615..2a51c607259 100644 --- a/src/amd/vulkan/radv_device.c +++ b/src/amd/vulkan/radv_device.c @@ -988,7 +988,7 @@ radv_get_physical_device_features_1_2(struct radv_physical_device *pdevice, f->storagePushConstant8 = true; f->shaderBufferInt64Atomics = LLVM_VERSION_MAJOR >= 9 || pdevice->use_aco; f->shaderSharedInt64Atomics = LLVM_VERSION_MAJOR >= 9 || pdevice->use_aco; - f->shaderFloat16 = pdevice->rad_info.has_packed_math_16bit && !pdevice->use_aco; + f->shaderFloat16 = pdevice->rad_info.has_packed_math_16bit; f->shaderInt8 = true; f->descriptorIndexing = true; |