HomeSort by relevance Sort by last modified time
    Searched refs:num_threads (Results 101 - 125 of 323) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/clang/test/OpenMP/
parallel_ast_print.cpp 146 #pragma omp parallel default(none), private(argc,b) firstprivate(argv) shared (d) if (parallel:argc > 0) num_threads(C) copyin(S<T>::TS) proc_bind(master) reduction(+:c, arr1[argc]) reduction(max:e, arr[:C][0:10])
148 #pragma omp parallel if (C) num_threads(s) proc_bind(close) reduction(^:e, f, arr[0:C][:argc]) reduction(&& : g)
160 // CHECK-NEXT: #pragma omp parallel default(none) private(argc,b) firstprivate(argv) shared(d) if(parallel: argc > 0) num_threads(5) copyin(S<int>::TS) proc_bind(master) reduction(+: c,arr1[argc]) reduction(max: e,arr[:5][0:10])
162 // CHECK-NEXT: #pragma omp parallel if(5) num_threads(s) proc_bind(close) reduction(^: e,f,arr[0:5][:argc]) reduction(&&: g)
171 // CHECK-NEXT: #pragma omp parallel default(none) private(argc,b) firstprivate(argv) shared(d) if(parallel: argc > 0) num_threads(1) copyin(S<long>::TS) proc_bind(master) reduction(+: c,arr1[argc]) reduction(max: e,arr[:1][0:10])
173 // CHECK-NEXT: #pragma omp parallel if(1) num_threads(s) proc_bind(close) reduction(^: e,f,arr[0:1][:argc]) reduction(&&: g)
182 // CHECK-NEXT: #pragma omp parallel default(none) private(argc,b) firstprivate(argv) shared(d) if(parallel: argc > 0) num_threads(C) copyin(S<T>::TS) proc_bind(master) reduction(+: c,arr1[argc]) reduction(max: e,arr[:C][0:10])
184 // CHECK-NEXT: #pragma omp parallel if(C) num_threads(s) proc_bind(close) reduction(^: e,f,arr[0:C][:argc]) reduction(&&: g)
201 #pragma omp parallel default(none), private(argc,b) firstprivate(argv) if (parallel: argc > 0) num_threads(ee) copyin(a) proc_bind(spread) reduction(| : c, d, arr1[argc]) reduction(* : e, arr[:10][0:argc])
202 // CHECK-NEXT: #pragma omp parallel default(none) private(argc,b) firstprivate(argv) if(parallel: argc > 0) num_threads(ee) copyin(a) proc_bind(spread) reduction(|: c,d,arr1[argc]) reduction(*: e,arr[:10][0:argc]
    [all...]
distribute_parallel_for_ast_print.cpp 85 #pragma omp distribute parallel for private(argc, b), firstprivate(c, d), lastprivate(d, f) collapse(N) schedule(static, N) if (parallel :argc) num_threads(N) default(shared) shared(e) reduction(+ : h) dist_schedule(static,N)
97 // CHECK: #pragma omp distribute parallel for private(argc,b) firstprivate(c,d) lastprivate(d,f) collapse(N) schedule(static, N) if(parallel: argc) num_threads(N) default(shared) shared(e) reduction(+: h) dist_schedule(static, N)
128 #pragma omp distribute parallel for private(argc, b), firstprivate(argv, c), lastprivate(d, f) collapse(2) schedule(auto) if (argc) num_threads(a) default(shared) shared(e) reduction(+ : h) dist_schedule(static, b)
132 // CHECK: #pragma omp distribute parallel for private(argc,b) firstprivate(argv,c) lastprivate(d,f) collapse(2) schedule(auto) if(argc) num_threads(a) default(shared) shared(e) reduction(+: h) dist_schedule(static, b)
  /external/libvpx/libvpx/test/
vpxenc.sh 284 local readonly num_threads="$(seq ${tilethread_min} ${tilethread_max})"
287 for threads in ${num_threads}; do
312 local readonly num_threads="$(seq ${tilethread_min} ${tilethread_max})"
315 for threads in ${num_threads}; do
  /external/pdfium/third_party/libopenjpeg20/
