Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for reduction_indices (0.68 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/passes/duplicate_shape_determining_constants.cc

          CompileTimeConstantOperand<TF::MaxOp, 1>,  // $reduction_indices
          // $ksize, $strides
          CompileTimeConstantOperand<TF::MaxPoolGradGradV2Op, 3, 4>,
          // $ksize, $strides
          CompileTimeConstantOperand<TF::MaxPoolGradV2Op, 2, 3>,
          CompileTimeConstantOperand<TF::MaxPoolV2Op, 1, 2>,   // $ksize, $strides
          CompileTimeConstantOperand<TF::MeanOp, 1>,           // $reduction_indices
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 05:52:39 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/legalize_patterns.td

    def LegalizeAny : Pat<
      (TF_AnyOp $input, $reduction_indices, $keep_dims),
      (TFL_ReduceAnyOp $input, (CreateTFCastToInt32Op $reduction_indices),
                       $keep_dims)>;
    
    def LegalizeAll : Pat<
      (TF_AllOp $input, $reduction_indices, $keep_dims),
      (TFL_ReduceAllOp $input, (CreateTFCastToInt32Op $reduction_indices),
                       $keep_dims)>;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.td

    //===----------------------------------------------------------------------===//
    
    // Size(x) = Prod(Shape(x), reduction_indices=0, keep_dims=false)
    def LowerSizeOp : Pat<
      (TF_SizeOp:$res $arg),
      (TF_ProdOp
        (CreateTFShapeOp
          $res,
          $arg,
          (IsI32 $res)
        ),
        /*reduction_indices=*/
        (TF_ConstOp
          (GetScalarOfType<0> $res)
        ),
        /*keep_dims=*/
        ConstBoolAttrFalse
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 24.7K bytes
    - Viewed (0)
Back to top