510_configure_options.doxy 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764
  1. /* StarPU --- Runtime system for heterogeneous multicore architectures.
  2. *
  3. * Copyright (C) 2009-2020 Université de Bordeaux, CNRS (LaBRI UMR 5800), Inria
  4. *
  5. * StarPU is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU Lesser General Public License as published by
  7. * the Free Software Foundation; either version 2.1 of the License, or (at
  8. * your option) any later version.
  9. *
  10. * StarPU is distributed in the hope that it will be useful, but
  11. * WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  13. *
  14. * See the GNU Lesser General Public License in COPYING.LGPL for more details.
  15. */
  16. /*! \page CompilationConfiguration Compilation Configuration
  17. The behavior of the StarPU library and tools may be tuned thanks to
  18. the following configure options.
  19. \section CommonConfiguration Common Configuration
  20. <dl>
  21. <dt>--enable-debug</dt>
  22. <dd>
  23. \anchor enable-debug
  24. \addindex __configure__--enable-debug
  25. Enable debugging messages.
  26. </dd>
  27. <dt>--enable-spinlock-check</dt>
  28. <dd>
  29. \anchor enable-spinlock-check
  30. \addindex __configure__--enable-spinlock-check
  31. Enable checking that spinlocks are taken and released properly.
  32. </dd>
  33. <dt>--enable-fast</dt>
  34. <dd>
  35. \anchor enable-fast
  36. \addindex __configure__--enable-fast
  37. Disable assertion checks, which saves computation time.
  38. </dd>
  39. <dt>--enable-verbose</dt>
  40. <dd>
  41. \anchor enable-verbose
  42. \addindex __configure__--enable-verbose
  43. Increase the verbosity of the debugging messages. This can be disabled
  44. at runtime by setting the environment variable \ref STARPU_SILENT to
  45. any value. <c>--enable-verbose=extra</c> increase even more the verbosity.
  46. \verbatim
  47. $ STARPU_SILENT=1 ./vector_scal
  48. \endverbatim
  49. </dd>
  50. <dt>--enable-coverage</dt>
  51. <dd>
  52. \anchor enable-coverage
  53. \addindex __configure__--enable-coverage
  54. Enable flags for the coverage tool <c>gcov</c>.
  55. </dd>
  56. <dt>--enable-quick-check</dt>
  57. <dd>
  58. \anchor enable-quick-check
  59. \addindex __configure__--enable-quick-check
  60. Specify tests and examples should be run on a smaller data set, i.e
  61. allowing a faster execution time
  62. </dd>
  63. <dt>--enable-long-check</dt>
  64. <dd>
  65. \anchor enable-long-check
  66. \addindex __configure__--enable-long-check
  67. Enable some exhaustive checks which take a really long time.
  68. </dd>
  69. <dt>--enable-new-check</dt>
  70. <dd>
  71. \anchor enable-new-check
  72. \addindex __configure__--enable-new-check
  73. Enable new testcases which are known to fail.
  74. </dd>
  75. <dt>--with-hwloc</dt>
  76. <dd>
  77. \anchor with-hwloc
  78. \addindex __configure__--with-hwloc
  79. Specify <c>hwloc</c> should be used by StarPU. <c>hwloc</c> should be found by the
  80. means of the tool <c>pkg-config</c>.
  81. </dd>
  82. <dt>--with-hwloc=<c>prefix</c></dt>
  83. <dd>
  84. \anchor with-hwloc-prefix
  85. \addindex __configure__--with-hwloc-prefix
  86. Specify <c>hwloc</c> should be used by StarPU. <c>hwloc</c> should be found in the
  87. directory specified by <c>prefix</c>
  88. </dd>
  89. <dt>--without-hwloc</dt>
  90. <dd>
  91. \anchor without-hwloc
  92. \addindex __configure__--without-hwloc
  93. Specify <c>hwloc</c> should not be used by StarPU.
  94. </dd>
  95. <dt>--disable-build-doc</dt>
  96. <dd>
  97. \anchor disable-build-doc
  98. \addindex __configure__--disable-build-doc
  99. Disable the creation of the documentation. This should be done on a
  100. machine which does not have the tools <c>doxygen</c> and <c>latex</c>
  101. (plus the packages <c>latex-xcolor</c> and
  102. <c>texlive-latex-extra</c>).
  103. </dd>
  104. <dt>--enable-build-doc-pdf</dt>
  105. <dd>
  106. \anchor enable-build-doc-pdf
  107. \addindex __configure__--enable-build-doc-pdf
  108. By default, ontly the HTML documentation is generated. Use this option
  109. to also enable the generation of the PDF documentation. This should be
  110. done on a machine which does have the tools <c>doxygen</c> and <c>latex</c>
  111. (plus the packages <c>latex-xcolor</c> and
  112. <c>texlive-latex-extra</c>).
  113. </dd>
  114. <dt>--disable-icc</dt>
  115. <dd>
  116. \anchor disable-icc
  117. \addindex __configure__--disable-icc
  118. Disable the usage of the ICC compiler. When found, some specific ICC
  119. examples are compiled.
  120. </dd>
  121. </dl>
  122. Additionally, the script <c>configure</c> recognize many variables, which
  123. can be listed by typing <c>./configure --help</c>. For example,
  124. <c>./configure NVCCFLAGS="-arch sm_20"</c> adds a flag for the compilation of
  125. CUDA kernels, and <c>NVCC_CC=gcc-5</c> allows to change the C++ compiler
  126. used by nvcc.
  127. \section ConfiguringWorkers Configuring Workers
  128. <dl>
  129. <dt>--enable-blocking-drivers</dt>
  130. <dd>
  131. \anchor enable-blocking-drivers
  132. \addindex __configure__--enable-blocking-drivers
  133. By default, StarPU keeps CPU workers awake permanently, for better
  134. reactivity. This option makes StarPU put CPU workers to real sleep when there
  135. are not enough tasks to compute.
  136. </dd>
  137. <dt>--enable-worker-callbacks</dt>
  138. <dd>
  139. \anchor enable-worker-callbacks
  140. \addindex __configure__--enable-worker-callbacks
  141. If blocking drivers are enabled, enable callbacks to notify an external resource manager
  142. about workers going to sleep and waking up.
  143. </dd>
  144. <dt>--enable-maxcpus=<c>count</c></dt>
  145. <dd>
  146. \anchor enable-maxcpus
  147. \addindex __configure__--enable-maxcpus
  148. Use at most <c>count</c> CPU cores. This information is then
  149. available as the macro ::STARPU_MAXCPUS.
  150. </dd>
  151. <dt>--enable-maxnumanodes=<c>count</c></dt>
  152. <dd>
  153. \anchor enable-maxnumanodes
  154. \addindex __configure__--enable-maxnumanodes
  155. Use at most <c>count</c> NUMA nodes. This information is then
  156. available as the macro ::STARPU_MAXNUMANODES.
  157. </dd>
  158. <dt>--disable-cpu</dt>
  159. <dd>
  160. \anchor disable-cpu
  161. \addindex __configure__--disable-cpu
  162. Disable the use of CPUs of the machine. Only GPUs etc. will be used.
  163. </dd>
  164. <dt>--enable-maxcudadev=<c>count</c></dt>
  165. <dd>
  166. \anchor enable-maxcudadev
  167. \addindex __configure__--enable-maxcudadev
  168. Use at most <c>count</c> CUDA devices. This information is then
  169. available as the macro ::STARPU_MAXCUDADEVS.
  170. </dd>
  171. <dt>--disable-cuda</dt>
  172. <dd>
  173. \anchor disable-cuda
  174. \addindex __configure__--disable-cuda
  175. Disable the use of CUDA, even if a valid CUDA installation was detected.
  176. </dd>
  177. <dt>--with-cuda-dir=<c>prefix</c></dt>
  178. <dd>
  179. \anchor with-cuda-dir
  180. \addindex __configure__--with-cuda-dir
  181. Search for CUDA under <c>prefix</c>, which should notably contain the file
  182. <c>include/cuda.h</c>.
  183. </dd>
  184. <dt>--with-cuda-include-dir=<c>dir</c></dt>
  185. <dd>
  186. \anchor with-cuda-include-dir
  187. \addindex __configure__--with-cuda-include-dir
  188. Search for CUDA headers under <c>dir</c>, which should
  189. notably contain the file <c>cuda.h</c>. This defaults to
  190. <c>/include</c> appended to the value given to
  191. \ref with-cuda-dir "--with-cuda-dir".
  192. </dd>
  193. <dt>--with-cuda-lib-dir=<c>dir</c></dt>
  194. <dd>
  195. \anchor with-cuda-lib-dir
  196. \addindex __configure__--with-cuda-lib-dir
  197. Search for CUDA libraries under <c>dir</c>, which should notably contain
  198. the CUDA shared libraries---e.g., <c>libcuda.so</c>. This defaults to
  199. <c>/lib</c> appended to the value given to
  200. \ref with-cuda-dir "--with-cuda-dir".
  201. </dd>
  202. <dt>--disable-cuda-memcpy-peer</dt>
  203. <dd>
  204. \anchor disable-cuda-memcpy-peer
  205. \addindex __configure__--disable-cuda-memcpy-peer
  206. Explicitly disable peer transfers when using CUDA 4.0.
  207. </dd>
  208. <dt>--enable-maxopencldev=<c>count</c></dt>
  209. <dd>
  210. \anchor enable-maxopencldev
  211. \addindex __configure__--enable-maxopencldev
  212. Use at most <c>count</c> OpenCL devices. This information is then
  213. available as the macro ::STARPU_MAXOPENCLDEVS.
  214. </dd>
  215. <dt>--disable-opencl</dt>
  216. <dd>
  217. \anchor disable-opencl
  218. \addindex __configure__--disable-opencl
  219. Disable the use of OpenCL, even if the SDK is detected.
  220. </dd>
  221. <dt>--with-opencl-dir=<c>prefix</c></dt>
  222. <dd>
  223. \anchor with-opencl-dir
  224. \addindex __configure__--with-opencl-dir
  225. Search for an OpenCL implementation under <c>prefix</c>, which should
  226. notably contain <c>include/CL/cl.h</c> (or <c>include/OpenCL/cl.h</c>
  227. on Mac OS).
  228. </dd>
  229. <dt>--with-opencl-include-dir=<c>dir</c></dt>
  230. <dd>
  231. \anchor with-opencl-include-dir
  232. \addindex __configure__--with-opencl-include-dir
  233. Search for OpenCL headers under <c>dir</c>, which should notably contain
  234. <c>CL/cl.h</c> (or <c>OpenCL/cl.h</c> on Mac OS). This defaults to
  235. <c>/include</c> appended to the value given to
  236. \ref with-opencl-dir "--with-opencl-dir".
  237. </dd>
  238. <dt>--with-opencl-lib-dir=<c>dir</c></dt>
  239. <dd>
  240. \anchor with-opencl-lib-dir
  241. \addindex __configure__--with-opencl-lib-dir
  242. Search for an OpenCL library under <c>dir</c>, which should notably
  243. contain the OpenCL shared libraries---e.g. <c>libOpenCL.so</c>. This defaults to
  244. <c>/lib</c> appended to the value given to
  245. \ref with-opencl-dir "--with-opencl-dir".
  246. </dd>
  247. <dt>--enable-opencl-simulator</dt>
  248. <dd>
  249. \anchor enable-opencl-simulator
  250. \addindex __configure__--enable-opencl-simulator
  251. Enable considering the provided OpenCL implementation as a simulator, i.e. use
  252. the kernel duration returned by OpenCL profiling information as wallclock time
  253. instead of the actual measured real time. This requires the SimGrid support.
  254. </dd>
  255. <dt>--enable-maximplementations=<c>count</c></dt>
  256. <dd>
  257. \anchor enable-maximplementations
  258. \addindex __configure__--enable-maximplementations
  259. Allow for at most <c>count</c> codelet implementations for the same
  260. target device. This information is then available as the
  261. macro ::STARPU_MAXIMPLEMENTATIONS macro.
  262. </dd>
  263. <dt>--enable-max-sched-ctxs=<c>count</c></dt>
  264. <dd>
  265. \anchor enable-max-sched-ctxs
  266. \addindex __configure__--enable-max-sched-ctxs
  267. Allow for at most <c>count</c> scheduling contexts
  268. This information is then available as the macro
  269. ::STARPU_NMAX_SCHED_CTXS.
  270. </dd>
  271. <dt>--disable-asynchronous-copy</dt>
  272. <dd>
  273. \anchor disable-asynchronous-copy
  274. \addindex __configure__--disable-asynchronous-copy
  275. Disable asynchronous copies between CPU and GPU devices.
  276. The AMD implementation of OpenCL is known to
  277. fail when copying data asynchronously. When using this implementation,
  278. it is therefore necessary to disable asynchronous data transfers.
  279. </dd>
  280. <dt>--disable-asynchronous-cuda-copy</dt>
  281. <dd>
  282. \anchor disable-asynchronous-cuda-copy
  283. \addindex __configure__--disable-asynchronous-cuda-copy
  284. Disable asynchronous copies between CPU and CUDA devices.
  285. </dd>
  286. <dt>--disable-asynchronous-opencl-copy</dt>
  287. <dd>
  288. \anchor disable-asynchronous-opencl-copy
  289. \addindex __configure__--disable-asynchronous-opencl-copy
  290. Disable asynchronous copies between CPU and OpenCL devices.
  291. The AMD implementation of OpenCL is known to
  292. fail when copying data asynchronously. When using this implementation,
  293. it is therefore necessary to disable asynchronous data transfers.
  294. </dd>
  295. <dt>--enable-maxmicthreads</dt>
  296. <dd>
  297. \anchor enable-maxmicthreads
  298. \addindex __configure__--enable-maxmicthreads
  299. Specify the maximum number of MIC threads
  300. </dd>
  301. <dt>--disable-asynchronous-mic-copy</dt>
  302. <dd>
  303. \anchor disable-asynchronous-mic-copy
  304. \addindex __configure__--disable-asynchronous-mic-copy
  305. Disable asynchronous copies between CPU and MIC devices.
  306. </dd>
  307. <dt>--disable-asynchronous-mpi-master-slave-copy</dt>
  308. <dd>
  309. \anchor disable-asynchronous-mpi-master-slave-copy
  310. \addindex __configure__--disable-asynchronous-mpi-master-slave-copy
  311. Disable asynchronous copies between CPU and MPI Slave devices.
  312. </dd>
  313. <dt>--enable-maxnodes=<c>count</c></dt>
  314. <dd>
  315. \anchor enable-maxnodes
  316. \addindex __configure__--enable-maxnodes
  317. Use at most <c>count</c> memory nodes. This information is then available as
  318. the macro ::STARPU_MAXNODES. Reducing it allows to considerably reduce memory
  319. used by StarPU data structures.
  320. </dd>
  321. </dl>
  322. \section ExtensionConfiguration Extension Configuration
  323. <dl>
  324. <dt>--disable-mpi</dt>
  325. <dd>
  326. \anchor disable-mpi
  327. \addindex __configure__--disable-mpi
  328. Disable the build of libstarpumpi. By default, it is enabled when MPI is found.
  329. </dd>
  330. <dt>--enable-mpi</dt>
  331. <dd>
  332. \anchor enable-mpi
  333. \addindex __configure__--enable-mpi
  334. Enable the build of libstarpumpi. This is necessary when using Simgrid+MPI.
  335. </dd>
  336. <dt>--with-mpicc=<c>path</c></dt>
  337. <dd>
  338. \anchor with-mpicc
  339. \addindex __configure__--with-mpicc
  340. Use the compiler <c>mpicc</c> at <c>path</c>, for StarPU-MPI.
  341. (\ref MPISupport).
  342. </dd>
  343. <dt>--enable-mpi-pedantic-isend</dt>
  344. <dd>
  345. \anchor enable-mpi-pedantic-isend
  346. \addindex __configure__--enable-mpi-pedantic-isend
  347. Before performing any MPI communication, StarPU-MPI waits for the data
  348. to be available in the main memory of the node submitting the request.
  349. For send communications, data is acquired with the mode ::STARPU_R.
  350. When enabling the pedantic mode, data are instead acquired with the
  351. ::STARPU_RW which thus ensures that there is not more than 1
  352. concurrent MPI_Isend calls accessing the data
  353. and StarPU does not read from it from tasks during the communication.
  354. </dd>
  355. <dt>--enable-mpi-master-slave</dt>
  356. <dd>
  357. \anchor enable-mpi-master-slave
  358. \addindex __configure__--enable-mpi-master-slave
  359. Enable the MPI Master-Slave support. By default, it is disabled.
  360. </dd>
  361. <dt>--with-mpi-master-slave-multiple-thread</dt>
  362. <dd>
  363. \anchor with-mpi-master-slave-multiple-thread
  364. \addindex __configure__--with-mpi-master-slave-multiple-thread
  365. Create one thread per MPI Slave on the MPI master to manage communications.
  366. </dd>
  367. <dt>--enable-mpi-verbose</dt>
  368. <dd>
  369. \anchor enable-mpi-verbose
  370. \addindex __configure__--enable-mpi-verbose
  371. Increase the verbosity of the MPI debugging messages. This can be disabled
  372. at runtime by setting the environment variable \ref STARPU_SILENT to
  373. any value. <c>--enable-mpi-verbose=extra</c> increase even more the verbosity.
  374. \verbatim
  375. $ STARPU_SILENT=1 mpirun -np 2 ./insert_task
  376. \endverbatim
  377. </dd>
  378. <dt>--enable-nmad</dt>
  379. <dd>
  380. \anchor enable-nmad
  381. \addindex __configure__--enable-nmad
  382. Enable the NewMadeleine implementation for StarPU-MPI.
  383. </dd>
  384. <dt>--disable-fortran</dt>
  385. <dd>
  386. \anchor disable-fortran
  387. \addindex __configure__--disable-fortran
  388. Disable the fortran extension. By default, it is enabled when a
  389. fortran compiler is found.
  390. </dd>
  391. <dt>--disable-socl</dt>
  392. <dd>
  393. \anchor disable-socl
  394. \addindex __configure__--disable-socl
  395. Disable the SOCL extension (\ref SOCLOpenclExtensions). By
  396. default, it is enabled when an OpenCL implementation is found.
  397. </dd>
  398. <dt>--with-coi-dir</dt>
  399. <dd>
  400. \anchor with-coi-dir
  401. \addindex __configure__--with-coi-dir
  402. Specify the directory to the COI library for MIC support.
  403. The default value is <c>/opt/intel/mic/coi</c>
  404. </dd>
  405. <dt>--mic-host</dt>
  406. <dd>
  407. \anchor mic-host
  408. \addindex __configure__--mic-host
  409. Specify the precise MIC architecture host identifier.
  410. The default value is <c>x86_64-k1om-linux</c>
  411. </dd>
  412. <dt>--enable-openmp</dt>
  413. <dd>
  414. \anchor enable-openmp
  415. \addindex __configure__--enable-openmp
  416. Enable OpenMP Support (\ref OpenMPRuntimeSupport)
  417. </dd>
  418. <dt>--enable-cluster</dt>
  419. <dd>
  420. \anchor enable-cluster
  421. \addindex __configure__--enable-cluster
  422. Enable cluster Support (\ref ClusteringAMachine)
  423. </dd>
  424. </dl>
  425. \section AdvancedConfiguration Advanced Configuration
  426. <dl>
  427. <dt>--enable-perf-debug</dt>
  428. <dd>
  429. \anchor enable-perf-debug
  430. \addindex __configure__--enable-perf-debug
  431. Enable performance debugging through gprof.
  432. </dd>
  433. <dt>--enable-model-debug</dt>
  434. <dd>
  435. \anchor enable-model-debug
  436. \addindex __configure__--enable-model-debug
  437. Enable performance model debugging.
  438. </dd>
  439. <dt>--enable-fxt-lock</dt>
  440. <dd>
  441. \anchor enable-fxt-lock
  442. \addindex __configure__--enable-fxt-lock
  443. Enable additional trace events which describes locks behaviour. This is however
  444. extremely heavy and should only be enabled when debugging insides of StarPU.
  445. </dd>
  446. <dt>--enable-maxbuffers</dt>
  447. <dd>
  448. \anchor enable-maxbuffers
  449. \addindex __configure__--enable-maxbuffers
  450. Define the maximum number of buffers that tasks will be able to take
  451. as parameters, then available as the macro ::STARPU_NMAXBUFS.
  452. </dd>
  453. <dt>--enable-allocation-cache</dt>
  454. <dd>
  455. \anchor enable-allocation-cache
  456. \addindex __configure__--enable-allocation-cache
  457. Enable the use of a data allocation cache to avoid the cost of it with
  458. CUDA. Still experimental.
  459. </dd>
  460. <dt>--enable-opengl-render</dt>
  461. <dd>
  462. \anchor enable-opengl-render
  463. \addindex __configure__--enable-opengl-render
  464. Enable the use of OpenGL for the rendering of some examples.
  465. // TODO: rather default to enabled when detected
  466. </dd>
  467. <dt>--enable-blas-lib=<c>prefix</c></dt>
  468. <dd>
  469. \anchor enable-blas-lib
  470. \addindex __configure__--enable-blas-lib
  471. Specify the blas library to be used by some of the examples. Librairies available :
  472. - none [default] : no BLAS library is used
  473. - atlas: use ATLAS library
  474. - goto: use GotoBLAS library
  475. - openblas: use OpenBLAS library
  476. - mkl: use MKL library (you may need to set specific CFLAGS and LDFLAGS with --with-mkl-cflags and --with-mkl-ldflags)
  477. </dd>
  478. <dt>--enable-leveldb</dt>
  479. <dd>
  480. \anchor enable-leveldb
  481. \addindex __configure__--enable-leveldb
  482. Enable linking with LevelDB if available
  483. </dd>
  484. <dt>--disable-hdf5</dt>
  485. <dd>
  486. \anchor disable-hdf5
  487. \addindex __configure__--disable-hdf5
  488. Disable building HDF5 support.
  489. </dd>
  490. <dt>--with-hdf5-include-dir=<c>path</c></dt>
  491. <dd>
  492. \anchor with-hdf5-include-dir
  493. \addindex __configure__--with-hdf5-include-dir
  494. Specify the directory where is stored the header hdf5.h.
  495. </dd>
  496. <dt>--with-hdf5-lib-dir=<c>path</c></dt>
  497. <dd>
  498. \anchor with-hdf5-lib-dir
  499. \addindex __configure__--with-hdf5-lib-dir
  500. Specify the directory where is stored the hdf5 library.
  501. </dd>
  502. <dt>--disable-starpufft</dt>
  503. <dd>
  504. \anchor disable-starpufft
  505. \addindex __configure__--disable-starpufft
  506. Disable the build of libstarpufft, even if <c>fftw</c> or <c>cuFFT</c> is available.
  507. </dd>
  508. <dt>--enable-starpufft-examples</dt>
  509. <dd>
  510. \anchor enable-starpufft-examples
  511. \addindex __configure__--enable-starpufft-examples
  512. Enable the compilation and the execution of the libstarpufft examples.
  513. By default, they are neither compiled nor checked.
  514. </dd>
  515. <dt>--with-fxt=<c>prefix</c></dt>
  516. <dd>
  517. \anchor with-fxt
  518. \addindex __configure__--with-fxt
  519. Search for FxT under <c>prefix</c>.
  520. FxT (http://savannah.nongnu.org/projects/fkt) is used to generate
  521. traces of scheduling events, which can then be rendered them using ViTE
  522. (\ref Off-linePerformanceFeedback). <c>prefix</c> should
  523. notably contain <c>include/fxt/fxt.h</c>.
  524. </dd>
  525. <dt>--with-perf-model-dir=<c>dir</c></dt>
  526. <dd>
  527. \anchor with-perf-model-dir
  528. \addindex __configure__--with-perf-model-dir
  529. Store performance models under <c>dir</c>, instead of the current user's
  530. home.
  531. </dd>
  532. <dt>--with-goto-dir=<c>prefix</c></dt>
  533. <dd>
  534. \anchor with-goto-dir
  535. \addindex __configure__--with-goto-dir
  536. Search for GotoBLAS under <c>prefix</c>, which should notably contain
  537. <c>libgoto.so</c> or <c>libgoto2.so</c>.
  538. </dd>
  539. <dt>--with-atlas-dir=<c>prefix</c></dt>
  540. <dd>
  541. \anchor with-atlas-dir
  542. \addindex __configure__--with-atlas-dir
  543. Search for ATLAS under <c>prefix</c>, which should notably contain
  544. <c>include/cblas.h</c>.
  545. </dd>
  546. <dt>--with-mkl-cflags=<c>cflags</c></dt>
  547. <dd>
  548. \anchor with-mkl-cflags
  549. \addindex __configure__--with-mkl-cflags
  550. Use <c>cflags</c> to compile code that uses the MKL library.
  551. </dd>
  552. <dt>--with-mkl-ldflags=<c>ldflags</c></dt>
  553. <dd>
  554. \anchor with-mkl-ldflags
  555. \addindex __configure__--with-mkl-ldflags
  556. Use <c>ldflags</c> when linking code that uses the MKL library. Note
  557. that the MKL website
  558. (http://software.intel.com/en-us/articles/intel-mkl-link-line-advisor/)
  559. provides a script to determine the linking flags.
  560. </dd>
  561. <dt>--disable-glpk</dt>
  562. <dd>
  563. \anchor disable-glpk
  564. \addindex __configure__--disable-glpk
  565. Disable the use of libglpk for computing area bounds.
  566. </dd>
  567. <dt>--disable-build-tests</dt>
  568. <dd>
  569. \anchor disable-build-tests
  570. \addindex __configure__--disable-build-tests
  571. Disable the build of tests.
  572. </dd>
  573. <dt>--disable-build-examples</dt>
  574. <dd>
  575. \anchor disable-build-examples
  576. \addindex __configure__--disable-build-examples
  577. Disable the build of examples.
  578. </dd>
  579. <dt>--enable-sc-hypervisor</dt>
  580. <dd>
  581. \anchor enable-sc-hypervisor
  582. \addindex __configure__--enable-sc-hypervisor
  583. Enable the Scheduling Context Hypervisor plugin (\ref SchedulingContextHypervisor).
  584. By default, it is disabled.
  585. </dd>
  586. <dt>--enable-memory-stats</dt>
  587. <dd>
  588. \anchor enable-memory-stats
  589. \addindex __configure__--enable-memory-stats
  590. Enable memory statistics (\ref MemoryFeedback).
  591. </dd>
  592. <dt>--enable-simgrid</dt>
  593. <dd>
  594. \anchor enable-simgrid
  595. \addindex __configure__--enable-simgrid
  596. Enable simulation of execution in SimGrid, to allow easy experimentation with
  597. various numbers of cores and GPUs, or amount of memory, etc. Experimental.
  598. The path to SimGrid can be specified through the <c>SIMGRID_CFLAGS</c> and
  599. <c>SIMGRID_LIBS</c> environment variables, for instance:
  600. \verbatim
  601. export SIMGRID_CFLAGS="-I/usr/local/simgrid/include"
  602. export SIMGRID_LIBS="-L/usr/local/simgrid/lib -lsimgrid"
  603. \endverbatim
  604. </dd>
  605. <dt>--with-simgrid-dir</dt>
  606. <dd>
  607. \anchor with-simgrid-dir
  608. \addindex __configure__--with-simgrid-dir
  609. Similar to the option \ref enable-simgrid "--enable-simgrid" but also
  610. allows to specify the location to the SimGrid library.
  611. </dd>
  612. <dt>--with-simgrid-include-dir</dt>
  613. <dd>
  614. \anchor with-simgrid-include-dir
  615. \addindex __configure__--with-simgrid-include-dir
  616. Similar to the option \ref enable-simgrid "--enable-simgrid" but also
  617. allows to specify the location to the SimGrid include directory.
  618. </dd>
  619. <dt>--with-simgrid-lib-dir</dt>
  620. <dd>
  621. \anchor with-simgrid-lib-dir
  622. \addindex __configure__--with-simgrid-lib-dir
  623. Similar to the option \ref enable-simgrid "--enable-simgrid" but also
  624. allows to specify the location to the SimGrid lib directory.
  625. </dd>
  626. <dt>--with-smpirun=<c>path</c></dt>
  627. <dd>
  628. \anchor with-smpirun
  629. \addindex __configure__--with-smpirun
  630. Use the smpirun at <c>path</c>
  631. </dd>
  632. <dt>--enable-simgrid-mc</dt>
  633. <dd>
  634. \anchor enable-simgrid-mc
  635. \addindex __configure__--enable-simgrid-mc
  636. Enable the Model Checker in simulation of execution in SimGrid, to allow
  637. exploring various execution paths.
  638. </dd>
  639. <dt>--enable-calibration-heuristic</dt>
  640. <dd>
  641. \anchor enable-calibration-heuristic
  642. \addindex __configure__--enable-calibration-heuristic
  643. Allow to set the maximum authorized percentage of deviation
  644. for the history-based calibrator of StarPU. A correct value
  645. of this parameter must be in [0..100]. The default value of
  646. this parameter is 10. Experimental.
  647. </dd>
  648. <dt>--disable-mlr</dt>
  649. <dd>
  650. \anchor disable-mlr
  651. \addindex __configure__--disable-mlr
  652. Allow to disable multiple linear regression models (see \ref PerformanceModelExample)
  653. </dd>
  654. </dl>
  655. */