Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for PredOpTrait (0.28 sec)

  1. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        Pure,
        QuantizableResult,
        PredOpTrait<"sparse_values and dense must have same element type",
          TFL_TCresVTEtIsSameAsOp<0, 2>>,
        PredOpTrait<"default_value and dense must have same element type",
          TFL_TCresVTEtIsSameAsOp<0, 3>>,
        TFL_OperandHasRankAtMost<0, 2>,
        TFL_OperandHasRankAtMost<1, 1>,
        TFL_OperandHasRankAtMost<2, 1>,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_executor_ops.td

      let hasCustomAssemblyFormat = 0;
    }
    
    def TfExecutor_SwitchOp : TfExecutor_Op<"Switch",
        [ControlOperandsAfterAllData, HasParent<"GraphOp">,
         PredOpTrait<"data operand must be broadcastable to true result",
                     TF_OpIsBroadcastableToRes<0, 0>>,
         PredOpTrait<"data operand must be broadcastable to false result",
                     TF_OpIsBroadcastableToRes<0, 1>>]>{
      let summary = [{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 23 19:35:12 UTC 2023
    - 22K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_op_base.td

    class TF_OperandHasRank<int n, int m> :
      PredOpTrait<"operand " # n # " is " # m # "-D",
        Or<[TF_OperandIsUnrankedPred<n>,
          CPred<"$_op.getOperand(" # n #
          ").getType().cast<ShapedType>().getRank() == " # m>]>>;
    
    // Returns true if the n-th result has unknown rank or has rank m.
    class TF_ResultHasRank<int n, int m> :
      PredOpTrait<"result " # n # " is " # m # "-D",
        Or<[TF_ResultIsUnrankedPred<n>,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 30.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      TF_DerivedResultTypeAttr out_type = TF_DerivedResultTypeAttr<0>;
    
      let hasVerifier = 1;
    
      let hasFolder = 1;
    }
    
    def TF_SliceOp : TF_Op<"Slice", [PredOpTrait<"input and output must have same element type", TCresVTEtIsSameAsOp<0, 0>>, Pure]> {
      let summary = "Return a slice from 'input'.";
    
      let description = [{
    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