List the names of the available devices. Returns: Names of the available devices, as a `list`.
()
| 1682 | |
| 1683 | @tf_export("config.experimental_list_devices") |
| 1684 | def list_devices(): |
| 1685 | """List the names of the available devices. |
| 1686 | |
| 1687 | Returns: |
| 1688 | Names of the available devices, as a `list`. |
| 1689 | """ |
| 1690 | ensure_initialized() |
| 1691 | return context().devices() |
| 1692 | |
| 1693 | |
| 1694 | @tf_export("debugging.get_log_device_placement") |
nothing calls this directly
no test coverage detected