Sets whether or not the given dimension is dynamically-sized.
| 70 | |
| 71 | // Sets whether or not the given dimension is dynamically-sized. |
| 72 | void set_dynamic_dimension(int dimension, bool is_dynamic) { |
| 73 | dynamic_dimensions_[dimension] = is_dynamic; |
| 74 | } |
| 75 | |
| 76 | absl::Span<const bool> dynamic_dimensions() const { |
| 77 | return dynamic_dimensions_; |
no outgoing calls