HomeSort by relevance Sort by last modified time
    Searched refs:num_threads (Results 26 - 50 of 55) sorted by null

12 3

  /external/ceres-solver/internal/ceres/
dense_jacobian_writer.h 59 ScratchEvaluatePreparer* CreateEvaluatePreparers(int num_threads) {
60 return ScratchEvaluatePreparer::Create(*program_, num_threads);
linear_solver.h 79 num_threads(1),
101 int num_threads; member in struct:ceres::internal::LinearSolver::Options
coordinate_descent_minimizer.cc 116 evaluator_options_.num_threads = 1;
132 scoped_array<LinearSolver*> linear_solvers(new LinearSolver*[options.num_threads]);
137 for (int i = 0; i < options.num_threads; ++i) {
150 #pragma omp parallel for num_threads(options.num_threads)
196 for (int i = 0; i < options.num_threads; ++i) {
block_jacobian_writer.cc 138 int num_threads) {
142 BlockEvaluatePreparer* preparers = new BlockEvaluatePreparer[num_threads];
143 for (int i = 0; i < num_threads; i++) {
system_test.cc 73 num_threads(1) {
84 num_threads(1) {
94 num_threads);
101 int num_threads; member in struct:ceres::internal::SolverConfig
136 options.num_threads = config.num_threads;
137 options.num_linear_solver_threads = config.num_threads;
529 configs[i].num_threads = 2;
solver_impl.cc 237 if (options.num_threads > 1) {
240 << "only options.num_threads=1 is supported. Switching "
242 options.num_threads = 1;
253 summary->num_threads_given = original_options.num_threads;
254 summary->num_threads_used = options.num_threads;
267 options.num_threads,
353 options.num_threads,
476 options.num_threads,
    [all...]
schur_eliminator.h 215 // parallelism is controlled by LinearSolver::Options::num_threads.
222 : num_threads_(options.num_threads) {
visibility_based_preconditioner.cc 337 eliminator_options.num_threads = options_.num_threads;
schur_eliminator_impl.h 179 #pragma omp parallel for num_threads(num_threads_) schedule(dynamic)
213 #pragma omp parallel for num_threads(num_threads_) schedule(dynamic)
291 #pragma omp parallel for num_threads(num_threads_) schedule(dynamic)
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
partition.h 51 * @param num_threads Maximum number of threads to use for this task.
56 Predicate pred, thread_index_t num_threads)
81 if(right - left + 1 >= 2 * num_threads * chunk_size)
82 # pragma omp parallel num_threads(num_threads)
86 num_threads = omp_get_num_threads();
87 reserved_left = new bool[num_threads];
88 reserved_right = new bool[num_threads];
93 / (double)num_threads);
98 while (right - left + 1 >= 2 * num_threads * chunk_size
    [all...]
set_operations.h 379 thread_index_t num_threads = local
383 # pragma omp parallel num_threads(num_threads)
387 num_threads = omp_get_num_threads();
389 borders = new difference_type[num_threads + 2];
390 equally_split(size, num_threads + 1, borders);
391 block_begins = new iterator_pair[num_threads + 1];
394 lengths = new difference_type[num_threads];
449 for (int i = 0; i < num_threads; ++i)
452 block_begin = block_begins[num_threads];
    [all...]
multiway_merge.h 1115 int num_threads = omp_get_num_threads(); local
1196 const int num_threads = omp_get_num_threads(); local
    [all...]
  /external/chromium/base/
observer_list_unittest.cc 274 static void ThreadSafeObserverHarness(int num_threads,
279 num_threads = num_threads > kMaxThreads ? kMaxThreads : num_threads;
293 for (int index = 0; index < num_threads; index++) {
309 for (int index = 0; index < num_threads; index++) {
  /external/ceres-solver/include/ceres/
solver.h 67 num_threads = 1;
166 int num_threads; member in struct:ceres::Solver::Options
375 // Solver::Options::num_threads to the maximum number possible is
  /external/chromium/base/threading/
simple_thread.cc 80 int num_threads)
82 num_threads_(num_threads),
simple_thread.h 152 DelegateSimpleThreadPool(const std::string& name_prefix, int num_threads);
  /system/core/toolbox/
top.c 70 int num_threads; member in struct:proc_info
271 proc->num_threads = 0;
308 proc->num_threads++;
480 printf("%5d %2d %3ld%% %c %5d %6ldK %6ldK %3s %-8.8s %s\n", proc->pid, proc->prs, proc->delta_time * 100 / total_delta_time, proc->state, proc->num_threads,
553 return -numcmp(pa->num_threads, pb->num_threads);
  /external/eigen/Eigen/src/Core/products/
Parallelizer.h 133 #pragma omp parallel for schedule(static,1) num_threads(threads)
  /external/ceres-solver/examples/
bundle_adjuster.cc 103 DEFINE_int32(num_threads, 1, "Number of threads.");
224 options->num_threads = FLAGS_num_threads;
  /system/core/sdcard/
sdcard.c 1308 int num_threads = DEFAULT_NUM_THREADS; local
    [all...]
  /external/opencv/cv/src/
cvtemplmatch.cpp 52 int k, num_threads = 0; local
134 num_threads = cvGetNumThreads();
136 for( k = 0; k < num_threads; k++ )
151 for( k = 0; k < num_threads; k++ )
193 #pragma omp parallel for num_threads(num_threads) schedule(dynamic)
299 for( k = 0; k < num_threads; k++ )
cvdistransform.cpp 497 #pragma omp parallel for num_threads(thread_count)
535 #pragma omp parallel for num_threads(thread_count) schedule(dynamic)
cvstereobm.cpp 638 #pragma omp parallel sections num_threads(n)
654 #pragma omp parallel for num_threads(n) schedule(static)
  /external/valgrind/unittest/
thread_wrappers.h 254 int num_threads() { return workers_.size();} function in class:ThreadPool
  /external/valgrind/main/drd/tests/
tsan_thread_wrappers_pthread.h 524 int num_threads() { return workers_.size();} function in class:ThreadPool

Completed in 362 milliseconds

12 3