We are using the drat R package to set up the infrastructure for a mini R-OneMKL R package repository.
You can install packages from the R-OneMKL repository directly with install.packages().
install.packages(c("oneMKL", "oneMKL.MatrixCal"), repos="https://R-OneMKL.github.io/drat")The other way to use this drat repository is to leverage drat package:
install.packages("drat")
drat::addRepo("R-OneMKL") # append R-OneMKL repository to repo list
install.packages(c("oneMKL", "oneMKL.MatrixCal"))