Skip to content

Commit 229da20

Browse files
committed
add paragraph on performance to README
1 parent f307cb1 commit 229da20

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

ChangeLog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2021-12-28 Dirk Eddelbuettel <[email protected]>
2+
3+
* README.md: Add section on performance
4+
15
2021-12-24 Dirk Eddelbuettel <[email protected]>
26

37
* README.md: Update usage counts

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,18 @@ Attributes](https://cran.r-project.org/package=Rcpp/vignettes/Rcpp-attributes.pd
8181
Additional documentation is available via the [Rcpp book](http://www.rcpp.org/book/)
8282
by Eddelbuettel (2013, Springer); see 'citation("Rcpp")' for details.
8383

84+
### Performance
85+
86+
Rcpp follows the C++ motto of _"you pay only for what you use"_ and imposes
87+
no _run-time_ performance penalty: Rcpp outperforms related packages in
88+
direct comparison, see for example [this repo for
89+
details](https://github.com/eddelbuettel/ldlasb).
90+
91+
Compile-time performance can be tuned by selecting components. But it is also
92+
worth noting that use of [`ccache`](https://ccache.dev/) will (strongly)
93+
dominate all such possible component choices, we have [previously
94+
recommended](https://dirk.eddelbuettel.com/blog/2017/11/27/) its use.
95+
8496
### Examples
8597

8698
The [Rcpp Gallery](https://gallery.rcpp.org) showcases over one hundred fully

0 commit comments

Comments
 (0)