Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
bd050ee
Create single-node
marifse Sep 6, 2022
2cc0942
Update single-node
marifse Sep 6, 2022
b0e48a7
Rename single-node to single-node.md
marifse Sep 6, 2022
91f8358
Update single-node.md
marifse Sep 6, 2022
68ece07
Update single-node.md
marifse Sep 6, 2022
bb7e96d
Update single-node.md
marifse Sep 6, 2022
a263762
Create index.md
marifse Sep 6, 2022
f4f36d4
Update index.md
marifse Sep 6, 2022
e209dbe
Update index.md
marifse Sep 6, 2022
ac4358e
Create iks.md
marifse Sep 6, 2022
ca89675
Update iks.md
marifse Sep 6, 2022
ea4537a
Update iks.md
marifse Sep 6, 2022
387530d
Update iks.md
marifse Sep 6, 2022
89b342e
Update iks.md
marifse Sep 7, 2022
2227523
Update iks.md
marifse Sep 7, 2022
99582b1
Update iks.md
marifse Sep 7, 2022
041333f
Update iks.md
marifse Sep 7, 2022
d19704d
Update iks.md
marifse Sep 7, 2022
225d05f
Update iks.md
marifse Sep 7, 2022
fb4a85b
Update iks.md
marifse Sep 7, 2022
aea3f04
Update iks.md
marifse Sep 7, 2022
0660489
Update iks.md
marifse Sep 7, 2022
26066a1
Update iks.md
marifse Sep 7, 2022
0383716
Delete source/cloud/IBM directory
marifse Sep 7, 2022
c21aede
Create index.md
marifse Sep 7, 2022
e3dc7b6
Create single-node.md
marifse Sep 7, 2022
656cd0a
Create iks.md
marifse Sep 7, 2022
fdda35d
Update iks.md
marifse Sep 7, 2022
4848cd7
Fix linting
jacobtomlinson Oct 19, 2022
0a39e34
Formatting, layout and reuse of existing documentation
jacobtomlinson Oct 19, 2022
24f06cd
Merge branch 'main' of https://github.com/rapidsai/deployment into ma…
jacobtomlinson Oct 19, 2022
c90eeeb
Split IKS into separate PR for review
jacobtomlinson Oct 20, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions source/cloud/ibm/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# IBM Cloud

```{toctree}
---
maxdepth: 2
caption: IBM Cloud
---
single-node
```

RAPIDS can be deployed on IBM Cloud in several ways. See the
list of accelerated instance types below:

| Cloud <br> Provider | Inst. <br> Type | vCPUs | Inst. <br> Name | GPU <br> Count | GPU <br> Type | xGPU <br> RAM | xGPU <br> RAM Total |
| :------------------ | ------------------- | ----- | ------------------ | -------------- | ------------- | ------------- | ------------------: |
| IBM | V100 GPU Virtual | 8 | gx2-8x64x1v100 | 1 | NVIDIA Tesla | 16 (GB) | 64 (GB) |
| IBM | V100 GPU Virtual | 16 | gx2-16x128x1v100 | 1 | NVIDIA Tesla | 16 (GB) | 128 (GB) |
| IBM | V100 GPU Virtual | 16 | gx2-16x128x2v100 | 2 | NVIDIA Tesla | 16 (GB) | 128 (GB) |
| IBM | V100 GPU Virtual | 32 | gx2-32x256x2v100 | 2 | NVIDIA Tesla | 16 (GB) | 256 (GB) |
| IBM | P100 GPU Bare Metal | 32 | mg4c.32x384.2xp100 | 2 | NVIDIA Tesla | 16 (GB) | 384 (GB) |
| IBM | V100 GPU Bare Metal | 48 | mg4c.48x384.2xv100 | 2 | NVIDIA Tesla | 16 (GB) | 384 (GB) |
43 changes: 43 additions & 0 deletions source/cloud/ibm/single-node.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# Single Node

There are multiple ways you can deploy RAPIDS on a single instance, but the easiest is to use the RAPIDS docker image:

## Launch a VM instance

Launch an instance supported by RAPIDS. See the [introduction
section for a list of supported instance types](index).

## Configure networking

Create a Floating IP and associate that with the created instance to access the instance on the web.

## Login

Using the credentials supplied by IBM, log into the instance
via SSH. For a short guide on launching your instance and accessing it, read the
[Getting Started with IBM Virtual Server Documentation](https://cloud.ibm.com/docs/virtual-servers?topic=virtual-servers-getting-started-tutorial).

## Install pre-requisites

Install the [NVIDIA drivers](https://docs.nvidia.com/datacenter/cloud-native/container-toolkit/install-guide.html#nvidia-drivers) and [Docker and the NVIDIA Docker
runtime](https://docs.nvidia.com/datacenter/cloud-native/container-toolkit/install-guide.html)
in the IBM virtual server instance.

## Install RAPIDS

Install RAPIDS docker image. The docker container can be
customized by using the options provided in the **[Getting
Started](https://rapids.ai/start.html)** page of RAPIDS. Example of an image
that can be used is provided below:

```shell
$ docker pull rapidsai/rapidsai:22.10-cuda11.5-runtime-ubuntu20.04-py3.9
$ docker run --gpus all --rm -it --shm-size=1g --ulimit memlock=-1 -p 8888:8888 -p 8787:8787 -p 8786:8786 \
rapidsai/rapidsai:22.10-cuda11.5-runtime-ubuntu20.04-py3.9
```

## Test RAPIDS

Test it! The RAPIDS docker image will start a Jupyter
notebook instance automatically. You can log into it by going to the Floating IP address
associated with the instance on port 8888.
1 change: 1 addition & 0 deletions source/cloud/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ Cloud

aws/index
azure/index
ibm/index