Construct and return object for dimensions' state filled with the given value * * @param[in] value The value to fill * * @return Constructed class */
| 592 | * @return Constructed class |
| 593 | */ |
| 594 | inline ITensorInfo::TensorDimsState construct_dims_state(int32_t value) |
| 595 | { |
| 596 | auto states = ITensorInfo::TensorDimsState{}; |
| 597 | std::fill(states.begin(), states.end(), value); |
| 598 | return states; |
| 599 | } |
| 600 | |
| 601 | /** Construct and return object for dimensions' state filled with the value for dynamic state |
| 602 | * |
no test coverage detected