Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ArraysAreCastCompatible (0.32 sec)

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

        // InferTypeOpInterface:
        static bool isCompatibleReturnTypes(TypeRange l, TypeRange r) {
          return ArraysAreCastCompatible(l, r);
        }
      }];
    
      let extraClassDeclaration = [{
        static bool isCompatibleReturnTypes(TypeRange inferred, TypeRange actual) {
          return ArraysAreCastCompatible(inferred, actual);
        }
      }];
    }
    
    def TF_ExtractImagePatchesOp : TF_Op<"ExtractImagePatches", [Pure]> {
    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/lite/ir/tfl_ops.td

      let extraClassDeclaration = [{
        // Returns whether the return types are compatible.
        static bool isCompatibleReturnTypes(TypeRange l, TypeRange r) {
          return TF::ArraysAreCastCompatible(l, r);
        }
      }];
    }
    
    def TFL_ConcatenationOp : TFL_Op<"concatenation",
      [
        Pure,
        TFL_SameFirstOperandAndFirstResultElementType,
        SameOperandsAndResultsScale,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      let hasCanonicalizer = 1;
    
      let extraClassDeclaration = [{
        // InferTypeOpInterface:
        static bool isCompatibleReturnTypes(TypeRange l, TypeRange r) {
          return ArraysAreCastCompatible(l, r);
        }
      }];
    }
    
    def TF_BesselI0eOp : TF_Op<"BesselI0e", [Pure, TF_SameOperandsAndResultTypeResolveRef]> {
      let summary = "Computes the Bessel i0e function of `x` element-wise.";
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
Back to top