1#include <ATen/Tensor.h>
2
3namespace custom {
4namespace native {
5at::Tensor& add_3_out(const at::Tensor& a, const at::Tensor& b, const at::Tensor& c, at::Tensor& out) {
6 out = a.add(b).add(c);
7 return out;
8}
9}
10}
11