* hex-mm: fold mm quant tasks into the main matmul threads * hex-mm: minor formatting fixes * hex-mm: cleanup is_quant checks in dma dispatch * hex-mm: fix dst-spad alignment * hex-mm: move fp kernels in the hvx-mm-kernels header * hex-mm: fuse with ADD * hex-fa: factor out ukernels into separate headers and unify the rest * hex-fa: move kernel-params compute into the host * hex-fa: refactor vtcm alloc for consistency * hex-fa: add support for FA_SELECT * hex-fa: update tracing insrumentation to cover all functions * hex-fa: update hvx fallback thresholds to recover t/g regressions * hex-fa: update tracing instrumentation * hex-fa: improved tracing with additional events * hex-fa: optimize mask processing (fastdiv, etc) * hex-fa: improve mask dma caching * hmx-fa: change loop order to maximize mask cache hits * hex-fa: remove over instrumentation * hex-fa: breakdown QKV prep trace events * hmx-fa: further mask proc optimizations * hex-fa: mask broadcast is the common case, optimize for that * hex-fa: use aligned loads where possible * hex-fa: update loops to use uint32_t indices * hmx-fa: fold vtcm init into q prep task * hex-fa: update rest of the hmx funcs to use uint32_t * hmx-fa: fold build_d into the main softmax loop * hmx-fa: start kv dmas earlier * hmx-fa: start mask dma a bit earlier * hex-fa: precompute rows per task to avoid divs * hmx-fa: specialize fa_o_store for f16 and f32 * hmx-fa: prelim support for Sinks * hmx-fa: keep softmax accumulators in fp32 * hex-fa: add tanh_f16 and exp2_f16 and use that in FA * hex-fa: use fp16 math in the hvx kernel * hex-fa: avoid expensive float -> __fp16 cast for slopes and softcap * hex-fa: replace most vec_exp_f32 with vec_exp2_f16 * hmx-fa: vectorize sinks update * hex-fa: minor formatting * hmx-fa: fold softcap loop into the tile load * hmx-fa: use vectoralias to populate sinks * hex-fa: remove redudant check * hex-fa: fix vtcm size compute to use fp32 for accumulators * hex-mm: fix trailing spaces * hmx-fa: dont use -inf to init mask to avoid conversion overflows * hex-fa: no need to explicitly guard -inf in the f16->f32 converter now * hmx-fa: cleanup fa sinks handling * hex-mm: fixed src2 stride handling when mm is fused with add * hex-fa: make lto happy
293 lines
10 KiB
C
293 lines
10 KiB
C
#ifndef HVX_BASE_H
|
|
#define HVX_BASE_H
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
#include <math.h>
|
|
#include <assert.h>
|
|
|
|
#include "hex-utils.h"
|
|
#include "hvx-types.h"
|
|
|
|
#define hvx_vmem(A) *((HVX_Vector *)(A))
|
|
#define hvx_vmemu(A) *((HVX_UVector *)(A))
|
|
|
|
static inline void hvx_vec_store_u(void * restrict dst, uint32_t n, HVX_Vector v) {
|
|
// Rotate as needed.
|
|
v = Q6_V_vlalign_VVR(v, v, (size_t) dst);
|
|
|
|
uint32_t left_off = (size_t) dst & 127;
|
|
uint32_t right_off = left_off + n;
|
|
|
|
HVX_VectorPred ql_not = Q6_Q_vsetq_R((size_t) dst);
|
|
HVX_VectorPred qr = Q6_Q_vsetq2_R(right_off);
|
|
|
|
if (right_off > 128) {
|
|
Q6_vmem_QRIV(qr, (HVX_Vector *) dst + 1, v);
|
|
// all 1's
|
|
qr = Q6_Q_vcmp_eq_VbVb(v, v);
|
|
}
|
|
|
|
ql_not = Q6_Q_or_QQn(ql_not, qr);
|
|
Q6_vmem_QnRIV(ql_not, (HVX_Vector *) dst, v);
|
|
}
|
|
|
|
static inline void hvx_vec_store_a(void * restrict dst, uint32_t n, HVX_Vector v) {
|
|
assert((unsigned long) dst % 128 == 0);
|
|
HVX_VectorPred m = Q6_Q_or_QQn(Q6_Q_vsetq_R((unsigned long) dst), Q6_Q_vsetq2_R(n));
|
|
Q6_vmem_QnRIV(m, (HVX_Vector *) dst, v);
|
|
}
|
|
|
|
static inline HVX_Vector hvx_vec_splat_f32(float v) {
|
|
union { float f; uint32_t i; } u = { .f = v };
|
|
return Q6_V_vsplat_R(u.i);
|
|
}
|
|
|
|
static inline HVX_Vector hvx_vec_splat_f16(_Float16 v) {
|
|
union { __fp16 f; uint16_t i; } u = { .f = v };
|
|
return Q6_Vh_vsplat_R(u.i);
|
|
}
|
|
|
|
static inline HVX_Vector hvx_vec_repl4(HVX_Vector v) {
|
|
// vdelta control to replicate first 4 bytes across all elements
|
|
static const uint8_t __attribute__((aligned(128))) repl[128] = {
|
|
0x00, 0x00, 0x00, 0x00, 0x04, 0x04, 0x04, 0x04, 0x08, 0x08, 0x08, 0x08, 0x04, 0x04, 0x04, 0x04,
|
|
0x10, 0x10, 0x10, 0x10, 0x04, 0x04, 0x04, 0x04, 0x08, 0x08, 0x08, 0x08, 0x04, 0x04, 0x04, 0x04,
|
|
0x20, 0x20, 0x20, 0x20, 0x04, 0x04, 0x04, 0x04, 0x08, 0x08, 0x08, 0x08, 0x04, 0x04, 0x04, 0x04,
|
|
0x10, 0x10, 0x10, 0x10, 0x04, 0x04, 0x04, 0x04, 0x08, 0x08, 0x08, 0x08, 0x04, 0x04, 0x04, 0x04,
|
|
0x40, 0x40, 0x40, 0x40, 0x04, 0x04, 0x04, 0x04, 0x08, 0x08, 0x08, 0x08, 0x04, 0x04, 0x04, 0x04,
|
|
0x10, 0x10, 0x10, 0x10, 0x04, 0x04, 0x04, 0x04, 0x08, 0x08, 0x08, 0x08, 0x04, 0x04, 0x04, 0x04,
|
|
0x20, 0x20, 0x20, 0x20, 0x04, 0x04, 0x04, 0x04, 0x08, 0x08, 0x08, 0x08, 0x04, 0x04, 0x04, 0x04,
|
|
0x10, 0x10, 0x10, 0x10, 0x04, 0x04, 0x04, 0x04, 0x08, 0x08, 0x08, 0x08, 0x04, 0x04, 0x04, 0x04,
|
|
};
|
|
|
|
HVX_Vector ctrl = *(HVX_Vector *) repl;
|
|
return Q6_V_vdelta_VV(v, ctrl);
|
|
}
|
|
|
|
static inline float hvx_vec_get_f32(HVX_Vector v) {
|
|
float __attribute__((aligned(128))) x;
|
|
hvx_vec_store_a(&x, 4, v);
|
|
return x;
|
|
}
|
|
|
|
static inline int32_t hvx_vec_get_i32(HVX_Vector v) {
|
|
int32_t __attribute__((aligned(128))) x;
|
|
hvx_vec_store_a(&x, 4, v);
|
|
return x;
|
|
}
|
|
|
|
static inline _Float16 hvx_vec_get_f16(HVX_Vector v) {
|
|
_Float16 __attribute__((aligned(128))) x;
|
|
hvx_vec_store_a(&x, 2, v);
|
|
return x;
|
|
}
|
|
|
|
static inline HVX_Vector hvx_vec_abs_f16(HVX_Vector v) {
|
|
// abs by clearing the fp16 sign bit
|
|
HVX_Vector mask = Q6_Vh_vsplat_R(0x7fff);
|
|
return Q6_V_vand_VV(v, mask);
|
|
}
|
|
|
|
static inline HVX_Vector hvx_vec_neg_f16(HVX_Vector v) {
|
|
// neg by setting the fp16 sign bit
|
|
HVX_Vector mask = Q6_Vh_vsplat_R(0x8000);
|
|
return Q6_V_vxor_VV(v, mask);
|
|
}
|
|
|
|
static inline HVX_Vector hvx_vec_abs_f32(HVX_Vector v) {
|
|
// abs by clearing the fp32 sign bit
|
|
HVX_Vector mask = Q6_V_vsplat_R(0x7fffffff);
|
|
return Q6_V_vand_VV(v, mask);
|
|
}
|
|
|
|
static inline HVX_Vector hvx_vec_neg_f32(HVX_Vector v) {
|
|
#if __HVX_ARCH__ > 75
|
|
return Q6_Vsf_vfneg_Vsf(v);
|
|
#else
|
|
// neg by setting the fp32 sign bit
|
|
HVX_Vector mask = Q6_V_vsplat_R(0x80000000);
|
|
return Q6_V_vxor_VV(v, mask);
|
|
#endif // __HVX_ARCH__ > 75
|
|
}
|
|
|
|
static inline HVX_VectorPred hvx_vec_is_nan_f16(HVX_Vector v) {
|
|
const HVX_Vector vnan_exp = Q6_Vh_vsplat_R(0x7C00);
|
|
const HVX_Vector vnan_frac = Q6_Vh_vsplat_R(0x7FFF);
|
|
|
|
// get pred of which are NaN, i.e., exponent bits all 1s and fraction bits non 0s
|
|
HVX_VectorPred p_exp = Q6_Q_vcmp_eq_VhVh(Q6_V_vand_VV(v, vnan_exp), vnan_exp);
|
|
HVX_VectorPred p_frac = Q6_Q_not_Q(Q6_Q_vcmp_eq_VhVh(Q6_V_vand_VV(v, vnan_frac), vnan_exp));
|
|
return Q6_Q_and_QQ(p_exp, p_frac);
|
|
}
|
|
|
|
static inline HVX_Vector hvx_vec_f32_to_f16_shuff(HVX_Vector v0, HVX_Vector v1) {
|
|
#if __HVX_ARCH__ >= 81
|
|
HVX_Vector q0 = Q6_Vqf32_equals_Vsf(v0);
|
|
HVX_Vector q1 = Q6_Vqf32_equals_Vsf(v1);
|
|
#else
|
|
const HVX_Vector zero = Q6_V_vzero();
|
|
HVX_Vector q0 = Q6_Vqf32_vadd_VsfVsf(v0, zero);
|
|
HVX_Vector q1 = Q6_Vqf32_vadd_VsfVsf(v1, zero);
|
|
#endif
|
|
return Q6_Vhf_equals_Wqf32(Q6_W_vcombine_VV(q1, q0));
|
|
}
|
|
|
|
static inline HVX_Vector hvx_vec_f32_to_f16(HVX_Vector v0, HVX_Vector v1) {
|
|
return Q6_Vh_vdeal_Vh(hvx_vec_f32_to_f16_shuff(v0, v1));
|
|
}
|
|
|
|
#if __HVX_ARCH__ >= 79
|
|
static inline HVX_VectorPair hvx_vec_f16_to_f32_shuff(HVX_Vector v) {
|
|
const HVX_Vector one = hvx_vec_splat_f16(1.0);
|
|
HVX_VectorPair p = Q6_Wsf_vmpy_VhfVhf(v, one);
|
|
return Q6_W_vcombine_VV(Q6_V_hi_W(p), Q6_V_lo_W(p));
|
|
}
|
|
static inline HVX_VectorPair hvx_vec_f16_to_f32(HVX_Vector v) {
|
|
const HVX_Vector one = hvx_vec_splat_f16(1.0);
|
|
HVX_VectorPair p = Q6_Wsf_vmpy_VhfVhf(Q6_Vh_vshuff_Vh(v), one);
|
|
return Q6_W_vcombine_VV(Q6_V_hi_W(p), Q6_V_lo_W(p));
|
|
}
|
|
#else
|
|
static inline HVX_VectorPair hvx_vec_f16_to_f32_shuff(HVX_Vector v) {
|
|
const HVX_Vector one = hvx_vec_splat_f16(1.0);
|
|
HVX_VectorPair p = Q6_Wqf32_vmpy_VhfVhf(v, one);
|
|
return Q6_W_vcombine_VV(Q6_Vsf_equals_Vqf32(Q6_V_hi_W(p)), Q6_Vsf_equals_Vqf32(Q6_V_lo_W(p)));
|
|
}
|
|
static inline HVX_VectorPair hvx_vec_f16_to_f32(HVX_Vector v) {
|
|
const HVX_Vector one = hvx_vec_splat_f16(1.0);
|
|
HVX_VectorPair p = Q6_Wqf32_vmpy_VhfVhf(Q6_Vh_vshuff_Vh(v), one);
|
|
return Q6_W_vcombine_VV(Q6_Vsf_equals_Vqf32(Q6_V_hi_W(p)), Q6_Vsf_equals_Vqf32(Q6_V_lo_W(p)));
|
|
}
|
|
#endif
|
|
|
|
static inline HVX_Vector hvx_vec_i16_from_hf_rnd_sat(HVX_Vector vin) {
|
|
// This looks complicated.
|
|
// Ideally should just be Q6_Vh_equals_Vhf(vin)
|
|
// but that instruction does not do proper rounding.
|
|
|
|
// convert to qf32, multiplying by 1.0 in the process.
|
|
HVX_VectorPair v32 = Q6_Wqf32_vmpy_VhfVhf(vin, Q6_Vh_vsplat_R(0x3C00));
|
|
|
|
// 'in-range' values are +/32752.
|
|
// add 192K to it, convert to sf
|
|
HVX_Vector v192K = Q6_V_vsplat_R(0x48400000);
|
|
HVX_Vector vsf_0 = Q6_Vsf_equals_Vqf32(Q6_Vqf32_vadd_Vqf32Vsf(Q6_V_lo_W(v32), v192K));
|
|
HVX_Vector vsf_1 = Q6_Vsf_equals_Vqf32(Q6_Vqf32_vadd_Vqf32Vsf(Q6_V_hi_W(v32), v192K));
|
|
|
|
// for in-range cases, result is {163858... 229360} so the exponent is always 144.
|
|
// if we extract bits 21..0 as a signed quantity, and round 6 bits off, that will be the answer.
|
|
// Start by <<10 to get the final 'sign' bit in bit 15...
|
|
vsf_0 = Q6_Vw_vasl_VwR(vsf_0, 10);
|
|
vsf_1 = Q6_Vw_vasl_VwR(vsf_1, 10);
|
|
|
|
// now round down to 16
|
|
return Q6_Vh_vround_VwVw_sat(vsf_1, vsf_0);
|
|
}
|
|
|
|
#if __HVX_ARCH__ < 79
|
|
|
|
static inline HVX_VectorPair hvx_vec_mpyacc_f32_f16(HVX_VectorPair acc, HVX_Vector x, HVX_Vector y)
|
|
{
|
|
HVX_VectorPair m = Q6_Wqf32_vmpy_VhfVhf(x, y);
|
|
HVX_Vector a0 = Q6_Vsf_equals_Vqf32(Q6_Vqf32_vadd_Vqf32Vsf(Q6_V_lo_W(m), Q6_V_lo_W(acc)));
|
|
HVX_Vector a1 = Q6_Vsf_equals_Vqf32(Q6_Vqf32_vadd_Vqf32Vsf(Q6_V_hi_W(m), Q6_V_hi_W(acc)));
|
|
return Q6_W_vcombine_VV(a1, a0);
|
|
}
|
|
|
|
#else
|
|
|
|
static inline HVX_VectorPair hvx_vec_mpyacc_f32_f16(HVX_VectorPair acc, HVX_Vector x, HVX_Vector y)
|
|
{
|
|
return Q6_Wsf_vmpyacc_WsfVhfVhf(acc, x, y);
|
|
}
|
|
|
|
#endif
|
|
|
|
#if __HVX_ARCH__ < 79
|
|
|
|
static inline HVX_Vector hvx_vec_add_f16_f16(HVX_Vector a, HVX_Vector b)
|
|
{
|
|
const HVX_Vector negone = Q6_Vh_vsplat_R(0xBC00); // -1.0 in IEEE FP16
|
|
const HVX_Vector one = Q6_Vh_vsplat_R(0x3C00); // 1.0 in IEEE FP16
|
|
HVX_VectorPair a_p = Q6_Wqf32_vmpy_VhfVhf(a, one);
|
|
HVX_VectorPair b_p = Q6_Wqf32_vmpy_VhfVhf(b, negone);
|
|
HVX_Vector a0 = Q6_Vqf32_vsub_Vqf32Vqf32(Q6_V_lo_W(a_p), Q6_V_lo_W(b_p));
|
|
HVX_Vector a1 = Q6_Vqf32_vsub_Vqf32Vqf32(Q6_V_hi_W(a_p), Q6_V_hi_W(b_p));
|
|
return Q6_Vhf_equals_Wqf32(Q6_W_vcombine_VV(a1, a0));
|
|
}
|
|
|
|
static inline HVX_Vector hvx_vec_sub_f16_f16(HVX_Vector a, HVX_Vector b)
|
|
{
|
|
const HVX_Vector negone = Q6_Vh_vsplat_R(0xBC00); // -1.0 in IEEE FP16
|
|
const HVX_Vector one = Q6_Vh_vsplat_R(0x3C00); // 1.0 in IEEE FP16
|
|
HVX_VectorPair a_p = Q6_Wqf32_vmpy_VhfVhf(a, one);
|
|
HVX_VectorPair b_p = Q6_Wqf32_vmpy_VhfVhf(b, negone);
|
|
HVX_Vector a0 = Q6_Vqf32_vadd_Vqf32Vqf32(Q6_V_lo_W(a_p), Q6_V_lo_W(b_p));
|
|
HVX_Vector a1 = Q6_Vqf32_vadd_Vqf32Vqf32(Q6_V_hi_W(a_p), Q6_V_hi_W(b_p));
|
|
return Q6_Vhf_equals_Wqf32(Q6_W_vcombine_VV(a1, a0));
|
|
}
|
|
|
|
static inline HVX_Vector hvx_vec_mul_f16_f16(HVX_Vector a, HVX_Vector b)
|
|
{
|
|
return Q6_Vhf_equals_Wqf32(Q6_Wqf32_vmpy_VhfVhf(a, b));
|
|
}
|
|
|
|
static inline HVX_Vector hvx_vec_add_f32_f32(HVX_Vector a, HVX_Vector b) {
|
|
return Q6_Vsf_equals_Vqf32(Q6_Vqf32_vadd_VsfVsf(a, b));
|
|
}
|
|
|
|
static inline HVX_Vector hvx_vec_sub_f32_f32(HVX_Vector a, HVX_Vector b) {
|
|
return Q6_Vsf_equals_Vqf32(Q6_Vqf32_vsub_VsfVsf(a, b));
|
|
}
|
|
|
|
static inline HVX_Vector hvx_vec_mul_f32_f32(HVX_Vector a, HVX_Vector b) {
|
|
return Q6_Vsf_equals_Vqf32(Q6_Vqf32_vmpy_VsfVsf(a, b));
|
|
}
|
|
|
|
#else
|
|
|
|
static inline HVX_Vector hvx_vec_add_f16_f16(HVX_Vector a, HVX_Vector b)
|
|
{
|
|
return Q6_Vhf_vadd_VhfVhf(a, b);
|
|
}
|
|
|
|
static inline HVX_Vector hvx_vec_sub_f16_f16(HVX_Vector a, HVX_Vector b)
|
|
{
|
|
return Q6_Vhf_vsub_VhfVhf(a, b);
|
|
}
|
|
|
|
static inline HVX_Vector hvx_vec_mul_f16_f16(HVX_Vector a, HVX_Vector b)
|
|
{
|
|
return Q6_Vhf_vmpy_VhfVhf(a, b);
|
|
}
|
|
|
|
static inline HVX_Vector hvx_vec_add_f32_f32(HVX_Vector a, HVX_Vector b) {
|
|
return Q6_Vsf_vadd_VsfVsf(a, b);
|
|
}
|
|
|
|
static inline HVX_Vector hvx_vec_sub_f32_f32(HVX_Vector a, HVX_Vector b) {
|
|
return Q6_Vsf_vsub_VsfVsf(a, b);
|
|
}
|
|
|
|
static inline HVX_Vector hvx_vec_mul_f32_f32(HVX_Vector a, HVX_Vector b) {
|
|
return Q6_Vsf_vmpy_VsfVsf(a, b);
|
|
}
|
|
|
|
#endif // __HVX_ARCH__ < 79
|
|
|
|
static inline HVX_Vector hvx_vec_load_act_tile(const uint8_t * y_q, uint32_t kt, HVX_Vector * v_act_all) {
|
|
if (kt % 4 == 0) {
|
|
*v_act_all = hvx_vmem(y_q + kt * 32);
|
|
return *v_act_all;
|
|
} else if (kt % 4 == 1) {
|
|
return Q6_V_vror_VR(*v_act_all, 32);
|
|
} else if (kt % 4 == 2) {
|
|
return Q6_V_vror_VR(*v_act_all, 64);
|
|
} else {
|
|
return Q6_V_vror_VR(*v_act_all, 96);
|
|
}
|
|
}
|
|
|
|
#endif /* HVX_BASE_H */
|