Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for GetUniqueNameForOp (0.18 sec)

  1. tensorflow/cc/framework/scope.cc

      const string sep =
          name_.empty() || unique_name.empty() ? "" : kScopeSeparator;
      return strings::StrCat(name_, sep, unique_name);
    }
    
    string Scope::GetUniqueNameForOp(const string& default_name) const {
      if (impl()->single_use_scope()) {
        if (impl()->op_name_.empty() || *impl()->scope_used_) {
          *impl()->status_ =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  2. tensorflow/cc/framework/scope.h

      // The following functions are for scope object consumers.
    
      /// Return a unique name, using default_name if an op name has not been
      /// specified.
      string GetUniqueNameForOp(const string& default_name) const;
    
      /// Update the status on this scope.
      /// Note: The status object is shared between all children of this scope.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 09:08:33 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top