![]() |
Class OneDeviceStrategy
A distribution strategy for running on a single device.
Inherits From: Strategy
Using this strategy will place any variables created in its scope on the
specified device. Input distributed through this strategy will be
prefetched to the specified device. Moreover, any functions called via
strategy.experimental_run_v2
will also be placed on the specified device
as well.
Typical usage of this strategy could be testing your code with the tf.distribute.Strategy API before switching to other strategies which actually distribute to multiple devices/machines.
For example:
strategy = tf.distribute.OneDeviceStrategy(device="/gpu:0")
with strategy.scope():
v = tf.Variable(1.0)
print(v.device) # /job:localhost/replica:0/task:0/device:GPU:0
def step_fn(x):
return x * 2
result = 0
for i in range(10):
result += strategy.experimental_run_v2(step_fn, args=(i,))
print(result) # 90
__init__
__init__(device)
Creates a OneDeviceStrategy
.
Args:
device
: Device string identifier for the device on which the variables should be placed. See class docs for more details on how the device is used. Examples: "/cpu:0", "/gpu:0", "/device:CPU:0", "/device:GPU:0"
Properties
extended
tf.distribute.StrategyExtended
with additional methods.
num_replicas_in_sync
Returns number of replicas over which gradients are aggregated.
Methods
tf.compat.v2.distribute.OneDeviceStrategy.experimental_distribute_dataset
experimental_distribute_dataset(dataset)
Distributes a tf.data.Dataset instance provided via dataset.
In this case, there is only one device, so this is only a thin wrapper around the input dataset. It will, however, prefetch the input data to the specified device. The returned distributed dataset can be iterated over similar to how regular datasets can.
NOTE: Currently, the user cannot add any more transformations to a distributed dataset.
Example:
strategy = tf.distribute.OneDeviceStrategy()
dataset = tf.data.Dataset.range(10).batch(2)
dist_dataset = strategy.experimental_distribute_dataset(dataset)
for x in dist_dataset:
print(x) # [0, 1], [2, 3],...
Args:
dataset: tf.data.Dataset
to be prefetched to device.
Returns:
A "distributed Dataset
" that the caller can iterate over.
tf.compat.v2.distribute.OneDeviceStrategy.experimental_distribute_datasets_from_function
experimental_distribute_datasets_from_function(dataset_fn)
Distributes tf.data.Dataset
instances created by calls to dataset_fn
.
dataset_fn
will be called once for each worker in the strategy. In this
case, we only have one worker and one device so dataset_fn
is called
once.
The dataset_fn
should take an tf.distribute.InputContext
instance where
information about batching and input replication can be accessed:
def dataset_fn(input_context):
batch_size = input_context.get_per_replica_batch_size(global_batch_size)
d = tf.data.Dataset.from_tensors([[1.]]).repeat().batch(batch_size)
return d.shard(
input_context.num_input_pipelines, input_context.input_pipeline_id)
inputs = strategy.experimental_distribute_datasets_from_function(dataset_fn)
for batch in inputs:
replica_results = strategy.experimental_run_v2(replica_fn, args=(batch,))
IMPORTANT: The tf.data.Dataset
returned by dataset_fn
should have a
per-replica batch size, unlike experimental_distribute_dataset
, which uses
the global batch size. This may be computed using
input_context.get_per_replica_batch_size
.
Args:
dataset_fn
: A function taking atf.distribute.InputContext
instance and returning atf.data.Dataset
.
Returns:
A "distributed Dataset
", which the caller can iterate over like regular
datasets.
tf.compat.v2.distribute.OneDeviceStrategy.experimental_local_results
experimental_local_results(value)
Returns the list of all local per-replica values contained in value
.
In OneDeviceStrategy
, the value
is always expected to be a single
value, so the result is just the value in a tuple.
Args:
value
: A value returned byexperimental_run()
,experimental_run_v2()
,extended.call_for_each_replica()
, or a variable created inscope
.
Returns:
A tuple of values contained in value
. If value
represents a single
value, this returns (value,).
tf.compat.v2.distribute.OneDeviceStrategy.experimental_make_numpy_dataset
experimental_make_numpy_dataset(numpy_input)
Makes a tf.data.Dataset
for input provided via a numpy array.
This avoids adding numpy_input
as a large constant in the graph,
and copies the data to the machine or machines that will be processing
the input.
Note that you will likely need to use experimental_distribute_dataset
with the returned dataset to further distribute it with the strategy.
Example:
numpy_input = np.ones([10], dtype=np.float32)
dataset = strategy.experimental_make_numpy_dataset(numpy_input)
dist_dataset = strategy.experimental_distribute_dataset(dataset)
Args:
numpy_input
: A nest of NumPy input arrays that will be converted into a dataset. Note that lists of Numpy arrays are stacked, as that is normaltf.data.Dataset
behavior.
Returns:
A tf.data.Dataset
representing numpy_input
.
tf.compat.v2.distribute.OneDeviceStrategy.experimental_run_v2
experimental_run_v2(
fn,
args=(),
kwargs=None
)
Run fn
on each replica, with the given arguments.
In OneDeviceStrategy
, fn
is simply called within a device scope for the
given device, with the provided arguments.
Args:
fn
: The function to run. The output must be atf.nest
ofTensor
s.args
: (Optional) Positional arguments tofn
.kwargs
: (Optional) Keyword arguments tofn
.
Returns:
Return value from running fn
.
tf.compat.v2.distribute.OneDeviceStrategy.reduce
reduce(
reduce_op,
value,
axis
)
Reduce value
across replicas.
In OneDeviceStrategy
, there is only one replica, so if axis=None, value
is simply returned. If axis is specified as something other than None,
such as axis=0, value is reduced along that axis and returned.
Example:
t = tf.range(10)
result = strategy.reduce(tf.distribute.ReduceOp.SUM, t, axis=None).numpy()
# result: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
result = strategy.reduce(tf.distribute.ReduceOp.SUM, t, axis=0).numpy()
# result: 45
Args:
reduce_op
: Atf.distribute.ReduceOp
value specifying how values should be combined.value
: A "per replica" value, e.g. returned byexperimental_run_v2
to be combined into a single tensor.axis
: Specifies the dimension to reduce along within each replica's tensor. Should typically be set to the batch dimension, orNone
to only reduce across replicas (e.g. if the tensor has no batch dimension).
Returns:
A Tensor
.
tf.compat.v2.distribute.OneDeviceStrategy.scope
scope()
Returns a context manager selecting this Strategy as current.
Inside a with strategy.scope():
code block, this thread
will use a variable creator set by strategy
, and will
enter its "cross-replica context".
In OneDeviceStrategy
, all variables created inside strategy.scope()
will be on device
specified at strategy construction time.
See example in the docs for this class.
Returns:
A context manager to use for creating variables with this strategy.