Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for VerifyCompatibleShapesSameElementType (0.36 sec)

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

    // compatible, dynamic dimensions are compatible with any size, static
    // dimensions must be equal to be compatible) and identical element types.
    bool VerifyCompatibleShapesSameElementType(TypeRange lhs, TypeRange rhs) {
      if (lhs.size() != rhs.size() || lhs.size() != 1) return false;
      if (failed(mlir::verifyCompatibleShape(lhs[0], rhs[0]))) return false;
      auto lhsShaped = lhs[0].cast<ShapedType>();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
Back to top