P4 to Git Change 1346120 by gandryey@gera-w8 on 2016/11/25 13:00:01

SWDEV-86035 - Add PAL backend to OpenCL
	- Fix a regression after LC path integration. sampler, image and queue pointers have uint64_t size always.

Affected files ...

... //depot/stg/opencl/drivers/opencl/runtime/device/pal/palkernel.cpp#26 edit


[ROCm/clr commit: 41eceed8f1]
This commit is contained in:
foreman
2016-11-25 13:04:36 -05:00
parent 922d13dea3
commit 38d68a7e51
@@ -248,7 +248,7 @@ GetHSAILArgSize(const aclArgData *argInfo)
case ARG_TYPE_IMAGE:
case ARG_TYPE_SAMPLER:
case ARG_TYPE_QUEUE:
return sizeof(void*);
return sizeof(uint64_t);
default:
return -1;
}