You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Fix XPU build
The XPU build would fail in some cases, e.g. when using sycl-cutlass.
The compiler detection really needs to be done before the CMake project
is defined.
* Try to fix Windows Python build while also keeping XPU fixed
* CI: build XPU cutlass-gemm kernel
# On Windows, use icx (MSVC-compatible) for C++ to work with Ninja generator
167
178
# On Linux, use icpx (GNU-compatible) for C++
168
179
if(WIN32)
169
-
set(CMAKE_CXX_COMPILER${ICX_COMPILER})
170
180
message(STATUS"Using Intel SYCL C++ compiler: ${ICX_COMPILER} and C compiler: ${ICX_COMPILER} Version: ${DPCPP_VERSION} (Windows MSVC-compatible mode)")
171
181
else()
172
-
set(CMAKE_CXX_COMPILER${ICPX_COMPILER})
173
182
message(STATUS"Using Intel SYCL C++ compiler: ${ICPX_COMPILER} and C compiler: ${ICX_COMPILER} Version: ${DPCPP_VERSION}")
0 commit comments