Merge triton-mlir
branch - Complete rewrite of the backend from scratch (#1004)
This PR merges the `triton-mlir` branch, in which we have been quietly rewriting the Triton backend from scratch to increase maintainability, stability and ultimately performance. Changes to the runtime are minimal, and this new version aims to remain backward-compatible with the previous commit. The legacy backend is now officially deprecated, but can still be accessed via the `legacy-backend` tag. Co-authored-by: Keren Zhou <kerenzhou@openai.com> Co-authored-by: Yan Chunwei <yanchunwei@outlook.com> Co-authored-by: goostavz <109190422+goostavz@users.noreply.github.com> Co-authored-by: Shintaro Iwasaki <siwasaki@fb.com> Co-authored-by: Yan Da <dyanab@connect.ust.hk> Co-authored-by: Jun Yang <yangjunpro@gmail.com> Co-authored-by: Ian Bearman <ianb@microsoft.com> Co-authored-by: Jason Ansel <jansel@jansel.net> Co-authored-by: Qingyi Liu <qingyil@nvidia.com> Co-authored-by: ben-zhang-609 <110140741+ben-zhang-609@users.noreply.github.com> Co-authored-by: Chenggang Zhao <lyricz@yeah.net> Co-authored-by: ben-zhang-609 <benzh609@gmail.com> Co-authored-by: dongdongl <dongdongl@nvidia.com>
This commit is contained in:
29
unittest/CMakeLists.txt
Normal file
29
unittest/CMakeLists.txt
Normal file
@@ -0,0 +1,29 @@
|
||||
|
||||
include (${CMAKE_CURRENT_SOURCE_DIR}/googletest.cmake)
|
||||
|
||||
include(GoogleTest)
|
||||
enable_testing()
|
||||
|
||||
function(add_triton_ut)
|
||||
set(options)
|
||||
set(oneValueArgs NAME)
|
||||
set(multiValueArgs SRCS LIBS)
|
||||
cmake_parse_arguments(_ "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN})
|
||||
add_test(NAME ${__NAME}
|
||||
COMMAND ${__NAME})
|
||||
add_executable(
|
||||
${__NAME}
|
||||
${__SRCS})
|
||||
target_link_libraries(
|
||||
${__NAME}
|
||||
PRIVATE
|
||||
GTest::gtest_main
|
||||
gmock
|
||||
${__LIBS})
|
||||
|
||||
gtest_discover_tests(${__NAME})
|
||||
endfunction()
|
||||
|
||||
add_subdirectory(Analysis)
|
||||
add_subdirectory(Conversion)
|
||||
add_subdirectory(Dialect)
|
Reference in New Issue
Block a user