We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ad565a commit 4ea91baCopy full SHA for 4ea91ba
citc/aws.py
@@ -86,7 +86,9 @@ def get_types_info(client):
86
s: {
87
"memory": d["MemoryInfo"]["SizeInMiB"]
88
- int(math.pow(d["MemoryInfo"]["SizeInMiB"], 0.7) * 0.9 + 500),
89
- "cores_per_socket": d["VCpuInfo"].get("DefaultCores", d["VCpuInfo"]["DefaultVCpus"]),
+ "cores_per_socket": d["VCpuInfo"].get(
90
+ "DefaultCores", d["VCpuInfo"]["DefaultVCpus"]
91
+ ),
92
"threads_per_core": d["VCpuInfo"].get("DefaultThreadsPerCore", 1),
93
"arch": d["ProcessorInfo"]["SupportedArchitectures"][0],
94
}
0 commit comments