Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for TF_DerivedResultTypeAttr (0.23 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/passes/tf_quant_ops.td

      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]> {
      let summary = "Gathers min and max statistics of a given tensor.";
    
      let arguments = (ins
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

        Res<TF_Tensor, [{Tensor of all values in the table. Indexed in parallel with `keys`.}]>:$values
      );
    
      TF_DerivedResultTypeAttr Tkeys = TF_DerivedResultTypeAttr<0>;
      TF_DerivedResultTypeAttr Tvalues = TF_DerivedResultTypeAttr<1>;
    }
    
    def TF_LookupTableFindOp : TF_Op<"LookupTableFind", []> {
      let summary = "Looks up keys in a table, outputs the corresponding values.";
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      let summary = "Constant tensor op";
    
      let arguments = (ins
        ElementsAttr:$value
      );
    
      let results = (outs
        TF_Tensor:$output
      );
    
      TF_DerivedResultTypeAttr dtype = TF_DerivedResultTypeAttr<0>;
    
      let builders = [
        OpBuilder<(ins "Attribute":$value)>,
        OpBuilder<(ins "Type":$type, "Attribute":$value)>,
      ];
    
      let hasFolder = 1;
    
    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 result has at least one tensor and the tensors all have
    // the same element type.
    class TF_DerivedResultTypeAttr<int idx> : DerivedTypeAttr<
      "return mlir::getElementTypeOrSelf(*getODSResults(" # 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