Skip to content

Commit 4f71b97

Browse files
Use explicit g++-13 and fix clang++ failure
1 parent ebe50e9 commit 4f71b97

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/intel_test_gpp_host.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
env >> $GITHUB_ENV
7676
which $CXX
7777
$CXX --version
78-
g++ --version
78+
g++-13 --version
7979
sycl-ls
8080
- name: Pre-Build
8181
shell: bash
@@ -84,7 +84,7 @@ jobs:
8484
-DCUTLASS_ENABLE_SYCL=ON \
8585
-DDPCPP_SYCL_TARGET=${{ matrix.sycl_target }} \
8686
-DCUTLASS_SYCL_RUNNING_CI=ON \
87-
-DDPCPP_HOST_COMPILER=g++
87+
-DDPCPP_HOST_COMPILER=g++-13
8888
8989
- name: Unit test
9090
shell: bash

tools/util/include/cutlasscompat/launch_policy.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ struct KernelFunctor {
219219
: _kernel_properties{kernel_props}, _local_acc{local_acc},
220220
_argument_tuple(std::make_tuple(args...)) {}
221221

222-
auto get(sycl_exp::properties_tag) { return _kernel_properties; }
222+
auto get(sycl_exp::properties_tag) const { return _kernel_properties; }
223223

224224
__cutlasscompat_inline__ void
225225
operator()(cutlasscompat::detail::range_to_item_t<Range>) const {

0 commit comments

Comments
 (0)