| 136 | INSTANTIATE_DET(double, af_cdouble) |
| 137 | |
| 138 | double norm(const array &in, const normType type, const double p, |
| 139 | const double q) { |
| 140 | double out; |
| 141 | AF_THROW(af_norm(&out, in.get(), type, p, q)); |
| 142 | return out; |
| 143 | } |
| 144 | |
| 145 | bool isLAPACKAvailable() { |
| 146 | bool out = false; |