| 873 | |
| 874 | template <typename T, El::Device Device> |
| 875 | void TranslateBetweenGridsVCAsync( |
| 876 | const El::DistMatrix<T, El::STAR, El::VC, El::ELEMENT, Device>& A, |
| 877 | El::DistMatrix<T, El::STAR, El::VC, El::ELEMENT, Device>& B, |
| 878 | El::DistMatrix<T, El::STAR, El::VC, El::ELEMENT, Device>& subset, |
| 879 | std::vector<ReqT>& Requests) |
| 880 | { |
| 881 | LBANN_ERROR("TranslateBetweenGridsVCAsync function is not implemented for " |
| 882 | "this configuration"); |
| 883 | } |
| 884 | |
| 885 | template <> |
| 886 | void TranslateBetweenGridsVCAsync( |
no test coverage detected