(input, value, tuple_val)
| 217 | |
| 218 | |
| 219 | def incr_subtensor(input, value, tuple_val): |
| 220 | input, tensors, items = unpack_getitem(input, tuple_val) |
| 221 | op = builtin.IncrSubtensor(items) |
| 222 | return invoke_op(op, (input, value, *tensors)) |
| 223 | |
| 224 | |
| 225 | def advance_indexing(input, tuple_val): |
no test coverage detected