Skip to main content

ClikaRT::ops::qmatmul_

function

3 overloads.

qmatmul_(QTensor, QTensor, QTensor, OptionalTensor, …)

QTensor& qmatmul_(
    QTensor a,
    QTensor b,
    QTensor& out,
    OptionalTensor bias = {},
    std::optional<Activation> activation = std::nullopt,
    bool transpose_a = false,
    bool transpose_b = false
)

Declared in ClikaRT/compute/q_tensor.h, line 932

qmatmul_(QTensor, QTensor, Tensor, OptionalTensor, …)

Tensor& qmatmul_(
    QTensor a,
    QTensor b,
    Tensor& out,
    OptionalTensor bias = {},
    std::optional<Activation> activation = std::nullopt,
    bool transpose_a = false,
    bool transpose_b = false
)

Declared in ClikaRT/compute/q_tensor.h, line 937

qmatmul_(QTensor, QTensor, Tensor, Tensor, …)

Tensor& qmatmul_(
    QTensor a,
    QTensor b,
    Tensor& out,
    Tensor out_scale,
    OptionalTensor out_zero_point,
    std::int64_t out_quant_axis = -1,
    OptionalTensor bias = {},
    std::optional<Activation> activation = std::nullopt,
    bool transpose_a = false,
    bool transpose_b = false
)

Declared in ClikaRT/compute/q_tensor.h, line 944