static */
| 214 | } |
| 215 | |
| 216 | /* static */ Shape ShapeUtil::MakeShapeWithLayout( |
| 217 | PrimitiveType element_type, absl::Span<const int64> dimensions, |
| 218 | absl::Span<const int64> minor_to_major, absl::Span<const Tile> tiles, |
| 219 | int64 element_size_in_bits, int64 memory_space) { |
| 220 | return MakeShapeWithLayoutInternal(element_type, dimensions, minor_to_major, |
| 221 | tiles, element_size_in_bits, memory_space) |
| 222 | .ValueOrDie(); |
| 223 | } |
| 224 | |
| 225 | /* static */ Shape ShapeUtil::MakeShapeWithDescendingLayout( |
| 226 | PrimitiveType element_type, absl::Span<const int64> dimensions) { |
nothing calls this directly
no test coverage detected