Skip to content

Commit

Permalink
Fix DirectML package name in genai/howto/install.md (#20771)
Browse files Browse the repository at this point in the history
### Description
Fix package name 
from ```dotnet add package Microsoft.ML.OnnxRuntimeGenAI.*Cuda*
--prerelease``` to ```dotnet add package
Microsoft.ML.OnnxRuntimeGenAI.DirectML --prerelease``` in DirectML
section.

### Motivation and Context
Clearly confusing for beginners if not fixed (will break further processes)
  • Loading branch information
boenkemeyer authored May 23, 2024
1 parent 643a16a commit 4b919fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/genai/howto/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ dotnet add package Microsoft.ML.OnnxRuntimeGenAI.Cuda --prerelease
For the package that has been optimized for DirectML:

```bash
dotnet add package Microsoft.ML.OnnxRuntimeGenAI.Cuda --prerelease
dotnet add package Microsoft.ML.OnnxRuntimeGenAI.DirectML --prerelease
```


Expand Down

0 comments on commit 4b919fe

Please sign in to comment.