Skip to content

Commit

Permalink
use more decimal places in the hmc_mk2 profile tables
Browse files Browse the repository at this point in the history
  • Loading branch information
kostrzewa committed Apr 24, 2024
1 parent 5688433 commit 1287c06
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions profiling/hmc_mk2/profile.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ cat("\\par\n")
cat(knitr::kable(dplyr::select(hb_acc_der_data, monomial, type, time, prop, invocations, unit_time),
format = 'latex',
booktabs = TRUE,
digits = 1,
digits = 3,
linesep = "") %>%
kableExtra::kable_styling(latex_options = "striped")
)
Expand Down Expand Up @@ -156,7 +156,7 @@ if(!all(is.na(quda_data))){
cat(knitr::kable(plot_data,
format = 'latex',
booktabs = TRUE,
digits = 1,
digits = 2,
caption = sprintf("Time spent in different QUDA regions. Compare to total time of %.1f seconds.",
total_time)) %>%
kableExtra::kable_styling(latex_options = "striped")
Expand Down Expand Up @@ -197,7 +197,7 @@ for( mon in total_per_mon$monomial ){
cat(knitr::kable(dplyr::select(type_data, level, name, time, prop, invocations, unit_time),
format = 'latex',
booktabs = TRUE,
digits = 1,
digits = 3,
linesep = "",
caption = sprintf("%s %s", mon, tp) ) %>%
kable_styling(latex_options = "HOLD_position") %>%
Expand Down

0 comments on commit 1287c06

Please sign in to comment.