46 lines
1.4 KiB
CMake
46 lines
1.4 KiB
CMake
# Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
include(ExternalProject)
|
|
|
|
set(CUTLASS_PREFIX_DIR ${THIRD_PARTY_PATH}/cutlass)
|
|
set(CUTLASS_TAG v3.8.0)
|
|
set(CUTLASS_SOURCE_DIR ${PADDLE_SOURCE_DIR}/third_party/cutlass)
|
|
|
|
include_directories("${CUTLASS_SOURCE_DIR}/")
|
|
include_directories("${CUTLASS_SOURCE_DIR}/include/")
|
|
include_directories("${CUTLASS_SOURCE_DIR}/tools/util/include/")
|
|
|
|
add_definitions("-DPADDLE_WITH_CUTLASS")
|
|
add_definitions("-DSPCONV_WITH_CUTLASS=0")
|
|
|
|
if(NOT PYTHON_EXECUTABLE)
|
|
find_package(Python REQUIRED COMPONENTS Interpreter)
|
|
endif()
|
|
|
|
ExternalProject_Add(
|
|
extern_cutlass
|
|
${EXTERNAL_PROJECT_LOG_ARGS}
|
|
SOURCE_DIR ${CUTLASS_SOURCE_DIR}
|
|
PREFIX ${CUTLASS_PREFIX_DIR}
|
|
UPDATE_COMMAND ""
|
|
CONFIGURE_COMMAND ""
|
|
BUILD_COMMAND ""
|
|
INSTALL_COMMAND ""
|
|
TEST_COMMAND "")
|
|
|
|
add_library(cutlass INTERFACE)
|
|
|
|
add_dependencies(cutlass extern_cutlass)
|