-
Notifications
You must be signed in to change notification settings - Fork 194
Expand file tree
/
Copy pathfp8_fwd.cpp
More file actions
158 lines (130 loc) · 6.43 KB
/
Copy pathfp8_fwd.cpp
File metadata and controls
158 lines (130 loc) · 6.43 KB
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
152
153
154
155
156
157
158
/*
* Copyright (c) 2023, NVIDIA CORPORATION. All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*/
#include <catch2/catch_test_macros.hpp>
#include "../utils/helpers.h"
#include <cuda_runtime_api.h>
#include <cudnn_frontend.h>
namespace fe = cudnn_frontend;
TEST_CASE("sdpa_fp8_fprop", "[graph][sdpa][fp8][forward]") {
namespace fe = cudnn_frontend;
#if CUDART_VERSION < 12000
SKIP("Test requires cuda toolkit 12.0 or above");
return;
#endif
if (!is_hopper_arch() && !is_blackwell_computing_arch()) {
SKIP("sdpa fp8: Sample requires Hopper or Blackwell Computing GPU");
return;
}
int64_t b = 2; // batch size
int64_t h = 2; // number of heads
int64_t s = 512; // q,k,v tensor is padded to this seq length
int64_t d = 128; // hidden head dim
bool generate_stats = false;
fe::graph::Graph mha_graph;
mha_graph.set_io_data_type(fe::DataType_t::FP8_E4M3)
.set_intermediate_data_type(fe::DataType_t::FLOAT)
.set_compute_data_type(fe::DataType_t::FLOAT);
auto QKVO_dims = std::vector<int64_t>({b, h, s, d});
auto QKV_strides = std::vector<int64_t>({s * 3 * h * d, d, 3 * h * d, 1}); // bs3hd
auto O_strides = std::vector<int64_t>({s * h * d, d, h * d, 1}); // bhsd
auto Q = mha_graph.tensor(fe::graph::Tensor_attributes().set_name("Q").set_dim(QKVO_dims).set_stride(QKV_strides));
auto K = mha_graph.tensor(fe::graph::Tensor_attributes().set_name("K").set_dim(QKVO_dims).set_stride(QKV_strides));
auto V = mha_graph.tensor(fe::graph::Tensor_attributes().set_name("V").set_dim(QKVO_dims).set_stride(QKV_strides));
float attn_scale = 0.123f;
auto descale_q = mha_graph.tensor(fe::graph::Tensor_attributes()
.set_name("Descale_Q")
.set_dim({1, 1, 1, 1})
.set_stride({1, 1, 1, 1})
.set_data_type(fe::DataType_t::FLOAT));
auto descale_k = mha_graph.tensor_like(descale_q, "Descale_K");
auto descale_v = mha_graph.tensor_like(descale_q, "Descale_V");
auto descale_s = mha_graph.tensor_like(descale_q, "Descale_S");
auto scale_s = mha_graph.tensor_like(descale_q, "Scale_S");
auto scale_o = mha_graph.tensor_like(descale_q, "Scale_O");
auto sdpa_fp8_options = fe::graph::SDPA_fp8_attributes()
.set_name("sdpa_fp8")
.set_generate_stats(generate_stats)
.set_causal_mask(true)
.set_attn_scale(attn_scale);
auto [O, Stats, Amax_S, Amax_O] =
mha_graph.sdpa_fp8(Q, K, V, descale_q, descale_k, descale_v, descale_s, scale_s, scale_o, sdpa_fp8_options);
O->set_output(true).set_dim(QKVO_dims).set_stride(O_strides);
Amax_O->set_output(true).set_dim({1, 1, 1, 1}).set_stride({1, 1, 1, 1}).set_data_type(fe::DataType_t::FLOAT);
Amax_S->set_output(true).set_dim({1, 1, 1, 1}).set_stride({1, 1, 1, 1}).set_data_type(fe::DataType_t::FLOAT);
// Check that Stats tensor is real, which is only when its training step
if (generate_stats) {
Stats->set_output(true).set_data_type(fe::DataType_t::FLOAT);
} else {
REQUIRE(Stats == nullptr);
}
// Create a unique_ptr for the cuDNN handle
auto handle_ptr = create_cudnn_handle();
auto handle = *handle_ptr;
auto status = mha_graph.validate();
if ((cudnnGetVersion() >= 90100) && check_device_arch_newer_than("hopper")) {
REQUIRE(status.is_good());
} else {
REQUIRE(status.get_code() == fe::error_code_t::GRAPH_NOT_SUPPORTED);
return;
}
REQUIRE(mha_graph.build_operation_graph(handle).is_good());
auto plans = mha_graph.create_execution_plans({fe::HeurMode_t::A});
REQUIRE(mha_graph.check_support(handle).is_good());
REQUIRE(mha_graph.build_plans(handle).is_good());
//// Build variant pack
Surface<int8_t> qkvTensor(b * s * 3 * h * d);
Surface<int8_t> oTensor(b * s * h * d);
void* devPtrQ = qkvTensor.devPtr;
void* devPtrK = (qkvTensor.devPtr + h * d);
void* devPtrV = (qkvTensor.devPtr + 2 * h * d);
void* devPtrO = oTensor.devPtr;
Surface<float> descale_Q_Tensor(1);
Surface<float> descale_K_Tensor(1);
Surface<float> descale_V_Tensor(1);
Surface<float> descale_S_Tensor(1);
Surface<float> scale_S_Tensor(1);
Surface<float> scale_O_Tensor(1);
Surface<float> Amax_S_Tensor(1);
Surface<float> Amax_O_Tensor(1);
std::unordered_map<std::shared_ptr<fe::graph::Tensor_attributes>, void*> variant_pack = {
{Q, devPtrQ},
{K, devPtrK},
{V, devPtrV},
{O, devPtrO},
{descale_q, descale_Q_Tensor.devPtr},
{descale_k, descale_K_Tensor.devPtr},
{descale_v, descale_V_Tensor.devPtr},
{descale_s, descale_S_Tensor.devPtr},
{scale_s, scale_S_Tensor.devPtr},
{scale_o, scale_O_Tensor.devPtr},
{Amax_S, Amax_S_Tensor.devPtr},
{Amax_O, Amax_O_Tensor.devPtr}};
Surface<float> stats_tensor(b * h * s * 1);
if (generate_stats == true) {
variant_pack[Stats] = stats_tensor.devPtr;
}
int64_t workspace_size = 0;
REQUIRE(mha_graph.get_workspace_size(workspace_size).is_good());
Surface<int8_t> workspace(workspace_size);
REQUIRE(mha_graph.execute(handle, variant_pack, workspace.devPtr).is_good());
CUDA_CHECK(cudaDeviceSynchronize());
}