tensorflow:: ops:: Barrier:: Attrs
  #include <data_flow_ops.h>
  Optional attribute setters for Barrier.
Summary
        Public attributes | 
    |
|---|---|
        capacity_ = -1
       | 
      
        int64
         | 
    
        container_ = ""
       | 
      
        StringPiece
         | 
    
        shapes_ = {}
       | 
      
        gtl::ArraySlice< PartialTensorShape >
         | 
    
        shared_name_ = ""
       | 
      
        StringPiece
         | 
    
        Public functions | 
    |
|---|---|
        Capacity(int64 x)
       | 
      
        TF_MUST_USE_RESULT Attrs
        The capacity of the barrier.  
       | 
    
        Container(StringPiece x)
       | 
      
        TF_MUST_USE_RESULT Attrs
        If non-empty, this barrier is placed in the given container.  
       | 
    
        Shapes(const gtl::ArraySlice< PartialTensorShape > & x)
       | 
      
        TF_MUST_USE_RESULT Attrs
        The shape of each component in a value.  
       | 
    
        SharedName(StringPiece x)
       | 
      
        TF_MUST_USE_RESULT Attrs
        If non-empty, this barrier will be shared under the given name across multiple sessions.  
       | 
    
Public attributes
capacity_
int64 tensorflow::ops::Barrier::Attrs::capacity_ = -1
container_
StringPiece tensorflow::ops::Barrier::Attrs::container_ = ""
shapes_
gtl::ArraySlice< PartialTensorShape > tensorflow::ops::Barrier::Attrs::shapes_ = {}shared_name_
StringPiece tensorflow::ops::Barrier::Attrs::shared_name_ = ""
Public functions
Capacity
TF_MUST_USE_RESULT Attrs tensorflow::ops::Barrier::Attrs::Capacity( int64 x )
The capacity of the barrier.
The default capacity is MAX_INT32, which is the largest capacity of the underlying queue.
Defaults to -1
Container
TF_MUST_USE_RESULT Attrs tensorflow::ops::Barrier::Attrs::Container( StringPiece x )
If non-empty, this barrier is placed in the given container.
Otherwise, a default container is used.
Defaults to ""
Shapes
TF_MUST_USE_RESULT Attrs tensorflow::ops::Barrier::Attrs::Shapes( const gtl::ArraySlice< PartialTensorShape > & x )
The shape of each component in a value.
Each shape must be 1 in the first dimension. The length of this attr must be the same as the length of component_types.
Defaults to []
SharedName
TF_MUST_USE_RESULT Attrs tensorflow::ops::Barrier::Attrs::SharedName( StringPiece x )
If non-empty, this barrier will be shared under the given name across multiple sessions.
Defaults to ""