Skip to content

Commit 2ea80bd

Browse files
committed
fix typo
1 parent dee5ae9 commit 2ea80bd

3 files changed

Lines changed: 10 additions & 3 deletions

File tree

cmake/modules/compiler.cmake

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,13 @@ elseif(((CMAKE_CXX_COMPILER_ID STREQUAL "Clang") OR
151151
(CMAKE_CXX_COMPILER_ID STREQUAL "AppleClang")) AND
152152
(NOT PATHSCALE_COMPILER))
153153
include(cmake/modules/clang.cmake)
154+
if(CMAKE_CXX_COMPILER_ID STREQUAL "IntelLLVM")
155+
option(enable-intel-llvm-sycl-support "enable sycl support" OFF)
156+
if(enable-intel-llvm-sycl-support)
157+
add_compile_options("-fsycl")
158+
list(APPEND MGIS_ADDITIONAL_LINK_FLAGS "-fsycl")
159+
endif(enable-intel-llvm-sycl-support)
160+
endif(CMAKE_CXX_COMPILER_ID STREQUAL "IntelLLVM")
154161
elseif(CMAKE_CXX_COMPILER_ID STREQUAL "NVHPC")
155162
include(cmake/modules/nvhpc.cmake)
156163
elseif(CMAKE_CXX_COMPILER_ID STREQUAL "Intel")

docs/web/functions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,9 +170,9 @@ In a field-major pattern, the values a single-valuated field are usually
170170
stored as follows:
171171

172172
~~~~
173-
+---------++---------++---------++---------+
173+
+-----------++-----------++---------++-----------+
174174
| Element 1 || Element 2 || ....... || Element N |
175-
+---------++---------++---------++---------+
175+
+-----------++-----------++---------++-----------+
176176
~~~~
177177

178178
Multi-component values can be stored:

tests/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ if((CMAKE_HOST_WIN32) AND (NOT MSYS))
4848
PROPERTY DEPENDS MaterialPropertyTest
4949
PROPERTY ENVIRONMENT "PATH=$<TARGET_FILE_DIR:MFrontGenericInterface>\;${MGIS_PATH_STRING}")
5050
else((CMAKE_HOST_WIN32) AND (NOT MSYS))
51-
set_property(TEST LoadMaterialPropertyTestMFrontGenericBehaviourInterfaceTest
51+
set_property(TEST LoadMaterialPropertyTest
5252
PROPERTY DEPENDS MaterialPropertyTest)
5353
endif((CMAKE_HOST_WIN32) AND (NOT MSYS))
5454

0 commit comments

Comments
 (0)