Copy
GradScaler
- class tensorplay.amp.grad_scaler.GradScaler(device: str = 'cuda', init_scale: float = 65536.0, growth_factor: float = 2.0, backoff_factor: float = 0.5, growth_interval: int = 2000, enabled: bool = True)[source]
An instance
scalerofGradScaler.Helps perform the steps of gradient scaling conveniently.
scaler.scale(loss)multiplies a given loss byscaler’s current scale factor.scaler.step(optimizer)safely unscales gradients and callsoptimizer.step().scaler.update()updatesscaler’s scale factor.
Example:
# Creates a GradScaler once at the beginning of training. scaler = GradScaler() for epoch in epochs: for input, target in data: optimizer.zero_grad() output = model(input) loss = loss_fn(output, target) # Scales loss. Calls backward() on scaled loss to create scaled gradients. scaler.scale(loss).backward() # scaler.step() first unscales gradients of the optimizer's params. # If gradients don't contain infs/NaNs, optimizer.step() is then called, # otherwise, optimizer.step() is skipped. scaler.step(optimizer) # Updates the scale for next iteration. scaler.update()
scalerdynamically estimates the scale factor each iteration. To minimize gradient underflow, a large scale factor should be used. However,float16values can “overflow” (become inf or NaN) if the scale factor is too large. Therefore, the optimal scale factor is the largest factor that can be used without incurring inf or NaN gradient values.scalerapproximates the optimal scale factor over time by checking the gradients for infs and NaNs during everyscaler.step(optimizer)(or optional separatescaler.unscale_(optimizer), seeunscale_()).If infs/NaNs are found,
scaler.step(optimizer)skips the underlyingoptimizer.step()(so the params themselves remain uncorrupted) andupdate()multiplies the scale bybackoff_factor.If no infs/NaNs are found,
scaler.step(optimizer)runs the underlyingoptimizer.step()as usual. Ifgrowth_intervalunskipped iterations occur consecutively,update()multiplies the scale bygrowth_factor.
- Parameters:
device (str, optional, default="cuda") – Device type to use. Possible values are: ‘cuda’ and ‘cpu’. The type is the same as the type attribute of a
tensorplay.device. Thus, you may obtain the device type of a tensor using Tensor.device.type.init_scale (float, optional, default=2.**16) – Initial scale factor.
growth_factor (float, optional, default=2.0) – Factor by which the scale is multiplied during
update()if no inf/NaN gradients occur forgrowth_intervalconsecutive iterations.backoff_factor (float, optional, default=0.5) – Factor by which the scale is multiplied during
update()if inf/NaN gradients occur in an iteration.growth_interval (int, optional, default=2000) – Number of consecutive iterations without inf/NaN gradients that must occur for the scale to be multiplied by
growth_factor.enabled (bool, optional) – If
False, disables gradient scaling.step()simply invokes the underlyingoptimizer.step(), and other methods become no-ops. Default:True
- get_scale() float[source]
Return a Python float containing the current scale, or 1.0 if scaling is disabled.
- load_state_dict(state_dict: dict[str, Any]) None[source]
Load the scaler state.
If this instance is disabled,
load_state_dict()is a no-op.- Parameters:
state_dict (dict) – scaler state. Should be an object returned from a call to
state_dict().
- scale(outputs: TensorBase) TensorBase[source]
- scale(outputs: list[TensorBase]) list[TensorBase]
- scale(outputs: tuple[TensorBase, ...]) tuple[TensorBase, ...]
- scale(outputs: Iterable[tensorplay.Tensor]) Iterable[tensorplay.Tensor]
Multiplies (‘scales’) a tensor or list of tensors by the scale factor.
Returns scaled outputs. If this instance of
GradScaleris not enabled, outputs are returned unmodified.- Parameters:
outputs (Tensor or iterable of Tensors) – Outputs to scale.
- set_backoff_factor(new_factor: float) None[source]
Set a new scale backoff factor.
- Parameters:
new_scale (float) – Value to use as the new scale backoff factor.
- set_growth_factor(new_factor: float) None[source]
Set a new scale growth factor.
- Parameters:
new_scale (float) – Value to use as the new scale growth factor.
- set_growth_interval(new_interval: int) None[source]
Set a new growth interval.
- Parameters:
new_interval (int) – Value to use as the new growth interval.
- state_dict() dict[str, Any][source]
Return the state of the scaler as a
dict.It contains five entries:
"scale"- a Python float containing the current scale"growth_factor"- a Python float containing the current growth factor"backoff_factor"- a Python float containing the current backoff factor"growth_interval"- a Python int containing the current growth interval"_growth_tracker"- a Python int containing the number of recent consecutive unskipped steps.
If this instance is not enabled, returns an empty dict.
Note
If you wish to checkpoint the scaler’s state after a particular iteration,
state_dict()should be called afterupdate().
- step(optimizer: Optimizer, *args: Any, **kwargs: Any) Any[source]
Invoke
unscale_(optimizer)followed by parameter update, if gradients are not infs/NaN.step()carries out the following two operations:Internally invokes
unscale_(optimizer)(unlessunscale_()was explicitly called foroptimizerearlier in the iteration). As part of theunscale_(), gradients are checked for infs/NaNs.If no inf/NaN gradients are found, invokes
optimizer.step()using the unscaled gradients. Otherwise,optimizer.step()is skipped to avoid corrupting the params.
*argsand**kwargsare forwarded tooptimizer.step().Returns the return value of
optimizer.step(*args, **kwargs).- Parameters:
optimizer (tensorplay.optim.Optimizer) – Optimizer that applies the gradients.
args – Any arguments.
kwargs – Any keyword arguments.
Warning
Closure use is not currently supported.
- unscale_(optimizer: Optimizer) None[source]
Divides (“unscales”) the optimizer’s gradient tensors by the scale factor.
unscale_()is optional, serving cases where you need to modify or inspect gradients between the backward pass(es) andstep(). Ifunscale_()is not called explicitly, gradients will be unscaled automatically duringstep().Simple example, using
unscale_()to enable clipping of unscaled gradients:... scaler.scale(loss).backward() scaler.unscale_(optimizer) tensorplay.nn.utils.clip_grad_norm_(model.parameters(), max_norm) scaler.step(optimizer) scaler.update()
- Parameters:
optimizer (tensorplay.optim.Optimizer) – Optimizer that owns the gradients to be unscaled.
Warning
unscale_()should only be called once per optimizer perstep()call, and only after all gradients for that optimizer’s assigned parameters have been accumulated. Callingunscale_()twice for a given optimizer between eachstep()triggers a RuntimeError.
- update(new_scale: float | TensorBase | None = None) None[source]
Update the scale factor.
If any optimizer steps were skipped the scale is multiplied by
backoff_factorto reduce it. Ifgrowth_intervalunskipped iterations occurred consecutively, the scale is multiplied bygrowth_factorto increase it.Passing
new_scalesets the new scale value manually. (new_scaleis not used directly, it’s used to fill GradScaler’s internal scale tensor. So ifnew_scalewas a tensor, later in-place changes to that tensor will not further affect the scale GradScaler uses internally.)- Parameters:
new_scale (float or
tensorplay.Tensor, optional, default=None) – New scale factor.
Warning
update()should only be called at the end of the iteration, afterscaler.step(optimizer)has been invoked for all optimizers used this iteration.
Help improve this page
Found an error, an unclear step, or a missing example?
