MCPcopy Create free account
hub / github.com/arrayfire/arrayfire / meanvar

Function meanvar

src/api/cpp/meanvar.cpp:17–24  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

15
16namespace af {
17void meanvar(array& mean, array& var, const array& in, const array& weights,
18 const af_var_bias bias, const dim_t dim) {
19 af_array mean_ = mean.get();
20 af_array var_ = var.get();
21 AF_THROW(af_meanvar(&mean_, &var_, in.get(), weights.get(), bias, dim));
22 mean.set(mean_);
23 var.set(var_);
24}
25} // namespace af

Callers

nothing calls this directly

Calls 3

af_meanvarFunction · 0.50
getMethod · 0.45
setMethod · 0.45

Tested by

no test coverage detected