I currently have an operator’s aten ir and want to return both in-place and non-in-place operation parameters at the same time. How should I define the aten ir? Can it be defined in the following way?
func: test_op(Tensor a, Tensor b, Tensor c, Tensor d, Tensor(a!) e, Tensor(b!) f, *, Tensor? g=None, Tensor? h=None) → (Tensor, Tensor, Tensor(a!), Tensor(b!))
@cpuhrsch