View source on GitHub |
Enable or disable soft device placement.
tf.config.set_soft_device_placement(
enabled
)
If enabled, an op will be placed on CPU if any of the following are true
- there's no GPU implementation for the OP
- no GPU devices are known or registered
- need to co-locate with reftype input(s) which are from CPU
Args | |
---|---|
enabled
|
A boolean indicating whether to enable soft placement. |