From 1e738db6dd84d552550a15473abdda83e88f4c80 Mon Sep 17 00:00:00 2001 From: Cedric Nugteren Date: Wed, 27 Dec 2017 12:04:22 +0100 Subject: Split the database into multiple small compilation units --- src/database/kernels/xgemv_fast_rot/xgemv_fast_rot.hpp | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) (limited to 'src/database/kernels/xgemv_fast_rot/xgemv_fast_rot.hpp') diff --git a/src/database/kernels/xgemv_fast_rot/xgemv_fast_rot.hpp b/src/database/kernels/xgemv_fast_rot/xgemv_fast_rot.hpp index 7379eba9..be2978b5 100644 --- a/src/database/kernels/xgemv_fast_rot/xgemv_fast_rot.hpp +++ b/src/database/kernels/xgemv_fast_rot/xgemv_fast_rot.hpp @@ -7,8 +7,16 @@ // // ================================================================================================= -#include "database/kernels/xgemv_fast_rot/xgemv_fast_rot_16.hpp" -#include "database/kernels/xgemv_fast_rot/xgemv_fast_rot_32.hpp" -#include "database/kernels/xgemv_fast_rot/xgemv_fast_rot_3232.hpp" -#include "database/kernels/xgemv_fast_rot/xgemv_fast_rot_64.hpp" -#include "database/kernels/xgemv_fast_rot/xgemv_fast_rot_6464.hpp" +#include "database/database_structure.hpp" + +namespace clblast { +namespace database { + +extern const DatabaseEntry XgemvFastRotHalf; +extern const DatabaseEntry XgemvFastRotSingle; +extern const DatabaseEntry XgemvFastRotComplexSingle; +extern const DatabaseEntry XgemvFastRotDouble; +extern const DatabaseEntry XgemvFastRotComplexDouble; + +} // namespace database +} // namespace clblast -- cgit v1.2.3