Skip to content
Merged
Changes from 4 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
10 changes: 10 additions & 0 deletions _ml-commons-plugin/gpu-acceleration.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,16 @@ else
fi
```

If you run opensearch natively without docker and you are using the packaged version of opensearch, systemd prevents you from accessing the gpu inside opensearch. The requirements to be able to accelerate a model is a working installation of cuda-toolkit and the ability to access the nvidia card under /dev. To grant OpenSearch access to the GPU, try modify the systemd service definition and add the following configuration:

```
systemctl edit opensearch.service

[Service]
DevicePolicy=auto
```


After verifying that `nvidia-uvm` exists under `/dev`, you can start OpenSearch inside your cluster.

### Preparing AWS Inferentia ML node
Expand Down