(input, tuple_val)
| 205 | |
| 206 | |
| 207 | def subtensor(input, tuple_val): |
| 208 | input, tensors, items = unpack_getitem(input, tuple_val) |
| 209 | op = builtin.Subtensor(items) |
| 210 | return invoke_op(op, (input, *tensors)) |
| 211 | |
| 212 | |
| 213 | def set_subtensor(input, value, tuple_val): |
no test coverage detected