- Added alloc const - Added atomics - Pruning tuning space - Added example for dot/conv/shift - Bugfixes
7 lines
248 B
CMake
7 lines
248 B
CMake
foreach(PROG dot conv shift)
|
|
add_executable(${PROG} ${PROG}.cpp)
|
|
set_target_properties(${PROG} PROPERTIES OUTPUT_NAME ${PROG})
|
|
include_directories(/usr/local/cuda/include/)
|
|
target_link_libraries(${PROG} triton)
|
|
endforeach(PROG)
|