Skip to content
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
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ For business inquiries you can reach out at hello@undream.ai.
- [HeyWaifu](https://squirclegames.itch.io/hey-waifu-ai)
- [Love and Lie](https://store.steampowered.com/app/3886140/Love_and_Lie/)
- [Psycho Simulator](https://store.steampowered.com/app/1244620/Psycho_Simulator/)
- [False Flame](https://store.steampowered.com/app/4427250/False_Flame/)

Contact hello@undream.ai to add your project!

Expand Down
5 changes: 1 addition & 4 deletions Runtime/LlamaLib/LlamaLib.cs
Original file line number Diff line number Diff line change
Expand Up @@ -751,10 +751,7 @@ private string GetRuntimeLibraryPath()
private string[] GetAvailableArchitectures(bool gpu)
{
string architecturesString = Marshal.PtrToStringAnsi(Available_Architectures(gpu));
if (string.IsNullOrEmpty(architecturesString))
{
throw new InvalidOperationException("No architectures available for the specified GPU setting.");
}
if (string.IsNullOrEmpty(architecturesString)) return new string[0];

string[] librariesOptions = architecturesString.Split(',');
List<string> libraries = new List<string>();
Expand Down