Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for CHECK_NOTNULL (0.14 sec)

  1. tensorflow/cc/client/client_session.cc

      Session* new_session;
      Status status = NewSession(session_options, &new_session);
      TF_CHECK_OK(status) << status;
      impl_.reset(new Impl(new_session, scope.graph_as_shared_ptr()));
      CHECK_NOTNULL(impl()->session_.get());
    }
    
    // Define destructor here so we can forward declare `Impl` in client_session.h.
    // If we define a dtor in the header file or use the default dtor,
    // unique_ptr<Impl> needs the complete type.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 28 09:04:10 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top