W3cubDocs

/TensorFlow Python

tf.graph_util.must_run_on_cpu(node, pin_variables_on_cpu=False)

tf.graph_util.must_run_on_cpu(node, pin_variables_on_cpu=False)

Returns True if the given node_def must run on CPU, otherwise False.

Args:

  • node: The node to be assigned to a device. Could be either an ops.Operation or NodeDef.
  • pin_variables_on_cpu: If True, this function will return False if node_def represents a variable-related op.

Returns:

True if the given node must run on CPU, otherwise False.

Defined in tensorflow/python/framework/graph_util_impl.py.

© 2017 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 3.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/api_docs/python/tf/graph_util/must_run_on_cpu