| 230 | } |
| 231 | |
| 232 | void TensorShape::SetDimensionSize(unsigned int i, unsigned int dimensionSize) |
| 233 | { |
| 234 | CheckScalar(); |
| 235 | CheckDimensionIndex(i); |
| 236 | |
| 237 | m_Dimensions[i] = dimensionSize; |
| 238 | m_DimensionsSpecificity[i] = true; |
| 239 | } |
| 240 | |
| 241 | bool TensorShape::AreAllDimensionsSpecified() const |
| 242 | { |
no outgoing calls
no test coverage detected