csgillespie / benchmarkme

Crowd sourced benchmarking
https://csgillespie.github.io/benchmarkme/
40 stars 13 forks source link

Error in select_results(test_group, byte_optimize = byte_optimize, blas_optimize = blas_optimize) : unused argument (byte_optimize = byte_optimize) #19

Closed jshousephd closed 5 years ago

jshousephd commented 5 years ago

Microsoft R Open 3.5.1 The enhanced R distribution from Microsoft Microsoft packages Copyright (C) 2018 Microsoft Corporation

Using the Intel MKL for parallel mathematical computing (using 4 cores).

Default CRAN mirror snapshot taken on 2018-08-01. See: https://mran.microsoft.com/.

upload_results(res) Creating temporary file Getting system specs. This can take a while on Macs Uploading results Upload complete Tracking id: 2019-01-29-61350276 [1] "2019-01-29-61350276" plot(res) Error in select_results(test_group, byte_optimize = byte_optimize, blas_optimize = blas_optimize) : unused argument (byte_optimize = byte_optimize) sessionInfo() R version 3.5.1 (2018-07-02) Platform: x86_64-w64-mingw32/x64 (64-bit) Running under: Windows >= 8 x64 (build 9200)

Matrix products: default

locale: [1] LC_COLLATE=English_United States.1252 LC_CTYPE=English_United States.1252 LC_MONETARY=English_United States.1252 [4] LC_NUMERIC=C LC_TIME=English_United States.1252

attached base packages: [1] stats graphics grDevices utils datasets methods base

other attached packages: [1] benchmarkme_0.6.0 RevoUtils_11.0.1 RevoUtilsMath_11.0.0

loaded via a namespace (and not attached): [1] Rcpp_1.0.0 benchmarkmeData_1.0.0 rstudioapi_0.9.0 bindr_0.1.1 magrittr_1.5 tidyselect_0.2.5
[7] doParallel_1.0.14 lattice_0.20-35 R6_2.3.0 rlang_0.3.1 foreach_1.4.4 httr_1.4.0
[13] dplyr_0.7.8 tools_3.5.1 parallel_3.5.1 grid_3.5.1 iterators_1.0.10 yaml_2.2.0
[19] assertthat_0.2.0 tibble_2.0.1 crayon_1.3.4 Matrix_1.2-14 bindrcpp_0.2.2 purrr_0.2.5
[25] codetools_0.2-15 curl_3.3 mime_0.6 glue_1.3.0 compiler_3.5.1 pillar_1.3.1
[31] pkgconfig_2.0.2

csgillespie commented 5 years ago

That's odd. Can you try the following:

get_ram()
get_cpu()
get_linear_algebra()
get_byte_compiler()
get_sys_details()
jshousephd commented 5 years ago

The sys_details is over 1000 lines of information. Here are the other 4. This is MRO 3.5.1 The error above did not happen when I was using 3.5.2 normal.

get_ram() 68.7 GB get_cpu() $vendor_id [1] "GenuineIntel"

$model_name [1] "Intel(R) Core(TM) i7-6700K CPU @ 4.00GHz"

$no_of_cores [1] 8

get_linear_algebra() $blas [1] NA

$lapack [1] NA

get_byte_compiler() byte_optimize 2

csgillespie commented 5 years ago

I think I've spotted it. Would you install

install.packages("benchmarkmeData")
packageDescription("benchmarkmeData")$Version # Should be 1.0.0

I think there's something wrong with the dependency and MRO. Perhaps the package wasn't built on time.

jshousephd commented 5 years ago

That worked. Thanks!