Home
last modified time | relevance | path

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

/external/drrickorang/LoopbackApp/app/src/main/java/org/drrickorang/loopback/
DCorrelation.java69 double groupSize = (double) N / mBlockSize; //samples per downsample point. in computeCorrelation() local
75 int minIndex = (int) (0.5 + minLatencyMs * mSamplingRate / (groupSize * 1000)); in computeCorrelation()
109 mEstimatedLatencySamples = maxIndex * groupSize; in computeCorrelation()
141 double groupSize = (double) N / mBlockSize; in downsampleData() local
146 double nextGroup = groupSize; in downsampleData()
151 nextGroup += groupSize; in downsampleData()
/external/mesa3d/src/glx/
Dpixel.c176 GLint components, elementSize, rowSize, padding, groupsPerRow, groupSize; in __glFillImage() local
200 groupSize = elementSize * components; in __glFillImage()
204 rowSize = groupsPerRow * groupSize; in __glFillImage()
211 skipRows * rowSize + skipPixels * groupSize; in __glFillImage()
402 GLint components, elementSize, rowSize, padding, groupsPerRow, groupSize; in __glEmptyImage() local
425 groupSize = elementSize * components; in __glEmptyImage()
426 rowSize = groupsPerRow * groupSize; in __glEmptyImage()
431 sourceRowSize = width * groupSize; in __glEmptyImage()
438 skipRows * rowSize + skipPixels * groupSize; in __glEmptyImage()
/external/OpenCL-CTS/test_conformance/c11_atomics/
Dcommon.h933 size_t groupSize = 0; in ExecuteSingleTest() local
958 …error = clGetDeviceInfo(deviceID, CL_DEVICE_MAX_WORK_GROUP_SIZE, sizeof(groupSize), &groupSize, NU… in ExecuteSingleTest()
960 CurrentGroupSize((cl_uint)groupSize); in ExecuteSingleTest()
998 sizeof(groupSize), &groupSize, NULL); in ExecuteSingleTest()
1026 if (maxWorkGroupSize < groupSize) groupSize = maxWorkGroupSize; in ExecuteSingleTest()
1028 if (CurrentGroupSize() <= groupSize) in ExecuteSingleTest()
1171 groupSize = CurrentGroupSize(); in ExecuteSingleTest()
1172 error = clEnqueueNDRangeKernel(queue, kernel, 1, NULL, threadNum, &groupSize, 0, NULL, NULL); in ExecuteSingleTest()
/external/OpenCL-CTS/test_conformance/integer_ops/
Dtest_upsample.cpp48 size_t threadSize, groupSize, i; in test_upsample_2_param_fn() local
130 error = get_max_common_work_group_size( context, kernel, threadSize, &groupSize ); in test_upsample_2_param_fn()
133 … error = clEnqueueNDRangeKernel( queue, kernel, 1, NULL, &threadSize, &groupSize, 0, NULL, NULL ); in test_upsample_2_param_fn()
/external/OpenCL-CTS/test_conformance/basic/
Dtest_explicit_s2v.cpp118 size_t threadSize[3], groupSize[3]; in test_explicit_s2v_function() local
165 error = get_max_common_work_group_size( context, kernel, threadSize[0], &groupSize[0] ); in test_explicit_s2v_function()
168 error = clEnqueueNDRangeKernel( queue, kernel, 1, NULL, threadSize, groupSize, 0, NULL, NULL ); in test_explicit_s2v_function()
/external/OpenCL-CTS/test_conformance/atomics/
Dtest_atomics.cpp128 size_t threadSize, groupSize; in test_atomic_function() local
186 error = get_max_common_work_group_size( context, kernel, threadSize, &groupSize ); in test_atomic_function()
191 threadSize = groupSize; in test_atomic_function()
209 threadSize = groupSize = workSize; in test_atomic_function()
213 log_info( "\t(thread count %d, group size %d)\n", (int)threadSize, (int)groupSize ); in test_atomic_function()
281 error = clEnqueueNDRangeKernel( queue, kernel, 1, NULL, threads, &groupSize, 0, NULL, NULL ); in test_atomic_function()
/external/deqp/external/vulkancts/modules/vulkan/query_pool/
DvktQueryPoolStatisticsTests.cpp388 , groupSize(groupSize_)
393 tcu::UVec3 groupSize; member
406 …() * parm.localSize.y() *parm.localSize.z() * parm.groupSize.x() * parm.groupSize.y() * parm.group… in getComputeExecution()
531 … m_parameters[parametersNdx].groupSize.x(), m_parameters[parametersNdx].groupSize.y(), m_parameter… in executeTest()
701 … m_parameters[parametersNdx].groupSize.x(), m_parameters[parametersNdx].groupSize.y(), m_parameter… in executeTest()
899 … m_parameters[parametersNdx].groupSize.x(), m_parameters[parametersNdx].groupSize.y(), m_parameter… in executeTest()
913 …patch(*primaryCmdBuffer, m_parameters[0].groupSize.x(), m_parameters[0].groupSize.y(), m_parameter… in executeTest()
2520 const tcu::UVec3 groupSize[] = in QueryPoolStatisticsTest() local
2527 DE_ASSERT(DE_LENGTH_OF_ARRAY(localSize) == DE_LENGTH_OF_ARRAY(groupSize)); in QueryPoolStatisticsTest()
2535 groupSize[shaderNdx], in QueryPoolStatisticsTest()
/external/llvm-project/mlir/lib/IR/
DAsmPrinter.cpp995 int groupResultNo = 0, groupSize = 0; in getResultIDAndNumber() local
1000 groupSize = static_cast<int>(owner->getNumResults()) - resultGroups.back(); in getResultIDAndNumber()
1004 groupSize = *it - groupResultNo; in getResultIDAndNumber()
1008 if (groupSize != 1) in getResultIDAndNumber()
/external/ImageMagick/MagickCore/
Daccelerate-kernels-private.h1276 int groupSize = get_local_size(0) * get_local_size(1);
1277 for (int i = localID; i < cachedAreaNumPixels; i+=groupSize) {
1295 for (int i = localID; i < filterHeight*filterWidth; i+=groupSize) {