Skip to content

Commit 2759746

Browse files
PeterChou1asl
authored andcommitted
remove cpp file
1 parent ebb1b5b commit 2759746

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

content/posts/2024-12-04-improve-clang-doc.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ For example, if we had the following project:
4141

4242

4343
```cpp
44-
//File: Base.cpp
44+
//File: Base.h
4545

4646
class Base {}
4747
```
@@ -50,7 +50,7 @@ class Base {}
5050
```cpp
5151
//File: A.cpp
5252
53-
#include "Base.cpp"
53+
#include "Base.h"
5454
5555
...
5656
@@ -59,7 +59,7 @@ class Base {}
5959
```cpp
6060
//File: B.cpp
6161

62-
#include "Base.cpp"
62+
#include "Base.h"
6363

6464
...
6565
```
@@ -82,7 +82,7 @@ Here is a plot of the benchmark by number of threads:
8282
<img src="/img/clang-doc-concurrency.png"><br/>
8383
</div>
8484

85-
We notice a pretty dramatic dropoff as more and more threads are utilize from the original tool which ran in 6 hours down to 13 minutes at 64 threads. Considering the previous versions of the tool could not use the higher thread count without crashing (even on a machine with 180GB of ram), the performance gains are even more dramatic.
85+
We notice a pretty dramatic dropoff as more and more threads are utilize, the original time t 6 hours was cut down to 13 minutes at 64 threads. Considering the previous versions of the tool could not use the higher thread count without crashing (even on a machine with 180GB of ram), the performance gains are even more dramatic.
8686

8787
### Added Template Mustache HTML Backend
8888

0 commit comments

Comments
 (0)