Searched refs:numInvocationsLeft (Results 1 – 1 of 1) sorted by relevance
68 deUint32 numInvocationsLeft = numInvocations; in computeWorkGroupSize() local70 …const deUint32 xWorkGroupSize = std::min(std::min(numInvocationsLeft, maxComputeWorkGroupSize.x())… in computeWorkGroupSize()71 …numInvocationsLeft = numInvocationsLeft / xWorkGroupSize + ((numInvocationsLeft % xWorkGroupSize) … in computeWorkGroupSize()73 …const deUint32 yWorkGroupSize = std::min(std::min(numInvocationsLeft, maxComputeWorkGroupSize.y())… in computeWorkGroupSize()74 …numInvocationsLeft = numInvocationsLeft / yWorkGroupSize + ((numInvocationsLeft % yWorkGroupSize) … in computeWorkGroupSize()76 …const deUint32 zWorkGroupSize = std::min(std::min(numInvocationsLeft, maxComputeWorkGroupSize.z())… in computeWorkGroupSize()77 …numInvocationsLeft = numInvocationsLeft / zWorkGroupSize + ((numInvocationsLeft % zWorkGroupSize) … in computeWorkGroupSize()341 deUint32 numInvocationsLeft = m_bufferSizeInBytes / SIZE_OF_UINT_IN_SHADER; in iterate() local342 const tcu::UVec3 workGroupSize = computeWorkGroupSize(numInvocationsLeft); in iterate()345 numInvocationsLeft -= workGroupSize.x()*workGroupSize.y()*workGroupSize.z(); in iterate()[all …]