I have tried installing the RcppArmadillo package sparta (which is on CRAN) using three different methods.
install.packages("sparta")
devtools::install()
(inside the package folder)devtools::build()
and theninstall.package("path_to_build_file, repos = NULL, type = "source")
I then benchmarked a specific function, marg, from the sparta package and it turned out that installing with 1) and 3) yielded same results whereas using 2) the runtime of marg
was more than twice as slow. I't seems to me that for all three methods, the same compiler, g++ = -std=gnu11
, was used.
I have no clue why this is happening; any suggestions?