| 332 | template <class Int, |
| 333 | __CUTE_REQUIRES(is_integral<Int>::value)> |
| 334 | CUTE_HOST_DEVICE constexpr |
| 335 | auto |
| 336 | get_flat_coord(Int const& linear_idx) const { |
| 337 | return layout().get_flat_coord(linear_idx); |
| 338 | } |
| 339 | |
| 340 | cute::tuple<layout_type, engine_type> rep_; |
| 341 | }; |
no test coverage detected