Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
#include <torch/extension.h>
using namespace at;
Tensor exp_add(Tensor x, Tensor y) {
return x.exp() + y.exp();
}