MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / assign_sub

Method assign_sub

tensorflow/python/distribute/values.py:1126–1129  ·  view source on GitHub ↗
(self, *args, **kwargs)

Source from the content-addressed store, hash-verified

1124 return MirroredVariable._assign_func(self, *args, **kwargs)
1125
1126 def assign_sub(self, *args, **kwargs):
1127 assign_sub_fn = _make_raw_assign_fn(
1128 gen_resource_variable_ops.assign_sub_variable_op)
1129 return self._assign_func(f=assign_sub_fn, *args, **kwargs)
1130
1131 def assign_add(self, *args, **kwargs):
1132 assign_add_fn = _make_raw_assign_fn(

Callers

nothing calls this directly

Calls 2

_assign_funcMethod · 0.95
_make_raw_assign_fnFunction · 0.85

Tested by

no test coverage detected