1 /* fflas_L3_inst.h
2  * Copyright (C) 2015 FFLAS-FFPACK group
3  * Written by Clement Pernet <Clement.Pernet@imag.fr>
4  *
5  *
6  * ========LICENCE========
7  * This file is part of the library FFLAS-FFPACK.
8  *
9  * FFLAS-FFPACK is free software: you can redistribute it and/or modify
10  * it under the terms of the  GNU Lesser General Public
11  * License as published by the Free Software Foundation; either
12  * version 2.1 of the License, or (at your option) any later version.
13  *
14  * This library is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with this library; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
22  * ========LICENCE========
23  *.
24  */
25 #ifndef __FFLAS_L3_INST_H
26 #define __FFLAS_L3_INST_H
27 
28 #include "givaro/modular.h"
29 #include "givaro/modular-balanced.h"
30 #include "fflas-ffpack/fflas/fflas.h"
31 #include "fflas-ffpack/fflas/fflas_helpers.inl"
32 
33 #ifdef INST_OR_DECL
34 #undef INST_OR_DECL
35 #endif
36 #define INST_OR_DECL <>
37 
38 #define FFLAS_FIELD Givaro::ModularBalanced
39 #define FFLAS_ELT double
40 #include "fflas_L3_inst_implem.inl"
41 #undef FFLAS_ELT
42 #define FFLAS_ELT float
43 #include "fflas_L3_inst_implem.inl"
44 #undef FFLAS_ELT
45 #define FFLAS_ELT int64_t
46 #include "fflas_L3_inst_implem.inl"
47 #undef FFLAS_ELT
48 #undef FFLAS_FIELD
49 
50 #define FFLAS_FIELD Givaro::Modular
51 #define FFLAS_ELT double
52 #include "fflas_L3_inst_implem.inl"
53 #undef FFLAS_ELT
54 #define FFLAS_ELT float
55 #include "fflas_L3_inst_implem.inl"
56 #undef FFLAS_ELT
57 #define FFLAS_ELT int64_t
58 #include "fflas_L3_inst_implem.inl"
59 #undef FFLAS_ELT
60 #undef FFLAS_FIELD
61 
62 #endif //__FFLAS_L3_INST_H
63 /* -*- mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
64 // vim:sts=4:sw=4:ts=4:et:sr:cino=>s,f0,{0,g0,(0,\:0,t0,+0,=s
65