Sets the eager mode seed.
(seed)
| 1574 | |
| 1575 | |
| 1576 | def set_global_seed(seed): |
| 1577 | """Sets the eager mode seed.""" |
| 1578 | context()._set_global_seed(seed) # pylint: disable=protected-access |
| 1579 | |
| 1580 | |
| 1581 | def global_seed(): |
nothing calls this directly
no test coverage detected