1 project('nntrainer', 'c', 'cpp',
3 license: ['apache-2.0'],
4 meson_version: '>=0.50.0',
13 add_project_arguments('-DMIN_CPP_VERSION=201703L', language:['c','cpp'])
15 cc = meson.get_compiler('c')
16 cxx = meson.get_compiler('cpp')
18 if get_option('platform') == 'tizen'
19 # Pass __TIZEN__ to the compiler
20 add_project_arguments('-D__TIZEN__=1', language:['c','cpp'])
22 if get_option('enable-tizen-feature-check')
23 add_project_arguments('-D__FEATURE_CHECK_SUPPORT__', language: ['c', 'cpp'])
31 '-Wformat-nonliteral',
39 '-Wdefaulted-function-deleted',
44 '-Wmissing-declarations',
45 '-Wmissing-include-dirs',
46 '-Wmissing-prototypes',
49 '-Wold-style-definition',
50 '-Wdeclaration-after-statement',
54 foreach extra_arg : warning_flags
55 if cc.has_argument (extra_arg)
56 add_project_arguments([extra_arg], language: 'c')
58 if cxx.has_argument (extra_arg)
59 add_project_arguments([extra_arg], language: 'cpp')
63 foreach extra_arg : warning_c_flags
64 if cc.has_argument (extra_arg)
65 add_project_arguments([extra_arg], language: 'c')
70 nntrainer_prefix = get_option('prefix')
71 nntrainer_libdir = nntrainer_prefix / get_option('libdir')
72 nntrainer_bindir = nntrainer_prefix / get_option('bindir')
73 nntrainer_includedir = nntrainer_prefix / get_option('includedir')
74 nntrainer_confdir = get_option('sysconfdir')
75 application_install_dir = nntrainer_bindir / 'applications'
78 nntrainer_resdir = meson.build_root() / 'res'
79 run_command('mkdir', '-p', nntrainer_resdir)
81 if get_option('install-app')
82 # add a script to install resources from installs to application_install_dir
83 meson.add_install_script(
84 'sh', '-c', 'cp -r @0@ ${DESTDIR}@1@'.format(nntrainer_resdir, application_install_dir)
88 # Set default configuration
89 nntrainer_conf = configuration_data()
90 nntrainer_conf.set('VERSION', meson.project_version())
91 nntrainer_conf.set('PREFIX', nntrainer_prefix)
92 nntrainer_conf.set('EXEC_PREFIX', nntrainer_bindir)
93 nntrainer_conf.set('LIB_INSTALL_DIR', nntrainer_libdir)
94 nntrainer_conf.set('PLUGIN_INSTALL_PREFIX', nntrainer_libdir / 'nntrainer')
95 nntrainer_conf.set('INCLUDE_INSTALL_DIR', nntrainer_includedir)
96 nntrainer_conf.set('CAPI_ML_COMMON_DEP', get_option('capi-ml-common-actual'))
98 dummy_dep = dependency('', required: false)
102 if get_option('enable-cublas')
103 add_project_arguments('-DUSE_CUBLAS=1', language:['c','cpp'])
106 if get_option('enable-blas')
107 add_project_arguments('-DUSE_BLAS=1', language:['c','cpp'])
108 if get_option('platform') == 'tizen' or get_option('platform') == 'yocto'
109 blas_dep = dependency('openblas')
111 blas_dep = dependency('blas-openblas', required:false)
113 if not blas_dep.found()
114 blas_dep = dependency('openblas')
119 if get_option('enable-profile')
120 add_project_arguments('-DPROFILE=1', language:['c', 'cpp'])
123 if get_option('use_gym')
124 add_project_arguments('-DUSE_GYM=1', language:['c','cpp'])
127 if get_option('enable-logging')
128 add_project_arguments('-D__LOGGING__=1', language:['c','cpp'])
131 if get_option('enable-test')
132 add_project_arguments('-DENABLE_TEST=1', language:['c','cpp'])
135 if get_option('reduce-tolerance')
136 add_project_arguments('-DREDUCE_TOLERANCE=1', language:['c', 'cpp'])
139 libm_dep = cxx.find_library('m') # cmath library
140 libdl_dep = cxx.find_library('dl') # DL library
141 thread_dep = dependency('threads') # pthread for tensorflow-lite
143 iniparser_dep = dependency('iniparser', required : false, version : '>=4.1') # iniparser
144 if not iniparser_dep.found()
145 message('falling back to find libiniparser library and header files')
146 libiniparser_dep = cxx.find_library('iniparser')
147 sysroot = run_command(
148 cxx.cmd_array() + ['-print-sysroot']
149 ).stdout().split('\n')[0]
151 if sysroot.startswith('/')
152 sysroot_inc_cflags_template = '-I@0@/usr/include@1@'
153 sysroot_inc = sysroot_inc_cflags_template.format(sysroot, '')
154 add_project_arguments(sysroot_inc, language: ['c', 'cpp'])
155 sysroot_inc_cflags_iniparser = sysroot_inc_cflags_template.format(sysroot,
158 sysroot_inc_cflags_iniparser = '-I/usr/include/iniparser'
161 if libiniparser_dep.found() and cxx.has_header('iniparser.h', \
162 args : sysroot_inc_cflags_iniparser)
163 iniparser_dep = declare_dependency (dependencies : libiniparser_dep,
164 compile_args : sysroot_inc_cflags_iniparser)
166 error('Failed to resolve dependency on iniparser')
170 nnstreamer_capi_dep = dependency(get_option('capi-ml-inference-actual'), required:false)
171 if nnstreamer_capi_dep.found()
172 add_project_arguments('-DNNSTREAMER_AVAILABLE=1', language:['c','cpp'])
173 # accessing this variable when dep_.not_found() remains hard error on purpose
174 supported_nnstreamer_capi = nnstreamer_capi_dep.version().version_compare('>=1.7.0')
175 if not supported_nnstreamer_capi
176 add_project_arguments('-DUNSUPPORTED_NNSTREAMER=1', language:['c','cpp'])
177 warning('capi-nnstreamer version is too old, we do not know if it works with older nnstreamer version')
181 ml_api_common_dep = dependency(get_option('capi-ml-common-actual'), required: true)
183 if get_option('enable-nnstreamer-backbone')
184 add_project_arguments('-DENABLE_NNSTREAMER_BACKBONE=1', language:['c','cpp'])
187 tflite_dep = dependency('tensorflow2-lite', required: false)
188 if get_option('enable-tflite-backbone')
189 add_project_arguments('-DENABLE_TFLITE_BACKBONE=1', language:['c','cpp'])
192 gtest_dep = dependency('gtest', static: true, main: false, required: false)
193 gtest_main_dep = dependency('gtest', static: true, main: true, required: false)
195 opencv_dep = dependency('opencv', required: false)
196 if not opencv_dep.found()
197 opencv_dep = dependency('opencv4', required: false)
198 if not opencv_dep.found()
199 opencv_dep = dependency('opencv3', required: false)
202 if opencv_dep.found()
203 add_project_arguments('-DENABLE_DATA_AUGMENTATION_OPENCV=1', language:['c','cpp'])
205 flatc_prog = find_program('flatc', required: false)
208 configure_file(input: 'nntrainer.pc.in', output: 'nntrainer.pc',
209 install_dir: nntrainer_libdir / 'pkgconfig',
210 configuration: nntrainer_conf
215 input: 'nntrainer.ini.in',
216 output: 'nntrainer.ini',
217 install_dir: nntrainer_confdir,
218 configuration: nntrainer_conf
220 nntrainer_conf_abs_path = get_option('prefix') / nntrainer_confdir / 'nntrainer.ini'
221 message('NNTRAINER_CONF_PATH=@0@'.format(nntrainer_conf_abs_path))
223 add_project_arguments(
224 '-DNNTRAINER_CONF_PATH="@0@"'.format(nntrainer_conf_abs_path),
225 language: ['c', 'cpp']
234 if get_option('enable-test')
238 error('test enabled but gtest not found')
242 if get_option('enable-app')
243 jsoncpp_dep = dependency('jsoncpp') # jsoncpp
244 libcurl_dep = dependency('libcurl')
245 if not tflite_dep.found()
246 error('Tensorflow-Lite dependency not found')
248 subdir('Applications')
251 if get_option('enable-nnstreamer-tensor-filter')
252 nnstreamer_dep = dependency('nnstreamer', required: true)
253 subdir('nnstreamer/tensor_filter')
256 if get_option('enable-android')
258 ndk_build = find_program('ndk-build', required : true)
259 jni_root = meson.current_source_dir() / 'jni'
260 jni_build_root = meson.current_build_dir() / 'jni'
263 'NDK_PROJECT_PATH': jni_root,
264 'APP_BUILD_SCRIPT': jni_root / 'Android.mk',
265 'NDK_APPLICATION_MK': jni_root / 'Application.mk',
266 'NDK_LIBS_OUT': jni_build_root / 'libs',
267 'NDK_OUT': jni_build_root / 'objs',
268 'ENABLE_PROFILE': get_option('enable-profile') ? 1 : 0,
269 'ENABLE_BLAS': get_option('enable-blas') ? 1 : 0,
272 num_threads = run_command('grep', '-c', '^processor', '/proc/cpuinfo').stdout().strip()
273 message('num processor are: ' + num_threads)
275 thread_opt_flag = '-j' + num_threads
277 ndk_additional_flags = [thread_opt_flag]
279 ndk_build_command = [ndk_build]
280 foreach key, val : ndk_args
281 ndk_build_command += '@0@=@1@'.format(key, val)
283 ndk_build_command += ndk_additional_flags
285 android_build_target = custom_target('android',
287 build_by_default: true,
288 command: ndk_build_command