| 23 | # pyre-fixme[13]: Pyre can't detect attribute initialization through the |
| 24 | # super().__new__ call |
| 25 | class OpSpec(namedtuple("OpSpec", "type input output arg")): |
| 26 | |
| 27 | def __new__(cls, op_type, op_input, op_output, op_arg=None): |
| 28 | return super(OpSpec, cls).__new__(cls, op_type, op_input, |
| 29 | op_output, op_arg) |
| 30 | |
| 31 | |
| 32 | class LayersTestCase(test_util.TestCase): |
no outgoing calls
searching dependent graphs…