Troubleshooting - vivi235711/gamer GitHub Wiki
This page covers the following topics:
-
Running out of GPU memory
- Description:
ERROR : CUDA ERROR : out of memory !!- Solution: Reduce GPU_NSTREAM until the issue is resolved.
-
Instability with MHD
- Description: See this issue report.
- Solution: Update
CUDAto 11.3 or higher.
-
Check static arrays with AddressSanitizer (ASan)
-
Description: Detect incorrect usage of static arrays.
-
Steps:
- Use the
g++compiler. - Compile and link with flags
-fsanitize=undefined -fsanitize=address.
- Use the
-
Example (on the
eurekamachine)- Uncomment the following lines in
configs/eureka_gnu.config#CXXFLAG -fsanitize=undefined -fsanitize=address #LIBFLAG -fsanitize=undefined -fsanitize=address - Generate
Makefilepython configure.py --machine=eureka_gnu [--your_other_arguments] - Compile
make clean && make -j4
- Uncomment the following lines in
-