NOLINTNEXTLINE(performance-unnecessary-value-param)
| 42 | |
| 43 | // NOLINTNEXTLINE(performance-unnecessary-value-param) |
| 44 | array sparseConvertTo(const array in, const af::storage stype) { |
| 45 | af_array out = 0; |
| 46 | AF_THROW(af_sparse_convert_to(&out, in.get(), stype)); |
| 47 | return array(out); |
| 48 | } |
| 49 | |
| 50 | // NOLINTNEXTLINE(performance-unnecessary-value-param) |
| 51 | array dense(const array sparse) { |
no test coverage detected