Searched defs:total_count (Results 1 - 25 of 26) sorted by relevance

12

/external/tensorflow/tensorflow/contrib/lite/examples/ios/camera/
H A DCameraExampleViewController.h41 int total_count; variable
/external/tensorflow/tensorflow/compiler/xla/service/
H A Dhlo_execution_profile.h33 // These integers form the contiguous range [0, total_count()).
61 size_t total_count() const { function in class:xla::HloProfileIndexMap
/external/tensorflow/tensorflow/contrib/distributions/python/ops/
H A Dbinomial.py34 after sampling `self.total_count` draws from this Binomial distribution, the
39 can be broadcast with `self.probs` and `self.total_count`. `value` is only legal
40 if it is less than or equal to `self.total_count` and its components are equal
71 drawing a `1` and `total_count`, the number of trials per draw from the
76 The Binomial is a distribution over the number of `1`'s in `total_count`
88 * `total_count = n`,
98 dist = Binomial(total_count=5., probs=.5)
104 dist = Binomial(total_count=5., logits=0.)
113 dist = Binomial(total_count=4., probs=p)
134 total_count,
188 def total_count(self): member in class:Binomial
[all...]
H A Dnegative_binomial.py48 * `total_count = f`,
55 total_count,
64 total_count: Non-negative floating-point `Tensor` with shape
68 the number of negative Bernoulli trials to stop at (the `total_count`
70 `total_count` is a non-integer.
94 with ops.name_scope(name, values=[total_count, logits, probs]):
98 [check_ops.assert_positive(total_count)] if validate_args else []):
99 self._total_count = array_ops.identity(total_count)
111 def total_count(self): member in class:NegativeBinomial
127 array_ops.shape(self.total_count),
[all...]
/external/tensorflow/tensorflow/core/kernels/
H A Dspacetobatch_functor_gpu.cu.cc133 int64 total_count = 1; local
136 total_count *= args.batch_tensor_shape[dim];
138 if (total_count > std::numeric_limits<int32>::max()) {
143 GetCudaLaunchConfig(static_cast<int32>(total_count), d);
H A Dbias_op_gpu.cu.cc74 const int32 total_count = batch * bias_size * image_size; local
75 if (total_count == 0) {
78 CudaLaunchConfig config = GetCudaLaunchConfig(total_count, d);
156 int32 total_count = batch * image_size; local
159 index < total_count; index += blockDim.x * group_size) {
194 const int32 total_count = batch * bias_size * image_size; local
195 if (total_count == 0) {
199 CudaLaunchConfig config = GetCudaLaunchConfig(total_count, d);
211 d.stream()>>>(total_count, output_backprop, bias_backprop,
232 total_count, output_backpro
[all...]
H A Ddepthtospace_op_gpu.cu.cc159 const int total_count = local
161 CudaLaunchConfig config = GetCudaLaunchConfig(total_count, d);
190 const int total_count = batch_size * output_depth_by_input_area; local
191 CudaLaunchConfig config = GetCudaLaunchConfig(total_count, d);
196 total_count, input.data(), input_width, output_width,
202 total_count, input.data(), input_width, output_width,
208 total_count, input.data(), input_width, output_width,
215 const int total_count = batch_size * input_depth_by_input_area; local
216 auto config = GetCudaLaunchConfig(total_count, d);
H A Ddilation_ops_gpu.cu.cc196 const int total_count = batch * output_rows * output_cols * depth; local
197 CudaLaunchConfig config = GetCudaLaunchConfig(total_count, d);
227 int total_count; local
231 total_count = batch * input_rows * input_cols * depth;
232 config = GetCudaLaunchConfig(total_count, d);
234 total_count, in_backprop.data());
237 total_count = batch * output_rows * output_cols * depth;
238 config = GetCudaLaunchConfig(total_count, d);
267 int total_count; local
271 total_count
[all...]
H A Dresize_bilinear_op_gpu.cu.cc163 const int total_count = batch * out_height * out_width * channels; local
164 if (total_count == 0) return;
166 CudaLaunchConfig config = GetCudaLaunchConfig(total_count, d);
190 int total_count; local
194 total_count = batch * original_height * original_width * channels;
195 if (total_count == 0) return;
196 config = GetCudaLaunchConfig(total_count, d);
201 total_count = batch * resized_height * resized_width * channels;
202 config = GetCudaLaunchConfig(total_count, d);
H A Dspacetodepth_op_gpu.cu.cc155 const int total_count = local
157 CudaLaunchConfig config = GetCudaLaunchConfig(total_count, d);
186 const int total_count = batch_size * input_depth_by_output_area; local
187 CudaLaunchConfig config = GetCudaLaunchConfig(total_count, d);
192 total_count, input.data(), output_width, input_width,
198 total_count, input.data(), output_width, input_width,
204 total_count, input.data(), output_width, input_width,
211 const int total_count = batch_size * output_depth_by_output_area; local
212 CudaLaunchConfig config = GetCudaLaunchConfig(total_count, d);
H A Dcrop_and_resize_op_gpu.cu.cc338 const int total_count = num_boxes * crop_height * crop_width * depth; local
341 if (total_count > 0) {
342 CudaLaunchConfig config = GetCudaLaunchConfig(total_count, d);
369 int total_count; local
373 total_count = batch * image_height * image_width * depth;
374 if (total_count > 0) {
375 config = GetCudaLaunchConfig(total_count, d);
381 total_count = num_boxes * crop_height * crop_width * depth;
382 if (total_count > 0) {
383 config = GetCudaLaunchConfig(total_count,
411 int total_count; local
[all...]
/external/tensorflow/tensorflow/python/ops/distributions/
H A Ddirichlet_multinomial.py41 sampling `self.total_count` draws from this Dirichlet-Multinomial distribution,
49 `tf.reduce_sum(value, -1) = self.total_count`. Its shape must be broadcastable
50 with `self.concentration` and `self.total_count`."""
58 length-`K` `concentration` vectors (`K > 1`) and a `total_count` number of
61 `tf.reduce_sum(counts, -1) = total_count`. The Dirichlet-Multinomial is
79 * `total_count = N`, `N` a positive integer,
95 `counts = [n_0,...,n_{K-1}] ~ Multinomial(total_count, probs)`
99 `concentration`, `total_count` and `counts` are broadcast to the same shape.
167 total_count,
175 total_count
225 def total_count(self): member in class:DirichletMultinomial
[all...]
H A Dmultinomial.py41 ,n_{k-1}]`, `P[value]` is the probability that after sampling `self.total_count`
50 `tf.reduce_sum(value, -1) = self.total_count`. Its shape must be broadcastable
51 with `self.probs` and `self.total_count`."""
60 `tf.reduce_sum(probs, -1) = 1`, and a `total_count` number of trials, i.e.,
63 `tf.reduce_sum(counts, -1) = total_count`. The Multinomial is identically the
80 * `total_count = N`, `N` a positive integer,
112 dist = Multinomial(total_count=4., logits=logits)
119 dist = Multinomial(total_count=4., probs=p)
142 dist = Multinomial(total_count=[4., 5], probs=p)
152 total_count,
211 def total_count(self): member in class:Multinomial
[all...]
/external/libchrome/base/metrics/
H A Dsparse_histogram.cc231 Count total_count = snapshot->TotalCount(); local
232 double scaled_total_count = total_count / 100.0;
234 WriteAsciiHeader(total_count, output);
279 void SparseHistogram::WriteAsciiHeader(const Count total_count, argument
284 total_count);
/external/v8/src/
H A Dcounters.cc254 uint64_t total_count) {
260 count_percent_ = 100.0 * count_ / total_count;
253 SetTotal(base::TimeDelta total_time, uint64_t total_count) argument
/external/tinyalsa/
H A Dmixer.c378 size_t total_count; local
383 total_count = ctl->info->count;
388 total_count += TLV_HEADER_SIZE;
391 if (count > total_count)
494 size_t total_count; local
499 total_count = ctl->info->count;
504 total_count += TLV_HEADER_SIZE;
507 if (count > total_count)
/external/freetype/src/base/
H A Dftdbgmem.c858 FT_Long total_count = ft_strtol( p, NULL, 10 ); local
861 if ( total_count > 0 )
864 table->alloc_count_max = total_count;
/external/libmojo/mojo/public/cpp/bindings/tests/
H A Dassociated_interface_unittest.cc326 NotificationCounter(size_t total_count, const base::Closure& notify_finish) argument
327 : total_count_(total_count),
/external/mesa3d/src/gallium/drivers/ilo/shader/
H A Dilo_shader_internal.h164 int total_count; member in struct:ilo_shader::__anon16239
/external/vulkan-validation-layers/loader/
H A Dextension_manual.c939 uint32_t total_count = 0; local
959 res = inst->disp->layer_inst_disp.EnumeratePhysicalDeviceGroupsKHX(instance, &total_count, NULL);
971 inst, total_count * sizeof(VkPhysicalDeviceGroupPropertiesKHX *), VK_SYSTEM_ALLOCATION_SCOPE_INSTANCE);
976 total_count);
980 memset(new_phys_dev_groups, 0, total_count * sizeof(VkPhysicalDeviceGroupPropertiesKHX *));
984 local_phys_dev_groups = loader_stack_alloc(sizeof(VkPhysicalDeviceGroupPropertiesKHX) * total_count);
989 total_count);
994 memset(local_phys_dev_groups, 0, sizeof(VkPhysicalDeviceGroupPropertiesKHX) * total_count);
995 for (uint32_t group = 0; group < total_count; group++) {
1002 res = inst->disp->layer_inst_disp.EnumeratePhysicalDeviceGroupsKHX(instance, &total_count, local_phys_dev_group
1120 uint32_t total_count = 0; local
[all...]
/external/libchrome/base/process/
H A Dprocess_metrics_linux.cc305 int total_count = 0; local
309 ++total_count;
312 return total_count;
/external/mesa3d/src/intel/vulkan/
H A Danv_cmd_buffer.c371 const uint32_t total_count = firstViewport + viewportCount; local
372 if (cmd_buffer->state.dynamic.viewport.count < total_count)
373 cmd_buffer->state.dynamic.viewport.count = total_count;
389 const uint32_t total_count = firstScissor + scissorCount; local
390 if (cmd_buffer->state.dynamic.scissor.count < total_count)
391 cmd_buffer->state.dynamic.scissor.count = total_count;
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_allocator.h559 uptr total_count = (region->mapped_user - beg_idx - size) local
561 region->allocated_meta += total_count * kMetadataSize;
/external/e2fsprogs/misc/
H A De4defrag.c176 static unsigned int total_count; variable
345 total_count++;
539 total_count, file, extents, extents);
552 total_count, file, extents, extents);
1056 if (total_count == 1 && regular_count == 1)
1059 printf("[%u/%u]", defraged_file_count, total_count);
1164 if (total_count == 1 && regular_count == 1) {
1212 defraged_file_count, total_count, file);
1286 defraged_file_count, total_count, file, min(percent, 100));
1422 printf("[%u/%u]", defraged_file_count, total_count);
[all...]
/external/mesa3d/src/amd/vulkan/
H A Dradv_cmd_buffer.c1692 const uint32_t total_count = firstViewport + viewportCount; local
1693 if (cmd_buffer->state.dynamic.viewport.count < total_count)
1694 cmd_buffer->state.dynamic.viewport.count = total_count;
1710 const uint32_t total_count = firstScissor + scissorCount; local
1711 if (cmd_buffer->state.dynamic.scissor.count < total_count)
1712 cmd_buffer->state.dynamic.scissor.count = total_count;

Completed in 662 milliseconds

12