评价此页

(beta) 运行带有 LR 调度器的已编译优化器#

创建于:2024 年 5 月 21 日 | 最后更新:2024 年 5 月 21 日 | 上次验证:2024 年 11 月 05 日

作者: Michael Lazos

优化器是训练任何深度学习模型的关键算法。在本示例中,我们将展示如何将使用 torch.compile 编译的优化器与 LR 调度器配对,以加速训练收敛。

注意

本教程需要 PyTorch 2.3.0 或更高版本。

模型设置#

对于本示例,我们将使用一个简单的线性层序列。

import torch

# Create simple model
model = torch.nn.Sequential(
    *[torch.nn.Linear(1024, 1024, False, device="cuda") for _ in range(10)]
)
input = torch.rand(1024, device="cuda")

# run forward pass
output = model(input)

# run backward to populate the grads for our optimizer below
output.sum().backward()

设置和运行带有 LR 调度器的已编译优化器#

在本节中,我们将使用带有 LinearLR 调度器的 Adam 优化器,并创建一个辅助函数来包装 torch.compile() 中每个优化器的 step() 调用。

注意

torch.compile 仅在计算能力为 7.0 或更高的 CUDA 设备上受支持。

# exit cleanly if we are on a device that doesn't support ``torch.compile``
if torch.cuda.get_device_capability() < (7, 0):
    print("Exiting because torch.compile is not supported on this device.")
    import sys
    sys.exit(0)

# !!! IMPORTANT !!! Wrap the lr in a Tensor if we are pairing the
# the optimizer with an LR Scheduler.
# Without this, torch.compile will recompile as the value of the LR
# changes.
opt = torch.optim.Adam(model.parameters(), lr=torch.tensor(0.01))
sched = torch.optim.lr_scheduler.LinearLR(opt, total_iters=5)

@torch.compile(fullgraph=False)
def fn():
    opt.step()
    sched.step()


# Warmup runs to compile the function
for _ in range(5):
    fn()
    print(opt.param_groups[0]["lr"])
tensor(0.0047)
tensor(0.0060)
tensor(0.0073)
tensor(0.0087)
tensor(0.0100)

扩展:非张量 LR 会发生什么?#

为了满足好奇心,我们将展示当我们在张量中不包装 LR 时,torch.compile 会发生什么。

# No longer wrap the LR in a tensor here
opt = torch.optim.Adam(model.parameters(), lr=0.01)
sched = torch.optim.lr_scheduler.LinearLR(opt, total_iters=5)

@torch.compile(fullgraph=False)
def fn():
    opt.step()
    sched.step()

# Setup logging to view recompiles
torch._logging.set_logs(recompiles=True)

# Warmup runs to compile the function
# We will now recompile on each iteration
# as the value of the lr is mutated.
for _ in range(5):
    fn()
