Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ArraysAreCastCompatible (0.47 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_types.h

    namespace TF {
    
    // This all moved under tensorflow/core/ir/types and these using declaration are
    // to help with the transition.
    
    using ::mlir::tf_type::AreCastCompatible;          // NOLINT
    using ::mlir::tf_type::ArraysAreCastCompatible;    // NOLINT
    using ::mlir::tf_type::BroadcastCompatible;        // NOLINT
    using ::mlir::tf_type::DropRefType;                // NOLINT
    using ::mlir::tf_type::filter_resources;           // NOLINT
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 29 04:41:05 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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