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.
set([...])
1 parent 4352366 commit cabeb7eCopy full SHA for cabeb7e
tests/framework/utils_cpu_templates.py
@@ -29,7 +29,7 @@ def get_supported_cpu_templates():
29
match get_cpu_vendor(), global_props.cpu_codename:
30
# T2CL template is only supported on Cascade Lake and newer CPUs.
31
case CpuVendor.INTEL, CpuModel.INTEL_SKYLAKE:
32
- return sorted(set(INTEL_TEMPLATES) - set(["T2CL"]))
+ return sorted(set(INTEL_TEMPLATES) - {"T2CL"})
33
case CpuVendor.INTEL, _:
34
return INTEL_TEMPLATES
35
case CpuVendor.AMD, _:
0 commit comments