ChangeLog 47 KB

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