Benchmarks on building the training models

Benchmarks were run on the compute nodes of Cascade Lake microarchitecture (Intel Xeon Gold 6248 CPU@2.50GHz). The HIBAG package was compiled with GCC v8.3.0 in R-v4.0.2. In HIBAG (>= v1.26.1), users can use hlaSetKernelTarget() to select the target intrinsics, or hlaSetKernelTarget("max") for maximizing the algorithm efficiency.

GCC (>= v6.0) is recommended to compile the HIBAG package. In the benchmarks, the kernel version of HIBAG_v1.24 is v1.4, and the kernel version of newer package is v1.5.

# continue without interrupting
IgnoreError <- function(cmd) tryCatch(cmd, error=function(e) { message("Not support"); invisible() })
IgnoreError(hlaSetKernelTarget("sse4"))
## [1] "64-bit, SSE4.2, POPCNT"                                               
## [2] "11.4.0, GNUG_v11.4.0"                                                 
## [3] "Algorithm SIMD: SSE2 SSE4.2 AVX AVX2 AVX512F AVX512BW AVX512VPOPCNTDQ"
IgnoreError(hlaSetKernelTarget("avx"))
## [1] "64-bit, AVX"                                                          
## [2] "11.4.0, GNUG_v11.4.0"                                                 
## [3] "Algorithm SIMD: SSE2 SSE4.2 AVX AVX2 AVX512F AVX512BW AVX512VPOPCNTDQ"
IgnoreError(hlaSetKernelTarget("avx2"))
## [1] "64-bit, AVX2"                                                         
## [2] "11.4.0, GNUG_v11.4.0"                                                 
## [3] "Algorithm SIMD: SSE2 SSE4.2 AVX AVX2 AVX512F AVX512BW AVX512VPOPCNTDQ"
IgnoreError(hlaSetKernelTarget("avx512f"))
## [1] "64-bit, AVX512F"                                                      
## [2] "11.4.0, GNUG_v11.4.0"                                                 
## [3] "Algorithm SIMD: SSE2 SSE4.2 AVX AVX2 AVX512F AVX512BW AVX512VPOPCNTDQ"
IgnoreError(hlaSetKernelTarget("avx512bw"))
## [1] "64-bit, AVX512BW"                                                     
## [2] "11.4.0, GNUG_v11.4.0"                                                 
## [3] "Algorithm SIMD: SSE2 SSE4.2 AVX AVX2 AVX512F AVX512BW AVX512VPOPCNTDQ"

The CPU may reduce the frequency of the cores dynamically to keep power usage of AVX512 within bounds, hlaSetKernelTarget("auto.avx2") can automatically select AVX2 even if the CPU supports the AVX512F and AVX512BW intrinsics. Please check the CPU throttling with AVX512 intrinsics.

1) Speedup factor using small training sets

2) Speedup factor using medium training sets

3) Speedup factor using large training sets

Multithreading

The multi-threaded implementation can be enabled by specifying the number of threads via nthread in the function hlaAttrBagging(), or hlaParallelAttrBagging(cl=nthread, ...).

Here are the performance of multithreading and the comparison between AVX2 and AVX512BW:

Session Info

sessionInfo()
## R version 4.3.2 Patched (2023-11-13 r85521)
## Platform: x86_64-pc-linux-gnu (64-bit)
## Running under: Ubuntu 22.04.3 LTS
## 
## Matrix products: default
## BLAS:   /home/biocbuild/bbs-3.18-bioc/R/lib/libRblas.so 
## LAPACK: /usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3.10.0
## 
## locale:
##  [1] LC_CTYPE=en_US.UTF-8       LC_NUMERIC=C               LC_TIME=en_GB             
##  [4] LC_COLLATE=C               LC_MONETARY=en_US.UTF-8    LC_MESSAGES=en_US.UTF-8   
##  [7] LC_PAPER=en_US.UTF-8       LC_NAME=C                  LC_ADDRESS=C              
## [10] LC_TELEPHONE=C             LC_MEASUREMENT=en_US.UTF-8 LC_IDENTIFICATION=C       
## 
## time zone: America/New_York
## tzcode source: system (glibc)
## 
## attached base packages:
## [1] stats     graphics  grDevices utils     datasets  methods   base     
## 
## other attached packages:
## [1] ggplot2_3.4.4 HIBAG_1.38.2 
## 
## loaded via a namespace (and not attached):
##  [1] vctrs_0.6.5        cli_3.6.2          knitr_1.45         rlang_1.1.3        xfun_0.41         
##  [6] highr_0.10         generics_0.1.3     jsonlite_1.8.8     labeling_0.4.3     RcppParallel_5.1.7
## [11] glue_1.7.0         colorspace_2.1-0   htmltools_0.5.7    sass_0.4.8         fansi_1.0.6       
## [16] scales_1.3.0       rmarkdown_2.25     grid_4.3.2         evaluate_0.23      munsell_0.5.0     
## [21] jquerylib_0.1.4    tibble_3.2.1       fastmap_1.1.1      yaml_2.3.8         lifecycle_1.0.4   
## [26] compiler_4.3.2     dplyr_1.1.4        RColorBrewer_1.1-3 pkgconfig_2.0.3    farver_2.1.1      
## [31] digest_0.6.34      R6_2.5.1           tidyselect_1.2.0   utf8_1.2.4         pillar_1.9.0      
## [36] magrittr_2.0.3     bslib_0.6.1        withr_3.0.0        tools_4.3.2        gtable_0.3.4      
## [41] cachem_1.0.8

References