mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-18 19:10:32 +01:00
nvk: enable float16 on turing.
Reviewed-by: Mel Henning <drawoc@darkrefraction.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/33521>
This commit is contained in:
parent
b45feed3b2
commit
8a64eee4d7
1 changed files with 1 additions and 4 deletions
|
|
@ -379,10 +379,7 @@ nvk_get_device_features(const struct nv_device_info *info,
|
|||
nvk_use_nak(info),
|
||||
.shaderSharedInt64Atomics = info->cls_eng3d >= MAXWELL_A &&
|
||||
nvk_use_nak(info),
|
||||
/* TODO: Fp16 is currently busted on Turing and Volta due to instruction
|
||||
* scheduling issues. Re-enable it once those are sorted.
|
||||
*/
|
||||
.shaderFloat16 = info->sm >= 80 && nvk_use_nak(info),
|
||||
.shaderFloat16 = info->sm >= 70 && nvk_use_nak(info),
|
||||
.shaderInt8 = true,
|
||||
.descriptorIndexing = true,
|
||||
.shaderInputAttachmentArrayDynamicIndexing = true,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue