Skip to content

Files

This branch is 9 commits ahead of, 8 commits behind rapidsai/cuml:branch-23.08.

docs

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

Building Documentation

Building locally:

Generate the docs

bash build.sh cppdocs pydocs

Once the process finishes, documentation can be found in build/html

xdg-open build/html/api.html`

Building via Docker

Pull or create the cuML docker container.

Start cuML container:

docker run -p 8000:8000 -it cuml bash

Setup container's conda env for building docs:

sudo sh setup.sh ${cuML-container-id}

Build & host docs from container:

sudo sh build.sh ${cuML-container-id}

Copy docs from container to host:

docker cp ${cuML-container-id}:/docs/build/html .