Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TCOpResIsShapedTypePred (0.2 sec)

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

    def TF_Involution : NativeOpTrait<"TF::IsInvolution">;
    
    // Variant of broadcastable trait that considers TF's subtype behavior.
    class TF_OpIsBroadcastableToRes<int opId, int resId> : And<[
        TCOpResIsShapedTypePred<opId, resId>,
        CPred<"mlir::tf_type::BroadcastCompatible("
                  "$_op.getOperand(" # opId # ").getType(), "
                  "$_op.getResult(" # resId # ").getType())">]>;
    
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 30.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        "whose value is " # value>;
    
    // This is a quantization-aware version of TCresVTEtIsSameAsOp
    class TFL_TCresVTEtIsSameAsOp<int i, int j> : And<[
      TCOpResIsShapedTypePred<i, j>,
      Or<[
        TCresVTEtIsSameAsOpBase<i, j>,
        TFL_TFTypesWithSameBits<i, j, 8>,
        And<[
          SubstLeaves<"$_self", "getElementTypeOrSelf($_op.getOperand(" # j # "))",
    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