File tree 2 files changed +14
-13
lines changed
2 files changed +14
-13
lines changed Original file line number Diff line number Diff line change 1
- # 参考资料与项目
1
+ # 参考资料与项目推荐
2
2
3
3
## 资源推荐
4
4
24
24
25
25
### 现代
26
26
27
- - utfcpp
28
27
- fmt
29
28
- spdlog
30
- - rapidjson
31
29
- nlohmann-json
32
30
- ranges-v3
33
31
- matchit.cpp
32
+ - utfcpp
33
+
34
+ ### 实用扩展
35
+
36
+ - absl
37
+ - tsl-robin-map
38
+ - backward-cpp
39
+ - iguana
40
+ - magic_enum
41
+ - structopt
34
42
35
43
### 高性能
36
44
39
47
- cutlass
40
48
- thrust
41
49
- highway
42
- - numcpp
43
50
- amgcl
44
51
- eigen
52
+ - numcpp
45
53
46
54
### 图形学
47
55
50
58
- openvdb
51
59
- cgal
52
60
53
- ### 实用扩展
54
-
55
- - tsl-robin-map
56
- - absl
57
- - backward-cpp
58
- - iguana
59
- - magic_enum
60
-
61
61
### 古代
62
62
63
63
- opencv
64
64
- nothings/stb
65
65
- google/benchmark
66
+ - rapidjson
66
67
- jsoncpp
67
68
- gtest
68
69
- catch3
Original file line number Diff line number Diff line change 4
4
5
5
using namespace cudapp ;
6
6
7
- extern " C " __global__ void kernel (int x) {
7
+ __global__ void kernel (int x) {
8
8
printf (" 内核参数 x = %d\n " , x);
9
9
printf (" 线程编号 (%d, %d)\n " , blockIdx .x , threadIdx .x );
10
10
}
You can’t perform that action at this time.
0 commit comments