Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove references to Pascal #376

Merged
merged 1 commit into from
Jun 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion source/cloud/aws/ecs.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ For Networking, select the default VPC and all the subnets available in that VPC
Select "Amazon EC2 instances" for the Infrastructure type and configure your settings:

- Operating system: must be Linux-based architecture
- EC2 instance type: must support RAPIDS-compatible GPUs (Pascal or greater), e.g `p3.2xlarge`
- EC2 instance type: must support RAPIDS-compatible GPUs ([see the RAPIDS docs](https://docs.rapids.ai/install#system-req))
- Desired capacity: number of maximum instances to launch (default maximum 5)
- SSH Key pair

Expand Down
2 changes: 1 addition & 1 deletion source/cloud/aws/sagemaker.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ To get started head to SageMaker and create a [new SageMaker Notebook Instance](

### Select your instance

Select a [RAPIDS compatible GPU](https://medium.com/dropout-analytics/which-gpus-work-with-rapids-ai-f562ef29c75f) (NVIDIA Pascal or greater with compute capability 6.0+) as the SageMaker Notebook instance type (e.g., `ml.p3.2xlarge`).
Select a RAPIDS-compatible GPU ([see the RAPIDS docs](https://docs.rapids.ai/install#system-req)) as the SageMaker Notebook instance type (e.g., `ml.p3.2xlarge`).

![Screenshot of the create new notebook screen with a ml.p3.2xlarge selected](../../images/sagemaker-create-notebook-instance.png)

Expand Down
6 changes: 2 additions & 4 deletions source/examples/rapids-azureml-hpo/notebook.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -173,11 +173,9 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"`size` describes the virtual machine type and size that will be used in the cluster. RAPIDS requires NVIDIA Pascal or newer architecture, so \n",
"you will need to select compute targets from one of the \n",
"[GPU virtual machines in Azure](https://docs.microsoft.com/en-us/azure/virtual-machines/sizes-gpu) provisioned with P40 and V100 GPUs : `NC_v2`, `NC_v3`, `ND` or `ND_v2` \n",
"`size` describes the virtual machine type and size that will be used in the cluster. See \"System Requirements\" in the RAPIDS docs ([link](https://docs.rapids.ai/install#system-req)) and \"GPU optimized virtual machine sizes\" in the Azure docs ([link](https://learn.microsoft.com/en-us/azure/virtual-machines/sizes-gpu)) to identify an instance type.\n",
"\n",
"Let's create an `AmlCompute` cluster of `Standard_NC12s_v3` GPU VMs:"
"Let's create an `AmlCompute` cluster of `Standard_NC12s_v3` (Tesla V100) GPU VMs:"
]
},
{
Expand Down
Loading