Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for single_use_scope (0.19 sec)

  1. tensorflow/cc/framework/scope.cc

        builder->XlaCluster(impl()->xla_cluster_);
      }
    }
    
    string Scope::Impl::GetUniqueName(const string& prefix,
                                      bool check_single_use) const {
      if (check_single_use && single_use_scope()) {
        if (*scope_used_) {
          *status_ =
              errors::AlreadyExists(prefix, " already exists in the current scope");
          return "";
        }
        *scope_used_ = true;
        return prefix;
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 20.9K bytes
    - Viewed (0)
Back to top