mirror of
https://github.com/microsoft/mscclpp.git
synced 2026-04-19 14:29:13 +00:00
Reorganize current native algorithm implementation and DSL algorithm implementation. Provide unified API for DSL algo and native algo and provide interface to tune the algo Provide interface for pytorch integration with native API and DSL --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com> Co-authored-by: chhwang <8018170+chhwang@users.noreply.github.com>
16 lines
498 B
CMake
16 lines
498 B
CMake
# Copyright (c) Microsoft Corporation.
|
|
# Licensed under the MIT license.
|
|
|
|
add_subdirectory(csrc)
|
|
add_subdirectory(test)
|
|
|
|
add_custom_target(pytest_lib_copy ALL
|
|
COMMAND ${CMAKE_COMMAND} -E copy_if_different
|
|
${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/_mscclpp.*.so
|
|
${CMAKE_CURRENT_SOURCE_DIR}/mscclpp
|
|
COMMAND ${CMAKE_COMMAND} -E copy_if_different
|
|
${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/_ext.*.so
|
|
${CMAKE_CURRENT_SOURCE_DIR}/test/_cpp
|
|
DEPENDS mscclpp_py mscclpp_py_test
|
|
)
|