Add custom kernel for RMS normalization (#16)
This commit is contained in:
14
csrc/layernorm.cpp
Normal file
14
csrc/layernorm.cpp
Normal file
@@ -0,0 +1,14 @@
|
||||
#include <torch/extension.h>
|
||||
|
||||
void rms_norm(
|
||||
torch::Tensor& out,
|
||||
torch::Tensor& input,
|
||||
torch::Tensor& weight,
|
||||
float epsilon);
|
||||
|
||||
PYBIND11_MODULE(TORCH_EXTENSION_NAME, m) {
|
||||
m.def(
|
||||
"rms_norm",
|
||||
&rms_norm,
|
||||
"Apply Root Mean Square (RMS) Normalization to the input tensor.");
|
||||
}
|
||||
Reference in New Issue
Block a user