Home
last modified time | relevance | path

Searched refs:numInvocationsLeft (Results 1 – 1 of 1) sorted by relevance

/external/deqp/external/vulkancts/modules/vulkan/sparse_resources/
DvktSparseResourcesBufferMemoryAliasing.cpp68 deUint32 numInvocationsLeft = numInvocations; in computeWorkGroupSize() local
70 …const deUint32 xWorkGroupSize = std::min(std::min(numInvocationsLeft, maxComputeWorkGroupSize.x())… in computeWorkGroupSize()
71numInvocationsLeft = numInvocationsLeft / xWorkGroupSize + ((numInvocationsLeft % xWorkGroupSize) … in computeWorkGroupSize()
73 …const deUint32 yWorkGroupSize = std::min(std::min(numInvocationsLeft, maxComputeWorkGroupSize.y())… in computeWorkGroupSize()
74numInvocationsLeft = numInvocationsLeft / yWorkGroupSize + ((numInvocationsLeft % yWorkGroupSize) … in computeWorkGroupSize()
76 …const deUint32 zWorkGroupSize = std::min(std::min(numInvocationsLeft, maxComputeWorkGroupSize.z())… in computeWorkGroupSize()
77numInvocationsLeft = numInvocationsLeft / zWorkGroupSize + ((numInvocationsLeft % zWorkGroupSize) … in computeWorkGroupSize()
341 deUint32 numInvocationsLeft = m_bufferSizeInBytes / SIZE_OF_UINT_IN_SHADER; in iterate() local
342 const tcu::UVec3 workGroupSize = computeWorkGroupSize(numInvocationsLeft); in iterate()
345 numInvocationsLeft -= workGroupSize.x()*workGroupSize.y()*workGroupSize.z(); in iterate()
[all …]