File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -11,10 +11,10 @@ if 'gpu-intel-gen9' in config.available_features and platform.system() == 'Windo
1111# so there's no difference in coverage.
1212# We should investigate why OCL fails separately.
1313
14- # GPUs to disable ESIMD tests for OpenCL backend.
15- gpus_requiring_l0 = [ ' gpu-intel-dg2 ' , ' gpu-intel-pvc ' ]
14+ # Check if any device has arch-intel_gpu_pvc
15+ has_arch_gpu_intel_pvc = any( ' arch-intel_gpu_pvc ' in T for T in config.sycl_dev_features.values())
1616
17- if set(gpus_requiring_l0) & set( config.available_features) :
17+ if ' gpu-intel-dg2 ' in config.available_features or has_arch_gpu_intel_pvc :
1818 config.required_features += [' level_zero' ]
1919
2020# TODO: Remove this once the warnings are resolved
Original file line number Diff line number Diff line change 159159 config .available_features .add (
160160 "matrix-tf32"
161161 ) # PVC implies the support of TF32 matrix
162- config .available_features .add ("gpu-intel-pvc" )
163162if lit_config .params .get ("gpu-intel-pvc-vg" , False ):
164163 config .available_features .add ("gpu-intel-pvc-vg" )
165164 config .available_features .add (
You can’t perform that action at this time.
0 commit comments