diff options
author | Dave Airlie <[email protected]> | 2017-02-03 01:46:24 +0000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2017-02-03 19:52:13 +0000 |
commit | a1a8aef4c9dbdf254036adada95f0d6e394c5d6a (patch) | |
tree | 27b5f99d576822b41796e612501af0d35ab58517 /src | |
parent | 66463b7f7540ed3d21ca6ae7c729fbb671453188 (diff) |
radv/ac: correctly size shared memory usage.
We count the number of slots used, but slots are vec4 sized,
so we have to scale by 16 not 4.
Reviewed-by: Edward O'Callaghan <[email protected]>
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Cc: "17.0" <[email protected]>
Signed-off-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/amd/common/ac_nir_to_llvm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/amd/common/ac_nir_to_llvm.c b/src/amd/common/ac_nir_to_llvm.c index ddec74fa1ab..9be6e77f86b 100644 --- a/src/amd/common/ac_nir_to_llvm.c +++ b/src/amd/common/ac_nir_to_llvm.c @@ -4812,7 +4812,7 @@ LLVMModuleRef ac_translate_nir_to_llvm(LLVMTargetMachineRef tm, idx++; } - shared_size *= 4; + shared_size *= 16; var = LLVMAddGlobalInAddressSpace(ctx.module, LLVMArrayType(ctx.i8, shared_size), "compute_lds", |