* hexagon: add hvx_vec_repl helpers and use those for splat-from-vtcm usecase * hmx-mm: optimize per-group scale handling * hmx-fa: optimize slope load from vtcm * hmx-fa: use aligned access where possible in hmx-utils * hexagon: add hvx_vec_repl_2x_f16 helper and consolidate repl helpers --------- Co-authored-by: Max Krasnyansky <maxk@qti.qualcomm.com>
20 lines
364 B
C
20 lines
364 B
C
#ifndef HVX_UTILS_H
|
|
#define HVX_UTILS_H
|
|
|
|
#include "hex-utils.h"
|
|
|
|
#include "hvx-types.h"
|
|
#include "hvx-copy.h"
|
|
#include "hvx-repl.h"
|
|
#include "hvx-scale.h"
|
|
#include "hvx-exp.h"
|
|
#include "hvx-inverse.h"
|
|
#include "hvx-reduce.h"
|
|
#include "hvx-sigmoid.h"
|
|
#include "hvx-sqrt.h"
|
|
#include "hvx-arith.h"
|
|
#include "hvx-div.h"
|
|
#include "hvx-base.h"
|
|
|
|
#endif /* HVX_UTILS_H */
|