HomeSort by relevance Sort by last modified time
    Searched refs:max_threads (Results 1 - 25 of 60) sorted by null

1 2 3

  /external/gemmlowp/meta/
multi_thread_common.h 23 inline int ResolveMaxThreads(int max_threads) {
24 if (max_threads == 0) {
29 return max_threads;
legacy_multi_thread_gemv.h 94 std::int32_t max_threads) {
95 return internal::ResolveMaxThreads(max_threads) *
99 void multi_thread_gemv_q8(gemmlowp::WorkersPool* pool, std::int32_t max_threads,
106 max_threads = internal::ResolveMaxThreads(max_threads);
109 if (max_threads == 1) {
112 internal::MultiThreadedMatrixMatrix(pool, max_threads, scratch, lhs, rhs, 1,
118 std::int32_t max_threads) {
119 return internal::ResolveMaxThreads(max_threads) *
123 void multi_thread_gemv_f(gemmlowp::WorkersPool* pool, std::int32_t max_threads,
    [all...]
legacy_multi_thread_gemm.h 153 std::int32_t max_threads) {
154 return internal::ResolveMaxThreads(max_threads) *
158 void multi_thread_gemm_q8(gemmlowp::WorkersPool* pool, std::int32_t max_threads,
166 multi_thread_gemv_q8(pool, max_threads, scratch, lhs, rhs, n, k, lhs_offset,
170 multi_thread_gemv_q8(pool, max_threads, scratch, rhs, lhs, m, k, rhs_offset,
175 max_threads = internal::ResolveMaxThreads(max_threads);
178 if (max_threads == 1) {
182 internal::MultiThreadedMatrixMatrix(pool, max_threads, scratch, lhs, rhs, m,
188 std::int32_t max_threads) {
    [all...]
legacy_multi_thread_common.h 74 std::int32_t ResolveMaxThreads(std::int32_t max_threads) {
75 if (max_threads == 0) {
80 return max_threads;
117 std::int32_t max_threads, std::uint8_t* scratch,
122 max_threads = internal::ResolveMaxThreads(max_threads);
125 internal::PrepareTasks(max_threads, m, n, k, &task_rects);
multi_thread_transform.h 36 const int max_threads = ResolveMaxThreads(context->max_num_threads()); local
41 const int real_tasks = std::max(1, std::min(max_threads, max_tasks_by_size));
  /external/gemmlowp/internal/
platform.h 62 inline int GetHardwareConcurrency(int max_threads) {
63 if (max_threads == 0) {
68 return max_threads;
91 inline int GetHardwareConcurrency(int max_threads) {
92 if (max_threads == 0) {
97 return max_threads;
  /system/extras/memory_replay/
main.cpp 69 void ProcessDump(int fd, size_t max_allocs, size_t max_threads) {
72 Threads threads(&pointers, max_threads);
74 printf("Maximum threads available: %zu\n", threads.max_threads());
165 fprintf(stderr, "Usage: %s MEMORY_LOG_FILE [MAX_THREADS]\n", basename(argv[0]));
169 size_t max_threads = DEFAULT_MAX_THREADS; local
171 max_threads = atoi(argv[2]);
186 ProcessDump(dump_fd, max_allocs, max_threads);
Threads.h 28 Threads(Pointers* pointers, size_t max_threads);
38 size_t max_threads() { return max_threads_; } function in class:Threads
Threads.cpp 48 Threads::Threads(Pointers* pointers, size_t max_threads)
49 : pointers_(pointers), max_threads_(max_threads) {
  /external/libchrome/base/test/
sequenced_worker_pool_owner.cc 14 size_t max_threads,
17 pool_(new SequencedWorkerPool(max_threads,
sequenced_worker_pool_owner.h 36 SequencedWorkerPoolOwner(size_t max_threads,
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_gs_state.c 75 gs->thread4.max_threads = 1;
77 gs->thread4.max_threads = 0;
brw_structs.h 151 unsigned max_threads:5; /* may be less */ member in struct:brw_clip_unit_state::__anon30466
390 unsigned max_threads:6; member in struct:brw_sf_unit_state::__anon30486
459 unsigned max_threads:5; member in struct:brw_gs_unit_state::__anon30490
501 unsigned max_threads:6; member in struct:brw_vs_unit_state::__anon30493
563 unsigned max_threads:7; member in struct:brw_wm_unit_state::__anon30497
brw_clip_state.c 110 clip->thread4.max_threads = 16 - 1;
112 clip->thread4.max_threads = 2 - 1;
115 clip->thread4.max_threads = 1 - 1;
  /external/libvpx/libvpx/vp8/common/
onyxd.h 32 int max_threads; member in struct:__anon26127
  /system/extras/libfec/
fec_process.cpp 66 size_t max_threads = fec_div_round_up(count, count_per_thread); local
68 if ((size_t)threads > max_threads) {
69 threads = (int)max_threads;
  /system/update_engine/payload_generator/
full_update_generator.cc 142 size_t max_threads = diff_utils::GetMaxThreads(); local
146 << " bytes each) using " << max_threads << " threads";
153 // |max_threads| will actually hold a block in memory while we process.
187 max_threads);
  /external/libchrome/base/threading/
sequenced_worker_pool.h 214 // |max_threads| and a prefix for the thread name to aid in debugging.
215 // |max_threads| must be greater than 1. |task_priority| will be used to hint
219 SequencedWorkerPool(size_t max_threads,
225 SequencedWorkerPool(size_t max_threads,
  /external/google-benchmark/src/
benchmark_register.cc 428 Benchmark* Benchmark::ThreadRange(int min_threads, int max_threads) {
430 CHECK_GE(max_threads, min_threads);
432 AddRange(&thread_counts_, min_threads, max_threads, 2);
436 Benchmark* Benchmark::DenseThreadRange(int min_threads, int max_threads,
439 CHECK_GE(max_threads, min_threads);
442 for (auto i = min_threads; i < max_threads; i += stride) {
445 thread_counts_.push_back(max_threads);
  /external/libcxx/utils/google-benchmark/src/
benchmark_register.cc 428 Benchmark* Benchmark::ThreadRange(int min_threads, int max_threads) {
430 CHECK_GE(max_threads, min_threads);
432 AddRange(&thread_counts_, min_threads, max_threads, 2);
436 Benchmark* Benchmark::DenseThreadRange(int min_threads, int max_threads,
439 CHECK_GE(max_threads, min_threads);
442 for (auto i = min_threads; i < max_threads; i += stride) {
445 thread_counts_.push_back(max_threads);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/google-benchmark/src/
benchmark_register.cc 408 Benchmark* Benchmark::ThreadRange(int min_threads, int max_threads) {
410 CHECK_GE(max_threads, min_threads);
412 AddRange(&thread_counts_, min_threads, max_threads, 2);
416 Benchmark* Benchmark::DenseThreadRange(int min_threads, int max_threads,
419 CHECK_GE(max_threads, min_threads);
422 for (auto i = min_threads; i < max_threads; i += stride) {
425 thread_counts_.push_back(max_threads);
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorCostModel.h 158 // in [1:max_threads] instead of just switching multi-threading off for small
171 // Returns the number of threads in [1:max_threads] to use for
175 double output_size, const TensorOpCost& cost_per_coeff, int max_threads) {
178 return numext::mini(max_threads, numext::maxi(1, threads));
  /external/libvpx/libvpx/test/
vpx_temporal_svc_encoder.sh 43 local max_threads="4"
54 for threads in $(seq $max_threads); do
  /external/libvpx/libvpx/vp8/decoder/
onyxd_int.h 72 int max_threads; member in struct:VP8D_COMP
  /external/libvpx/libvpx/vp9/decoder/
vp9_decoder.h 71 int max_threads; member in struct:VP9Decoder

Completed in 743 milliseconds

1 2 3