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.cpp67 deUint32 numInvocationsLeft = numInvocations; in computeWorkGroupSize() local
69 …const deUint32 xWorkGroupSize = std::min(std::min(numInvocationsLeft, maxComputeWorkGroupSize.x())… in computeWorkGroupSize()
70numInvocationsLeft = numInvocationsLeft / xWorkGroupSize + ((numInvocationsLeft % xWorkGroupSize) … in computeWorkGroupSize()
72 …const deUint32 yWorkGroupSize = std::min(std::min(numInvocationsLeft, maxComputeWorkGroupSize.y())… in computeWorkGroupSize()
73numInvocationsLeft = numInvocationsLeft / yWorkGroupSize + ((numInvocationsLeft % yWorkGroupSize) … in computeWorkGroupSize()
75 …const deUint32 zWorkGroupSize = std::min(std::min(numInvocationsLeft, maxComputeWorkGroupSize.z())… in computeWorkGroupSize()
76numInvocationsLeft = numInvocationsLeft / zWorkGroupSize + ((numInvocationsLeft % zWorkGroupSize) … in computeWorkGroupSize()
340 deUint32 numInvocationsLeft = m_bufferSizeInBytes / SIZE_OF_UINT_IN_SHADER; in iterate() local
341 const tcu::UVec3 workGroupSize = computeWorkGroupSize(numInvocationsLeft); in iterate()
344 numInvocationsLeft -= workGroupSize.x()*workGroupSize.y()*workGroupSize.z(); in iterate()
[all …]