rmsnorm_metal / torch-ext /torch_binding.cpp
medmekk's picture
medmekk HF Staff
Upload torch-ext/torch_binding.cpp with huggingface_hub
ab82ee4 verified
#include <torch/library.h>
#include "registration.h"
#include "torch_binding.h"
TORCH_LIBRARY_EXPAND(TORCH_EXTENSION_NAME, ops) {
ops.def("rmsnorm_metal_forward(Tensor! input, Tensor! weight, Tensor! output) -> ()");
ops.impl("rmsnorm_metal_forward", torch::kMPS, rmsnorm_metal_forward);
}
REGISTER_EXTENSION(TORCH_EXTENSION_NAME)