Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. tensorflow/cc/framework/scope.cc

    Scope& Scope::operator=(const Scope& other) {
      // We can't copy Impls because of the const members, use copy ctor instead
      impl_.reset(new Impl(*other.impl_));
      return *this;
    }
    
    namespace {
    const char kScopeSeparator[] = "/";
    const char kSuffixSeparator[] = "_";
    }  // namespace
    
    Scope::Impl::Impl(Graph* graph, Status* status, NameMap* name_map,
                      ShapeRefiner* refiner, bool disable_shape_inference)
    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