Skip to content

Commit 03495da

Browse files
committed
update recommend for structopt
1 parent 976cc5f commit 03495da

File tree

2 files changed

+14
-13
lines changed

2 files changed

+14
-13
lines changed

docs/recommend.md

+13-12
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# 参考资料与项目
1+
# 参考资料与项目推荐
22

33
## 资源推荐
44

@@ -24,13 +24,21 @@
2424

2525
### 现代
2626

27-
- utfcpp
2827
- fmt
2928
- spdlog
30-
- rapidjson
3129
- nlohmann-json
3230
- ranges-v3
3331
- matchit.cpp
32+
- utfcpp
33+
34+
### 实用扩展
35+
36+
- absl
37+
- tsl-robin-map
38+
- backward-cpp
39+
- iguana
40+
- magic_enum
41+
- structopt
3442

3543
### 高性能
3644

@@ -39,9 +47,9 @@
3947
- cutlass
4048
- thrust
4149
- highway
42-
- numcpp
4350
- amgcl
4451
- eigen
52+
- numcpp
4553

4654
### 图形学
4755

@@ -50,19 +58,12 @@
5058
- openvdb
5159
- cgal
5260

53-
### 实用扩展
54-
55-
- tsl-robin-map
56-
- absl
57-
- backward-cpp
58-
- iguana
59-
- magic_enum
60-
6161
### 古代
6262

6363
- opencv
6464
- nothings/stb
6565
- google/benchmark
66+
- rapidjson
6667
- jsoncpp
6768
- gtest
6869
- catch3

examples/moderncuda/main.cu

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
using namespace cudapp;
66

7-
extern "C" __global__ void kernel(int x) {
7+
__global__ void kernel(int x) {
88
printf("内核参数 x = %d\n", x);
99
printf("线程编号 (%d, %d)\n", blockIdx.x, threadIdx.x);
1010
}

0 commit comments

Comments
 (0)