peacock-data-public-datasets-idc-mint
/
docker
/bloom13b
/Megatron-DeepSpeed
/megatron
/fused_kernels
/scaled_softmax_cuda.cu
/* Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved. */ | |
namespace multihead_attn { | |
namespace fused_softmax { | |
namespace scaled_softmax { | |
torch::Tensor fwd_cuda( | |
torch::Tensor const& input, | |
float scale_factor) | |
{ | |
// input is a 4d tensor with dimensions [batches, attn_heads, seq_len, seq_len] | |
const int batches = input.size(0); | |
const int attn_heads = input.size(1); | |
const int query_seq_len = input.size(2); | |
const int key_seq_len = input.size(3); | |
TORCH_INTERNAL_ASSERT(key_seq_len <= 4096); | |
TORCH_INTERNAL_ASSERT(query_seq_len > 1); | |
// Output | |
auto act_options = input.options().requires_grad(false); | |
torch::Tensor softmax_results = | |
torch::empty({batches, attn_heads, query_seq_len, key_seq_len}, act_options); | |
// Softmax Intermediate Result Ptr | |
void* input_ptr = static_cast<void*>(input.data_ptr()); | |
void* softmax_results_ptr = static_cast<void*>(softmax_results.data_ptr()); | |
DISPATCH_HALF_AND_BFLOAT( | |
input.scalar_type(), | |
"dispatch_scaled_softmax_forward", | |
dispatch_scaled_softmax_forward<scalar_t, scalar_t, float>( | |
reinterpret_cast<scalar_t*>(softmax_results_ptr), | |
reinterpret_cast<const scalar_t*>(input_ptr), | |
scale_factor, | |
query_seq_len, | |
key_seq_len, | |
batches, | |
attn_heads); | |
); | |
return softmax_results; | |
} | |
torch::Tensor bwd_cuda( | |
torch::Tensor const& output_grads_, | |
torch::Tensor const& softmax_results_, | |
float scale_factor) { | |
auto output_grads = output_grads_.contiguous(); | |
auto softmax_results = softmax_results_.contiguous(); | |
//output grads is a 4d tensor with dimensions [batches, attn_heads, seq_len, seq_len] | |
const int batches = output_grads.size(0); | |
const int attn_heads = output_grads.size(1); | |
const int query_seq_len = output_grads.size(2); | |
const int key_seq_len = output_grads.size(3); | |
void* output_grads_ptr = static_cast<void*>(output_grads.data_ptr()); | |
//Softmax Grad | |
DISPATCH_HALF_AND_BFLOAT( | |
output_grads_.scalar_type(), | |
"dispatch_scaled_masked_softmax_backward", | |
dispatch_scaled_masked_softmax_backward<scalar_t, scalar_t, float>( | |
reinterpret_cast<scalar_t*>(output_grads_ptr), | |
reinterpret_cast<scalar_t*>(output_grads_ptr), | |
reinterpret_cast<scalar_t const*>(softmax_results.data_ptr()), | |
scale_factor, | |
query_seq_len, | |
key_seq_len, | |
batches, | |
attn_heads); | |
); | |
//backward pass is completely in-place | |
return output_grads; | |
} | |
} | |
} | |
} | |