forked from NVIDIA/cutlass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
152 lines (140 loc) · 5.25 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
# Copyright (c) 2024 - 2024 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.
# The purpose of this target is to check if the following header files are self-contained,
# i.e. they can be included in a source file without needing to include other headers before it.
set(header_files_to_check
# cutlass
# cutlass/gemm/kernel
cutlass/gemm/kernel/default_gemm.h
cutlass/gemm/kernel/default_gemm_complex.h
cutlass/gemm/kernel/gemm_universal_decl.h
# cutlass/gemm/kernel/sm90_gemm_warpspecialized.hpp
# cute
cute/config.hpp
cute/int_tuple.hpp
cute/layout.hpp
cute/layout_composed.hpp
cute/pointer.hpp
cute/pointer_base.hpp
cute/pointer_flagged.hpp
cute/pointer_swizzle.hpp
cute/stride.hpp
cute/swizzle.hpp
cute/swizzle_layout.hpp
cute/tensor.hpp
cute/tensor_impl.hpp
cute/tensor_predicate.hpp
cute/underscore.hpp
# cute/algorithm
cute/algorithm/axpby.hpp
cute/algorithm/clear.hpp
# cute/algorithm/cooperative_copy.hpp
cute/algorithm/cooperative_gemm.hpp
# cute/algorithm/copy.hpp
cute/algorithm/fill.hpp
cute/algorithm/functional.hpp
# cute/algorithm/gemm.hpp
cute/algorithm/prefer.hpp
# cute/algorithm/prefetch.hpp
cute/algorithm/tensor_algorithms.hpp
cute/algorithm/tuple_algorithms.hpp
# cute/container
cute/container/alignment.hpp
cute/container/array.hpp
cute/container/array_aligned.hpp
cute/container/array_subbyte.hpp
cute/container/bit_field.hpp
cute/container/cuda_types.hpp
cute/container/packed_tuple.hpp
cute/container/tuple.hpp
cute/container/type_list.hpp
# cute/numeric
cute/numeric/arithmetic_tuple.hpp
cute/numeric/complex.hpp
cute/numeric/int.hpp
cute/numeric/integer_sequence.hpp
cute/numeric/integral_ratio.hpp
cute/numeric/math.hpp
cute/numeric/numeric_types.hpp
cute/numeric/real.hpp
cute/numeric/integral_constant.hpp
# cute/util
cute/util/debug.hpp
cute/util/print.hpp
cute/util/type_traits.hpp
# cute/arch
cute/arch/cluster_sm90.hpp
cute/arch/copy.hpp
cute/arch/copy_sm50.hpp
cute/arch/copy_sm75.hpp
cute/arch/copy_sm80.hpp
cute/arch/copy_sm90.hpp
cute/arch/copy_sm90_desc.hpp
cute/arch/copy_sm90_tma.hpp
cute/arch/mma_sm61.hpp
cute/arch/mma_sm70.hpp
cute/arch/mma_sm75.hpp
cute/arch/mma_sm80.hpp
cute/arch/mma_sm80_sparse.hpp
cute/arch/mma_sm90.hpp
cute/arch/mma_sm90_desc.hpp
cute/arch/mma_sm90_gmma.hpp
cute/arch/mma.hpp
cute/arch/util.hpp
# cute/atom
# cute/atom/copy_atom.hpp
# cute/atom/copy_traits.hpp
# cute/atom/copy_traits_sm50.hpp
# cute/atom/copy_traits_sm75.hpp
# cute/atom/copy_traits_sm80.hpp
# cute/atom/copy_traits_sm90.hpp
# cute/atom/copy_traits_sm90_im2col.hpp
# cute/atom/copy_traits_sm90_tma.hpp
# cute/atom/copy_traits_sm90_tma_swizzle.hpp
cute/atom/mma_atom.hpp
cute/atom/mma_traits.hpp
cute/atom/mma_traits_sm61.hpp
cute/atom/mma_traits_sm70.hpp
cute/atom/mma_traits_sm75.hpp
cute/atom/mma_traits_sm80.hpp
cute/atom/mma_traits_sm90.hpp
cute/atom/mma_traits_sm90_gmma.hpp
)
# for each header in _header_files:
# create a .cu file with the same name as the header's path, except with / replaced with %
# have the .cu file include that header
set(_gen_source_files "")
foreach(header_file ${header_files_to_check})
string(REPLACE "/" "%" header_file_esc ${header_file})
file(WRITE "${CMAKE_CURRENT_BINARY_DIR}/${header_file_esc}.cu"
"#include <${header_file}>")
list(APPEND _gen_source_files
"${CMAKE_CURRENT_BINARY_DIR}/${header_file_esc}.cu")
endforeach()
# build all generated .cu files into a single library
cutlass_add_library(test_self_contained_includes MODULE ${_gen_source_files})