Multi-Platform Package Manager for Stable Diffusion
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

13 lines
230 B

namespace StabilityMatrix.Core.Helper;
[Flags]
public enum PlatformKind
{
Unknown = 0,
Windows = 1 << 0,
Unix = 1 << 1,
Linux = Unix | 1 << 2,
MacOS = Unix | 1 << 3,
Arm = 1 << 20,
X64 = 1 << 21,
}