ChangeLog 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473
  1. # StarPU --- Runtime system for heterogeneous multicore architectures.
  2. #
  3. # Copyright (C) 2009-2013 Université de Bordeaux 1
  4. # Copyright (C) 2010, 2011, 2012, 2013 Centre National de la Recherche Scientifique
  5. #
  6. # StarPU is free software; you can redistribute it and/or modify
  7. # it under the terms of the GNU Lesser General Public License as published by
  8. # the Free Software Foundation; either version 2.1 of the License, or (at
  9. # your option) any later version.
  10. #
  11. # StarPU is distributed in the hope that it will be useful, but
  12. # WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  14. #
  15. # See the GNU Lesser General Public License in COPYING.LGPL for more details.
  16. StarPU 1.2.0 (svn revision xxxx)
  17. ==============================================
  18. New features:
  19. * Xeon Phi support
  20. * SCC support
  21. * New function starpu_sched_ctx_exec_parallel_code to execute a
  22. parallel code on the workers of the given scheduler context
  23. * MPI:
  24. - New internal communication system : a unique tag called
  25. is now used for all communications, and a system
  26. of hashmaps on each node which stores pending receives has been
  27. implemented. Every message is now coupled with an envelope, sent
  28. before the corresponding data, which allows the receiver to
  29. allocate data correctly, and to submit the matching receive of
  30. the envelope.
  31. * New STARPU_COMMUTE flag which can be passed along STARPU_W or STARPU_RW to
  32. let starpu commute write accesses.
  33. * Out-of-core support, through registration of disk areas as additional memory
  34. nodes.
  35. Small features:
  36. * Add cl_arg_free field to enable automatic free(cl_arg) on task
  37. destroy.
  38. * New functions starpu_data_acquire_cb_sequential_consistency() and
  39. starpu_data_acquire_on_node_cb_sequential_consistency() which allows
  40. to enable or disable sequential consistency
  41. * New configure option --enable-fxt-lock which enables additional
  42. trace events focused on locks behaviour during the execution
  43. Changes:
  44. * Fix of the livelock issue discovered while executing applications
  45. on a CPU+GPU cluster of machines by adding a maximum trylock
  46. threshold before a blocking lock.
  47. StarPU 1.1.0 (svn revision xxxx)
  48. ==============================================
  49. New features:
  50. * OpenGL interoperability support.
  51. * Capability to store compiled OpenCL kernels on the file system
  52. * Capability to load compiled OpenCL kernels
  53. * Performance models measurements can now be provided explicitly by
  54. applications.
  55. * Capability to emit communication statistics when running MPI code
  56. * Add starpu_unregister_submit, starpu_data_acquire_on_node and
  57. starpu_data_invalidate_submit
  58. * New functionnality to wrapper starpu_insert_task to pass a array of
  59. data_handles via the parameter STARPU_DATA_ARRAY
  60. * Enable GPU-GPU direct transfers.
  61. * GCC plug-in
  62. - Add `registered' attribute
  63. - A new pass was added that warns about the use of possibly
  64. unregistered memory buffers.
  65. * SOCL
  66. - Manual mapping of commands on specific devices is now
  67. possible
  68. - SOCL does not require StarPU CPU tasks anymore. CPU workers
  69. are automatically disabled to enhance performance of OpenCL
  70. CPU devices
  71. * New interface: COO matrix.
  72. * Data interfaces: The pack operation of user-defined data interface
  73. defines a new parameter count which should be set to the size of
  74. the buffer created by the packing of the data.
  75. * MPI:
  76. - Communication statistics for MPI can only be enabled at
  77. execution time by defining the environment variable
  78. STARPU_COMM_STATS
  79. - Communication cache mechanism is enabled by default, and can
  80. only be disabled at execution time by setting the
  81. environment variable STARPU_MPI_CACHE to 0.
  82. - Initialisation functions starpu_mpi_initialize_extended()
  83. and starpu_mpi_initialize() have been made deprecated. One
  84. should now use starpu_mpi_init(int *, char ***, int). The
  85. last parameter indicates if MPI should be initialised.
  86. - Collective detached operations have new parameters, a
  87. callback function and a argument. This is to be consistent
  88. with the detached point-to-point communications.
  89. - When exchanging user-defined data interfaces, the size of
  90. the data is the size returned by the pack operation, i.e
  91. data with dynamic size can now be exchanged with StarPU-MPI.
  92. * Add experimental simgrid support, to simulate execution with various
  93. number of CPUs, GPUs, amount of memory, etc.
  94. * Add support for OpenCL simulators (which provide simulated execution time)
  95. * Add support for Temanejo, a task graph debugger
  96. * Theoretical bound lp output now includes data transfer time.
  97. * Update OpenCL driver to only enable CPU devices (the environment
  98. variable STARPU_OPENCL_ONLY_ON_CPUS must be set to a positive
  99. value when executing an application)
  100. * Add Scheduling contexts to separate computation resources
  101. - Scheduling policies take into account the set of resources corresponding
  102. to the context it belongs to
  103. - Add support to dynamically change scheduling contexts
  104. (Create and Delete a context, Add Workers to a context, Remove workers from a context)
  105. - Add support to indicate to which contexts the tasks are submitted
  106. * Add the Hypervisor to manage the Scheduling Contexts automatically
  107. - The Contexts can be registered to the Hypervisor
  108. - Only the registered contexts are managed by the Hypervisor
  109. - The Hypervisor can detect the initial distribution of resources of
  110. a context and constructs it consequently (the cost of execution is required)
  111. - Several policies can adapt dynamically the distribution of resources
  112. in contexts if the initial one was not appropriate
  113. - Add a platform to implement new policies of redistribution
  114. of resources
  115. * Implement a memory manager which checks the global amount of
  116. memory available on devices, and checks there is enough memory
  117. before doing an allocation on the device.
  118. * Discard environment variable STARPU_LIMIT_GPU_MEM and define
  119. instead STARPU_LIMIT_CUDA_MEM and STARPU_LIMIT_OPENCL_MEM
  120. * Introduce new variables STARPU_LIMIT_CUDA_devid_MEM and
  121. STARPU_LIMIT_OPENCL_devid_MEM to limit memory per specific device
  122. * Introduce new variable STARPU_LIMIT_CPU_MEM to limit memory for
  123. the CPU devices
  124. * New function starpu_malloc_flags to define a memory allocation with
  125. constraints based on the following values:
  126. - STARPU_MALLOC_PINNED specifies memory should be pinned
  127. - STARPU_MALLOC_COUNT specifies the memory allocation should be in
  128. the limits defined by the environment variables STARPU_LIMIT_xxx
  129. (see above). When no memory is left, starpu_malloc_flag tries
  130. to reclaim memory from StarPU and returns -ENOMEM on failure.
  131. * starpu_malloc calls starpu_malloc_flags with a value of flag set
  132. to STARPU_MALLOC_PINNED
  133. * Define new function starpu_free_flags similarly to starpu_malloc_flags
  134. * Define new public API starpu_pthread which is similar to the
  135. pthread API. It is provided with 2 implementations: a pthread one
  136. and a Simgrid one. Applications using StarPU and wishing to use
  137. the Simgrid StarPU features should use it.
  138. * Allow to have a dynamically allocated number of buffers per task,
  139. and so overwrite the value defined --enable-maxbuffers=XXX
  140. Small features:
  141. * Add starpu_worker_get_by_type and starpu_worker_get_by_devid
  142. * Add starpu_fxt_stop_profiling/starpu_fxt_start_profiling which permits to
  143. pause trace recording.
  144. * Add trace_buffer_size configuration field to permit to specify the tracing
  145. buffer size.
  146. * Add starpu_codelet_profile and starpu_codelet_histo_profile, tools which draw
  147. the profile of a codelet.
  148. * File STARPU-REVISION --- containing the SVN revision number from which
  149. StarPU was compiled --- is installed in the share/doc/starpu directory
  150. * starpu_perfmodel_plot can now directly draw GFlops curves.
  151. * New configure option --enable-mpi-progression-hook to enable the
  152. activity polling method for StarPU-MPI.
  153. * Permit to disable sequential consistency for a given task.
  154. * New macro STARPU_RELEASE_VERSION
  155. * New function starpu_get_version() to return as 3 integers the
  156. release version of StarPU.
  157. * Enable by default data allocation cache
  158. * Explicitly name the non-sleeping-non-running time "Overhead", and use
  159. another color in vite traces.
  160. Changes:
  161. * Rename all filter functions to follow the pattern
  162. starpu_DATATYPE_filter_FILTERTYPE. The script
  163. tools/dev/rename_filter.sh is provided to update your existing
  164. applications to use new filters function names.
  165. * Renaming of diverse functions and datatypes. The script
  166. tools/dev/rename.sh is provided to update your existing
  167. applications to use the new names. It is also possible to compile
  168. with the pkg-config package starpu-1.0 to keep using the old
  169. names. It is however recommended to update your code and to use
  170. the package starpu-1.1.
  171. * Fix the block filter functions.
  172. * Fix StarPU-MPI on Darwin.
  173. * The FxT code can now be used on systems other than Linux.
  174. * Keep only one hashtable implementation common/uthash.h
  175. * The cache of starpu_mpi_insert_task is fixed and thus now enabled by
  176. default.
  177. * Improve starpu_machine_display output.
  178. * Standardize objects name in the performance model API
  179. * SOCL
  180. - Virtual SOCL device has been removed
  181. - Automatic scheduling still available with command queues not
  182. assigned to any device
  183. - Remove modified OpenCL headers. ICD is now the only supported
  184. way to use SOCL.
  185. - SOCL test suite is only run when environment variable
  186. SOCL_OCL_LIB_OPENCL is defined. It should contain the location
  187. of the libOpenCL.so file of the OCL ICD implementation.
  188. * Fix main memory leak on multiple unregister/re-register.
  189. * Improve hwloc detection by configure
  190. * Cell:
  191. - It is no longer possible to enable the cell support via the
  192. gordon driver
  193. - Data interfaces no longer define functions to copy to and from
  194. SPU devices
  195. - Codelet no longer define pointer for Gordon implementations
  196. - Gordon workers are no longer enabled
  197. - Gordon performance models are no longer enabled
  198. * Fix data transfer arrows in paje traces
  199. * The "heft" scheduler no longer exists. Users should now pick "dmda"
  200. instead.
  201. * StarPU can now use poti to generate paje traces.
  202. * Rename scheduling policy "parallel greedy" to "parallel eager"
  203. * starpu_scheduler.h is no longer automatically included by
  204. starpu.h, it has to be manually included when needed
  205. * New batch files to run StarPU applications with Microsoft Visual C
  206. * Add examples/release/Makefile to test StarPU examples against an
  207. installed version of StarPU. That can also be used to test
  208. examples using a previous API.
  209. * Tutorial is installed in ${docdir}/tutorial
  210. * Schedulers eager_central_policy, dm and dmda no longer erroneously respect
  211. priorities. dmdas has to be used to respect priorities.
  212. * Documentation is now generated through doxygen.
  213. Small changes:
  214. * STARPU_NCPU should now be used instead of STARPU_NCPUS. STARPU_NCPUS is
  215. still available for compatibility reasons.
  216. * include/starpu.h includes all include/starpu_*.h files, applications
  217. therefore only need to have #include <starpu.h>
  218. * Active task wait is now included in blocked time.
  219. * Fix GCC plugin linking issues starting with GCC 4.7.
  220. * Fix forcing calibration of never-calibrated archs.
  221. * CUDA applications are no longer compiled with the "-arch sm_13"
  222. option. It is specifically added to applications which need it.
  223. StarPU 1.0.3 (svn revision 7379)
  224. ==============================================
  225. Changes:
  226. * Several bug fixes in the build system
  227. * Bug fixes in source code for non-Linux systems
  228. * Fix generating FXT traces bigger than 64MiB.
  229. * Improve ENODEV error detections in StarPU FFT
  230. StarPU 1.0.2 (svn revision xxx)
  231. ==============================================
  232. Changes:
  233. * Add starpu_block_shadow_filter_func_vector and an example.
  234. * Add tag dependency in trace-generated DAG.
  235. * Fix CPU binding for optimized CPU-GPU transfers.
  236. * Fix parallel tasks CPU binding and combined worker generation.
  237. * Fix generating FXT traces bigger than 64MiB.
  238. StarPU 1.0.1 (svn revision 6659)
  239. ==============================================
  240. Changes:
  241. * hwloc support. Warn users when hwloc is not found on the system and
  242. produce error when not explicitely disabled.
  243. * Several bug fixes
  244. * GCC plug-in
  245. - Add `#pragma starpu release'
  246. - Fix bug when using `acquire' pragma with function parameters
  247. - Slightly improve test suite coverage
  248. - Relax the GCC version check
  249. * Update SOCL to use new API
  250. * Documentation improvement.
  251. StarPU 1.0.0 (svn revision 6306)
  252. ==============================================
  253. The extensions-again release
  254. New features:
  255. * Add SOCL, an OpenCL interface on top of StarPU.
  256. * Add a gcc plugin to extend the C interface with pragmas which allows to
  257. easily define codelets and issue tasks.
  258. * Add reduction mode to starpu_mpi_insert_task.
  259. * A new multi-format interface permits to use different binary formats
  260. on CPUs & GPUs, the conversion functions being provided by the
  261. application and called by StarPU as needed (and as less as
  262. possible).
  263. * Deprecate cost_model, and introduce cost_function, which is provided
  264. with the whole task structure, the target arch and implementation
  265. number.
  266. * Permit the application to provide its own size base for performance
  267. models.
  268. * Applications can provide several implementations of a codelet for the
  269. same architecture.
  270. * Add a StarPU-Top feedback and steering interface.
  271. * Permit to specify MPI tags for more efficient starpu_mpi_insert_task
  272. Changes:
  273. * Fix several memory leaks and race conditions
  274. * Make environment variables take precedence over the configuration
  275. passed to starpu_init()
  276. * Libtool interface versioning has been included in libraries names
  277. (libstarpu-1.0.so, libstarpumpi-1.0.so,
  278. libstarpufft-1.0.so, libsocl-1.0.so)
  279. * Install headers under $includedir/starpu/1.0.
  280. * Make where field for struct starpu_codelet optional. When unset, its
  281. value will be automatically set based on the availability of the
  282. different XXX_funcs fields of the codelet.
  283. * Define access modes for data handles into starpu_codelet and no longer
  284. in starpu_task. Hence mark (struct starpu_task).buffers as
  285. deprecated, and add (struct starpu_task).handles and (struct
  286. starpu_codelet).modes
  287. * Fields xxx_func of struct starpu_codelet are made deprecated. One
  288. should use fields xxx_funcs instead.
  289. * Some types were renamed for consistency. when using pkg-config libstarpu,
  290. starpu_deprecated_api.h is automatically included (after starpu.h) to
  291. keep compatibility with existing software. Other changes are mentioned
  292. below, compatibility is also preserved for them.
  293. To port code to use new names (this is not mandatory), the
  294. tools/dev/rename.sh script can be used, and pkg-config starpu-1.0 should
  295. be used.
  296. * The communication cost in the heft and dmda scheduling strategies now
  297. take into account the contention brought by the number of GPUs. This
  298. changes the meaning of the beta factor, whose default 1.0 value should
  299. now be good enough in most case.
  300. Small features:
  301. * Allow users to disable asynchronous data transfers between CPUs and
  302. GPUs.
  303. * Update OpenCL driver to enable CPU devices (the environment variable
  304. STARPU_OPENCL_ON_CPUS must be set to a positive value when
  305. executing an application)
  306. * struct starpu_data_interface_ops --- operations on a data
  307. interface --- define a new function pointer allocate_new_data
  308. which creates a new data interface of the given type based on
  309. an existing handle
  310. * Add a field named magic to struct starpu_task which is set when
  311. initialising the task. starpu_task_submit will fail if the
  312. field does not have the right value. This will hence avoid
  313. submitting tasks which have not been properly initialised.
  314. * Add a hook function pre_exec_hook in struct starpu_sched_policy.
  315. The function is meant to be called in drivers. Schedulers
  316. can use it to be notified when a task is about being computed.
  317. * Add codelet execution time statistics plot.
  318. * Add bus speed in starpu_machine_display.
  319. * Add a STARPU_DATA_ACQUIRE_CB which permits to inline the code to be
  320. done.
  321. * Add gdb functions.
  322. * Add complex support to LU example.
  323. * Permit to use the same data several times in write mode in the
  324. parameters of the same task.
  325. Small changes:
  326. * Increase default value for STARPU_MAXCPUS -- Maximum number of
  327. CPUs supported -- to 64.
  328. * Add man pages for some of the tools
  329. * Add C++ application example in examples/cpp/
  330. * Add an OpenMP fork-join example.
  331. * Documentation improvement.
  332. StarPU 0.9 (svn revision 3721)
  333. ==============================================
  334. The extensions release
  335. * Provide the STARPU_REDUX data access mode
  336. * Externalize the scheduler API.
  337. * Add theoretical bound computation
  338. * Add the void interface
  339. * Add power consumption optimization
  340. * Add parallel task support
  341. * Add starpu_mpi_insert_task
  342. * Add profiling information interface.
  343. * Add STARPU_LIMIT_GPU_MEM environment variable.
  344. * OpenCL fixes
  345. * MPI fixes
  346. * Improve optimization documentation
  347. * Upgrade to hwloc 1.1 interface
  348. * Add fortran example
  349. * Add mandelbrot OpenCL example
  350. * Add cg example
  351. * Add stencil MPI example
  352. * Initial support for CUDA4
  353. StarPU 0.4 (svn revision 2535)
  354. ==============================================
  355. The API strengthening release
  356. * Major API improvements
  357. - Provide the STARPU_SCRATCH data access mode
  358. - Rework data filter interface
  359. - Rework data interface structure
  360. - A script that automatically renames old functions to accomodate with the new
  361. API is available from https://scm.gforge.inria.fr/svn/starpu/scripts/renaming
  362. (login: anonsvn, password: anonsvn)
  363. * Implement dependencies between task directly (eg. without tags)
  364. * Implicit data-driven task dependencies simplifies the design of
  365. data-parallel algorithms
  366. * Add dynamic profiling capabilities
  367. - Provide per-task feedback
  368. - Provide per-worker feedback
  369. - Provide feedback about memory transfers
  370. * Provide a library to help accelerating MPI applications
  371. * Improve data transfers overhead prediction
  372. - Transparently benchmark buses to generate performance models
  373. - Bind accelerator-controlling threads with respect to NUMA locality
  374. * Improve StarPU's portability
  375. - Add OpenCL support
  376. - Add support for Windows
  377. StarPU 0.2.901 aka 0.3-rc1 (svn revision 1236)
  378. ==============================================
  379. The asynchronous heterogeneous multi-accelerator release
  380. * Many API changes and code cleanups
  381. - Implement starpu_worker_get_id
  382. - Implement starpu_worker_get_name
  383. - Implement starpu_worker_get_type
  384. - Implement starpu_worker_get_count
  385. - Implement starpu_display_codelet_stats
  386. - Implement starpu_data_prefetch_on_node
  387. - Expose the starpu_data_set_wt_mask function
  388. * Support nvidia (heterogeneous) multi-GPU
  389. * Add the data request mechanism
  390. - All data transfers use data requests now
  391. - Implement asynchronous data transfers
  392. - Implement prefetch mechanism
  393. - Chain data requests to support GPU->RAM->GPU transfers
  394. * Make it possible to bypass the scheduler and to assign a task to a specific
  395. worker
  396. * Support restartable tasks to reinstanciate dependencies task graphs
  397. * Improve performance prediction
  398. - Model data transfer overhead
  399. - One model is created for each accelerator
  400. * Support for CUDA's driver API is deprecated
  401. * The STARPU_WORKERS_CUDAID and STARPU_WORKERS_CPUID env. variables make it possible to
  402. specify where to bind the workers
  403. * Use the hwloc library to detect the actual number of cores
  404. StarPU 0.2.0 (svn revision 1013)
  405. ==============================================
  406. The Stabilizing-the-Basics release
  407. * Various API cleanups
  408. * Mac OS X is supported now
  409. * Add dynamic code loading facilities onto Cell's SPUs
  410. * Improve performance analysis/feedback tools
  411. * Application can interact with StarPU tasks
  412. - The application may access/modify data managed by the DSM
  413. - The application may wait for the termination of a (set of) task(s)
  414. * An initial documentation is added
  415. * More examples are supplied
  416. StarPU 0.1.0 (svn revision 794)
  417. ==============================================
  418. First release.
  419. Status:
  420. * Only supports Linux platforms yet
  421. * Supported architectures
  422. - multicore CPUs
  423. - NVIDIA GPUs (with CUDA 2.x)
  424. - experimental Cell/BE support
  425. Changes:
  426. * Scheduling facilities
  427. - run-time selection of the scheduling policy
  428. - basic auto-tuning facilities
  429. * Software-based DSM
  430. - transparent data coherency management
  431. - High-level expressive interface
  432. # Local Variables:
  433. # mode: text
  434. # coding: utf-8
  435. # ispell-local-dictionary: "american"
  436. # End: