Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getInputType (0.11 sec)

  1. tensorflow/compiler/mlir/lite/utils/tftext_utils.cc

        return func.emitError() << "Mismatched number of inputs and outputs.";
      }
      auto values_type = GetInputType(func, 0);
      if (!values_type || !mlir::isa<StringType>(values_type.getElementType())) {
        return func.emitError() << "First input should be a string tensor";
      }
      auto row_splits_type = GetInputType(func, 1);
      if (!row_splits_type ||
          !mlir::isa<IntegerType>(row_splits_type.getElementType())) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.4K bytes
    - Viewed (0)
Back to top