public GpuDevice(int id, string platform, int coreCount, int threadCount, DeviceArch architecture) : base(id, platform, coreCount, threadCount, architecture) { }
public CudaGpuDevice(int id, string platform, int coreCount, int threadCount, DeviceArch architecture, GPUUsageInformation usageInformation) : base(id, platform, coreCount, threadCount, architecture) { UsageInformation = usageInformation; }
protected Device(int id, string platform, int coreCount, int threadCount, DeviceArch architecture) { Id = id; Platform = platform; CoreCount = coreCount; ThreadCount = threadCount; Architecture = architecture; }