File tree Expand file tree Collapse file tree 4 files changed +20
-6
lines changed Expand file tree Collapse file tree 4 files changed +20
-6
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"linux" : {
3
3
"igc_dev" : {
4
- "github_tag" : " igc-dev-6fe460a " ,
5
- "version" : " 6fe460a " ,
6
- "updated_at" : " 2024-06-24T01:03:13Z " ,
7
- "url" : " https://api.github.com/repos/intel/intel-graphics-compiler/actions/artifacts/1629761341 /zip" ,
4
+ "github_tag" : " igc-dev-15caa46 " ,
5
+ "version" : " 15caa46 " ,
6
+ "updated_at" : " 2024-07-24T18:43:46Z " ,
7
+ "url" : " https://api.github.com/repos/intel/intel-graphics-compiler/actions/artifacts/1736434628 /zip" ,
8
8
"root" : " {DEPS_ROOT}/opencl/runtime/linux/oclgpu"
9
9
}
10
10
}
Original file line number Diff line number Diff line change 5
5
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6
6
//
7
7
// ===----------------------------------------------------------------------===//
8
- // Add "-options -vc-codegen" explicitly to workaround bug in dev igc package.
8
+ // XFAIL: igc- dev
9
9
// REQUIRES: ocloc
10
- // RUN: %clangxx -fsycl -fsycl-targets=intel_gpu_tgllp %s -Xs "-options -vc-codegen" - o %t.out
10
+ // RUN: %clangxx -fsycl -fsycl-targets=intel_gpu_tgllp %s -o %t.out
11
11
// RUN: %t.out
12
12
13
13
// This is basic test to test hardware dispatch functionality with ESIMD.
Original file line number Diff line number Diff line change 178
178
if lit_config .params .get ("matrix-fp16" , False ):
179
179
config .available_features .add ("matrix-fp16" )
180
180
181
+
182
+ def check_igc_tag_and_add_feature ():
183
+ if os .path .isfile (config .igc_tag_file ):
184
+ with open (config .igc_tag_file , "r" ) as tag_file :
185
+ contents = tag_file .read ()
186
+ if "igc-dev" in contents :
187
+ config .available_features .add ("igc-dev" )
188
+
189
+
190
+ # Call the function to perform the check and add the feature
191
+ check_igc_tag_and_add_feature ()
192
+
181
193
# support for LIT parameter ur_l0_debug<num>
182
194
if lit_config .params .get ("ur_l0_debug" ):
183
195
config .ur_l0_debug = lit_config .params .get ("ur_l0_debug" )
Original file line number Diff line number Diff line change @@ -26,6 +26,8 @@ config.cuda_include = "@CUDA_INCLUDE@"
26
26
27
27
config.opencl_include_dir = os.path.join(config.sycl_include, 'sycl')
28
28
29
+ config.igc_tag_file = os.path.join("/usr/local/lib/igc/", 'IGCTAG.txt')
30
+
29
31
config.sycl_devices = lit_config.params.get("sycl_devices", "@SYCL_TEST_E2E_TARGETS@").split(';')
30
32
31
33
config.hip_platform = "@HIP_PLATFORM@"
You can’t perform that action at this time.
0 commit comments