22 #ifndef INCLUDED_VOLK_RUNTIME 23 #define INCLUDED_VOLK_RUNTIME 25 #include <volk/volk_typedefs.h> 26 #include <volk/volk_config_fixed.h> 59 #define VOLK_OR_PTR(ptr0, ptr1) \ 60 (const void *)(((intptr_t)(ptr0)) | ((intptr_t)(ptr1))) 81 extern VOLK_API ${kern.pname} ${kern.name}_a;
87 extern VOLK_API void ${kern.name}_manual(${kern.arglist_full},
const char* impl_name);
VOLK_API const char * volk_get_machine(void)
Returns the name of the machine this instance will use.
Definition: volk.tmpl.c:77
VOLK_API
A function pointer to the fastest aligned implementation.
Definition: volk.tmpl.h:84
VOLK_API void volk_list_machines(void)
Prints a list of machines available.
Definition: volk.tmpl.c:63
size_t n_impls
Definition: volk.tmpl.h:41
#define __VOLK_DECL_BEGIN
Definition: volk_common.h:60
#define __VOLK_DECL_END
Definition: volk_common.h:61
const bool * impl_alignment
Definition: volk.tmpl.h:40
const char ** impl_names
Definition: volk.tmpl.h:38
const int * impl_deps
Definition: volk.tmpl.h:39
__VOLK_DECL_BEGIN struct volk_func_desc volk_func_desc_t
Get description parameters for this kernel.
Definition: volk.tmpl.h:90
VOLK_API size_t volk_get_alignment(void)
Get the machine alignment in bytes.
Definition: volk.tmpl.c:102
VOLK_API bool volk_is_aligned(const void *ptr)
Definition: volk.tmpl.c:108
<% this_machine=machine_dict[args[0]] %><% arch_names=this_machine.arch_names %> for arch in this_machine<% this_machine_name="\"+this_machine.name+"\" %> for kern in<% make_impl_name_list="{"+', '.join(['"%s"'%i.name for i in impls])+"}" %><% make_impl_deps_list="{"+', '.join(['|'.join(['(1<< LV_%s)'%d.upper() for d in i.deps]) for i in impls])+"}" %><% make_impl_align_list="{"+', '.join([ 'true' if i.is_aligned else 'false' for i in impls])+"}" %><% make_impl_fcn_list="{"+', '.join(['%s_%s'%(kern.name, i.name) for i in impls])+"}" %><% len_impls=len(impls) %> endfor
Definition: volk_machine_xxx.tmpl.c:59
for kern in kernels
Definition: volk.tmpl.h:78
Definition: volk.tmpl.h:36