What is a TEX in OpenCL?
What is TEX in the object code of my OpenCL program? I put my kernel in the kernel analyzer and I saw the label TEX in the object code. I'm no开发者_如何转开发t sure what it means. I didn't find the description in the APP SDK guide. Can you direct me to a resource?
in the http://gpgpu.org/wp/wp-content/uploads/2009/09/E1-OpenCL-Architecture.pdf TEX is used as short name of Texture, for example "Tex L2" = Texture Level 2 Cache.
I assume, tex is for "texture memory" section. Texture memory is special kind of memory access, which is used by GPU.
精彩评论