File size: 164 Bytes
e443917 | 1 2 3 4 5 6 7 8 9 10 11 12 | #pragma once
#include <torch/torch.h>
void rmsnorm(
torch::Tensor& output,
const torch::Tensor& input,
const torch::Tensor& weight,
float eps
);
|
e443917 | 1 2 3 4 5 6 7 8 9 10 11 12 | #pragma once
#include <torch/torch.h>
void rmsnorm(
torch::Tensor& output,
const torch::Tensor& input,
const torch::Tensor& weight,
float eps
);
|