File size: 687 Bytes
88b8ef2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | // SPDX-License-Identifier: Apache-2.0
#pragma once
#include <torch/all.h>
void fp4_w4a16_linear_bf16(
torch::Tensor const& a_packed,
torch::Tensor const& b_packed,
torch::Tensor const& sfa,
torch::Tensor const& sfb,
torch::Tensor& out,
double alpha,
int64_t variant);
void quantize_fp4_sfa_fp16(
torch::Tensor const& x,
torch::Tensor& packed,
torch::Tensor& sfa,
bool is_sfb);
void quantize_fp4_sfa_bf16(
torch::Tensor const& x,
torch::Tensor& packed,
torch::Tensor& sfa,
bool is_sfb);
void dequantize_fp4_sfa_fp16(
torch::Tensor const& packed,
torch::Tensor const& sfa,
torch::Tensor& out,
bool is_sfb);
|