您的位置:首页 > 娱乐 > 明星 > 动漫设计师资格证_潍坊专业汽车贴膜_如何免费做网站网页_关键词网络推广企业

动漫设计师资格证_潍坊专业汽车贴膜_如何免费做网站网页_关键词网络推广企业

2025/1/8 13:58:13 来源:https://blog.csdn.net/weixin_44044411/article/details/143613865  浏览:    关键词:动漫设计师资格证_潍坊专业汽车贴膜_如何免费做网站网页_关键词网络推广企业
动漫设计师资格证_潍坊专业汽车贴膜_如何免费做网站网页_关键词网络推广企业

0. 引言

参考Pytorch官方文档对CUDA的描述,GPU的运算是异步执行的。一般来说,异步计算的效果对于调用者来说是不可见的,因为

  1. 每个设备按照排队的顺序执行操作
  2. Pytorch对于CPU和GPU的同步,GPU间的同步是自动执行的,不需要显示写在代码中

异步计算的后果是,没有同步的时间测量是不准确的

1. 解决方案

参考引言中提到的帮助文档,Pytorch官方给出的解决方案是使用torch.cuda.Event记录时间,具体代码如下:

# import torch
start_event = torch.cuda.Event(enable_timing=True)
end_event = torch.cuda.Event(enable_timing=True)
start_event.record()# Run your code snippet hereend_event.record()
torch.cuda.synchronize()  # Wait for the events to be recorded!
elapsed_time_ms = start_event.elapsed_time(end_event)  # elapsed time (ms)

将你的代码插入start_event.record()end_event.record()中间以测量时间(单位毫秒)。

有能力的读者也可以包装为装饰器或者with语句使用:

先书写一个自定义with类(ContextManager)

class CudaTimer:def __init__(self):self.start_event = torch.cuda.Event(enable_timing=True)self.end_event = torch.cuda.Event(enable_timing=True)def __enter__(self):self.start_event.record()return selfdef __exit__(self, exc_type, exc_value, traceback):self.end_event.record()torch.cuda.synchronize()self.elapsed_time = self.start_event.elapsed_time(self.end_event) / 1000 # ms -> s

再安装如下with语句返回:

with CudaTimer() as timer:# run your code here
dt = timer.elapsed_time  # s

这样保证了多个文件调用时语句的简单性。特别提醒:获取timer.elapsed_time操作不要写在with语句内部。在with语句未结束时,是无法获取timer的成员变量的。

2. 补充

对于CPU和GPU混合操作的函数,使用torch.cuda.event可能会使统计时间比实际时间短,此时可以使用time.time()代替,标准的with对象书写如下:

# import time
class Timer:def __enter__(self):self.start_time = time.time()return selfdef __exit__(self, exc_type, exc_value, traceback):torch.cuda.synchronize()self.elapsed_time = time.time() - self.start_time

然后只需要将上文的with CudaTimer() as timer替换为with Timer() as timer即可。

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com