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.

14 lines
308 B

  1. cmake_minimum_required(VERSION 3.18)
  2. project(dml-test)
  3. set(CMAKE_CXX_STANDARD 20)
  4. include_directories("../../DML/include/")
  5. set(SOURCES main.cpp)
  6. add_executable(dml-test ${SOURCES})
  7. target_link_libraries(dml-test libdml.a ${CMAKE_DL_LIBS})
  8. install(TARGETS dml-test DESTINATION ${CMAKE_INSTALL_PREFIX})