73 lines
2.9 KiB
C++
73 lines
2.9 KiB
C++
#pragma once
|
|
|
|
#include <optional>
|
|
#include <string>
|
|
#include <torch/library.h>
|
|
#include <tuple>
|
|
|
|
#include "core/scalar_type.hpp"
|
|
|
|
#include <vector>
|
|
|
|
// rms_norm and fused_add_rms_norm declarations also exist in
|
|
// csrc/libtorch_stable/ops.h (torch::stable ABI for CUDA). They remain here
|
|
// because the CPU build still uses these torch::Tensor declarations.
|
|
void rms_norm(torch::Tensor& out, torch::Tensor& input,
|
|
std::optional<torch::Tensor> weight, double epsilon);
|
|
|
|
void fused_add_rms_norm(torch::Tensor& input, torch::Tensor& residual,
|
|
std::optional<torch::Tensor> weight, double epsilon);
|
|
|
|
// rotary_embedding also exist in csrc/libtorch_stable/ops.h (torch::stable
|
|
// ABI for CUDA). It remains here because the CPU build still uses these
|
|
// torch::Tensor declarations.
|
|
void rotary_embedding(torch::Tensor& positions, torch::Tensor& query,
|
|
std::optional<torch::Tensor> key, int64_t head_size,
|
|
torch::Tensor& cos_sin_cache, bool is_neox,
|
|
int64_t rope_dim_offset, bool inverse);
|
|
|
|
void silu_and_mul(torch::Tensor& out, torch::Tensor& input);
|
|
|
|
void silu_and_mul_clamp(torch::Tensor& out, torch::Tensor& input, double limit,
|
|
double alpha = 1.0, double beta = 0.0);
|
|
|
|
void gelu_and_mul(torch::Tensor& out, torch::Tensor& input);
|
|
|
|
void gelu_tanh_and_mul(torch::Tensor& out, torch::Tensor& input);
|
|
|
|
void gelu_tanh(torch::Tensor& out, torch::Tensor& input);
|
|
|
|
void gelu_new(torch::Tensor& out, torch::Tensor& input);
|
|
|
|
void gelu_fast(torch::Tensor& out, torch::Tensor& input);
|
|
|
|
void gelu_quick(torch::Tensor& out, torch::Tensor& input);
|
|
|
|
void relu_squared(torch::Tensor& out, torch::Tensor& input);
|
|
|
|
void static_scaled_int8_quant(torch::Tensor& out, torch::Tensor const& input,
|
|
torch::Tensor const& scale,
|
|
std::optional<torch::Tensor> const& azp);
|
|
|
|
void dynamic_scaled_int8_quant(torch::Tensor& out, torch::Tensor const& input,
|
|
torch::Tensor& scales,
|
|
std::optional<torch::Tensor> const& azp);
|
|
|
|
torch::Tensor dynamic_4bit_int_moe_cpu(
|
|
torch::Tensor x, torch::Tensor topk_ids, torch::Tensor topk_weights,
|
|
torch::Tensor w13_packed, torch::Tensor w2_packed, int64_t hidden_size,
|
|
int64_t intermediate_size, int64_t group_size,
|
|
bool apply_router_weight_on_input, int64_t activation_kind);
|
|
|
|
using fptr_t = int64_t;
|
|
#ifdef USE_ROCM
|
|
fptr_t init_custom_qr(int64_t rank, int64_t world_size,
|
|
std::optional<int64_t> qr_max_size = std::nullopt);
|
|
void qr_destroy(fptr_t _fa);
|
|
torch::Tensor qr_get_handle(fptr_t _fa);
|
|
void qr_open_handles(fptr_t _fa, const std::vector<torch::Tensor>& handles);
|
|
void qr_all_reduce(fptr_t _fa, torch::Tensor& inp, torch::Tensor& out,
|
|
int64_t quant_level, bool cast_bf2half = false);
|
|
int64_t qr_max_size();
|
|
#endif
|