Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for VerifyTypeRangesAreCompatible (0.5 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_arith_ops_folder.cc

          return emitError(loc)
                 << dim_pair.index() << "-th dimension should be in the range of [-"
                 << rank << ", " << rank << ")";
      }
    
      return success();
    }
    
    LogicalResult VerifyTypeRangesAreCompatible(Operation *op,
                                                TypeRangeWithDesc range0,
                                                TypeRangeWithDesc range1) {
      if (range0.first.size() != range1.first.size()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_arith_ops_folder.h

                                              Location loc);
    
    // A type range with description (in singular form) attached to it.
    using TypeRangeWithDesc = std::pair<TypeRange, StringRef>;
    
    LogicalResult VerifyTypeRangesAreCompatible(Operation *op,
                                                TypeRangeWithDesc range0,
                                                TypeRangeWithDesc range1);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

        TypeRangeWithDesc branch_input{branch_type.getInputs(), desc};
        if (failed(VerifyTypeRangesAreCompatible(op, branch_input, input)))
          return failure();
    
        desc = branch_name(branch.index()) + " result";
        TypeRangeWithDesc branch_result{branch_type.getResults(), desc};
        if (failed(VerifyTypeRangesAreCompatible(op, branch_result, result)))
          return failure();
    
        branch_types.push_back(branch_type);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      if (!shape_invariant &&
          failed(VerifyTypeRangesAreCompatible(op, input_type, result_type)))
        return failure();
    
      // Skip the first pair as the While op operands and body function results does
      // not need to be compatible with each other.
      for (int i = 1; i < kNumRegionTypeLists; ++i)
        if (failed(VerifyTypeRangesAreCompatible(op, input_type, region_types[i])))
          return failure();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
Back to top