Skip to content

Commit

Permalink
Added simpleGL and vulkanCUDASinewave
Browse files Browse the repository at this point in the history
  • Loading branch information
kwoodle committed May 12, 2020
1 parent 0ab44bd commit f424430
Show file tree
Hide file tree
Showing 6 changed files with 2,853 additions and 1 deletion.
14 changes: 13 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,22 @@ add_executable(asyncAPI asyncAPI.cu)
find_package(MPI REQUIRED)
include_directories(${MPI_CXX_INCLUDE_DIRS})

add_executable(simpleMPI simpleMPI.cpp simpleMPI.h simpleMPI.cu)
add_executable(simpleMPI simpleMPI.cpp simpleMPI.cu)
target_link_libraries(simpleMPI ${MPI_CXX_LIBRARIES})

add_executable(cudaTensorCoreGemm cudaTensorCoreGemm.cu)
target_link_libraries(cudaTensorCoreGemm)

add_executable(bandwidthTest bandwidthTest.cu)

find_package(OpenGL REQUIRED)
add_executable(simpleGL simpleGL.cu)
target_link_libraries(simpleGL GL GLU glut)

set(VULKANSDK = /kws_space/vulkansdk_1.2.135.0/x86_64)
add_executable(simpleVulkan vulkanCUDASinewave.cu)
target_include_directories(simpleVulkan PRIVATE "${VULKANSDK}/include" )
target_link_directories(simpleVulkan PRIVATE "${VULKANSDK}/lib")
target_link_libraries(simpleVulkan vulkan glfw)

add_executable(interval )
Loading

0 comments on commit f424430

Please sign in to comment.