You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Now that we have cloned it, we can move into that directory like so:
139
+
Now we'll compile it:
139
140
140
141
```bash
141
-
cd gpu-burn
142
+
make
142
143
```
143
144
144
-
Now we'll compile it:
145
+
#### GCC Errors (Pop!_OS 22.04)
145
146
146
-
```bash
147
-
make CUDAPATH=/usr/lib/cuda
147
+
On some versions of Pop!_OS and Ubuntu (including 22.04), the default version of GCC may fail to compile gpu-burn. Install a compatible version with this command:
148
+
149
+
```
150
+
sudo apt install g++-10
151
+
```
152
+
153
+
Then, run `make` again, specifying which version of GCC to use:
154
+
155
+
```
156
+
make NVCCFLAGS='-ccbin /usr/bin/g++-10'
148
157
```
149
158
150
-
(If you receive an error about your version of GCC being too new, consider installing the appropriate version with e.g. `sudo apt install g++-10` and then passing `NVCCFLAGS='-ccbin /usr/bin/g++-10'` or equivalent as a Make argument.)
159
+
#### Running GPU Burn Tests
151
160
152
-
For NVIDIA **RTX** GPUs we can use Tensor cores to run it like so (this example will run it for 60 minutes/1 hour):
161
+
For NVIDIA **RTX** GPUs, run the test using Tensor cores like so (this example will run it for 3600 seconds/1 hour):
153
162
154
163
```bash
155
164
./gpu_burn -tc 3600
156
165
```
157
166
158
-
For NVIDIA **GTX** GPUs run it like so (this example will run it for 60 minutes/1 hour):
167
+
For NVIDIA **GTX** GPUs, run the test using CUDA cores like so (this example will run it for 3600 seconds/1 hour):
0 commit comments