/* Copyright (C) 2010-2019 (see AUTHORS file for a list of contributors) * * This file is part of GNSS-SDR. * * GNSS-SDR is free software: you can redistribute it and/or modify * 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. * * GNSS-SDR is distributed in the hope that it will be useful, * 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 . */ #ifndef GNSS_SDR_VOLK_GNSSSDR_RANK_ARCHS_H #define GNSS_SDR_VOLK_GNSSSDR_RANK_ARCHS_H #include #include #ifdef __cplusplus extern "C" { #endif int volk_gnsssdr_get_index( const char *impl_names[], // list of implementations by name const size_t n_impls, // number of implementations available const char *impl_name // the implementation name to find ); int volk_gnsssdr_rank_archs( const char *kern_name, // name of the kernel to rank const char *impl_names[], // list of implementations by name const int *impl_deps, // requirement mask per implementation const bool *alignment, // alignment status of each implementation size_t n_impls, // number of implementations available const bool align // if false, filter aligned implementations ); #ifdef __cplusplus } #endif #endif /* GNSS_SDR_VOLK_GNSSSDR_RANK_ARCHS_H */