ggml_sum_rows method
sums along rows, with input shape a,b,c,d
return shape 1,b,c,d
Implementation
ffi.Pointer<ggml_tensor> ggml_sum_rows(
ffi.Pointer<ggml_context> ctx,
ffi.Pointer<ggml_tensor> a,
) {
return _ggml_sum_rows(
ctx,
a,
);
}