PyTorch torch.cuda.is_available()

PyTorch torch.cuda.is_available{}

  • [1. `torch.cuda.is_available()`](#1. torch.cuda.is_available())
  • [2. `torch.cuda.is_available()`](#2. torch.cuda.is_available())
  • References

PyTorch documentation
https://pytorch.org/docs/master/index.html

PyTorch is an optimized tensor library for deep learning using GPUs and CPUs.

  • torch.cuda.is_available (Python function, in torch.cuda.is_available)

1. torch.cuda.is_available()

https://pytorch.org/docs/stable/generated/torch.cuda.is_available.html

Return a bool indicating if CUDA is currently available.

Return type

bool

2. torch.cuda.is_available()

import torch

device = 'cuda' if torch.cuda.is_available() else 'cpu'  # examples: 'cpu', 'cuda', 'cuda:0', 'cuda:1', etc.
device_type = 'cuda' if 'cuda' in device else 'cpu'  # for later use in torch.autocast

print("device =", device)
print("device_type =", device_type)

/home/yongqiang/miniconda3/bin/python /home/yongqiang/llm_work/llama2.c/yongqiang.py 
device = cpu
device_type = cpu

Process finished with exit code 0

References

[1] Yongqiang Cheng, https://yongqiang.blog.csdn.net/

相关推荐
pk_xz1234562 小时前
PyTorch通过搭建LSTM网络,对MNIST手写数字数据集进行了训练和评估,实现了对手写数字的分类功能
pytorch·分类·lstm
deephub4 小时前
面向强化学习的状态空间建模:RSSM的介绍和PyTorch实现
人工智能·pytorch·python·深度学习·强化学习
写点什么呢10 小时前
Pytorch学习12_最大池化的使用
人工智能·pytorch·python·深度学习·学习·pycharm
取个名字真难呐1 天前
随机置矩阵列为0[矩阵乘法pytorch版]
pytorch·python·矩阵
程序员正茂1 天前
AnaConda下载PyTorch慢的解决办法
人工智能·pytorch
qq_273900231 天前
pytorch torch.full_like函数介绍
人工智能·pytorch·python
大模型铲屎官2 天前
PyTorch 框架实现逻辑回归:从数据预处理到模型训练全流程
人工智能·pytorch·python·深度学习·逻辑回归
Wishell20152 天前
小白学Pytorch
pytorch
昊昊该干饭了2 天前
2.5万字 - 用TensorFlow和PyTorch分别实现五种经典模型
人工智能·pytorch·tensorflow
超自然祈祷2 天前
pyTorch笔记
人工智能·pytorch·笔记·神经网络