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:
145
+
#### GCC Errors (Pop!_OS 22.04)
145
146
146
-
```bash
147
-
cd gpu-burn
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
148
151
```
149
152
150
-
Now we'll compile it:
153
+
Then, run `make` again, specifying which version of GCC to use:
151
154
152
-
```bash
153
-
make
154
155
```
156
+
make NVCCFLAGS='-ccbin /usr/bin/g++-10'
157
+
```
158
+
159
+
#### Running GPU Burn Tests
155
160
156
-
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):
157
162
158
163
```bash
159
164
./gpu_burn -tc 3600
160
165
```
161
166
162
-
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