Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TFL_OperandDimEquals (0.14 sec)

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

      CPred<"$_op.getOperand(" # n # ").getType().cast<ShapedType>().getRank() > "
      # dim>]>;
    
    // Returns true if the n-th operand is ranked and has a dimension length = size
    // at the rank dim.
    class TFL_OperandDimEquals<int n, int dim, int size> : And<[
      TFL_OperandIsRankedAndHasDimPred<n, dim>,
      CPred<"$_op.getOperand(" # n # ").getType().cast<ShapedType>()"
          ".getShape()[" # dim # " ] == " # size>]>;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
Back to top