Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for TF_DerivedOperandTypeAttr (0.3 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    ```}]>:$crops
      );
    
      let results = (outs
        TF_Tensor:$output
      );
    
      TF_DerivedOperandTypeAttr T = TF_DerivedOperandTypeAttr<0>;
      TF_DerivedOperandTypeAttr Tblock_shape = TF_DerivedOperandTypeAttr<1>;
      TF_DerivedOperandTypeAttr Tcrops = TF_DerivedOperandTypeAttr<2>;
    
      let hasVerifier = 1;
    }
    
    def TF_BetaincOp : TF_Op<"Betainc", [Pure]> {
      let summary = [{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/tf_quant_ops.td

        DefaultValuedOptionalAttr<I64Attr, "127">:$output_quantization_max_val
      );
    
      let results = (outs
        TensorOf<[TF_Qint32]>:$output
      );
    
      TF_DerivedOperandTypeAttr LhsT = TF_DerivedOperandTypeAttr<0>;
      TF_DerivedOperandTypeAttr RhsT = TF_DerivedOperandTypeAttr<1>;
      TF_DerivedResultTypeAttr Tout = TF_DerivedResultTypeAttr<0>;
    }
    
    def TF_CustomAggregatorOp : TF_Op<"CustomAggregator", [Pure]> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      );
    
      let results = (outs
        TensorOf<[TF_Int32, TF_Int64, TF_Uint32, TF_Uint64]>:$output
      );
    
      TF_DerivedOperandTypeAttr shape_dtype = TF_DerivedOperandTypeAttr<2>;
      TF_DerivedOperandTypeAttr dtype = TF_DerivedOperandTypeAttr<3>;
    }
    
    def TF_CloseSummaryWriterOp : TF_Op<"CloseSummaryWriter", []> {
      let summary = "Flushes and closes the summary writer.";
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_op_base.td

    // just returns the element type of its first tensor, which is only meaningful
    // when the variadic operand has at least one tensor and the tensors all have
    // the same element type.
    class TF_DerivedOperandTypeAttr<int idx> : DerivedTypeAttr<
      "return mlir::getElementTypeOrSelf(*getODSOperands(" # idx # ").begin());">;
    
    // A derived attribute that returns the element types of the tensors in the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 30.5K bytes
    - Viewed (0)
Back to top