We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f5c272a commit 45834f3Copy full SHA for 45834f3
1 file changed
scripts/create_perf_table.py
@@ -52,6 +52,7 @@
52
cpu_num = os.environ.get("PROC_COUNT")
53
if cpu_num is None:
54
raise EnvironmentError("Required environment variable 'PROC_COUNT' is not set.")
55
+ cpu_num = int(cpu_num)
56
worksheet.write(0, 0, "cpu_num = " + str(cpu_num), right_bold_border)
57
58
it = 1
0 commit comments