HomeSort by relevance Sort by last modified time
    Searched refs:thread_pool_size (Results 1 - 8 of 8) sorted by null

  /external/tensorflow/tensorflow/contrib/data/python/ops/
prefetching_ops.py 31 thread_pool_size=1,
40 thread_pool_size=thread_pool_size,
  /external/v8/include/libplatform/
libplatform.h 18 * The caller will take ownership of the returned pointer. |thread_pool_size|
24 int thread_pool_size = 0);
  /external/v8/src/libplatform/
default-platform.cc 21 v8::Platform* CreateDefaultPlatform(int thread_pool_size) {
23 platform->SetThreadPoolSize(thread_pool_size);
87 void DefaultPlatform::SetThreadPoolSize(int thread_pool_size) {
89 DCHECK(thread_pool_size >= 0);
90 if (thread_pool_size < 1) {
91 thread_pool_size = base::SysInfo::NumberOfProcessors() - 1;
94 std::max(std::min(thread_pool_size, kMaxThreadPoolSize), 1);
default-platform.h 38 void SetThreadPoolSize(int thread_pool_size);
  /external/tensorflow/tensorflow/contrib/data/python/kernel_tests/
prefetching_ops_test.py 69 thread_pool_size=2,
  /external/tensorflow/tensorflow/contrib/data/kernels/
prefetching_kernels.cc 42 int64 thread_pool_size)
50 "buffer_resource", thread_pool_size,
249 OP_REQUIRES_OK(ctx, ctx->GetAttr("thread_pool_size", &thread_pool_size_));
  /external/tensorflow/tensorflow/contrib/eager/python/
datasets.py 120 thread_pool_size=1,
  /external/tensorflow/tensorflow/core/common_runtime/
direct_session.cc 261 const int thread_pool_size = local
263 if (thread_pool_size > 0) {
264 for (int i = 0; i < thread_pool_size; ++i) {
    [all...]

Completed in 204 milliseconds