Mesa (master): ac/llvm: bump the number of results to 8.

Dave Airlie airlied at kemper.freedesktop.org
Tue Jan 30 19:38:22 UTC 2018


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

Author: Dave Airlie <airlied at redhat.com>
Date:   Tue Jan 30 13:58:05 2018 +1000

ac/llvm: bump the number of results to 8.

This function can get access for a 64-bit dvec4, which means we
have to load 8 components.

This fixes:
R600_DEBUG=nir ./bin/shader_runner generated_tests/spec/arb_gpu_shader_fp64/execution/built-in-functions/fs-abs-dvec4.shader_test -auto

Reviewed-by: Timothy Arceri <tarceri at itsqueeze.com>
Reviewed-by: Marek Olšák <marek.olsak at amd.com>

---

 src/amd/common/ac_llvm_build.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/amd/common/ac_llvm_build.c b/src/amd/common/ac_llvm_build.c
index 5e08508fed..6afe7f9723 100644
--- a/src/amd/common/ac_llvm_build.c
+++ b/src/amd/common/ac_llvm_build.c
@@ -983,7 +983,7 @@ ac_build_buffer_load(struct ac_llvm_context *ctx,
 	if (allow_smem && !glc && !slc) {
 		assert(vindex == NULL);
 
-		LLVMValueRef result[4];
+		LLVMValueRef result[8];
 
 		for (int i = 0; i < num_channels; i++) {
 			if (i) {




More information about the mesa-commit mailing list