1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2024-06-30 08:53:15 +00:00
gnss-sdr/src/algorithms/libs/volk_gnsssdr_module/volk_gnsssdr/lib/volk_gnsssdr_rank_archs.h

40 lines
1.2 KiB
C
Raw Normal View History

/*
* GNSS-SDR is a Global Navigation Satellite System software-defined receiver.
2014-11-07 17:02:52 +00:00
* This file is part of GNSS-SDR.
2014-09-07 23:56:09 +00:00
*
* Copyright (C) 2010-2019 (see AUTHORS file for a list of contributors)
* SPDX-License-Identifier: GPL-3.0-or-later
*
2014-09-07 23:56:09 +00:00
*/
2014-11-22 09:19:06 +00:00
#ifndef GNSS_SDR_VOLK_GNSSSDR_RANK_ARCHS_H
#define GNSS_SDR_VOLK_GNSSSDR_RANK_ARCHS_H
2014-09-07 23:56:09 +00:00
#include <stdbool.h>
#include <stdlib.h>
2014-09-07 23:56:09 +00:00
#ifdef __cplusplus
extern "C"
{
2014-09-07 23:56:09 +00:00
#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
);
2014-09-07 23:56:09 +00:00
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
);
2014-09-07 23:56:09 +00:00
#ifdef __cplusplus
}
#endif
2014-11-22 09:19:06 +00:00
#endif /* GNSS_SDR_VOLK_GNSSSDR_RANK_ARCHS_H */