76 lines
1.4 KiB
Plaintext
76 lines
1.4 KiB
Plaintext
<%@include file="includes/setup.md.rsp"%>
|
|
|
|
<%@string colname="colCummins"%>
|
|
<%@string rowname="rowCummins"%>
|
|
<%@meta title="${colname}() and ${rowname}() benchmarks"%>
|
|
<%@meta author="Henrik Bengtsson"%>
|
|
<%@meta date="2014-11-26"%>
|
|
|
|
<%@include file="${header}"%>
|
|
|
|
|
|
# <%@meta name="title"%>
|
|
|
|
This report benchmark the performance of <%=colname%>() and <%=rowname%>() against alternative methods.
|
|
|
|
## Alternative methods
|
|
|
|
* apply() + cummin()
|
|
|
|
|
|
<% for (mode in c("integer", "double")) { %>
|
|
|
|
## Data type "<%=mode%>"
|
|
|
|
### Data
|
|
```r
|
|
<%=withCapture({
|
|
<%@include file="R/random-matrices.R"%>
|
|
data <- rmatrices(mode = mode)
|
|
})%>
|
|
```
|
|
|
|
### Results
|
|
|
|
<% for (dataLabel in names(data)) { %>
|
|
<% mprintf("%s: %s\n", mode, dataLabel) %>
|
|
#### <%=dataLabel%> <%=mode%> matrix
|
|
|
|
```r
|
|
<%=withCapture({
|
|
X <- data[[.dataLabel.]]
|
|
gc()
|
|
|
|
colStats <- microbenchmark(
|
|
colCummins = colCummins(X),
|
|
"apply+cummin" = apply(X, MARGIN = 2L, FUN = cummin),
|
|
unit = "ms"
|
|
)
|
|
|
|
X <- t(X)
|
|
gc()
|
|
|
|
rowStats <- microbenchmark(
|
|
rowCummins = rowCummins(X),
|
|
"apply+cummin" = apply(X, MARGIN = 1L, FUN = cummin),
|
|
unit = "ms"
|
|
)
|
|
})%>
|
|
```
|
|
|
|
<% crBenchmarkResults(colStats, rowStats, tags=c(mode, dataLabel)) %>
|
|
|
|
<% } # for (dataLabel ...) %>
|
|
|
|
<% } # for (mode ...) %>
|
|
|
|
|
|
<%@include file="${footer}"%>
|
|
|
|
|
|
<%---------------------------------------------------------------------------
|
|
HISTORY:
|
|
2014-11-26
|
|
o Created.
|
|
---------------------------------------------------------------------------%>
|