File size: 424 Bytes
7587d0b 828d69a 7587d0b |
1 2 3 4 5 6 7 8 9 10 11 12 |
#include <torch/library.h>
#include "registration.h"
#include "torch_binding.h"
TORCH_LIBRARY_EXPAND(TORCH_EXTENSION_NAME, ops) {
ops.def("residual_rms(Tensor input, Tensor residual, Tensor weight, Tensor scale_tensor, float epsilon, Tensor! output, Tensor next_buffer, int num_threads, bool force_scalar) -> ()");
ops.impl("residual_rms", torch::kCUDA, &residual_rms);
}
REGISTER_EXTENSION(TORCH_EXTENSION_NAME) |