aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/cc/framework/scope.h
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/cc/framework/scope.h')
-rw-r--r--tensorflow/cc/framework/scope.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/tensorflow/cc/framework/scope.h b/tensorflow/cc/framework/scope.h
index 30c32bd44b..e307d8989b 100644
--- a/tensorflow/cc/framework/scope.h
+++ b/tensorflow/cc/framework/scope.h
@@ -133,6 +133,10 @@ class Scope {
/// the device field set to 'device'.
Scope WithDevice(const string& device) const;
+ /// Returns a new scope. All ops created within the returned scope will have
+ /// their assigned device set to `assigned_device`.
+ Scope WithAssignedDevice(const string& assigned_device) const;
+
/// Return a new scope. All ops created within the returned scope will be
/// co-located on the device where op is placed.
/// NOTE: This function is intended to be use internal libraries only for