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

  /external/webrtc/webrtc/base/
versionparsing.h 31 int num_segments);
versionparsing.cc 47 int num_segments) {
48 for (int i = 0; i < num_segments; ++i) {
  /external/tensorflow/tensorflow/compiler/tests/
segment_reduction_ops_test.py 33 def UnsortedSegmentSum(self, data, indices, num_segments):
41 math_ops.unsorted_segment_sum(d, i, num_segments),
78 num_segments = 10
79 y = self.UnsortedSegmentSum(data, indices, num_segments)
94 num_segments = 4
95 y = self.UnsortedSegmentSum(data, indices, num_segments)
110 num_segments = 8
111 y = self.UnsortedSegmentSum(data, indices, num_segments)
127 num_segments = 6
128 y = self.UnsortedSegmentSum(data, indices, num_segments)
    [all...]
  /external/tensorflow/tensorflow/compiler/tf2xla/kernels/
segment_reduction_ops.cc 32 // output = unsorted_segment_sum(data, indices, num_segments)
42 // by a single dimension with size num_segments.
49 int64 num_segments; variable
50 OP_REQUIRES_OK(ctx, ctx->ConstantInputAsIntScalar(2, &num_segments));
68 buffer_shape.InsertDim(0, num_segments);
  /external/tensorflow/tensorflow/python/kernel_tests/
segment_reduction_ops_test.py 49 def _segmentReduce(self, indices, x, op1, op2=None, num_segments=None,
54 if num_segments is None:
55 num_segments = indices[-1] + 1
56 output = [None] * num_segments
276 num_segments = 12
293 indices, np_x, np_op1, np_op2, num_segments=num_segments,
295 s = tf_op(tf_x, segment_ids=indices, num_segments=num_segments)
305 num_segments = 1
    [all...]
  /external/freetype/src/autofit/
afwarp.c 79 FT_Int num_segments )
119 for ( nn = 0; nn < num_segments; nn++ )
173 FT_Int nn, num_points, num_segments; local
200 num_segments = axis->num_segments;
208 if ( num_segments < 1 )
225 for ( nn = 1; nn < num_segments; nn++ )
348 segments, num_segments );
afhints.c 46 if ( axis->num_segments < AF_SEGMENTS_EMBEDDED )
54 else if ( axis->num_segments >= axis->max_segments )
87 segment = axis->segments + axis->num_segments++;
249 AF_Segment limit = segments + axis->num_segments;
417 AF_Segment limit = segments + axis->num_segments;
426 if ( axis->num_segments )
472 FT_Int* num_segments )
481 *num_segments = axis->num_segments;
515 if ( idx < 0 || idx >= axis->num_segments )
    [all...]
afhints.h 307 FT_Int num_segments; /* number of used segments */ member in struct:AF_AxisHintsRec_
aflatin2.c 129 limit = seg + axhints->num_segments;
751 axis->num_segments = 0;
905 AF_Segment segments_end = segments + axis->num_segments;
950 FT_UInt count = axis->num_segments;
991 AF_Segment segment_limit = segments + axis->num_segments;
1093 AF_Segment segment_limit = segments + axis->num_segments;
    [all...]
aflatin.c 200 limit = seg + axhints->num_segments;
    [all...]
afcjk.c 207 limit = seg + axhints->num_segments;
785 AF_Segment segment_limit = segments + axis->num_segments;
829 AF_Segment segment_limit = segments + axis->num_segments;
991 AF_Segment segment_limit = segments + axis->num_segments;
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/gpu/
ir_emission_utils.cc 247 int num_segments = CeilOfRatio(bit_width, 32); local
251 builder->getIntNTy(32 * num_segments)),
252 llvm::VectorType::get(builder->getInt32Ty(), num_segments));
253 for (int i = 0; i < num_segments; ++i) {
264 builder->CreateBitCast(x, builder->getIntNTy(32 * num_segments)),
  /external/tensorflow/tensorflow/core/kernels/
segment_reduction_ops.cc 368 void operator()(OpKernelContext* ctx, const Index num_segments,
385 OP_REQUIRES(ctx, FastBoundsCheck(j, num_segments),
388 " = ", j, " is out of range [0, ", num_segments, ")"));
436 const Tensor& num_segments) {
438 context, op_kernel->IsLegacyScalar(num_segments.shape()),
439 errors::InvalidArgument("num_segments should be a scalar, not shape ",
440 num_segments.shape().DebugString()));
452 const Tensor& num_segments) {
454 num_segments);
471 const Tensor& num_segments = context->input(2) variable
633 const Tensor& num_segments = context->input(3); variable
1036 const SegmentId num_segments = input.dim_size(0); variable
    [all...]
segment_reduction_ops.h 55 void operator()(OpKernelContext* ctx, const Index num_segments,
segment_reduction_ops_gpu.cu.cc 171 void operator()(OpKernelContext* ctx, const Index num_segments,
198 input_outer_dim_size, input_inner_dim_size, num_segments,
  /external/tensorflow/tensorflow/python/ops/
math_ops.py     [all...]
array_grad.py 464 num_segments = params_shape[axis]
467 num_segments)
  /external/tensorflow/tensorflow/contrib/signal/python/ops/
reconstruction_ops.py 137 num_segments=output_subframes)
  /external/webp/src/enc/
quant_enc.c 244 const int num_segments = enc->segment_hdr_.num_segments_; local
245 for (i = 0; i < num_segments; ++i) {
366 const int num_segments = (enc->segment_hdr_.num_segments_ < NUM_MB_SEGMENTS) local
371 for (s1 = 1; s1 < num_segments; ++s1) { // find similar segments
390 if (num_final_segments < num_segments) { // Remap
395 for (i = num_final_segments; i < num_segments; ++i) {
404 const int num_segments = enc->segment_hdr_.num_segments_; local
410 for (i = 0; i < num_segments; ++i) {
424 for (i = num_segments; i < NUM_MB_SEGMENTS; ++i) {
451 if (num_segments > 1) SimplifySegments(enc)
    [all...]
  /system/extras/f2fs_utils/
f2fs_sparseblock.c 317 u64 num_segments = (info->total_blocks - info->main_blkaddr local
319 u64 num_sit_blocks = (num_segments + SIT_ENTRY_PER_BLOCK - 1) / SIT_ENTRY_PER_BLOCK;
  /external/tensorflow/tensorflow/contrib/layers/python/layers/
embedding_ops.py 559 num_segments = array_ops.shape(sp_values)[0]
562 num_segments=num_segments,
    [all...]
  /external/stressapptest/src/
worker.cc 2814 int64 num_segments; local
    [all...]
  /toolchain/binutils/binutils-2.27/bfd/
elf.c 5848 unsigned int num_segments = elf_elfheader (abfd)->e_phnum; local
6233 unsigned int num_segments; local
6889 unsigned int num_segments; local
7066 unsigned int i, num_segments; local
7143 unsigned int num_segments = elf_elfheader (ibfd)->e_phnum; local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
d3dx9effect.h 187 STDMETHOD(SetNPatchMode)(THIS_ FLOAT num_segments) PURE;
  /external/tensorflow/tensorflow/go/op/
wrappers.go     [all...]

Completed in 886 milliseconds