Searched refs:numInvocationsLeft (Results 1 – 1 of 1) sorted by relevance
67 deUint32 numInvocationsLeft = numInvocations; in computeWorkGroupSize() local69 …const deUint32 xWorkGroupSize = std::min(std::min(numInvocationsLeft, maxComputeWorkGroupSize.x())… in computeWorkGroupSize()70 …numInvocationsLeft = numInvocationsLeft / xWorkGroupSize + ((numInvocationsLeft % xWorkGroupSize) … in computeWorkGroupSize()72 …const deUint32 yWorkGroupSize = std::min(std::min(numInvocationsLeft, maxComputeWorkGroupSize.y())… in computeWorkGroupSize()73 …numInvocationsLeft = numInvocationsLeft / yWorkGroupSize + ((numInvocationsLeft % yWorkGroupSize) … in computeWorkGroupSize()75 …const deUint32 zWorkGroupSize = std::min(std::min(numInvocationsLeft, maxComputeWorkGroupSize.z())… in computeWorkGroupSize()76 …numInvocationsLeft = numInvocationsLeft / zWorkGroupSize + ((numInvocationsLeft % zWorkGroupSize) … in computeWorkGroupSize()340 deUint32 numInvocationsLeft = m_bufferSizeInBytes / SIZE_OF_UINT_IN_SHADER; in iterate() local341 const tcu::UVec3 workGroupSize = computeWorkGroupSize(numInvocationsLeft); in iterate()344 numInvocationsLeft -= workGroupSize.x()*workGroupSize.y()*workGroupSize.z(); in iterate()[all …]