MPS 后端

本文来自:
https://pytorch.org/docs/stable/notes/mps.html
https://pytorch.ac.cn/docs/stable/notes/mps.html


MPS 后端

mps 设备支持 在使用 Metal 编程框架的 MacOS 设备上,进行高性能 GPU 训练。

它引入了新的设备,将机器学习计算图和原语映射到 Metal Performance Shaders 图框架和 Metal Performance Shaders 框架提供的经过优化的内核上。

新的 MPS 后端扩展了 PyTorch 生态系统,并为现有脚本提供在 GPU 上设置和运行操作的功能。

要开始使用,只需将您的张量和模块移动到 mps 设备。

python 复制代码
# Check that MPS is available
if not torch.backends.mps.is_available():
    if not torch.backends.mps.is_built():
        print("MPS not available because the current PyTorch install was not "
              "built with MPS enabled.")
    else:
        print("MPS not available because the current MacOS version is not 12.3+ "
              "and/or you do not have an MPS-enabled device on this machine.")

else:
    mps_device = torch.device("mps")

    # Create a Tensor directly on the mps device
    x = torch.ones(5, device=mps_device)
    # Or
    x = torch.ones(5, device="mps")

    # Any operation happens on the GPU
    y = x * 2

    # Move your model to mps just like any other device
    model = YourFavoriteNet()
    model.to(mps_device)

    # Now every call runs on the GPU
    pred = model(x)

2024-07-16(二)

相关推荐
iOS阿玮18 分钟前
苹果 iOS 19 曝光,你的iPhone 还能再战一年?
app·apple
刘小哈哈哈2 小时前
封装了一个iOS多分区自适应宽度layout
macos·ios·cocoa
YJlio4 小时前
TrollStore(巨魔商店)介绍及操作手册
macos·objective-c·cocoa
iiimZoey4 小时前
配置晟腾910b的PyTorch torch_npu环境
pytorch
mywpython5 小时前
mac 最新的chrome版本配置selenium的方式
chrome·python·selenium·macos
一道微光8 小时前
mac air m系列arm架构芯片安装虚拟机 UTM+debian 浏览器firefox和chrome
arm开发·macos·架构
Start_Present8 小时前
Pytorch 第十三回:神经网络编码器——自动编解码器
pytorch·python·深度学习·神经网络
old_power8 小时前
PyTorch 分布式训练(Distributed Data Parallel, DDP)简介
pytorch·ddp
打工人你好11 小时前
libimobiledevice项目中各个库的作用
macos·objective-c·cocoa
1alisa17 小时前
Sublime Text for Mac v4【注册汉化版】代码编辑器
macos·编辑器·sublime text