HomeSort by relevance Sort by last modified time
    Searched defs:numThreads (Results 1 - 25 of 110) sorted by null

1 2 3 4 5

  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorDeviceDefault.h 37 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE size_t numThreads() const {
TensorCostModel.h 174 static EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE int numThreads(
TensorDeviceCuda.h 248 EIGEN_STRONG_INLINE size_t numThreads() const {
TensorDeviceThreadPool.h 133 EIGEN_STRONG_INLINE int numThreads() const {
171 // Returns a logical thread index between 0 and pool_->NumThreads() - 1 if
186 if (n <= 1 || numThreads() == 1 ||
187 CostModel::numThreads(n, cost, static_cast<int>(numThreads())) == 1) {
212 (divup<int>(block_count, numThreads()) * numThreads());
233 (divup<int>(coarser_block_count, numThreads()) * numThreads());
  /external/jemalloc/msvc/projects/vc2015/test_threads/
test_threads.cpp 32 static const int numThreads = narenas + 1, numAllocsMax = 25, numIter1 = 50, numIter2 = 50;
39 printf("Starting %d threads x %d x %d iterations...\n", numThreads, numIter1, numIter2);
40 for (int i = 0; i < numThreads; i++) {
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
threads.h 55 uint32_t numThreads;
  /frameworks/native/cmds/surfacereplayer/replayer/
Main.cpp 64 int numThreads = DEFAULT_THREADS;
74 numThreads = atoi(optarg);
105 android::Replayer r(filename, pauseBeginning, numThreads, wait, stopHere);
  /hardware/interfaces/tests/multithread/1.0/default/
Multithread.cpp 18 Return<void> Multithread::setNumThreads(int32_t maxThreads, int32_t numThreads) {
20 << maxThreads << ", " << numThreads << ")";
26 mNumThreads = numThreads;
  /device/linaro/bootloader/edk2/BaseTools/Source/C/LzmaCompress/Sdk/C/
LzmaEnc.h 30 int numThreads; /* 1 or 2, default = 2 */
  /external/lzma/C/
LzmaEnc.h 30 int numThreads; /* 1 or 2, default = 2 */
MtCoder.c 185 #define GET_NEXT_THREAD(p) &p->mtCoder->threads[p->index == p->mtCoder->numThreads - 1 ? 0 : p->index + 1]
274 unsigned i, numThreads = p->numThreads;
280 for (i = 0; i < numThreads; i++)
285 for (i = 0; i < numThreads; i++)
306 for (i = 0; i < numThreads; i++)
324 for (i = 0; i < numThreads; i++)
MtCoder.h 77 unsigned numThreads;
  /art/test/522-checker-regression-monitor-exit/src/
Main.java 59 int numThreads = 10;
61 ExecutorService pool = Executors.newFixedThreadPool(numThreads);
63 List<HashCodeQuery> queries = new ArrayList<HashCodeQuery>(numThreads);
64 for (int i = 0; i < numThreads; ++i) {
72 for (int i = 0; i < numThreads; ++i) {
  /external/dagger2/core/src/test/java/dagger/internal/
DoubleCheckLazyTest.java 42 int numThreads = 10;
43 ExecutorService executor = Executors.newFixedThreadPool(numThreads);
45 final CountDownLatch latch = new CountDownLatch(numThreads);
49 List<Callable<Object>> tasks = Lists.newArrayListWithCapacity(numThreads);
50 for (int i = 0; i < numThreads; i++) {
  /external/tensorflow/tensorflow/core/kernels/
softmax_op_gpu.cu.cc 119 const int numThreads = 128;
120 const int numBlocks = Eigen::divup(rows * cols, numThreads);
137 GenerateNormalizedProb<<<numBlocks, numThreads, 0, cu_stream>>>(
  /external/lzma/CPP/7zip/Common/
MethodProps.h 17 HRESULT ParseMtProp(const UString &name, const PROPVARIANT &prop, UInt32 defaultNumThreads, UInt32 &numThreads);
113 int numThreads = Get_NumThreads();
114 if (numThreads >= 0)
117 return numThreads < 2 ? 1 : 2;
125 int numThreads = Get_NumThreads();
126 if (numThreads >= 0)
129 if (numThreads < 1) return 1;
130 if (numThreads > 64) return 64;
131 return numThreads;
168 void AddProp_NumThreads(UInt32 numThreads)
    [all...]
  /external/aac/libAACdec/src/
aacdec_drc_types.h 196 numThreads; /* The number of DRC data threads extracted from the found
  /external/deqp/framework/delibs/decpp/
deBlockBuffer.cpp 307 int numThreads = rnd.getInt(1, 16);
311 for (int i = 0; i < numThreads; i++)
  /external/deqp/modules/egl/
teglColorClearCase.cpp 353 int numThreads = (int)contexts.size();
354 int numPackets = numThreads * numPacketsPerThread;
357 vector<vector<ClearPacket> > packets (numThreads);
358 vector<ColorClearThreadSp> threads (numThreads);
365 for (int threadNdx = 0; threadNdx < numThreads; threadNdx++)
374 packet.wait = semaphores[packetNdx*numThreads + threadNdx];
375 packet.signal = semaphores[packetNdx*numThreads + threadNdx + 1];
389 for (int threadNdx = 0; threadNdx < numThreads; threadNdx++)
414 for (int threadNdx = 0; threadNdx < numThreads; threadNdx++)
420 for (int threadNdx = 0; threadNdx < numThreads; threadNdx++
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
VersionInfoTest.java 372 final int numThreads = 20;
373 GetInstanceWorker[] workers = new GetInstanceWorker[numThreads];
374 VersionInfo[][] results = new VersionInfo[numThreads][255];
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
VersionInfoTest.java 369 final int numThreads = 20;
370 GetInstanceWorker[] workers = new GetInstanceWorker[numThreads];
371 VersionInfo[][] results = new VersionInfo[numThreads][255];
  /libcore/luni/src/test/java/tests/java/sql/
MultiThreadAccessTest.java 41 private static final int numThreads = 10;
57 threadPool = new ThreadPool(numThreads);
116 * the database. Number of threads is defined by numThreads variable
121 for (int i = 0; i < numThreads; i++) {
128 * tables in the database. Number of threads is defined by numThreads
142 * numThreads variable
197 * the database. Number of threads is defined by numThreads variable
216 for (int i = 0; i < numThreads; i++) {
222 double expectedVal = id + numThreads;
  /art/tools/dmtracedump/
createtesttrace.cc 141 int32_t numThreads = maxThreadId + 1;
146 stack* callStack = new stack[numThreads];
147 for (int32_t ii = 0; ii < numThreads; ++ii) {
  /external/deqp/external/vulkancts/modules/vulkan/
vktBuildPrograms.cpp 97 TaskExecutor (deUint32 numThreads);
110 TaskExecutor::TaskExecutor (deUint32 numThreads)
111 : m_threads (numThreads)
381 const deUint32 numThreads = deGetNumAvailableLogicalCores();
383 TaskExecutor executor (numThreads);
  /external/deqp/framework/delibs/dethread/
deThreadTest.c 627 static void runSingletonThreadedTest (int numThreads, int initTimeMs)
635 for (threadNdx = 0; threadNdx < numThreads; threadNdx++)
647 for (threadNdx = 0; threadNdx < numThreads; threadNdx++)
665 int numThreads;
683 int numThreads = cases[caseNdx].numThreads;
689 runSingletonThreadedTest(numThreads, initTimeMs);

Completed in 914 milliseconds

1 2 3 4 5