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

1 2 3

  /external/tensorflow/tensorflow/tools/dist_test/scripts/
k8s_tensorflow_lib.py 36 name: {name_prefix}-worker{worker_id}
43 name-prefix: "{name_prefix}"
60 name: {name_prefix}-worker{worker_id}
74 name: {name_prefix}-worker{worker_id}
88 name: {name_prefix}-ps{param_server_id}
95 name-prefix: "{name_prefix}"
112 name: {name_prefix}-ps{param_server_id}
124 name: {name_prefix}-ps{param_server_id}
145 name_prefix,
158 name_prefix: name to prepend to pod job names
    [all...]
k8s_tensorflow_test.py 35 name_prefix='abc',
46 name_prefix='abc',
58 name_prefix='abc',
69 name_prefix='abc',
81 name_prefix='abc',
95 name_prefix='abc',
110 name_prefix='abc',
  /art/runtime/gc/collector/
partial_mark_sweep.cc 28 PartialMarkSweep::PartialMarkSweep(Heap* heap, bool is_concurrent, const std::string& name_prefix)
29 : MarkSweep(heap, is_concurrent, name_prefix.empty() ? "partial " : name_prefix) {
partial_mark_sweep.h 33 PartialMarkSweep(Heap* heap, bool is_concurrent, const std::string& name_prefix = "");
sticky_mark_sweep.cc 31 StickyMarkSweep::StickyMarkSweep(Heap* heap, bool is_concurrent, const std::string& name_prefix)
32 : PartialMarkSweep(heap, is_concurrent, name_prefix.empty() ? "sticky " : name_prefix) {
sticky_mark_sweep.h 33 StickyMarkSweep(Heap* heap, bool is_concurrent, const std::string& name_prefix = "");
  /external/tensorflow/tensorflow/compiler/jit/
xla_cpu_device.cc 30 Status CreateDevices(const SessionOptions& options, const string& name_prefix,
35 const string& name_prefix,
43 "Host", DEVICE_XLA_CPU, 0, DEVICE_CPU_XLA_JIT, options, name_prefix,
xla_gpu_device.cc 30 Status CreateDevices(const SessionOptions& options, const string& name_prefix,
35 const string& name_prefix,
43 "CUDA", DEVICE_XLA_GPU, 0, DEVICE_GPU_XLA_JIT, options, name_prefix,
xla_interpreter_device.cc 33 Status CreateDevices(const SessionOptions& options, const string& name_prefix,
38 const SessionOptions& options, const string& name_prefix,
47 options, name_prefix, /*register_device_for_compilation=*/true, &device));
  /external/tensorflow/tensorflow/core/common_runtime/
threadpool_device_factory.cc 29 Status CreateDevices(const SessionOptions& options, const string& name_prefix,
39 string name = strings::StrCat(name_prefix, "/device:CPU:", i);
device_factory.h 42 const string& name_prefix,
47 // devices of the same type, supply distinct name_prefix arguments.
49 const string& name_prefix);
53 const string& name_prefix,
device_factory.cc 93 const string& name_prefix,
102 TF_RETURN_IF_ERROR(cpu_factory->CreateDevices(options, name_prefix, devices));
112 TF_RETURN_IF_ERROR(factory->CreateDevices(options, name_prefix, devices));
121 const string& name_prefix) {
129 TF_CHECK_OK(device_factory->CreateDevices(opt, name_prefix, &devices));
  /external/libchrome/base/threading/
simple_thread.cc 14 SimpleThread::SimpleThread(const std::string& name_prefix)
15 : SimpleThread(name_prefix, Options()) {}
17 SimpleThread::SimpleThread(const std::string& name_prefix,
19 : name_prefix_(name_prefix),
72 const std::string& name_prefix)
73 : DelegateSimpleThread(delegate, name_prefix, Options()) {}
76 const std::string& name_prefix,
78 : SimpleThread(name_prefix, options),
96 const std::string& name_prefix,
98 : name_prefix_(name_prefix),
    [all...]
simple_thread.h 86 // Every thread has a name, in the form of |name_prefix|/TID, for example
88 explicit SimpleThread(const std::string& name_prefix);
89 SimpleThread(const std::string& name_prefix, const Options& options);
137 const std::string& name_prefix);
139 const std::string& name_prefix,
165 DelegateSimpleThreadPool(const std::string& name_prefix, int num_threads);
worker_pool_posix.h 48 // All worker threads will share the same |name_prefix|. They will exit after
50 PosixDynamicThreadPool(const std::string& name_prefix,
worker_pool_posix.cc 74 WorkerThread(const std::string& name_prefix,
76 : name_prefix_(name_prefix), pool_(pool) {}
129 PosixDynamicThreadPool::PosixDynamicThreadPool(const std::string& name_prefix,
131 : name_prefix_(name_prefix),
  /external/tensorflow/tensorflow/core/graph/
quantize_training.cc 254 StringPiece name_prefix = GetNodeNamePrefix(save_op); local
255 Node* restore_all = FindRestoreAllOp(graph, name_prefix);
259 const string restore_op_name = strings::StrCat(name_prefix, "/RestoreV2");
260 const string assign_op_name = strings::StrCat(name_prefix, "/Assign");
327 Status MakeReductionAxes(Graph* graph, string name_prefix, Node* input,
329 name_prefix = strings::StrCat(name_prefix, "/ReductionAxes");
334 NodeBuilder(strings::StrCat(name_prefix, "/RangeStart"), "Const")
342 NodeBuilder(strings::StrCat(name_prefix, "/RangeDelta"), "Const")
348 NodeBuilder(strings::StrCat(name_prefix, "/InputRank"), "Rank"
570 string name_prefix = edge.edge->src()->name(); local
    [all...]
  /external/perf_data_converter/src/quipper/compat/cros/detail/
thread.h 16 explicit Thread(const string& name_prefix) : thread_(this, name_prefix) {}
  /external/tensorflow/tensorflow/core/common_runtime/sycl/
sycl_device_factory.cc 27 Status CreateDevices(const SessionOptions &options, const string &name_prefix,
38 string name = strings::StrCat(name_prefix, "/device:SYCL:", i);
  /system/vold/
KeyUtil.cpp 128 for (char const* const* name_prefix = NAME_PREFIXES; *name_prefix != nullptr; name_prefix++) {
129 auto ref = keyname(*name_prefix, *raw_ref);
146 for (char const* const* name_prefix = NAME_PREFIXES; *name_prefix != nullptr; name_prefix++) {
147 auto ref = keyname(*name_prefix, raw_ref);
  /external/libchrome/base/trace_event/
heap_profiler.h 21 #define INTERNAL_HEAP_PROFILER_UID(name_prefix) \
22 INTERNAL_HEAP_PROFILER_UID2(name_prefix, __LINE__)
  /external/v8/src/profiler/
profile-generator-inl.h 14 const char* name_prefix, const char* resource_name,
19 name_prefix_(name_prefix),
  /external/tensorflow/tensorflow/contrib/quantize/python/
quantize.py 284 name_prefix = _AddContextToName(context, name)
297 name_prefix=name_prefix))
308 name_prefix=name_prefix))
314 name=name_prefix + '/activate_quant')
319 name=name_prefix + '/delayed_quant')
quant_ops.py 56 name_prefix='LastValueQuant',
76 name_prefix: name_prefix for created nodes.
87 None, default_name=name_prefix, values=[inputs], reuse=reuse):
93 ' scope: %s' % (input_shape, name_prefix))
168 name_prefix='MovingAvgQuantize',
189 name_prefix: name_prefix for created nodes.
200 None, default_name=name_prefix, values=[inputs], reuse=reuse):
206 ' scope: %s' % (input_shape, name_prefix))
    [all...]
  /external/perf_data_converter/src/quipper/compat/non_cros/detail/
thread.h 15 explicit Thread(const string& name_prefix) {}

Completed in 573 milliseconds

1 2 3