... | ... | @@ -103,17 +103,6 @@ print(tf.test.is_built_with_cuda()) |
|
|
print(tf.config.list_physical_devices('GPU'))
|
|
|
```
|
|
|
|
|
|
### Check Pytorch
|
|
|
|
|
|
If you want to check your pytorch installation (and check if it supports gpu), launch a python interpreter and use these instructions :
|
|
|
|
|
|
```python
|
|
|
import torch
|
|
|
print(torch.__version__)
|
|
|
print(torch.cuda.is_available())
|
|
|
print(torch.cuda.device_count())
|
|
|
```
|
|
|
|
|
|
## Annexe 3 - Uninstall
|
|
|
|
|
|
To delete data and notebooks:
|
... | ... | |