File size: 264 Bytes
f16bb9f
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
"""
File: gpu_init.py
Author: Dmitry Ryumin, Maxim Markitantov, Elena Ryumina, Anastasia Dvoynikova, and Alexey Karpov
Description: GPU initialization.
License: MIT License
"""

import torch

device = torch.device("cuda:0" if torch.cuda.is_available() else "cpu")