| 29 | |
| 30 | template<> |
| 31 | AFAPI af_cfloat stdev(const array& in, const af_var_bias bias) { |
| 32 | double real, imag; |
| 33 | AF_THROW(af_stdev_all_v2(&real, &imag, in.get(), bias)); |
| 34 | return {static_cast<float>(real), static_cast<float>(imag)}; |
| 35 | } |
| 36 | |
| 37 | template<> |
| 38 | AFAPI af_cdouble stdev(const array& in, const af_var_bias bias) { |
nothing calls this directly
no test coverage detected