Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sort performance optimisation with SYCL #692

Draft
wants to merge 10 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions benchmarks/gbench/mhp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,7 @@ endif()
# mhp-quick-bench is for development. By reducing the number of source files, it
# builds much faster. Change the source files to match what you need to test. It
# is OK to commit changes to the source file list.
add_executable(mhp-quick-bench mhp-bench.cpp
../common/inclusive_exclusive_scan.cpp)
add_executable(mhp-quick-bench mhp-bench.cpp ../common/sort.cpp)

foreach(mhp-bench-exec IN ITEMS mhp-bench mhp-quick-bench)
target_compile_definitions(${mhp-bench-exec} PRIVATE BENCH_MHP)
Expand All @@ -48,9 +47,7 @@ foreach(mhp-bench-exec IN ITEMS mhp-bench mhp-quick-bench)
endif()
endforeach()

if(ENABLE_SYCL)
target_sources(mhp-quick-bench PRIVATE fft3d.cpp)
endif()
# if(ENABLE_SYCL) target_sources(mhp-quick-bench PRIVATE fft3d.cpp) endif()

cmake_path(GET MPI_CXX_ADDITIONAL_INCLUDE_DIRS FILENAME MPI_IMPL)

Expand Down
Loading