Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for HasStringResult (0.1 sec)

  1. tensorflow/compiler/mlir/tf2xla/internal/passes/mark_ops_for_outside_compilation.cc

      for (auto operand : op.getOperands()) {
        auto operand_type = getElementTypeOrSelf(operand);
        if (IsStringType(operand_type)) return true;
      }
      return false;
    }
    
    bool HasStringResult(Operation& op) {
      for (auto result : op.getResults()) {
        auto result_type = getElementTypeOrSelf(result);
        if (IsStringType(result_type)) return true;
      }
      return false;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.4K bytes
    - Viewed (0)
Back to top