blob: e197308c3d59e4412f320019a8d3611d5c71f7cc [file] [log] [blame]
#include <torch/torch.h>
using namespace at;
Tensor exp_add(Tensor x, Tensor y) {
return x.exp() + y.exp();
}