MAKE error for GPU BURN

Hi Guys,

Hope you can help me out with the below problem :

I am using the below Multi-GPU CUDA stress test to test out my GPU:
http://wili.cc/blog/gpu-burn.html

test1@test1-pc:~$ nvidia-smi
Thu Jul 9 10:32:25 2020
±----------------------------------------------------------------------------+
| NVIDIA-SMI 450.51.05 Driver Version: 450.51.05 CUDA Version: 11.0 |
|-------------------------------±---------------------±---------------------+
| GPU Name Persistence-M| Bus-Id Disp.A | Volatile Uncorr. ECC |
| Fan Temp Perf Pwr:Usage/Cap| Memory-Usage | GPU-Util Compute M. |
| | | MIG M. |
|===============================+======================+======================|
| 0 GeForce GTX 1070 On | 00000000:01:00.0 On | N/A |
| 0% 49C P8 11W / 151W | 222MiB / 8116MiB | 0% Default |
| | | N/A |
±------------------------------±---------------------±---------------------+

±----------------------------------------------------------------------------+
| Processes: |
| GPU GI CI PID Type Process name GPU Memory |
| ID ID Usage |
|=============================================================================|
| 0 N/A N/A 1006 G /usr/lib/xorg/Xorg 81MiB |
| 0 N/A N/A 1150 G /usr/bin/gnome-shell 124MiB |
| 0 N/A N/A 3387 G …mviewer/tv_bin/TeamViewer 11MiB |
±----------------------------------------------------------------------------+

test1@test1-pc:~$ nvcc --version
nvcc: NVIDIA (R) Cuda compiler driver
Copyright (c) 2005-2017 NVIDIA Corporation
Built on Fri_Nov__3_21:07:56_CDT_2017
Cuda compilation tools, release 9.1, V9.1.85

test1@test1-pc:~$ gcc --version
gcc (Ubuntu 7.5.0-3ubuntu1~18.04) 7.5.0
Copyright (C) 2017 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

test1@test1-pc:~$ cd gpu-burn

test1@test1-pc:~/gpu-burn$ make
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:.:/usr/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin /usr/local/cuda/bin/nvcc -I/usr/local/cuda/include -arch=compute_30 -ptx compare.cu -o compare.ptx
nvcc fatal : Value ‘compute_30’ is not defined for option ‘gpu-architecture’
Makefile:9: recipe for target ‘drv’ failed
make: *** [drv] Error 1

As i am new to ubuntu, can anyone point me to what i am missing out to cause this error?

Thanks all for your time.

Hello,
I just discovering this utility. I will test it soon.
It seems there is already an issue created on project github:

Maybe related to CUDA or GCC version. Could you try with CUDA 10 ?
I also found this pull request about gcc version : Update Makefile to allow for a compiler override via CC by hintron · Pull Request #19 · wilicc/gpu-burn · GitHub

Good luck