(self, *args, **kwargs)
| 1287 | self, *args, **kwargs) |
| 1288 | |
| 1289 | def assign_add(self, *args, **kwargs): |
| 1290 | if _enclosing_tpu_context() is None: |
| 1291 | return SyncOnReadVariable.assign_add(self, *args, **kwargs) |
| 1292 | else: |
| 1293 | return _make_raw_assign_fn( |
| 1294 | gen_resource_variable_ops.assign_add_variable_op)( |
| 1295 | self, *args, **kwargs) |
| 1296 | |
| 1297 | def assign(self, *args, **kwargs): |
| 1298 | if _enclosing_tpu_context() is None: |
nothing calls this directly
no test coverage detected