Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for BaseScopedDiagnosticHandler (0.3 sec)

  1. tensorflow/compiler/mlir/tensorflow/utils/error_util.cc

      setHandler([this](Diagnostic& diag) { return this->handler(&diag); });
    }
    
    Status StatusScopedDiagnosticHandler::ConsumeStatus() {
      return BaseScopedDiagnosticHandler::ConsumeStatus();
    }
    
    Status StatusScopedDiagnosticHandler::Combine(Status status) {
      absl::Status absl_s = BaseScopedDiagnosticHandler::Combine(status);
    
      return absl_s;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/utils/error_util.h

    // todo: [b/253331656]. Note ConsumeStatus() and Combine() are wrappers
    // of what is inherited from the BaseScopedDiagnosticHandler  to
    // support cases where tensorflow::Status is still being used (base class uses
    // absl::Status)
    class StatusScopedDiagnosticHandler : public BaseScopedDiagnosticHandler {
     public:
      // Constructs a diagnostic handler in a context. If propagate is true, then
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 2.9K bytes
    - Viewed (0)
Back to top