V0807 18:33:43.357000 36188 torch/_dynamo/guards.py:3508] [1/1] [__recompiles] Recompiling function wrapper in /usr/local/lib/python3.10/dist-packages/torch/optim/optimizer.py:496
V0807 18:33:43.357000 36188 torch/_dynamo/guards.py:3508] [1/1] [__recompiles]     triggered by the following guard failure(s):
V0807 18:33:43.357000 36188 torch/_dynamo/guards.py:3508] [1/1] [__recompiles]     - 1/0: Cache line invalidated because L['args'][0] got deallocated
V0807 18:33:43.393000 36188 torch/_dynamo/guards.py:3508] [2/1] [__recompiles] Recompiling function step in /usr/local/lib/python3.10/dist-packages/torch/optim/adam.py:213
V0807 18:33:43.393000 36188 torch/_dynamo/guards.py:3508] [2/1] [__recompiles]     triggered by the following guard failure(s):
V0807 18:33:43.393000 36188 torch/_dynamo/guards.py:3508] [2/1] [__recompiles]     - 2/0: Cache line invalidated because L['self'] got deallocated
V0807 18:33:46.209000 36188 torch/_dynamo/guards.py:3508] [2/2] [__recompiles] Recompiling function step in /usr/local/lib/python3.10/dist-packages/torch/optim/adam.py:213
V0807 18:33:46.209000 36188 torch/_dynamo/guards.py:3508] [2/2] [__recompiles]     triggered by the following guard failure(s):
V0807 18:33:46.209000 36188 torch/_dynamo/guards.py:3508] [2/2] [__recompiles]     - 2/1: ___as_tensor(self.param_groups[0]['lr']).item() == 0.003333333333333333  # (unknown source ___as_tensor(self.param_groups[0]['lr']).item(), please file a bug)
V0807 18:33:46.209000 36188 torch/_dynamo/guards.py:3508] [2/2] [__recompiles]     - 2/0: Cache line invalidated because L['self'] got deallocated
V0807 18:33:48.471000 36188 torch/_dynamo/guards.py:3508] [2/3] [__recompiles] Recompiling function step in /usr/local/lib/python3.10/dist-packages/torch/optim/adam.py:213
V0807 18:33:48.471000 36188 torch/_dynamo/guards.py:3508] [2/3] [__recompiles]     triggered by the following guard failure(s):
V0807 18:33:48.471000 36188 torch/_dynamo/guards.py:3508] [2/3] [__recompiles]     - 2/2: ___as_tensor(self.param_groups[0]['lr']).item() == 0.004666666666666667  # (unknown source ___as_tensor(self.param_groups[0]['lr']).item(), please file a bug)
V0807 18:33:48.471000 36188 torch/_dynamo/guards.py:3508] [2/3] [__recompiles]     - 2/1: ___as_tensor(self.param_groups[0]['lr']).item() == 0.003333333333333333  # (unknown source ___as_tensor(self.param_groups[0]['lr']).item(), please file a bug)
V0807 18:33:48.471000 36188 torch/_dynamo/guards.py:3508] [2/3] [__recompiles]     - 2/0: Cache line invalidated because L['self'] got deallocated
V0807 18:33:51.016000 36188 torch/_dynamo/guards.py:3508] [2/4] [__recompiles] Recompiling function step in /usr/local/lib/python3.10/dist-packages/torch/optim/adam.py:213
V0807 18:33:51.016000 36188 torch/_dynamo/guards.py:3508] [2/4] [__recompiles]     triggered by the following guard failure(s):
V0807 18:33:51.016000 36188 torch/_dynamo/guards.py:3508] [2/4] [__recompiles]     - 2/3: ___as_tensor(self.param_groups[0]['lr']).item() == 0.006000000000000001  # (unknown source ___as_tensor(self.param_groups[0]['lr']).item(), please file a bug)
V0807 18:33:51.016000 36188 torch/_dynamo/guards.py:3508] [2/4] [__recompiles]     - 2/2: ___as_tensor(self.param_groups[0]['lr']).item() == 0.004666666666666667  # (unknown source ___as_tensor(self.param_groups[0]['lr']).item(), please file a bug)
V0807 18:33:51.016000 36188 torch/_dynamo/guards.py:3508] [2/4] [__recompiles]     - 2/1: ___as_tensor(self.param_groups[0]['lr']).item() == 0.003333333333333333  # (unknown source ___as_tensor(self.param_groups[0]['lr']).item(), please file a bug)
V0807 18:33:51.016000 36188 torch/_dynamo/guards.py:3508] [2/4] [__recompiles]     - 2/0: Cache line invalidated because L['self'] got deallocated
V0807 18:33:53.265000 36188 torch/_dynamo/guards.py:3508] [2/5] [__recompiles] Recompiling function step in /usr/local/lib/python3.10/dist-packages/torch/optim/adam.py:213
V0807 18:33:53.265000 36188 torch/_dynamo/guards.py:3508] [2/5] [__recompiles]     triggered by the following guard failure(s):
V0807 18:33:53.265000 36188 torch/_dynamo/guards.py:3508] [2/5] [__recompiles]     - 2/4: ___as_tensor(self.param_groups[0]['lr']).item() == 0.007333333333333335  # (unknown source ___as_tensor(self.param_groups[0]['lr']).item(), please file a bug)
V0807 18:33:53.265000 36188 torch/_dynamo/guards.py:3508] [2/5] [__recompiles]     - 2/3: ___as_tensor(self.param_groups[0]['lr']).item() == 0.006000000000000001  # (unknown source ___as_tensor(self.param_groups[0]['lr']).item(), please file a bug)
V0807 18:33:53.265000 36188 torch/_dynamo/guards.py:3508] [2/5] [__recompiles]     - 2/2: ___as_tensor(self.param_groups[0]['lr']).item() == 0.004666666666666667  # (unknown source ___as_tensor(self.param_groups[0]['lr']).item(), please file a bug)
V0807 18:33:53.265000 36188 torch/_dynamo/guards.py:3508] [2/5] [__recompiles]     - 2/1: ___as_tensor(self.param_groups[0]['lr']).item() == 0.003333333333333333  # (unknown source ___as_tensor(self.param_groups[0]['lr']).item(), please file a bug)
V0807 18:33:53.265000 36188 torch/_dynamo/guards.py:3508] [2/5] [__recompiles]     - 2/0: Cache line invalidated because L['self'] got deallocated

通过此示例,我们可以看到由于 param_groups[0]lr 上的保护失败,我们重新编译了优化器几次。

结论#

在本教程中,我们展示了如何将使用 torch.compile 编译的优化器与 LR 调度器配对,以加速训练收敛。我们使用由简单线性层序列组成的模型,以及与 LinearLR 调度器配对的 Adam 优化器来演示 LR 在迭代中的变化。

另请参阅

脚本的总运行时间:(0 分钟 17.052 秒)