mirror of
https://github.com/henrydcase/pqc.git
synced 2024-11-23 16:08:59 +00:00
24 lines
528 B
C
24 lines
528 B
C
/// @file blas.h
|
|
/// @brief Defining the implementations for linear algebra functions depending on the machine architecture.
|
|
///
|
|
|
|
#ifndef _BLAS_H_
|
|
#define _BLAS_H_
|
|
|
|
#include "blas_comm.h"
|
|
#include "blas_u32.h"
|
|
|
|
#define gf16v_mul_scalar _gf16v_mul_scalar_u32
|
|
#define gf16v_madd _gf16v_madd_u32
|
|
|
|
#define gf256v_add _gf256v_add_u32
|
|
#define gf256v_mul_scalar _gf256v_mul_scalar_u32
|
|
#define gf256v_madd _gf256v_madd_u32
|
|
|
|
#define gf256v_predicated_add _gf256v_predicated_add_u32
|
|
#define gf16v_dot _gf16v_dot_u32
|
|
|
|
|
|
#endif // _BLAS_H_
|
|
|