Skip to content

Is NVIDIA QUADRO M1000M supported? #311

Answered by DevilaN
DevilaN asked this question in Q&A
Discussion options

You must be logged in to vote

Something weird. It randomly is working and not. System related probably.

I've tested it with this script:

import torch

# setting device on GPU if available, else CPU
device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')
print('Using device:', device)
print()

#Additional Info when using cuda
if device.type == 'cuda':
    print(torch.cuda.get_device_name(0))
    print('Memory Usage:')
    print('Allocated:', round(torch.cuda.memory_allocated(0)/1024**3,1), 'GB')
    print('Cached:   ', round(torch.cuda.memory_reserved(0)/1024**3,1), 'GB')

Got following response:

root@b7727ec21cf4:/data# python test.py
Using device: cuda

Quadro M1000M
Memory Usage:
Allocated: 0.0 GB
Cach…

Replies: 3 comments

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Answer selected by DevilaN
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants