| 73 | |
| 74 | template <class GEngine, class GLayout> |
| 75 | CUTE_HOST_DEVICE |
| 76 | void |
| 77 | prefetch(Tensor<GEngine, GLayout> const& src) |
| 78 | { |
| 79 | return cooperative_prefetch<1>(0, src); |
| 80 | } |
| 81 | |
| 82 | // Prefetch with copy atom |
| 83 | namespace detail { |
no test coverage detected