* CUTLASS 3.8 Release * update * Update README.md * Revert "Update README.md" This reverts commit b353e36fe83e0815f99b44e46c0c95494c44726b. * update * update --------- Co-authored-by: Haicheng Wu <57973641+hwu36@users.noreply.github.com> Co-authored-by: Haicheng Wu <haichengw@nvidia.com>
106 lines
4.1 KiB
CMake
106 lines
4.1 KiB
CMake
# Copyright (c) 2014 - 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
#
|
|
# Redistribution and use in source and binary forms, with or without
|
|
# modification, are permitted provided that the following conditions are met:
|
|
#
|
|
# 1. Redistributions of source code must retain the above copyright notice, this
|
|
# list of conditions and the following disclaimer.
|
|
#
|
|
# 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
# this list of conditions and the following disclaimer in the documentation
|
|
# and/or other materials provided with the distribution.
|
|
#
|
|
# 3. Neither the name of the copyright holder nor the names of its
|
|
# contributors may be used to endorse or promote products derived from
|
|
# this software without specific prior written permission.
|
|
#
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
set_property(
|
|
SOURCE 77_blackwell_fmha.cu
|
|
PROPERTY COMPILE_FLAGS "--use_fast_math -ftemplate-backtrace-limit=0 --ptxas-options -v")
|
|
|
|
set_property(
|
|
SOURCE 77_blackwell_fmha_gen.cu
|
|
PROPERTY COMPILE_FLAGS "--use_fast_math -ftemplate-backtrace-limit=0 --ptxas-options -v")
|
|
|
|
set(TEST_BASIC --b=1 --h=4 --q=512 --k=512 --d=128 --verify --mask=no)
|
|
set(TEST_CAUSAL --b=1 --h=4 --q=512 --k=512 --d=128 --verify --mask=causal)
|
|
set(TEST_VARLEN --b=1 --h=4 --q=512 --k=512 --d=128 --verify --mask=residual --varlen)
|
|
set(TEST_HDIM64 --b=2 --h=4 --q=512 --k=512 --d=64 --verify)
|
|
set(TEST_GQA --b=2 --h=4 --h_k=2 --q=512 --k=512 --d=64 --verify)
|
|
|
|
set(TEST_GEN_BASIC --b=1 --h=4 --k=512 --d=128 --verify)
|
|
set(TEST_GEN_VARLEN --b=1 --h=4 --k=512 --d=128 --verify --varlen)
|
|
set(TEST_GEN_HDIM64 --b=2 --h=4 --k=512 --d=64 --verify)
|
|
set(TEST_GEN_GQA --b=2 --h=4 --h_k=2 --k=512 --d=64 --verify)
|
|
set(TEST_GEN_REMAP --b=2 --h=4 --h_k=2 --k=512 --d=128 --verify --remap)
|
|
set(TEST_GEN_CACHEONLY --b=2 --h=4 --h_k=2 --k=512 --d=128 --verify --cache-only)
|
|
|
|
if(NOT WIN32 AND (NOT (CMAKE_CXX_COMPILER_ID MATCHES "Clang")))
|
|
if(NOT CUTLASS_NVCC_ARCHS STREQUAL "100")
|
|
cutlass_example_add_executable(
|
|
77_blackwell_fmha_fp8
|
|
77_blackwell_fmha.cu
|
|
TEST_COMMAND_OPTIONS
|
|
TEST_BASIC
|
|
# TEST_CAUSAL
|
|
# TEST_VARLEN
|
|
# TEST_HDIM64
|
|
# TEST_GQA)
|
|
)
|
|
target_include_directories(77_blackwell_fmha_fp8 PRIVATE ${CMAKE_CURRENT_SOURCE_DIR})
|
|
target_compile_definitions(77_blackwell_fmha_fp8 PRIVATE FP8)
|
|
|
|
cutlass_example_add_executable(
|
|
77_blackwell_fmha_gen_fp8
|
|
77_blackwell_fmha_gen.cu
|
|
TEST_COMMAND_OPTIONS
|
|
TEST_GEN_BASIC
|
|
# TEST_GEN_VARLEN
|
|
# TEST_GEN_HDIM64
|
|
# TEST_GEN_GQA
|
|
# TEST_GEN_REMAP
|
|
# TEST_GEN_CACHEONLY)
|
|
)
|
|
target_include_directories(77_blackwell_fmha_gen_fp8 PRIVATE ${CMAKE_CURRENT_SOURCE_DIR})
|
|
target_compile_definitions(77_blackwell_fmha_gen_fp8 PRIVATE FP8)
|
|
|
|
cutlass_example_add_executable(
|
|
77_blackwell_fmha_fp16
|
|
77_blackwell_fmha.cu
|
|
TEST_COMMAND_OPTIONS
|
|
TEST_BASIC
|
|
# TEST_CAUSAL
|
|
# TEST_VARLEN
|
|
# TEST_HDIM64
|
|
# TEST_GQA)
|
|
)
|
|
target_include_directories(77_blackwell_fmha_fp16 PRIVATE ${CMAKE_CURRENT_SOURCE_DIR})
|
|
|
|
cutlass_example_add_executable(
|
|
77_blackwell_fmha_gen_fp16
|
|
77_blackwell_fmha_gen.cu
|
|
TEST_COMMAND_OPTIONS
|
|
TEST_GEN_BASIC
|
|
# TEST_GEN_VARLEN
|
|
# TEST_GEN_HDIM64
|
|
# TEST_GEN_GQA
|
|
# TEST_GEN_REMAP
|
|
# TEST_GEN_CACHEONLY)
|
|
)
|
|
target_include_directories(77_blackwell_fmha_gen_fp16 PRIVATE ${CMAKE_CURRENT_SOURCE_DIR})
|
|
endif()
|
|
endif()
|