1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2024-06-28 16:03:15 +00:00
gnss-sdr/src/algorithms/libs/volk_gnsssdr_module/volk_gnsssdr/tmpl/volk_gnsssdr_cpu.tmpl.h

40 lines
1.1 KiB
C
Raw Normal View History

2015-01-08 18:49:59 +00:00
/* Copyright (C) 2010-2015 (see AUTHORS file for a list of contributors)
2014-09-07 23:56:09 +00:00
*
* This file is part of GNSS-SDR.
2014-09-07 23:56:09 +00:00
*
* GNSS-SDR is free software: you can redistribute it and/or modify
2014-09-07 23:56:09 +00:00
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
2014-09-07 23:56:09 +00:00
*
* GNSS-SDR is distributed in the hope that it will be useful,
2014-09-07 23:56:09 +00:00
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with GNSS-SDR. If not, see <http://www.gnu.org/licenses/>.
2014-09-07 23:56:09 +00:00
*/
#ifndef INCLUDED_VOLK_GNSSSDR_CPU_H
#define INCLUDED_VOLK_GNSSSDR_CPU_H
2014-09-07 23:56:09 +00:00
#include <volk_gnsssdr/volk_gnsssdr_common.h>
__VOLK_DECL_BEGIN
struct VOLK_CPU {
#for $arch in $archs
int (*has_$arch.name) ();
#end for
};
extern struct VOLK_CPU volk_gnsssdr_cpu;
void volk_gnsssdr_cpu_init ();
unsigned int volk_gnsssdr_get_lvarch ();
__VOLK_DECL_END
#endif /*INCLUDED_VOLK_GNSSSDR_CPU_H*/