[Mlir-commits] [mlir] [MLIR][NFC] Fix SYCL spelling (PR #113060)
Ronan Keryell
llvmlistbot at llvm.org
Sat Oct 19 11:37:06 PDT 2024
https://github.com/keryell created https://github.com/llvm/llvm-project/pull/113060
See https://www.khronos.org/sycl/ for the official spelling of the Khronos Group standard.
Also fix MLIR spelling in the neighborhood.
>From e6b3807471106ea2e3ecd2598785763dea466c1d Mon Sep 17 00:00:00 2001
From: Ronan Keryell <ronan.keryell at amd.com>
Date: Sat, 19 Oct 2024 10:59:31 -0700
Subject: [PATCH] [MLIR][NFC] Fix SYCL spelling
See https://www.khronos.org/sycl/ for the official spelling of the Khronos Group
standard.
Also fix MLIR spelling in the neighborhood.
---
mlir/CMakeLists.txt | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/mlir/CMakeLists.txt b/mlir/CMakeLists.txt
index 1e80daabddec1c..2880dc30bca91f 100644
--- a/mlir/CMakeLists.txt
+++ b/mlir/CMakeLists.txt
@@ -127,11 +127,11 @@ else()
set(MLIR_ENABLE_ROCM_CONVERSIONS 0)
endif()
-set(MLIR_ENABLE_CUDA_RUNNER 0 CACHE BOOL "Enable building the mlir CUDA runner")
-set(MLIR_ENABLE_ROCM_RUNNER 0 CACHE BOOL "Enable building the mlir ROCm runner")
-set(MLIR_ENABLE_SYCL_RUNNER 0 CACHE BOOL "Enable building the mlir Sycl runner")
-set(MLIR_ENABLE_SPIRV_CPU_RUNNER 0 CACHE BOOL "Enable building the mlir SPIR-V cpu runner")
-set(MLIR_ENABLE_VULKAN_RUNNER 0 CACHE BOOL "Enable building the mlir Vulkan runner")
+set(MLIR_ENABLE_CUDA_RUNNER 0 CACHE BOOL "Enable building the MLIR CUDA runner")
+set(MLIR_ENABLE_ROCM_RUNNER 0 CACHE BOOL "Enable building the MLIR ROCm runner")
+set(MLIR_ENABLE_SYCL_RUNNER 0 CACHE BOOL "Enable building the MLIR SYCL runner")
+set(MLIR_ENABLE_SPIRV_CPU_RUNNER 0 CACHE BOOL "Enable building the MLIR SPIR-V cpu runner")
+set(MLIR_ENABLE_VULKAN_RUNNER 0 CACHE BOOL "Enable building the MLIR Vulkan runner")
set(MLIR_ENABLE_NVPTXCOMPILER 0 CACHE BOOL
"Statically link the nvptxlibrary instead of calling ptxas as a subprocess \
for compiling PTX to cubin")
More information about the Mlir-commits
mailing list