| 335 | } |
| 336 | |
| 337 | af_err af_var_all(double* realVal, double* imagVal, const af_array in, |
| 338 | const bool isbiased) { |
| 339 | const af_var_bias bias = |
| 340 | (isbiased ? AF_VARIANCE_SAMPLE : AF_VARIANCE_POPULATION); |
| 341 | return af_var_all_v2(realVal, imagVal, in, bias); |
| 342 | } |
| 343 | |
| 344 | af_err af_var_all_v2(double* realVal, double* imagVal, const af_array in, |
| 345 | const af_var_bias bias) { |
nothing calls this directly
no test coverage detected