'max_array_size' stores the expected size of the TensorArray or Stack. We need to store this since sometimes TensorArrays must be initialized lazily since we do not know the element shape at construction time. Used by both TensorArrays and Stacks.
| 144 | // lazily since we do not know the element shape at construction time. |
| 145 | // Used by both TensorArrays and Stacks. |
| 146 | int64 max_array_size() const { return max_array_size_; } |
| 147 | void set_max_array_size(int64 size) { max_array_size_ = size; } |
| 148 | |
| 149 | bool tensor_array_multiple_writes_aggregate() const { |
no outgoing calls
no test coverage detected