File size: 12,720 Bytes
17db41a | 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 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 |
#include <vector>
#include <assert.h>
#include <iostream>
#include <stdexcept>
#include <string>
#include <cuda_fp16.h>
#include <cuda_bf16.h>
using bfloat16 = nv_bfloat16;
using bfloat16_2 = nv_bfloat162;
#ifndef CHECK_ERROR_SPLIT
#define CHECK_ERROR_SPLIT(expr) \
do { \
cudaError_t status = (expr); \
if (status != cudaSuccess) { \
auto msg = std::string("Got error: ") + \
cudaGetErrorString(status) + \
" at " + __FILE__ + ": " + std::to_string(__LINE__); \
std::cerr << msg << std::endl; \
throw std::runtime_error(msg); \
} \
} while (0)
#endif // CHECK_ERROR_SPLIT
#ifndef LAUNCH_CHECK_SPLIT
#define LAUNCH_CHECK_SPLIT() CHECK_ERROR_SPLIT(cudaGetLastError())
#endif // LAUNCH_CHECK_SPLIT
template <typename T, int64_t NumSplits>
struct OutputMetaData {
T* outputs[NumSplits]; /* pointer to each output */
int64_t split_dim_offsets[NumSplits]; /* offset of each output along
the split dimension */
int64_t split_dim_sizes[NumSplits]; /* cat dimension size of each output */
int64_t num_elems[NumSplits]; /* number of the elements of each output */
};
template <int64_t Rank>
struct InputMetaData {
int64_t input_shape[Rank];
int64_t input_strides[Rank];
};
__host__ __device__ __forceinline__
int64_t get_num_elems(const int64_t *shape, int64_t rank) {
int64_t num = 1;
for (int64_t i = 0; i < rank; i++) {
num *= shape[i];
}
return num;
}
template <int64_t Rank>
__host__ __device__ int64_t compute_input_elem_offset(
const int64_t *input_shape,
int64_t *input_strides,
int64_t split_dim_size,
int64_t split_dim,
int64_t linear_idx) {
int64_t offset = 0;
for (int64_t i = Rank - 1; i >= 1; --i) {
int64_t cur_dim_size = i == split_dim ? split_dim_size : input_shape[i];
int64_t next_dim_idx = linear_idx / cur_dim_size;
int64_t cur_dim_idx = linear_idx - cur_dim_size * next_dim_idx;
int64_t cur_dim_offset = cur_dim_idx * input_strides[i];
offset += cur_dim_offset;
linear_idx = next_dim_idx;
}
return offset + linear_idx * input_strides[0];
}
template <typename READ_T, typename ELEM_T, int64_t Rank,
int64_t NumSplits, int64_t ElemsPerThread>
__global__ void
split_kernel(
const ELEM_T *orig_input,
InputMetaData<Rank> input_meta,
OutputMetaData<ELEM_T, NumSplits> output_meta,
const int64_t split_dim,
const int64_t input_split_dim_stride) {
// split is the inverse of concat, so we
// (1) use blockIdx.y to specify the blocks for each ouput; and
// (2) use tid to access each output;
const int64_t tid = blockIdx.x * blockDim.x + threadIdx.x;
const READ_T* input = reinterpret_cast<const READ_T*>(orig_input);
READ_T* output =
reinterpret_cast<READ_T*>(output_meta.outputs[blockIdx.y]);
int64_t output_offset = output_meta.split_dim_offsets[blockIdx.y];
int64_t num_output_elems = output_meta.num_elems[blockIdx.y];
int64_t split_dim_size = output_meta.split_dim_sizes[blockIdx.y];
int64_t input_offset = output_offset * input_split_dim_stride;
unsigned constexpr read_t_sz = sizeof(READ_T);
unsigned constexpr elem_t_sz = sizeof(ELEM_T);
static_assert(read_t_sz >= elem_t_sz && (read_t_sz % elem_t_sz == 0));
int64_t n_of_elem_t = read_t_sz / elem_t_sz;
// number of READ_T elements per thread
int64_t reads_per_thread_in_read_t = ElemsPerThread / n_of_elem_t;
const int64_t num_elems_in_read_t = num_output_elems / n_of_elem_t;
int64_t read_idx = tid;
#pragma unroll
for (int64_t i = 0; i < reads_per_thread_in_read_t;
i++, read_idx += blockDim.x * gridDim.x) {
if (read_idx >= num_elems_in_read_t) {
break;
}
/* make sure to adjust read_idx, which refers to location at
(read_idx * n_of_elem_t) actually */
int64_t input_elem_offset =
compute_input_elem_offset<Rank>(input_meta.input_shape,
input_meta.input_strides,
split_dim_size,
split_dim,
read_idx * n_of_elem_t);
READ_T tmp_v = input[(input_offset + input_elem_offset) / n_of_elem_t];
output[read_idx] = tmp_v;
}
}
enum class LoadVecType {
VT_HALF = 0,
VT_BFLOAT16,
VT_FLOAT,
VT_FLOAT2,
VT_FLOAT4
};
template <typename ELEM_T>
static inline LoadVecType get_vec_type(
const int64_t *shape, int64_t rank, int64_t dim) {
assert(rank > 0);
assert(dim < rank && dim >= 0);
int64_t running_stride = shape[rank - 1];
for (int64_t i = rank - 2; i >= dim; i--) {
running_stride *= shape[i];
}
int64_t size_elem_t = sizeof(ELEM_T);
#define HANDLE_ONE_VEC_TYPE(load_vec_type, vec_type) \
if (sizeof(vec_type) % size_elem_t == 0) { \
int64_t n_of_elem_t = sizeof(vec_type) / size_elem_t; \
if (running_stride % n_of_elem_t == 0) { \
return load_vec_type; \
} \
}
HANDLE_ONE_VEC_TYPE(LoadVecType::VT_FLOAT4, float4)
HANDLE_ONE_VEC_TYPE(LoadVecType::VT_FLOAT2, float2)
HANDLE_ONE_VEC_TYPE(LoadVecType::VT_FLOAT, float)
if constexpr (std::is_same_v<ELEM_T, half>) {
HANDLE_ONE_VEC_TYPE(LoadVecType::VT_HALF, half)
} else if constexpr (std::is_same_v<ELEM_T, bfloat16>) {
HANDLE_ONE_VEC_TYPE(LoadVecType::VT_BFLOAT16, bfloat16)
}
#undef HANDLE_ONE_VEC_TYPE
throw std::runtime_error(
"Cannot resolve LoadVecType."
);
}
template <typename ELEM_T, int64_t Rank, int64_t NumSplits,
int64_t ElemsPerThread, int64_t ThreadsPerBlock>
void split_kernel_launcher(
void *outputs[],
int64_t *output_shapes[],
const bool output_masks[],
const void *input,
const int64_t *input_shape,
const int64_t split_dim,
const int64_t split_sizes[],
cudaStream_t stream
) {
InputMetaData<Rank> input_meta;
input_meta.input_strides[Rank - 1] = 1;
input_meta.input_shape[Rank - 1] = input_shape[Rank - 1];
for (int64_t i = Rank - 2; i >= 0; i--) {
input_meta.input_strides[i] =
input_meta.input_strides[i+1] * input_shape[i+1];
input_meta.input_shape[i] = input_shape[i];
}
OutputMetaData<ELEM_T, NumSplits> output_meta;
int64_t offset = 0;
int64_t split_sizes_idx = 0;
LoadVecType min_vec_type = LoadVecType::VT_FLOAT4;
for (int64_t i = 0; i < NumSplits; i++) {
while (!output_masks[split_sizes_idx]) {
offset += split_sizes[split_sizes_idx];
split_sizes_idx++;
}
output_meta.outputs[i] = static_cast<ELEM_T*>(outputs[i]);
output_meta.split_dim_offsets[i] = offset;
output_meta.split_dim_sizes[i] = output_shapes[i][split_dim];
output_meta.num_elems[i] = get_num_elems(output_shapes[i], Rank);
offset += output_meta.split_dim_sizes[i];
split_sizes_idx++;
LoadVecType vec_type =
get_vec_type<ELEM_T>(output_shapes[i], Rank, split_dim);
min_vec_type = vec_type < min_vec_type ? vec_type : min_vec_type;
}
int64_t max_num_output_elems = 0;
for (int64_t i = 0; i < NumSplits; i++) {
int64_t num_outputs = get_num_elems(output_shapes[i], Rank);
max_num_output_elems = num_outputs > max_num_output_elems ?
num_outputs : max_num_output_elems;
}
int64_t m = (max_num_output_elems % (ThreadsPerBlock * ElemsPerThread) != 0);
int64_t num_blocks_x =
(max_num_output_elems / (ThreadsPerBlock * ElemsPerThread)) + m;
dim3 grid_config = dim3(num_blocks_x, NumSplits);
#define HANDLE_ONE_VEC_TYPE(load_vec_type, vec_type) \
if (min_vec_type == load_vec_type) { \
if (ElemsPerThread * sizeof(ELEM_T) < sizeof(vec_type)) { \
throw std::runtime_error( \
std::string("No valid kernel available for ") + #vec_type); \
} \
split_kernel<vec_type, ELEM_T, Rank, NumSplits, ElemsPerThread> \
<<<grid_config, ThreadsPerBlock, 0, stream>>>( \
static_cast<const ELEM_T*>(input), \
input_meta, \
output_meta, \
split_dim, \
input_meta.input_strides[split_dim]); \
LAUNCH_CHECK_SPLIT(); \
return; \
}
HANDLE_ONE_VEC_TYPE(LoadVecType::VT_FLOAT4, float4)
HANDLE_ONE_VEC_TYPE(LoadVecType::VT_FLOAT2, float2)
HANDLE_ONE_VEC_TYPE(LoadVecType::VT_FLOAT, float)
if constexpr (std::is_same_v<ELEM_T, half>) {
HANDLE_ONE_VEC_TYPE(LoadVecType::VT_HALF, half)
} else if constexpr (std::is_same_v<ELEM_T, bfloat16>) {
HANDLE_ONE_VEC_TYPE(LoadVecType::VT_BFLOAT16, bfloat16)
}
throw std::runtime_error("Invalid LoadVecType\n");
#undef HANDLE_ONE_VEC_TYPE
}
#undef CHECK_ERROR_SPLIT
#undef LAUNCH_CHECK_SPLIT
void split_11(
void* outputs[],
int64_t **output_shapes[],
const bool output_masks[],
const void* input,
const int64_t *input_shape,
int64_t real_num_splits,
int64_t all_num_splits,
int64_t split_sizes[],
int64_t split_dim,
int64_t rank,
cudaStream_t stream
) {
if (rank <= 0) {
throw std::runtime_error("rank must be larger than 0!");
}
if (split_dim >= rank) {
throw std::runtime_error("cat_dim must be smaller than rank!");
}
if (real_num_splits < 1) {
throw std::runtime_error("the number of splits must be larger than 0!");
}
// now we update the shape for each output
int64_t real_idx = 0;
for (int64_t i = 0; i < all_num_splits; i++) {
if (!output_masks[i]) {
continue;
}
int64_t **shape_ptr = output_shapes[real_idx];
for (int64_t dim_idx = 0; dim_idx < rank; dim_idx++) {
*(shape_ptr[dim_idx]) = input_shape[dim_idx];
}
// update dim size for the split axis
*(shape_ptr[split_dim]) = split_sizes[i];
real_idx++;
}
int64_t split_dim_size = input_shape[split_dim];
int64_t sum_of_split_sizes = 0;
for (int64_t i = 0; i < all_num_splits; i++) {
sum_of_split_sizes += split_sizes[i];
}
if (split_dim_size != sum_of_split_sizes) {
throw std::runtime_error("unmatched split dim size!");
}
// If split dim is zero, we are done
if (split_dim_size == 0) {
return;
}
// If the input tensor is empty, we are done
if (get_num_elems(input_shape, rank) == 0) {
return;
}
// make sure input and outputs are valid
if (!input) {
throw std::runtime_error("input is NULL!");
}
for (int i = 0; i < real_num_splits; i++) {
if (!outputs[i]) {
throw std::runtime_error("NULL output found at: " + std::to_string(i));
}
}
if (rank == 5 && real_num_splits == 3) {
int64_t local_shape0[5];
local_shape0[0] = input_shape[0];
local_shape0[1] = input_shape[1];
local_shape0[2] = input_shape[2];
local_shape0[3] = input_shape[3];
local_shape0[4] = input_shape[4];
local_shape0[split_dim] = split_sizes[0];
int64_t local_shape1[5];
local_shape1[0] = input_shape[0];
local_shape1[1] = input_shape[1];
local_shape1[2] = input_shape[2];
local_shape1[3] = input_shape[3];
local_shape1[4] = input_shape[4];
local_shape1[split_dim] = split_sizes[1];
int64_t local_shape2[5];
local_shape2[0] = input_shape[0];
local_shape2[1] = input_shape[1];
local_shape2[2] = input_shape[2];
local_shape2[3] = input_shape[3];
local_shape2[4] = input_shape[4];
local_shape2[split_dim] = split_sizes[2];
int64_t* local_output_shapes[3] = {
local_shape0,
local_shape1,
local_shape2
};
/* TODO: more profiling on ElemsPerThread and ThreadsPerBlock */
split_kernel_launcher<half,
5/*Rank*/,
3/*NumSplits*/,
128/*ElemsPerThread*/,
128/*THREADS_PER_BLOCK*/>(
outputs, local_output_shapes, output_masks, input, input_shape, split_dim, split_sizes, stream);
return;
}
throw std::runtime_error(
"Unsupported split kernel specialization!"
);
} |