Specifications of CPU computing power assigned to a service.
golem.inf.cpu.architecture : String
CPU architecture.
|Value| Description | |—|—| |”x86”| Intel x86 32-bit architecture | |”x86_64”| Intel x86 64-bit architecture |
golem.inf.cpu.architecture="x86_64"
- Declares x86 64-bit CPU available.golem.inf.cpu.vendor : String
CPU vendor.
golem.inf.cpu.vendor="AuthenticAMD"
golem.inf.cpu.brand : String
CPU brand, human-readable.
golem.inf.cpu.brand="AMD Ryzen 9 5900X 12-Core Processor"
golem.inf.cpu.model : String
CPU stepping, family and model.
golem.inf.cpu.model="Stepping 0 Family 35 Model 65"
golem.inf.cpu.cores : Number (int32)
Total number of CPU cores assigned to service. It is a sum of CPU cores possibly from multiple CPUs.
golem.inf.cpu.cores=4
golem.inf.cpu.threads : Number (int32)
Total number of CPU threads assigned to service. It is a sum of CPU threads possibly from multiple CPUs and cores.
golem.inf.cpu.threads=8
golem.inf.cpu.capabilities : List[String]
CPU capability flags. For x86 architectures this property is populated with CPU features as returned by CPUID instruction. For full list, see here: https://github.com/golemfactory/ya-runtime-vm/blob/master/runtime/src/cpu.rs#L59
golem.inf.cpu.capabilities=["fpu","sse","sse2","ssse3","sse4_1","sse4_2","ht","x86-64","avx","avx2"]