Skip to content

Commit

Permalink
OpenCL async activity working with profiling
Browse files Browse the repository at this point in the history
  • Loading branch information
khuck committed Oct 22, 2024
1 parent a20dbe1 commit 009b6fb
Show file tree
Hide file tree
Showing 3 changed files with 401 additions and 17 deletions.
6 changes: 6 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,12 @@ if (${CMAKE_MAJOR_VERSION} GREATER 2)
endif()
endif()

if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "IntelLLVM")
# Tell the Intel compiler to be quiet
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Rno-debug-disables-optimization")
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Rno-debug-disables-optimization")
endif ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "IntelLLVM")

set (CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT OFF)
set (CMAKE_CXX_STANDARD_COMPUTED_DEFAULT 17)

Expand Down
Loading

0 comments on commit 009b6fb

Please sign in to comment.