fn
sum_axis_f64
void sum_axis_f64(const double * in, double * out, int outer, int reduce_dim, int inner)Double-precision counterpart to sum_axis_f32.
Uses vDSP_sveD on the contiguous (inner == 1) path and the generic
axis_reduce template otherwise.
Math
Parameters
inconst double*Source buffer of shape
(outer, reduce_dim, inner).outdouble*Destination buffer of shape
(outer, inner).outer, reduce_dim, innerstd::size_tLayout extents; see
sum_axis_f32.