gemv.h
Go to the documentation of this file.
1 /*!
2  * \author O. Krause
3  * \date 2012
4  *
5  * \par Copyright (c) 1998-2011:
6  * Institut f&uuml;r Neuroinformatik<BR>
7  * Ruhr-Universit&auml;t Bochum<BR>
8  * D-44780 Bochum, Germany<BR>
9  * Phone: +49-234-32-25558<BR>
10  * Fax: +49-234-32-14209<BR>
11  * eMail: Shark-admin@neuroinformatik.ruhr-uni-bochum.de<BR>
12  * www: http://www.neuroinformatik.ruhr-uni-bochum.de<BR>
13  * <BR>
14  *
15  *
16  * <BR><HR>
17  * This file is part of Shark. This library is free software;
18  * you can redistribute it and/or modify it under the terms of the
19  * GNU General Public License as published by the Free Software
20  * Foundation; either version 3, or (at your option) any later version.
21  *
22  * This library is distributed in the hope that it will be useful,
23  * but WITHOUT ANY WARRANTY; without even the implied warranty of
24  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25  * GNU General Public License for more details.
26  *
27  * You should have received a copy of the GNU General Public License
28  * along with this library; if not, see <http://www.gnu.org/licenses/>.
29  *
30  */
31 #ifndef SHARK_LINALG_IMPL_NUMERIC_BINDINGS_GEMV_H
32 #define SHARK_LINALG_IMPL_NUMERIC_BINDINGS_GEMV_H
33 
34 #ifdef SHARK_USE_ATLAS
35 #include "atlas/gemv.h"
36 #elif SHARK_USE_GOTOBLAS
37 #include "gotoblas/gemv.h"
38 #else
39 #include "default/gemv.h"
40 #endif
41 #endif