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
Copy file name to clipboardExpand all lines: buildbot/configure.py
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,7 @@ def do_configure(args):
32
32
libclc_targets_to_build=''
33
33
libclc_gen_remangled_variants='OFF'
34
34
sycl_build_pi_cuda='OFF'
35
-
sycl_build_pi_esimd_emulator='ON'
35
+
sycl_build_pi_esimd_emulator='OFF'
36
36
sycl_build_pi_hip='OFF'
37
37
sycl_build_pi_hip_platform='AMD'
38
38
sycl_clang_extra_flags=''
@@ -50,8 +50,8 @@ def do_configure(args):
50
50
ifargs.arm:
51
51
llvm_targets_to_build='ARM;AArch64'
52
52
53
-
ifargs.disable_esimd_emulator:
54
-
sycl_build_pi_esimd_emulator='OFF'
53
+
ifargs.enable_esimd_emulator:
54
+
sycl_build_pi_esimd_emulator='ON'
55
55
56
56
ifargs.cudaorargs.hip:
57
57
llvm_enable_projects+=';libclc'
@@ -213,7 +213,7 @@ def main():
213
213
parser.add_argument("--hip-platform", type=str, choices=['AMD', 'NVIDIA'], default='AMD', help="choose hardware platform for HIP backend")
214
214
parser.add_argument("--hip-amd-arch", type=str, help="Sets AMD gpu architecture for llvm lit tests, this is only needed for the HIP backend and AMD platform")
215
215
parser.add_argument("--arm", action='store_true', help="build ARM support rather than x86")
@@ -121,7 +121,7 @@ flags can be found by launching the script with `--help`):
121
121
*`--cuda` -> use the cuda backend (see [Nvidia CUDA](#build-dpc-toolchain-with-support-for-nvidia-cuda))
122
122
*`--hip` -> use the HIP backend (see [HIP](#build-dpc-toolchain-with-support-for-hip-amd))
123
123
*`--hip-platform` -> select the platform used by the hip backend, `AMD` or `NVIDIA` (see [HIP AMD](#build-dpc-toolchain-with-support-for-hip-amd) or see [HIP NVIDIA](#build-dpc-toolchain-with-support-for-hip-nvidia))
124
-
* '--enable-esimd-cpu-emulation' -> enable ESIMD CPU emulation (see [ESIMD CPU emulation](#build-dpc-toolchain-with-support-for-esimd-cpu))
124
+
* '--enable-esimd-emulator' -> enable ESIMD CPU emulation (see [ESIMD CPU emulation](#build-dpc-toolchain-with-support-for-esimd-cpu))
125
125
*`--shared-libs` -> Build shared libraries
126
126
*`-t` -> Build type (debug or release)
127
127
*`-o` -> Path to build directory
@@ -261,37 +261,23 @@ CUDA 11, and using a GeForce 1060 device.
261
261
There is experimental support for DPC++ for using ESIMD CPU Emulation
262
262
263
263
This feature supports ESIMD CPU Emulation using CM_EMU library [CM
0 commit comments