| 70 | |
| 71 | template<> |
| 72 | AFAPI af_cdouble var(const array& in, const af_var_bias bias) { |
| 73 | double real, imag; |
| 74 | AF_THROW(af_var_all_v2(&real, &imag, in.get(), bias)); |
| 75 | return {real, imag}; |
| 76 | } |
| 77 | |
| 78 | template<> |
| 79 | AFAPI af_cfloat var(const array& in, const bool isbiased) { |
nothing calls this directly
no test coverage detected