Skip to content

Commit 76138fb

Browse files
committed
Improved
1 parent 9939c21 commit 76138fb

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
.idea
22
.PVS-Studio
33
cmake-build-debug
4+
build
45
*.iml
56

67
# GPU garbage
@@ -9,4 +10,5 @@ cmake-build-debug
910
*.gpu
1011
*.ptx
1112
*.cubin
12-
*.fatbin
13+
*.fatbin
14+

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cmake_minimum_required(VERSION 3.19)
1+
cmake_minimum_required(VERSION 3.16)
22
project(cudaproject CUDA)
33

44
set(CMAKE_CUDA_STANDARD 14)

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,15 @@
33
- https://developer.nvidia.com/cuda-downloads
44
- https://docs.nvidia.com/cuda/cuda-installation-guide-linux/index.html#runfile-nouveau-ubuntu(Don't forget)
55
- https://docs.nvidia.com/gpudirect-storage/troubleshooting-guide/index.html#mofed-req-install
6+
7+
8+
# Build and Run
9+
```bash
10+
11+
mkdir build
12+
cmake ../
13+
make
14+
15+
# Run Device query sample
16+
./devicequery
17+
```

0 commit comments

Comments
 (0)