mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-01 08:08:06 +02:00
nvk: Restrict shaderFloat16 to Ampere+ for now
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/28756>
This commit is contained in:
parent
4850aebcaf
commit
7e87f3ccde
1 changed files with 4 additions and 1 deletions
|
|
@ -326,7 +326,10 @@ nvk_get_device_features(const struct nv_device_info *info,
|
|||
.shaderBufferInt64Atomics = info->cls_eng3d >= MAXWELL_A &&
|
||||
nvk_use_nak(info),
|
||||
.shaderSharedInt64Atomics = false, /* TODO */
|
||||
.shaderFloat16 = info->sm >= 70 && 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),
|
||||
.shaderInt8 = true,
|
||||
.descriptorIndexing = true,
|
||||
.shaderInputAttachmentArrayDynamicIndexing = true,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue