Commit 109ca2b8 authored by mibaumgartner's avatar mibaumgartner
Browse files

github templates

parent b068251a
---
name: Bug
about: Report a bug
title: "[Bug]"
labels: Bug
assignees: ''
---
### :skull: Bug
<!-- Please provide a short and cleaer describtion of the bug. What happens? What should happen? -->
### Environment
Please provide some information about the used environment.
<!--
Please run the following command to collect environment information and paste them below:
If nnDetection is already installed:
```bash
nndet_env
```
otherwise execute the script directly from the nndetection source folder:
```bash
python scripts/utils.py
```
-->
Environment Information:
```text
PASTE HERE
```
---
name: Question
about: Ask a question
title: "[Question]"
labels: Question
assignees: ''
---
### :question: Question
<!-- Please provide a short and cleaer question-->
...@@ -183,6 +183,7 @@ def unpack(): ...@@ -183,6 +183,7 @@ def unpack():
def env(): def env():
import os import os
import torch import torch
import sys
print(f"PyTorch Version: {torch.version}") print(f"PyTorch Version: {torch.version}")
print(f"PyTorch CUDA: {torch.version.cuda}") print(f"PyTorch CUDA: {torch.version.cuda}")
print(f"PyTorch Backend cudnn: {torch.backends.cudnn.version()}") print(f"PyTorch Backend cudnn: {torch.backends.cudnn.version()}")
...@@ -196,3 +197,9 @@ def env(): ...@@ -196,3 +197,9 @@ def env():
print(f"System Arch List: {os.getenv('TORCH_CUDA_ARCH_LIST', None)}") print(f"System Arch List: {os.getenv('TORCH_CUDA_ARCH_LIST', None)}")
print(f"System OMP_NUM_THREADS: {os.getenv('OMP_NUM_THREADS', None)}") print(f"System OMP_NUM_THREADS: {os.getenv('OMP_NUM_THREADS', None)}")
print(f"System CUDA_HOME is None: {os.getenv('CUDA_HOME', None) is None}") print(f"System CUDA_HOME is None: {os.getenv('CUDA_HOME', None) is None}")
print(f"Python Version: {sys.version}")
if __name__ == '__main__':
env()
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment