xref: /aosp_15_r20/external/pytorch/test/fx/named_tup.py (revision da0073e96a02ea20f0ac840b70461e3646d07c45)
1*da0073e9SAndroid Build Coastguard Workerfrom typing import NamedTuple
2*da0073e9SAndroid Build Coastguard Worker
3*da0073e9SAndroid Build Coastguard Workerimport torch
4*da0073e9SAndroid Build Coastguard Worker
5*da0073e9SAndroid Build Coastguard Worker
6*da0073e9SAndroid Build Coastguard Workerclass MyNamedTup(NamedTuple):
7*da0073e9SAndroid Build Coastguard Worker    i: torch.Tensor
8*da0073e9SAndroid Build Coastguard Worker    f: torch.Tensor
9