(_)
| 150 | |
| 151 | |
| 152 | def tfvariable(_): |
| 153 | x = variables.Variable(1000.0, name='x') |
| 154 | old_x = x.value() |
| 155 | with ops.control_dependencies([old_x]): |
| 156 | new_x = x.assign_add(42.0) |
| 157 | array_ops.stack([old_x, new_x], name='result') |
| 158 | |
| 159 | |
| 160 | def tfvariable_sequential_updates(_): |
nothing calls this directly
no test coverage detected