void init_filter_openvino (void) __attribute__ ((constructor));
void fini_filter_openvino (void) __attribute__ ((destructor));
+static const gchar *openvino_accl_support[] = {
+ ACCL_NPU_MOVIDIUS_STR, /** ACCL for default and auto config */
+ ACCL_NPU_STR,
+ ACCL_CPU_STR,
+ NULL
+};
+
std::map<accl_hw, std::string> TensorFilterOpenvino::_nnsAcclHwToOVDevMap = {
{ACCL_CPU, "CPU"},
{ACCL_NPU, "MYRIAD"},
nnstreamer_headers += join_paths(meson.current_source_dir(), h)
endforeach
+if get_option('enable-filter-cpp-class')
+ nnstreamer_headers += join_paths(meson.current_source_dir(), 'nnstreamer_cppplugin_api_filter.hh')
+endif
+
version_conf = configuration_data()
version_conf.set('__NNSTREAMER_VERSION_MAJOR__', version_split[0])
version_conf.set('__NNSTREAMER_VERSION_MINOR__', version_split[1])
install_headers(nnstreamer_headers,
subdir: 'nnstreamer'
)
-
-if get_option('enable-filter-cpp-class')
- install_headers(['nnstreamer_cppplugin_api_filter.hh'],
- subdir: 'nnstreamer'
- )
-endif