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 1f92040 commit b94153bCopy full SHA for b94153b
sycl/test-e2e/lit.cfg.py
@@ -802,6 +802,13 @@ def open_check_file(file_name):
802
for arch in architectures
803
if get_device_name_from_arch(arch) is not None
804
)
805
+
806
+ # Print the detected GPU family name.
807
+ if len(device_names) > 0:
808
+ lit_config.note(
809
+ "Detected GPU family for {}: {}".format(sycl_device, ", ".join(device_names))
810
+ )
811
812
features = set()
813
features.update(aspect_features)
814
features.update(sg_size_features)
0 commit comments