This contains my bachelors thesis and associated tex files, code snippets and maybe more. Topic: Data Movement in Heterogeneous Memories with Intel Data Streaming Accelerator
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
594 B

  1. cmake_minimum_required(VERSION 3.18)
  2. list(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/modules")
  3. project(dml-benchmark)
  4. set(CMAKE_CXX_STANDARD 20)
  5. include_directories("../../DML/include/")
  6. find_package(NUMA REQUIRED)
  7. set(SOURCES main.cpp)
  8. set(INCLUDES benchmark.hpp statuscode-tostring.hpp task-data.hpp)
  9. add_executable(dml-benchmark ${SOURCES})
  10. target_include_directories(dml-benchmark PRIVATE ${NUMA_INCLUDE_DIRS})
  11. target_link_libraries(dml-benchmark PRIVATE libdml.a pthread ${CMAKE_DL_LIBS} ${NUMA_LIBRARY})
  12. install(TARGETS dml-benchmark DESTINATION ${CMAKE_INSTALL_PREFIX})