Home | History | Annotate | Download | only in functional

Lines Matching full:workgroupsize

598 		const int					workGroupSize	= m_localSize[0]*m_localSize[1]*m_localSize[2];
600 const int numValues = workGroupSize*workGroupCount;
608 << "shared uint offsets[" << workGroupSize << "];\n\n"
659 for (int localOffs = 0; localOffs < workGroupSize; localOffs++)
661 const int globalOffs = groupNdx*workGroupSize;
663 const int offs0 = localOffs-1 < 0 ? ((localOffs+workGroupSize-1)%workGroupSize) : ((localOffs-1)%workGroupSize);
664 const int offs1 = localOffs-2 < 0 ? ((localOffs+workGroupSize-2)%workGroupSize) : ((localOffs-2)%workGroupSize);
812 const int workGroupSize = m_localSize[0]*m_localSize[1]*m_localSize[2];
814 const int numValues = workGroupSize*workGroupCount;
822 << "shared uint offsets[" << workGroupSize << "];\n\n"
869 for (int localOffs = 0; localOffs < workGroupSize; localOffs++)
871 const int globalOffs = groupNdx*workGroupSize;
873 const deUint32 ref = (deUint32)(globalOffs + (workGroupSize-localOffs-1)*(workGroupSize-localOffs-1));
904 const int workGroupSize = m_localSize[0]*m_localSize[1]*m_localSize[2];
906 const int numValues = workGroupSize*workGroupCount;
961 for (int localOffs = 0; localOffs < workGroupSize; localOffs++)
963 const int globalOffs = groupNdx*workGroupSize;
1459 const int workGroupSize = m_localSize[0]*m_localSize[1]*m_localSize[2];
1461 const int numValues = workGroupSize*workGroupCount;