thread.h 198 * num_thread must nominally be >= 1 to create a real thread pool. If num_threads
203 * @param num_threads the number of threads to allocate for this thread pool.
207 opj_thread_pool_t* opj_thread_pool_create(int num_threads);
thread.c 619 static OPJ_BOOL opj_thread_pool_setup(opj_thread_pool_t* tp, int num_threads);
625 opj_thread_pool_t* opj_thread_pool_create(int num_threads)
635 if (num_threads <= 0) {
649 if (!opj_thread_pool_setup(tp, num_threads)) {
684 static OPJ_BOOL opj_thread_pool_setup(opj_thread_pool_t* tp, int num_threads)
689 assert(num_threads > 0);
696 tp->worker_threads = (opj_worker_thread_t*) opj_calloc((size_t)num_threads,
701 tp->worker_threads_count = num_threads;
703 for (i = 0; i < num_threads; i++) {
735 while (tp->waiting_worker_thread_count < num_threads) {
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/client/
client_library.h 60 LocalClientOptions& set_intra_op_parallelism_threads(int num_threads);
  /external/tensorflow/tensorflow/contrib/learn/python/learn/learn_io/
graph_io_test.py 75 num_threads = 3
88 num_threads=num_threads,
100 num_threads=num_threads,
112 num_threads=num_threads,
124 num_threads=num_threads,
136 num_threads=num_threads
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
cast_op_impl_bfloat.cc 35 Shard(worker_threads->num_threads, worker_threads->workers, N, 2, work);
cast_op_impl_float.cc 36 Shard(worker_threads->num_threads, worker_threads->workers, N, 2, work);
meta_support.h 37 // pool can use. If num_threads is 0, then use intra_op_parallelism_threads.
38 void SetNumThreads(int num_threads);
  /external/tensorflow/tensorflow/python/training/
input.py 735 def _batch(tensors, batch_size, keep_input, num_threads=1, capacity=32,
756 _enqueue(queue, tensor_list, num_threads, enqueue_many, keep_input)
768 # TODO(josh11b): Add a thread_multiplier or num_threads (that has to be
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/parallel/
omp_loop.h 82 # pragma omp parallel num_threads(__num_threads)
omp_loop_static.h 82 # pragma omp parallel num_threads(__num_threads)
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/parallel/
omp_loop.h 82 # pragma omp parallel num_threads(__num_threads)
omp_loop_static.h 82 # pragma omp parallel num_threads(__num_threads)
  /system/core/init/
ueventd_test.cpp 42 auto num_threads = files_and_parameters.size(); local
44 pthread_barrier_init(&barrier, nullptr, num_threads);
136 constexpr auto num_threads = 10; local
192 std::generate_n(back_inserter(threads), num_threads, local
  /external/python/cpython2/Lib/test/
test_thread.py 154 def __init__(self, num_threads):
155 self.num_threads = num_threads
164 if self.waiting == self.num_threads:
165 self.waiting = self.num_threads - 1
  /external/python/cpython3/Lib/test/
test_thread.py 152 def __init__(self, num_threads):
153 self.num_threads = num_threads
162 if self.waiting == self.num_threads:
163 self.waiting = self.num_threads - 1
  /external/tensorflow/tensorflow/contrib/training/python/training/
bucket_ops.py 67 num_threads=1,
126 num_threads: An integer. The number of threads enqueuing `tensors`.
247 bucket_enqueue_ops = [maybe_enqueue] * num_threads
307 num_threads=1,
335 num_threads: An integer. The number of threads enqueuing `tensors`.
413 num_threads=num_threads,
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_thread.py 158 def __init__(self, num_threads):
159 self.num_threads = num_threads
168 if self.waiting == self.num_threads:
169 self.waiting = self.num_threads - 1
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_thread.py 158 def __init__(self, num_threads):
159 self.num_threads = num_threads
168 if self.waiting == self.num_threads:
169 self.waiting = self.num_threads - 1
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_thread.py 158 def __init__(self, num_threads):
159 self.num_threads = num_threads
168 if self.waiting == self.num_threads:
169 self.waiting = self.num_threads - 1
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_thread.py 158 def __init__(self, num_threads):
159 self.num_threads = num_threads
168 if self.waiting == self.num_threads:
169 self.waiting = self.num_threads - 1
  /external/autotest/client/tests/cyclictest/src/
cyclictest.c 395 static int num_threads = 1; variable
448 case 't': num_threads = atoi(optarg); break;
460 if (num_threads < 1)
549 par = calloc(num_threads, sizeof(struct thread_param));
552 stat = calloc(num_threads, sizeof(struct thread_stat));
556 for (i = 0; i < num_threads; i++) {
594 for (i = 0; i < num_threads; i++) {
604 printf("\033[%dA", num_threads + 2);
612 for (i = 0; i < num_threads; i++) {
  /external/eigen/unsupported/test/
cxx11_tensor_thread_pool.cpp 274 const int num_threads = internal::random<int>(3, 11); local
275 ThreadPool thread_pool(num_threads);
276 Eigen::ThreadPoolDevice thread_pool_device(&thread_pool, num_threads);
298 const int num_threads = internal::random<int>(3, 11); local
299 Eigen::ThreadPool tp(num_threads);
300 Eigen::ThreadPoolDevice thread_pool_device(&tp, num_threads);
328 const int num_threads = internal::random<int>(2, 11); local
329 ThreadPool threads(num_threads);
330 Eigen::ThreadPoolDevice device(&threads, num_threads);

Completed in 1106 milliseconds

1 2 3 45 6 7 8 91011>>