| 166 | /******************** DevMatrix ********************/ |
| 167 | |
| 168 | shared_ptr<BaseMatrix> CreateDevMatrix (BaseMatrix & mat) |
| 169 | { |
| 170 | if (auto res = mat.CreateDeviceMatrix()) |
| 171 | return res; |
| 172 | else |
| 173 | throw Exception(string("matrix type not supported: ") + typeid(mat).name()); |
| 174 | } |
| 175 | |
| 176 | |
| 177 | /******************** DevSparseMatrix ********************/ |
no test coverage detected