Currently, my setup is rocker/verse
4,1 with Anaconda3-2021.05
.
This is what my Dockerfile for Jenkins looks like:
FROM rocker/verse:4.1.1
ENV CONDA_VERSION=Anaconda3-2021.05
ENV PASSWORD=...
# Install (dependencies for) Anaconda
WORKDIR /tmp
RUN apt-get install wget libgl1-mesa-glx ...
ENV PATH=...
RUN install2.r --error --deps TRUE tidytable tidymodels...
...
Then it cleans up downloaded R packages, add Jenkins user, and run R.
My question stems from this thread. First, is there a list of tidymodels
libraries/algorithms that support GPU utilisation? Second, is there a list (or even a script) for all the sources of said libraries? Then, do I use a generic Linux commands (example for XGB here) in the above script?