Example #1
0
 public static void ParamsInputFunction(ref s_CPU_Desc desc)
 {
     paramInput("Frequency", ref desc.Freq);
     paramInput("Physical cores count", ref desc.Phy_Cores);
     paramInput("Logical cores count", ref desc.Log_Cores);
     paramInput("Manufacturer", ref desc.Manufacturer);
     paramInput("Socket", ref desc.Socket);
     paramInput("L1Chache", ref desc.L1Chache);
     paramInput("L2Chache", ref desc.L2Chache);
     paramInput("L3Chache", ref desc.L3Chache);
 }
Example #2
0
 public CPU(s_CPU_Desc deviceDesc)
 {
     this.description = deviceDesc;
 }