Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for kSize2 (0.08 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

            llvm::to_vector<num_dims>(input_type.getShape()));
        SmallVector<int64_t, num_dims> ksize, strides;
        GetI64ArrayAttrValues(op.getKsize(), &ksize);
        GetI64ArrayAttrValues(op.getStrides(), &strides);
    
        Operation *result_op = AvgPoolDivideByCount<OpTy, num_dims>(
            reduce.getResult(0), input_shape, ksize, strides, op, init, rewriter);
    
        // Convert back if we enlarged the element type's bitwidth.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (1)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      let description = [{
    Each entry in `output` is the mean of the corresponding size `ksize`
    window in `value`.
      }];
    
      let arguments = (ins
        Arg<TF_FloatTensor, [{4-D with shape `[batch, height, width, channels]`.}]>:$value,
    
        ConfinedAttr<I64ArrayAttr, [ArrayMinCount<4>]>:$ksize,
        ConfinedAttr<I64ArrayAttr, [ArrayMinCount<4>]>:$strides,
        TF_AnyStrAttrOf<["SAME", "VALID"]>:$padding,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top