ChangeLog 43 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937
  1. # StarPU --- Runtime system for heterogeneous multicore architectures.
  2. #
  3. # Copyright (C) 2009-2017 Université de Bordeaux
  4. # Copyright (C) 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017 CNRS
  5. # Copyright (C) 2014, 2016, 2017 INRIA
  6. #
  7. # StarPU is free software; you can redistribute it and/or modify
  8. # it under the terms of the GNU Lesser General Public License as published by
  9. # the Free Software Foundation; either version 2.1 of the License, or (at
  10. # your option) any later version.
  11. #
  12. # StarPU is distributed in the hope that it will be useful, but
  13. # WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  15. #
  16. # See the GNU Lesser General Public License in COPYING.LGPL for more details.
  17. StarPU 1.3.0 (svn revision xxxx)
  18. ==============================================
  19. New features:
  20. * New scheduler with heterogeneous priorities
  21. * Support priorities for data transfers.
  22. * Add support for Ayudame version 2.x debugging library.
  23. * Add support for multiple linear regression performance models
  24. * Add MPI Master-Slave support to use the cores of remote nodes. Use the
  25. --enable-mpi-master-slave option to activate it.
  26. * Add STARPU_CUDA_THREAD_PER_DEV environment variable to support driving all
  27. GPUs from only one thread when almost all kernels are asynchronous.
  28. Small features:
  29. * Scheduling contexts may now be associated a user data pointer at creation
  30. time, that can later be recalled through starpu_sched_ctx_get_user_data().
  31. * Add STARPU_SIMGRID_TASK_SUBMIT_COST and STARPU_SIMGRID_FETCHING_INPUT_COST
  32. to simulate the cost of task submission and data fetching in simgrid mode.
  33. This provides more accurate simgrid predictions, especially for the
  34. beginning of the execution and regarding data transfers.
  35. * STARPU_SIMGRID_SCHED_COST to take into account the time to perform scheduling
  36. when running in SimGrid mode.
  37. * New configure option --enable-mpi-pedantic-isend (disabled by
  38. default) to acquire data in STARPU_RW (instead of STARPU_R) before
  39. performing MPI_Isend call
  40. * New function starpu_worker_display_names to display the names of
  41. all the workers of a specified type.
  42. * Arbiters now support concurrent read access.
  43. * Add a field starpu_task::where similar to starpu_codelet::where
  44. which allows to restrict where to execute a task. Also add
  45. STARPU_TASK_WHERE to be used when calling starpu_task_insert().
  46. Changes:
  47. * Vastly improve simgrid simulation time.
  48. Small changes:
  49. * Use asynchronous transfers for task data fetches with were not prefetched.
  50. * Allow to call starpu_sched_ctx_set_policy_data on the main
  51. scheduler context
  52. * Fonction starpu_is_initialized() is moved to the public API.
  53. StarPU 1.2.2 (svn revision xxx)
  54. ==============================================
  55. New features:
  56. * Add starpu_data_acquire_try and starpu_data_acquire_on_node_try.
  57. * Add NVCC_CC environment variable.
  58. * Add -no-flops and -no-events options to starpu_fxt_tool to make
  59. traces lighter
  60. * Add starpu_cusparse_init/shutdown/get_local_handle for proper CUDA
  61. overlapping with cusparse.
  62. * Allow precise debugging by setting STARPU_TASK_BREAK_ON_PUSH,
  63. STARPU_TASK_BREAK_ON_SCHED, STARPU_TASK_BREAK_ON_POP, and
  64. STARPU_TASK_BREAK_ON_EXEC environment variables, with the job_id
  65. of a task. StarPU will raise SIGTRAP when the task is being
  66. scheduled, pushed, or popped by the scheduler.
  67. Small features:
  68. * New function starpu_worker_get_job_id(struct starpu_task *task)
  69. which returns the job identifier for a given task
  70. * Show package/numa topology in starpu_machine_display
  71. * MPI: Add mpi communications in dag.dot
  72. * Add STARPU_PERF_MODEL_HOMOGENEOUS_CPU environment variable to
  73. allow having one perfmodel per CPU core
  74. * Add starpu_vector_filter_list_long filter.
  75. Small changes:
  76. * Output generated through STARPU_MPI_COMM has been modified to
  77. allow easier automated checking
  78. * MPI: Fix reactivity of the beginning of the application, when a
  79. lot of ready requests have to be processed at the same time, we
  80. want to poll the pending requests from time to time.
  81. * MPI: Fix gantt chart for starpu_mpi_irecv: it should use the
  82. termination time of the request, not the submission time.
  83. * MPI: Modify output generated through STARPU_MPI_COMM to allow
  84. easier automated checking
  85. * MPI: enable more tests in simgrid mode
  86. * Use assumed-size instead of assumed-shape arrays for native
  87. fortran API, for better backward compatibility.
  88. * Fix odd ordering of CPU workers on CPUs due to GPUs stealing some
  89. cores
  90. StarPU 1.2.1 (svn revision 20299)
  91. ==============================================
  92. New features:
  93. * Add starpu_fxt_trace_user_event_string.
  94. * Add starpu_tasks_rec_complete tool to add estimation times in tasks.rec
  95. files.
  96. * Add STARPU_FXT_TRACE environment variable.
  97. * Add starpu_data_set_user_data and starpu_data_get_user_data.
  98. * Add STARPU_MPI_FAKE_SIZE and STARPU_MPI_FAKE_RANK to allow simulating
  99. execution of just one MPI node.
  100. * Add STARPU_PERF_MODEL_HOMOGENEOUS_CUDA/OPENCL/MIC/SCC to share performance
  101. models between devices, making calibration much faster.
  102. * Add modular-heft-prio scheduler.
  103. * Add starpu_cublas_get_local_handle helper.
  104. * Add starpu_data_set_name, starpu_data_set_coordinates_array, and
  105. starpu_data_set_coordinates to describe data, and starpu_iteration_push and
  106. starpu_iteration_pop to describe tasks, for better offline traces analysis.
  107. * New function starpu_bus_print_filenames() to display filenames
  108. storing bandwidth/affinity/latency information, available through
  109. tools/starpu_machine_display -i
  110. * Add support for Ayudame version 2.x debugging library.
  111. * Add starpu_sched_ctx_get_workers_list_raw, much less costly than
  112. starpu_sched_ctx_get_workers_list
  113. * Add starpu_task_get_name and use it to warn about dmda etc. using
  114. a dumb policy when calibration is not finished
  115. * MPI: Add functions to test for cached values
  116. Changes:
  117. * Fix performance regression of lws for small tasks.
  118. * Improve native Fortran support for StarPU
  119. Small changes:
  120. * Fix type of data home node to allow users to pass -1 to define
  121. temporary data
  122. * Fix compatibility with simgrid 3.14
  123. StarPU 1.2.0 (svn revision 18521)
  124. ==============================================
  125. New features:
  126. * MIC Xeon Phi support
  127. * SCC support
  128. * New function starpu_sched_ctx_exec_parallel_code to execute a
  129. parallel code on the workers of the given scheduler context
  130. * MPI:
  131. - New internal communication system : a unique tag called
  132. is now used for all communications, and a system
  133. of hashmaps on each node which stores pending receives has been
  134. implemented. Every message is now coupled with an envelope, sent
  135. before the corresponding data, which allows the receiver to
  136. allocate data correctly, and to submit the matching receive of
  137. the envelope.
  138. - New function
  139. starpu_mpi_irecv_detached_sequential_consistency which
  140. allows to enable or disable the sequential consistency for
  141. the given data handle (sequential consistency will be
  142. enabled or disabled based on the value of the function
  143. parameter and the value of the sequential consistency
  144. defined for the given data)
  145. - New functions starpu_mpi_task_build() and
  146. starpu_mpi_task_post_build()
  147. - New flag STARPU_NODE_SELECTION_POLICY to specify a policy for
  148. selecting a node to execute the codelet when several nodes
  149. own data in W mode.
  150. - New selection node policies can be un/registered with the
  151. functions starpu_mpi_node_selection_register_policy() and
  152. starpu_mpi_node_selection_unregister_policy()
  153. - New environment variable STARPU_MPI_COMM which enables
  154. basic tracing of communications.
  155. - New function starpu_mpi_init_comm() which allows to specify
  156. a MPI communicator.
  157. * New STARPU_COMMUTE flag which can be passed along STARPU_W or STARPU_RW to
  158. let starpu commute write accesses.
  159. * Out-of-core support, through registration of disk areas as additional memory
  160. nodes. It can be enabled programmatically or through the STARPU_DISK_SWAP*
  161. environment variables.
  162. * Reclaiming is now periodically done before memory becomes full. This can
  163. be controlled through the STARPU_*_AVAILABLE_MEM environment variables.
  164. * New hierarchical schedulers which allow the user to easily build
  165. its own scheduler, by coding itself each "box" it wants, or by
  166. combining existing boxes in StarPU to build it. Hierarchical
  167. schedulers have very interesting scalability properties.
  168. * Add STARPU_CUDA_ASYNC and STARPU_OPENCL_ASYNC flags to allow asynchronous
  169. CUDA and OpenCL kernel execution.
  170. * Add STARPU_CUDA_PIPELINE and STARPU_OPENCL_PIPELINE to specify how
  171. many asynchronous tasks are submitted in advance on CUDA and
  172. OpenCL devices. Setting the value to 0 forces a synchronous
  173. execution of all tasks.
  174. * Add CUDA concurrent kernel execution support through
  175. the STARPU_NWORKER_PER_CUDA environment variable.
  176. * Add CUDA and OpenCL kernel submission pipelining, to overlap costs and allow
  177. concurrent kernel execution on Fermi cards.
  178. * New locality work stealing scheduler (lws).
  179. * Add STARPU_VARIABLE_NBUFFERS to be set in cl.nbuffers, and nbuffers and
  180. modes field to the task structure, which permit to define codelets taking a
  181. variable number of data.
  182. * Add support for implementing OpenMP runtimes on top of StarPU
  183. * New performance model format to better represent parallel tasks.
  184. Used to provide estimations for the execution times of the
  185. parallel tasks on scheduling contexts or combined workers.
  186. * starpu_data_idle_prefetch_on_node and
  187. starpu_idle_prefetch_task_input_on_node allow to queue prefetches to be done
  188. only when the bus is idle.
  189. * Make starpu_data_prefetch_on_node not forcibly flush data out, introduce
  190. starpu_data_fetch_on_node for that.
  191. * Add data access arbiters, to improve parallelism of concurrent data
  192. accesses, notably with STARPU_COMMUTE.
  193. * Anticipative writeback, to flush dirty data asynchronously before the
  194. GPU device is full. Disabled by default. Use STARPU_MINIMUM_CLEAN_BUFFERS
  195. and STARPU_TARGET_CLEAN_BUFFERS to enable it.
  196. * Add starpu_data_wont_use to advise that a piece of data will not be used
  197. in the close future.
  198. * Enable anticipative writeback by default.
  199. * New scheduler 'dmdasd' that considers priority when deciding on
  200. which worker to schedule
  201. * Add the capability to define specific MPI datatypes for
  202. StarPU user-defined interfaces.
  203. * Add tasks.rec trace output to make scheduling analysis easier.
  204. * Add Fortran 90 module and example using it
  205. * New StarPU-MPI gdb debug functions
  206. * Generate animated html trace of modular schedulers.
  207. * Add asynchronous partition planning. It only supports coherency through
  208. the home node of data for now.
  209. * Add STARPU_MALLOC_SIMULATION_FOLDED flag to save memory when simulating.
  210. * Include application threads in the trace.
  211. * Add starpu_task_get_task_scheduled_succs to get successors of a task.
  212. * Add graph inspection facility for schedulers.
  213. * New STARPU_LOCALITY flag to mark data which should be taken into account
  214. by schedulers for improving locality.
  215. * Experimental support for data locality in ws and lws.
  216. * Add a preliminary framework for native Fortran support for StarPU
  217. Small features:
  218. * Tasks can now have a name (via the field const char *name of
  219. struct starpu_task)
  220. * New functions starpu_data_acquire_cb_sequential_consistency() and
  221. starpu_data_acquire_on_node_cb_sequential_consistency() which allows
  222. to enable or disable sequential consistency
  223. * New configure option --enable-fxt-lock which enables additional
  224. trace events focused on locks behaviour during the execution
  225. * Functions starpu_insert_task and starpu_mpi_insert_task are
  226. renamed in starpu_task_insert and starpu_mpi_task_insert. Old
  227. names are kept to avoid breaking old codes.
  228. * New configure option --enable-calibration-heuristic which allows
  229. the user to set the maximum authorized deviation of the
  230. history-based calibrator.
  231. * Allow application to provide the task footprint itself.
  232. * New function starpu_sched_ctx_display_workers() to display worker
  233. information belonging to a given scheduler context
  234. * The option --enable-verbose can be called with
  235. --enable-verbose=extra to increase the verbosity
  236. * Add codelet size, footprint and tag id in the paje trace.
  237. * Add STARPU_TAG_ONLY, to specify a tag for traces without making StarPU
  238. manage the tag.
  239. * On Linux x86, spinlocks now block after a hundred tries. This avoids
  240. typical 10ms pauses when the application thread tries to submit tasks.
  241. * New function char *starpu_worker_get_type_as_string(enum starpu_worker_archtype type)
  242. * Improve static scheduling by adding support for specifying the task
  243. execution order.
  244. * Add starpu_worker_can_execute_task_impl and
  245. starpu_worker_can_execute_task_first_impl to optimize getting the
  246. working implementations
  247. * Add STARPU_MALLOC_NORECLAIM flag to allocate without running a reclaim if
  248. the node is out of memory.
  249. * New flag STARPU_DATA_MODE_ARRAY for the function family
  250. starpu_task_insert to allow to define a array of data handles
  251. along with their access modes.
  252. * New configure option --enable-new-check to enable new testcases
  253. which are known to fail
  254. * Add starpu_memory_allocate and _deallocate to let the application declare
  255. its own allocation to the reclaiming engine.
  256. * Add STARPU_SIMGRID_CUDA_MALLOC_COST and STARPU_SIMGRID_CUDA_QUEUE_COST to
  257. disable CUDA costs simulation in simgrid mode.
  258. * Add starpu_task_get_task_succs to get the list of children of a given
  259. task.
  260. * Add starpu_malloc_on_node_flags, starpu_free_on_node_flags, and
  261. starpu_malloc_on_node_set_default_flags to control the allocation flags
  262. used for allocations done by starpu.
  263. * Ranges can be provided in STARPU_WORKERS_CPUID
  264. * Add starpu_fxt_autostart_profiling to be able to avoid autostart.
  265. * Add arch_cost_function perfmodel function field.
  266. * Add STARPU_TASK_BREAK_ON_SCHED, STARPU_TASK_BREAK_ON_PUSH, and
  267. STARPU_TASK_BREAK_ON_POP environment variables to debug schedulers.
  268. * Add starpu_sched_display tool.
  269. * Add starpu_memory_pin and starpu_memory_unpin to pin memory allocated
  270. another way than starpu_malloc.
  271. * Add STARPU_NOWHERE to create synchronization tasks with data.
  272. * Document how to switch between differents views of the same data.
  273. * Add STARPU_NAME to specify a task name from a starpu_task_insert call.
  274. * Add configure option to disable fortran --disable-fortran
  275. * Add configure option to give path for smpirun executable --with-smpirun
  276. * Add configure option to disable the build of tests --disable-build-tests
  277. * Add starpu-all-tasks debugging support
  278. * New function
  279. void starpu_opencl_load_program_source_malloc(const char *source_file_name, char **located_file_name, char **located_dir_name, char **opencl_program_source)
  280. which allocates the pointers located_file_name, located_dir_name
  281. and opencl_program_source.
  282. * Add submit_hook and do_schedule scheduler methods.
  283. * Add starpu_sleep.
  284. * Add starpu_task_list_ismember.
  285. * Add _starpu_fifo_pop_this_task.
  286. * Add STARPU_MAX_MEMORY_USE environment variable.
  287. * Add starpu_worker_get_id_check().
  288. * New function starpu_mpi_wait_for_all(MPI_Comm comm) that allows to
  289. wait until all StarPU tasks and communications for the given
  290. communicator are completed.
  291. * New function starpu_codelet_unpack_args_and_copyleft() which
  292. allows to copy in a new buffer values which have not been unpacked by
  293. the current call
  294. * Add STARPU_CODELET_SIMGRID_EXECUTE flag.
  295. * Add STARPU_CODELET_SIMGRID_EXECUTE_AND_INJECT flag.
  296. * Add STARPU_CL_ARGS flag to starpu_task_insert() and
  297. starpu_mpi_task_insert() functions call
  298. Changes:
  299. * Data interfaces (variable, vector, matrix and block) now define
  300. pack und unpack functions
  301. * StarPU-MPI: Fix for being able to receive data which have not yet
  302. been registered by the application (i.e it did not call
  303. starpu_data_set_tag(), data are received as a raw memory)
  304. * StarPU-MPI: Fix for being able to receive data with the same tag
  305. from several nodes (see mpi/tests/gather.c)
  306. * Remove the long-deprecated cost_model fields and task->buffers field.
  307. * Fix complexity of implicit task/data dependency, from quadratic to linear.
  308. Small changes:
  309. * Rename function starpu_trace_user_event() as
  310. starpu_fxt_trace_user_event()
  311. * "power" is renamed into "energy" wherever it applies, notably energy
  312. consumption performance models
  313. * Update starpu_task_build() to set starpu_task::cl_arg_free to 1 if
  314. some arguments of type ::STARPU_VALUE are given.
  315. * Simplify performance model loading API
  316. * Better semantic for environment variables STARPU_NMIC and
  317. STARPU_NMICDEVS, the number of devices and the number of cores.
  318. STARPU_NMIC will be the number of devices, and STARPU_NMICCORES
  319. will be the number of cores per device.
  320. StarPU 1.1.5 (svn revision xxx)
  321. ==============================================
  322. The scheduling context release
  323. * Add starpu_memory_pin and starpu_memory_unpin to pin memory allocated
  324. another way than starpu_malloc.
  325. * Add starpu_task_wait_for_n_submitted() and
  326. STARPU_LIMIT_MAX_NSUBMITTED_TASKS/STARPU_LIMIT_MIN_NSUBMITTED_TASKS to
  327. easily control the number of submitted tasks by making task submission
  328. block.
  329. StarPU 1.1.4 (svn revision 14856)
  330. ==============================================
  331. The scheduling context release
  332. New features:
  333. * Fix and actually enable the cache allocation.
  334. * Enable allocation cache in main RAM when STARPU_LIMIT_CPU_MEM is set by
  335. the user.
  336. * New MPI functions starpu_mpi_issend and starpu_mpi_issend_detached
  337. to send data using a synchronous and non-blocking mode (internally
  338. uses MPI_Issend)
  339. * New data access mode flag STARPU_SSEND to be set when calling
  340. starpu_mpi_insert_task to specify the data has to be sent using a
  341. synchronous and non-blocking mode
  342. * New environment variable STARPU_PERF_MODEL_DIR which can be set to
  343. specify a directory where to store performance model files in.
  344. When unset, the files are stored in $STARPU_HOME/.starpu/sampling
  345. * MPI:
  346. - New function starpu_mpi_data_register_comm to register a data
  347. with another communicator than MPI_COMM_WORLD
  348. - New functions starpu_mpi_data_set_rank() and starpu_mpi_data_set_tag()
  349. which call starpu_mpi_data_register_comm()
  350. Small features:
  351. * Add starpu_memory_wait_available() to wait for a given size to become
  352. available on a given node.
  353. * New environment variable STARPU_RAND_SEED to set the seed used for random
  354. numbers.
  355. * New function starpu_mpi_cache_set() to enable or disable the
  356. communication cache at runtime
  357. * Add starpu_paje_sort which sorts Pajé traces.
  358. Changes:
  359. * Fix complexity of implicit task/data dependency, from quadratic to linear.
  360. StarPU 1.1.3 (svn revision 13450)
  361. ==============================================
  362. The scheduling context release
  363. New features:
  364. * One can register an existing on-GPU buffer to be used by a handle.
  365. * Add the starpu_paje_summary statistics tool.
  366. * Enable gpu-gpu transfers for matrices.
  367. * Let interfaces declare which transfers they allow with the can_copy
  368. methode.
  369. Small changes:
  370. * Lock performance model files while writing and reading them to avoid
  371. issues on parallel launches, MPI runs notably.
  372. * Lots of build fixes for icc on Windows.
  373. StarPU 1.1.2 (svn revision 13011)
  374. ==============================================
  375. The scheduling context release
  376. New features:
  377. * The reduction init codelet is automatically used to initialize temporary
  378. buffers.
  379. * Traces now include a "scheduling" state, to show the overhead of the
  380. scheduler.
  381. * Add STARPU_CALIBRATE_MINIMUM environment variable to specify the minimum
  382. number of calibration measurements.
  383. * Add STARPU_TRACE_BUFFER_SIZE environment variable to specify the size of
  384. the trace buffer.
  385. StarPU 1.1.1 (svn revision 12638)
  386. ==============================================
  387. The scheduling context release
  388. New features:
  389. * MPI:
  390. - New variable STARPU_MPI_CACHE_STATS to print statistics on
  391. cache holding received data.
  392. - New function starpu_mpi_data_register() which sets the rank
  393. and tag of a data, and also allows to automatically clear
  394. the MPI communication cache when unregistering the data. It
  395. should be called instead of both calling
  396. starpu_data_set_tag() and starpu_data_set_rank()
  397. * Use streams for all CUDA transfers, even initiated by CPUs.
  398. * Add paje traces statistics tools.
  399. * Use streams for GPUA->GPUB and GPUB->GPUA transfers.
  400. Small features:
  401. * New STARPU_EXECUTE_ON_WORKER flag to specify the worker on which
  402. to execute the task.
  403. * New STARPU_DISABLE_PINNING environment variable to disable host memory
  404. pinning.
  405. * New STARPU_DISABLE_KERNELS environment variable to disable actual kernel
  406. execution.
  407. * New starpu_memory_get_total function to get the size of a memory node.
  408. * New starpu_parallel_task_barrier_init_n function to let a scheduler decide
  409. a set of workers without going through combined workers.
  410. Changes:
  411. * Fix simgrid execution.
  412. * Rename starpu_get_nready_tasks_of_sched_ctx to starpu_sched_ctx_get_nready_tasks
  413. * Rename starpu_get_nready_flops_of_sched_ctx to starpu_sched_ctx_get_nready_flops
  414. * New functions starpu_pause() and starpu_resume()
  415. * New codelet specific_nodes field to specify explicit target nodes for data.
  416. * StarPU-MPI: Fix overzealous allocation of memory.
  417. * Interfaces: Allow interface implementation to change pointers at will, in
  418. unpack notably.
  419. Small changes:
  420. * Use big fat abortions when one tries to make a task or callback
  421. sleep, instead of just returning EDEADLCK which few people will test
  422. * By default, StarPU FFT examples are not compiled and checked, the
  423. configure option --enable-starpufft-examples needs to be specified
  424. to change this behaviour.
  425. StarPU 1.1.0 (svn revision 11960)
  426. ==============================================
  427. The scheduling context release
  428. New features:
  429. * OpenGL interoperability support.
  430. * Capability to store compiled OpenCL kernels on the file system
  431. * Capability to load compiled OpenCL kernels
  432. * Performance models measurements can now be provided explicitly by
  433. applications.
  434. * Capability to emit communication statistics when running MPI code
  435. * Add starpu_data_unregister_submit, starpu_data_acquire_on_node and
  436. starpu_data_invalidate_submit
  437. * New functionnality to wrapper starpu_insert_task to pass a array of
  438. data_handles via the parameter STARPU_DATA_ARRAY
  439. * Enable GPU-GPU direct transfers.
  440. * GCC plug-in
  441. - Add `registered' attribute
  442. - A new pass was added that warns about the use of possibly
  443. unregistered memory buffers.
  444. * SOCL
  445. - Manual mapping of commands on specific devices is now
  446. possible
  447. - SOCL does not require StarPU CPU tasks anymore. CPU workers
  448. are automatically disabled to enhance performance of OpenCL
  449. CPU devices
  450. * New interface: COO matrix.
  451. * Data interfaces: The pack operation of user-defined data interface
  452. defines a new parameter count which should be set to the size of
  453. the buffer created by the packing of the data.
  454. * MPI:
  455. - Communication statistics for MPI can only be enabled at
  456. execution time by defining the environment variable
  457. STARPU_COMM_STATS
  458. - Communication cache mechanism is enabled by default, and can
  459. only be disabled at execution time by setting the
  460. environment variable STARPU_MPI_CACHE to 0.
  461. - Initialisation functions starpu_mpi_initialize_extended()
  462. and starpu_mpi_initialize() have been made deprecated. One
  463. should now use starpu_mpi_init(int *, char ***, int). The
  464. last parameter indicates if MPI should be initialised.
  465. - Collective detached operations have new parameters, a
  466. callback function and a argument. This is to be consistent
  467. with the detached point-to-point communications.
  468. - When exchanging user-defined data interfaces, the size of
  469. the data is the size returned by the pack operation, i.e
  470. data with dynamic size can now be exchanged with StarPU-MPI.
  471. * Add experimental simgrid support, to simulate execution with various
  472. number of CPUs, GPUs, amount of memory, etc.
  473. * Add support for OpenCL simulators (which provide simulated execution time)
  474. * Add support for Temanejo, a task graph debugger
  475. * Theoretical bound lp output now includes data transfer time.
  476. * Update OpenCL driver to only enable CPU devices (the environment
  477. variable STARPU_OPENCL_ONLY_ON_CPUS must be set to a positive
  478. value when executing an application)
  479. * Add Scheduling contexts to separate computation resources
  480. - Scheduling policies take into account the set of resources corresponding
  481. to the context it belongs to
  482. - Add support to dynamically change scheduling contexts
  483. (Create and Delete a context, Add Workers to a context, Remove workers from a context)
  484. - Add support to indicate to which contexts the tasks are submitted
  485. * Add the Hypervisor to manage the Scheduling Contexts automatically
  486. - The Contexts can be registered to the Hypervisor
  487. - Only the registered contexts are managed by the Hypervisor
  488. - The Hypervisor can detect the initial distribution of resources of
  489. a context and constructs it consequently (the cost of execution is required)
  490. - Several policies can adapt dynamically the distribution of resources
  491. in contexts if the initial one was not appropriate
  492. - Add a platform to implement new policies of redistribution
  493. of resources
  494. * Implement a memory manager which checks the global amount of
  495. memory available on devices, and checks there is enough memory
  496. before doing an allocation on the device.
  497. * Discard environment variable STARPU_LIMIT_GPU_MEM and define
  498. instead STARPU_LIMIT_CUDA_MEM and STARPU_LIMIT_OPENCL_MEM
  499. * Introduce new variables STARPU_LIMIT_CUDA_devid_MEM and
  500. STARPU_LIMIT_OPENCL_devid_MEM to limit memory per specific device
  501. * Introduce new variable STARPU_LIMIT_CPU_MEM to limit memory for
  502. the CPU devices
  503. * New function starpu_malloc_flags to define a memory allocation with
  504. constraints based on the following values:
  505. - STARPU_MALLOC_PINNED specifies memory should be pinned
  506. - STARPU_MALLOC_COUNT specifies the memory allocation should be in
  507. the limits defined by the environment variables STARPU_LIMIT_xxx
  508. (see above). When no memory is left, starpu_malloc_flag tries
  509. to reclaim memory from StarPU and returns -ENOMEM on failure.
  510. * starpu_malloc calls starpu_malloc_flags with a value of flag set
  511. to STARPU_MALLOC_PINNED
  512. * Define new function starpu_free_flags similarly to starpu_malloc_flags
  513. * Define new public API starpu_pthread which is similar to the
  514. pthread API. It is provided with 2 implementations: a pthread one
  515. and a Simgrid one. Applications using StarPU and wishing to use
  516. the Simgrid StarPU features should use it.
  517. * Allow to have a dynamically allocated number of buffers per task,
  518. and so overwrite the value defined --enable-maxbuffers=XXX
  519. * Performance models files are now stored in a directory whose name
  520. include the version of the performance model format. The version
  521. number is also written in the file itself.
  522. When updating the format, the internal variable
  523. _STARPU_PERFMODEL_VERSION should be updated. It is then possible
  524. to switch easily between differents versions of StarPU having
  525. different performance model formats.
  526. * Tasks can now define a optional prologue callback which is executed
  527. on the host when the task becomes ready for execution, before getting
  528. scheduled.
  529. * Small CUDA allocations (<= 4MiB) are now batched to avoid the huge
  530. cudaMalloc overhead.
  531. * Prefetching is now done for all schedulers when it can be done whatever
  532. the scheduling decision.
  533. * Add a watchdog which permits to easily trigger a crash when StarPU gets
  534. stuck.
  535. * Document how to migrate data over MPI.
  536. * New function starpu_wakeup_worker() to be used by schedulers to
  537. wake up a single worker (instead of all workers) when submitting a
  538. single task.
  539. * The functions starpu_sched_set/get_min/max_priority set/get the
  540. priorities of the current scheduling context, i.e the one which
  541. was set by a call to starpu_sched_ctx_set_context() or the initial
  542. context if the function has not been called yet.
  543. * Fix for properly dealing with NAN on windows systems
  544. Small features:
  545. * Add starpu_worker_get_by_type and starpu_worker_get_by_devid
  546. * Add starpu_fxt_stop_profiling/starpu_fxt_start_profiling which permits to
  547. pause trace recording.
  548. * Add trace_buffer_size configuration field to permit to specify the tracing
  549. buffer size.
  550. * Add starpu_codelet_profile and starpu_codelet_histo_profile, tools which draw
  551. the profile of a codelet.
  552. * File STARPU-REVISION --- containing the SVN revision number from which
  553. StarPU was compiled --- is installed in the share/doc/starpu directory
  554. * starpu_perfmodel_plot can now directly draw GFlops curves.
  555. * New configure option --enable-mpi-progression-hook to enable the
  556. activity polling method for StarPU-MPI.
  557. * Permit to disable sequential consistency for a given task.
  558. * New macro STARPU_RELEASE_VERSION
  559. * New function starpu_get_version() to return as 3 integers the
  560. release version of StarPU.
  561. * Enable by default data allocation cache
  562. * New function starpu_perfmodel_directory() to print directory
  563. storing performance models. Available through the new option -d of
  564. the tool starpu_perfmodel_display
  565. * New batch files to execute StarPU applications under Microsoft
  566. Visual Studio (They are installed in path_to_starpu/bin/msvc)/
  567. * Add cl_arg_free, callback_arg_free, prologue_callback_arg_free fields to
  568. enable automatic free(cl_arg); free(callback_arg);
  569. free(prologue_callback_arg) on task destroy.
  570. * New function starpu_task_build
  571. * New configure options --with-simgrid-dir
  572. --with-simgrid-include-dir and --with-simgrid-lib-dir to specify
  573. the location of the SimGrid library
  574. Changes:
  575. * Rename all filter functions to follow the pattern
  576. starpu_DATATYPE_filter_FILTERTYPE. The script
  577. tools/dev/rename_filter.sh is provided to update your existing
  578. applications to use new filters function names.
  579. * Renaming of diverse functions and datatypes. The script
  580. tools/dev/rename.sh is provided to update your existing
  581. applications to use the new names. It is also possible to compile
  582. with the pkg-config package starpu-1.0 to keep using the old
  583. names. It is however recommended to update your code and to use
  584. the package starpu-1.1.
  585. * Fix the block filter functions.
  586. * Fix StarPU-MPI on Darwin.
  587. * The FxT code can now be used on systems other than Linux.
  588. * Keep only one hashtable implementation common/uthash.h
  589. * The cache of starpu_mpi_insert_task is fixed and thus now enabled by
  590. default.
  591. * Improve starpu_machine_display output.
  592. * Standardize objects name in the performance model API
  593. * SOCL
  594. - Virtual SOCL device has been removed
  595. - Automatic scheduling still available with command queues not
  596. assigned to any device
  597. - Remove modified OpenCL headers. ICD is now the only supported
  598. way to use SOCL.
  599. - SOCL test suite is only run when environment variable
  600. SOCL_OCL_LIB_OPENCL is defined. It should contain the location
  601. of the libOpenCL.so file of the OCL ICD implementation.
  602. * Fix main memory leak on multiple unregister/re-register.
  603. * Improve hwloc detection by configure
  604. * Cell:
  605. - It is no longer possible to enable the cell support via the
  606. gordon driver
  607. - Data interfaces no longer define functions to copy to and from
  608. SPU devices
  609. - Codelet no longer define pointer for Gordon implementations
  610. - Gordon workers are no longer enabled
  611. - Gordon performance models are no longer enabled
  612. * Fix data transfer arrows in paje traces
  613. * The "heft" scheduler no longer exists. Users should now pick "dmda"
  614. instead.
  615. * StarPU can now use poti to generate paje traces.
  616. * Rename scheduling policy "parallel greedy" to "parallel eager"
  617. * starpu_scheduler.h is no longer automatically included by
  618. starpu.h, it has to be manually included when needed
  619. * New batch files to run StarPU applications with Microsoft Visual C
  620. * Add examples/release/Makefile to test StarPU examples against an
  621. installed version of StarPU. That can also be used to test
  622. examples using a previous API.
  623. * Tutorial is installed in ${docdir}/tutorial
  624. * Schedulers eager_central_policy, dm and dmda no longer erroneously respect
  625. priorities. dmdas has to be used to respect priorities.
  626. * StarPU-MPI: Fix potential bug for user-defined datatypes. As MPI
  627. can reorder messages, we need to make sure the sending of the size
  628. of the data has been completed.
  629. * Documentation is now generated through doxygen.
  630. * Modification of perfmodels output format for future improvements.
  631. * Fix for properly dealing with NAN on windows systems
  632. * Function starpu_sched_ctx_create() now takes a variable argument
  633. list to define the scheduler to be used, and the minimum and
  634. maximum priority values
  635. * The functions starpu_sched_set/get_min/max_priority set/get the
  636. priorities of the current scheduling context, i.e the one which
  637. was set by a call to starpu_sched_ctx_set_context() or the initial
  638. context if the function was not called yet.
  639. * MPI: Fix of the livelock issue discovered while executing applications
  640. on a CPU+GPU cluster of machines by adding a maximum trylock
  641. threshold before a blocking lock.
  642. Small changes:
  643. * STARPU_NCPU should now be used instead of STARPU_NCPUS. STARPU_NCPUS is
  644. still available for compatibility reasons.
  645. * include/starpu.h includes all include/starpu_*.h files, applications
  646. therefore only need to have #include <starpu.h>
  647. * Active task wait is now included in blocked time.
  648. * Fix GCC plugin linking issues starting with GCC 4.7.
  649. * Fix forcing calibration of never-calibrated archs.
  650. * CUDA applications are no longer compiled with the "-arch sm_13"
  651. option. It is specifically added to applications which need it.
  652. * Explicitly name the non-sleeping-non-running time "Overhead", and use
  653. another color in vite traces.
  654. * Use C99 variadic macro support, not GNU.
  655. * Fix performance regression: dmda queues were inadvertently made
  656. LIFOs in r9611.
  657. StarPU 1.0.3 (svn revision 7379)
  658. ==============================================
  659. Changes:
  660. * Several bug fixes in the build system
  661. * Bug fixes in source code for non-Linux systems
  662. * Fix generating FXT traces bigger than 64MiB.
  663. * Improve ENODEV error detections in StarPU FFT
  664. StarPU 1.0.2 (svn revision 7210)
  665. ==============================================
  666. Changes:
  667. * Add starpu_block_shadow_filter_func_vector and an example.
  668. * Add tag dependency in trace-generated DAG.
  669. * Fix CPU binding for optimized CPU-GPU transfers.
  670. * Fix parallel tasks CPU binding and combined worker generation.
  671. * Fix generating FXT traces bigger than 64MiB.
  672. StarPU 1.0.1 (svn revision 6659)
  673. ==============================================
  674. Changes:
  675. * hwloc support. Warn users when hwloc is not found on the system and
  676. produce error when not explicitely disabled.
  677. * Several bug fixes
  678. * GCC plug-in
  679. - Add `#pragma starpu release'
  680. - Fix bug when using `acquire' pragma with function parameters
  681. - Slightly improve test suite coverage
  682. - Relax the GCC version check
  683. * Update SOCL to use new API
  684. * Documentation improvement.
  685. StarPU 1.0.0 (svn revision 6306)
  686. ==============================================
  687. The extensions-again release
  688. New features:
  689. * Add SOCL, an OpenCL interface on top of StarPU.
  690. * Add a gcc plugin to extend the C interface with pragmas which allows to
  691. easily define codelets and issue tasks.
  692. * Add reduction mode to starpu_mpi_insert_task.
  693. * A new multi-format interface permits to use different binary formats
  694. on CPUs & GPUs, the conversion functions being provided by the
  695. application and called by StarPU as needed (and as less as
  696. possible).
  697. * Deprecate cost_model, and introduce cost_function, which is provided
  698. with the whole task structure, the target arch and implementation
  699. number.
  700. * Permit the application to provide its own size base for performance
  701. models.
  702. * Applications can provide several implementations of a codelet for the
  703. same architecture.
  704. * Add a StarPU-Top feedback and steering interface.
  705. * Permit to specify MPI tags for more efficient starpu_mpi_insert_task
  706. Changes:
  707. * Fix several memory leaks and race conditions
  708. * Make environment variables take precedence over the configuration
  709. passed to starpu_init()
  710. * Libtool interface versioning has been included in libraries names
  711. (libstarpu-1.0.so, libstarpumpi-1.0.so,
  712. libstarpufft-1.0.so, libsocl-1.0.so)
  713. * Install headers under $includedir/starpu/1.0.
  714. * Make where field for struct starpu_codelet optional. When unset, its
  715. value will be automatically set based on the availability of the
  716. different XXX_funcs fields of the codelet.
  717. * Define access modes for data handles into starpu_codelet and no longer
  718. in starpu_task. Hence mark (struct starpu_task).buffers as
  719. deprecated, and add (struct starpu_task).handles and (struct
  720. starpu_codelet).modes
  721. * Fields xxx_func of struct starpu_codelet are made deprecated. One
  722. should use fields xxx_funcs instead.
  723. * Some types were renamed for consistency. when using pkg-config libstarpu,
  724. starpu_deprecated_api.h is automatically included (after starpu.h) to
  725. keep compatibility with existing software. Other changes are mentioned
  726. below, compatibility is also preserved for them.
  727. To port code to use new names (this is not mandatory), the
  728. tools/dev/rename.sh script can be used, and pkg-config starpu-1.0 should
  729. be used.
  730. * The communication cost in the heft and dmda scheduling strategies now
  731. take into account the contention brought by the number of GPUs. This
  732. changes the meaning of the beta factor, whose default 1.0 value should
  733. now be good enough in most case.
  734. Small features:
  735. * Allow users to disable asynchronous data transfers between CPUs and
  736. GPUs.
  737. * Update OpenCL driver to enable CPU devices (the environment variable
  738. STARPU_OPENCL_ON_CPUS must be set to a positive value when
  739. executing an application)
  740. * struct starpu_data_interface_ops --- operations on a data
  741. interface --- define a new function pointer allocate_new_data
  742. which creates a new data interface of the given type based on
  743. an existing handle
  744. * Add a field named magic to struct starpu_task which is set when
  745. initialising the task. starpu_task_submit will fail if the
  746. field does not have the right value. This will hence avoid
  747. submitting tasks which have not been properly initialised.
  748. * Add a hook function pre_exec_hook in struct starpu_sched_policy.
  749. The function is meant to be called in drivers. Schedulers
  750. can use it to be notified when a task is about being computed.
  751. * Add codelet execution time statistics plot.
  752. * Add bus speed in starpu_machine_display.
  753. * Add a STARPU_DATA_ACQUIRE_CB which permits to inline the code to be
  754. done.
  755. * Add gdb functions.
  756. * Add complex support to LU example.
  757. * Permit to use the same data several times in write mode in the
  758. parameters of the same task.
  759. Small changes:
  760. * Increase default value for STARPU_MAXCPUS -- Maximum number of
  761. CPUs supported -- to 64.
  762. * Add man pages for some of the tools
  763. * Add C++ application example in examples/cpp/
  764. * Add an OpenMP fork-join example.
  765. * Documentation improvement.
  766. StarPU 0.9 (svn revision 3721)
  767. ==============================================
  768. The extensions release
  769. * Provide the STARPU_REDUX data access mode
  770. * Externalize the scheduler API.
  771. * Add theoretical bound computation
  772. * Add the void interface
  773. * Add power consumption optimization
  774. * Add parallel task support
  775. * Add starpu_mpi_insert_task
  776. * Add profiling information interface.
  777. * Add STARPU_LIMIT_GPU_MEM environment variable.
  778. * OpenCL fixes
  779. * MPI fixes
  780. * Improve optimization documentation
  781. * Upgrade to hwloc 1.1 interface
  782. * Add fortran example
  783. * Add mandelbrot OpenCL example
  784. * Add cg example
  785. * Add stencil MPI example
  786. * Initial support for CUDA4
  787. StarPU 0.4 (svn revision 2535)
  788. ==============================================
  789. The API strengthening release
  790. * Major API improvements
  791. - Provide the STARPU_SCRATCH data access mode
  792. - Rework data filter interface
  793. - Rework data interface structure
  794. - A script that automatically renames old functions to accomodate with the new
  795. API is available from https://scm.gforge.inria.fr/svn/starpu/scripts/renaming
  796. (login: anonsvn, password: anonsvn)
  797. * Implement dependencies between task directly (eg. without tags)
  798. * Implicit data-driven task dependencies simplifies the design of
  799. data-parallel algorithms
  800. * Add dynamic profiling capabilities
  801. - Provide per-task feedback
  802. - Provide per-worker feedback
  803. - Provide feedback about memory transfers
  804. * Provide a library to help accelerating MPI applications
  805. * Improve data transfers overhead prediction
  806. - Transparently benchmark buses to generate performance models
  807. - Bind accelerator-controlling threads with respect to NUMA locality
  808. * Improve StarPU's portability
  809. - Add OpenCL support
  810. - Add support for Windows
  811. StarPU 0.2.901 aka 0.3-rc1 (svn revision 1236)
  812. ==============================================
  813. The asynchronous heterogeneous multi-accelerator release
  814. * Many API changes and code cleanups
  815. - Implement starpu_worker_get_id
  816. - Implement starpu_worker_get_name
  817. - Implement starpu_worker_get_type
  818. - Implement starpu_worker_get_count
  819. - Implement starpu_display_codelet_stats
  820. - Implement starpu_data_prefetch_on_node
  821. - Expose the starpu_data_set_wt_mask function
  822. * Support nvidia (heterogeneous) multi-GPU
  823. * Add the data request mechanism
  824. - All data transfers use data requests now
  825. - Implement asynchronous data transfers
  826. - Implement prefetch mechanism
  827. - Chain data requests to support GPU->RAM->GPU transfers
  828. * Make it possible to bypass the scheduler and to assign a task to a specific
  829. worker
  830. * Support restartable tasks to reinstanciate dependencies task graphs
  831. * Improve performance prediction
  832. - Model data transfer overhead
  833. - One model is created for each accelerator
  834. * Support for CUDA's driver API is deprecated
  835. * The STARPU_WORKERS_CUDAID and STARPU_WORKERS_CPUID env. variables make it possible to
  836. specify where to bind the workers
  837. * Use the hwloc library to detect the actual number of cores
  838. StarPU 0.2.0 (svn revision 1013)
  839. ==============================================
  840. The Stabilizing-the-Basics release
  841. * Various API cleanups
  842. * Mac OS X is supported now
  843. * Add dynamic code loading facilities onto Cell's SPUs
  844. * Improve performance analysis/feedback tools
  845. * Application can interact with StarPU tasks
  846. - The application may access/modify data managed by the DSM
  847. - The application may wait for the termination of a (set of) task(s)
  848. * An initial documentation is added
  849. * More examples are supplied
  850. StarPU 0.1.0 (svn revision 794)
  851. ==============================================
  852. First release.
  853. Status:
  854. * Only supports Linux platforms yet
  855. * Supported architectures
  856. - multicore CPUs
  857. - NVIDIA GPUs (with CUDA 2.x)
  858. - experimental Cell/BE support
  859. Changes:
  860. * Scheduling facilities
  861. - run-time selection of the scheduling policy
  862. - basic auto-tuning facilities
  863. * Software-based DSM
  864. - transparent data coherency management
  865. - High-level expressive interface
  866. # Local Variables:
  867. # mode: text
  868. # coding: utf-8
  869. # ispell-local-dictionary: "american"
  870. # End: