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