.gitignore 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296
  1. /configure
  2. /config.log
  3. /config.status
  4. /autom4te.cache
  5. /libtool
  6. /aclocal.m4
  7. /build
  8. /build-aux
  9. /GPATH
  10. /GRTAGS
  11. /GTAGS
  12. /config.cache
  13. /doc/starpu.info
  14. *~
  15. ,*
  16. .libs
  17. .deps
  18. *.o
  19. *.lo
  20. *.la
  21. *.swp
  22. .dirstamp
  23. stamp-h[0-9]*
  24. starpu.log
  25. /gcc-plugin/include/starpu-gcc/config.h
  26. /gcc-plugin/tests/*.c.[0-9]*.*
  27. /tests/datawizard/handle_to_pointer
  28. /tests/datawizard/data_lookup
  29. /doc/stamp-vti
  30. /doc/chapters/version.texi
  31. /doc/doxygen/chapters/version.sty
  32. /doc/doxygen/chapters/version.html
  33. /examples/basic_examples/block
  34. /examples/basic_examples/hello_world
  35. /examples/basic_examples/mult
  36. /examples/basic_examples/variable
  37. /examples/basic_examples/vector_scal
  38. /examples/callback/callback
  39. /examples/filters/fblock
  40. /examples/filters/fmatrix
  41. /examples/filters/fvector
  42. /examples/incrementer/incrementer
  43. /examples/mandelbrot/mandelbrot
  44. /examples/matvecmult/matvecmult
  45. /examples/pi/pi
  46. /examples/pi/pi_redux
  47. /examples/ppm_downscaler/ppm_downscaler
  48. /examples/ppm_downscaler/yuv_downscaler
  49. /examples/profiling/profiling
  50. /examples/reductions/dot_product
  51. /examples/reductions/minmax_reduction
  52. /examples/scheduler/dummy_sched
  53. /examples/spmv/dw_spmv
  54. /examples/spmv/spmv
  55. /examples/stencil/stencil
  56. /examples/tag_example/tag_example
  57. /examples/tag_example/tag_example2
  58. /examples/tag_example/tag_example3
  59. /examples/tag_example/tag_restartable
  60. /mpi/examples/stencil/stencil5
  61. /mpi/tests/block_interface
  62. /mpi/tests/block_interface_pinned
  63. /mpi/tests/insert_task
  64. /mpi/tests/insert_task_block
  65. /mpi/tests/insert_task_cache
  66. /mpi/tests/insert_task_owner
  67. /mpi/tests/insert_task_owner2
  68. /mpi/tests/mpi_detached_tag
  69. /mpi/tests/mpi_irecv
  70. /mpi/tests/mpi_irecv_detached
  71. /mpi/tests/mpi_isend
  72. /mpi/tests/mpi_isend_detached
  73. /mpi/tests/mpi_test
  74. /mpi/tests/multiple_send
  75. /mpi/tests/pingpong
  76. /mpi/tests/ring
  77. /mpi/tests/ring_async
  78. /mpi/tests/ring_async_implicit
  79. /tests/core/declare_deps_after_submission
  80. /tests/core/declare_deps_after_submission_synchronous
  81. /tests/core/declare_deps_in_callback
  82. /tests/core/empty_task
  83. /tests/core/empty_task_chain
  84. /tests/core/empty_task_sync_point
  85. /tests/core/empty_task_sync_point_tasks
  86. /tests/core/execute_on_a_specific_worker
  87. /tests/core/get_current_task
  88. /tests/core/insert_task
  89. /tests/core/multithreaded
  90. /tests/core/multithreaded_init
  91. /tests/core/regenerate
  92. /tests/core/restart
  93. /tests/core/starpu_task_wait
  94. /tests/core/starpu_task_wait_for_all
  95. /tests/core/static_restartable
  96. /tests/core/static_restartable_tag
  97. /tests/core/static_restartable_using_initializer
  98. /tests/core/subgraph_repeat
  99. /tests/core/subgraph_repeat_regenerate
  100. /tests/core/tag_wait_api
  101. /tests/core/task_wait_api
  102. /tests/core/wait_all_regenerable_tasks
  103. /tests/datawizard/acquire_cb
  104. /tests/datawizard/acquire_release
  105. /tests/datawizard/acquire_release2
  106. /tests/datawizard/critical_section_with_void_interface
  107. /tests/datawizard/data_implicit_deps
  108. /tests/datawizard/data_invalidation
  109. /tests/datawizard/dining_philosophers
  110. /tests/datawizard/dsm_stress
  111. /tests/datawizard/increment_redux
  112. /tests/datawizard/increment_redux_v2
  113. /tests/datawizard/lazy_allocation.c
  114. /tests/datawizard/manual_reduction
  115. /tests/datawizard/mpi_like
  116. /tests/datawizard/mpi_like_async
  117. /tests/datawizard/readers_and_writers
  118. /tests/datawizard/reclaim
  119. /tests/datawizard/scratch
  120. /tests/datawizard/sync_and_notify_data
  121. /tests/datawizard/sync_and_notify_data_implicit
  122. /tests/datawizard/sync_with_data_with_mem
  123. /tests/datawizard/sync_with_data_with_mem_non_blocking
  124. /tests/datawizard/sync_with_data_with_mem_non_blocking_implicit
  125. /tests/datawizard/unpartition
  126. /tests/datawizard/user_interaction_implicit
  127. /tests/datawizard/write_only_tmp_buffer
  128. /tests/errorcheck/invalid_blocking_calls
  129. /tests/errorcheck/invalid_tasks
  130. /tests/errorcheck/starpu_init_noworker
  131. /tests/helper/cublas_init
  132. /tests/helper/execute_on_all
  133. /tests/helper/pinned_memory
  134. /tests/helper/starpu_create_sync_task
  135. /tests/helper/starpu_data_cpy
  136. /tests/microbenchs/async_tasks_overhead
  137. /tests/microbenchs/display_structures_size
  138. /tests/microbenchs/local_pingpong
  139. /tests/microbenchs/prefetch_data_on_node
  140. /tests/microbenchs/redundant_buffer
  141. /tests/microbenchs/sync_tasks_overhead
  142. /tests/microbenchs/tasks_overhead
  143. /tests/overlap/overlap
  144. /tests/parallel_tasks/explicit_combined_worker
  145. /tests/parallel_tasks/parallel_kernels
  146. /tests/parallel_tasks/parallel_kernels_spmd
  147. /tests/parallel_tasks/spmd_peager
  148. /tests/perfmodels/non_linear_regression_based
  149. /tests/perfmodels/regression_based
  150. /tools/cbc2paje
  151. /tools/lp2paje
  152. /tools/starpu_calibrate_bus
  153. /tools/starpu_machine_display
  154. /tools/starpu_perfmodel_display
  155. /tools/starpu_regression_display
  156. /gcc-plugin/tests/scalar-tasks
  157. /gcc-plugin/tests/pointers
  158. /tests/datawizard/lazy_allocation
  159. /gcc-plugin/tests/pointer-tasks
  160. /gcc-plugin/tests/*.s
  161. /gcc-plugin/tests/base
  162. /gcc-plugin/tests/core
  163. /mpi/tests/insert_task_owner_data
  164. /mpi/examples/scatter_gather/mpi_scatter_gather
  165. /examples/top/hello_world_top
  166. /doc/starpu.aux
  167. /doc/starpu.cp
  168. /doc/starpu.cps
  169. /doc/starpu.fn
  170. /doc/starpu.fns
  171. /doc/starpu.html
  172. /doc/starpu.ky
  173. /doc/starpu.pdf
  174. /doc/starpu.pg
  175. /doc/starpu.toc
  176. /doc/starpu.tp
  177. /doc/starpu.tps
  178. /doc/starpu.vr
  179. /gcc-plugin/tests/register
  180. /tests/datawizard/acquire_cb_insert
  181. /tools/starpu_perfmodel_plot
  182. /gcc-plugin/tests/run-test
  183. /gcc-plugin/tests/register-errors
  184. /gcc-plugin/tests/acquire
  185. /gcc-plugin/tests/unregister
  186. /gcc-plugin/tests/lib-user
  187. /gcc-plugin/examples/matrix-mult
  188. /gcc-plugin/src/c-expr.c
  189. /gcc-plugin/tests/heap-allocated
  190. /gcc-plugin/tests/output-pointer
  191. /gcc-plugin/examples/vector_scal/vector_scal
  192. /doc/starpu.info-1
  193. /doc/starpu.info-2
  194. /examples/axpy/axpy
  195. /examples/basic_examples/mult_impl
  196. /examples/basic_examples/multiformat
  197. /examples/cg/cg
  198. /examples/cholesky/cholesky_grain_tag
  199. /examples/cholesky/cholesky_implicit
  200. /examples/cholesky/cholesky_tag
  201. /examples/cholesky/cholesky_tile_tag
  202. /examples/cpp/incrementer_cpp
  203. /examples/filters/custom_mf/custom_mf_filter
  204. /examples/filters/multiformat/multiformat_filter
  205. /examples/heat/heat
  206. /examples/lu/lu_example_double
  207. /examples/lu/lu_example_float
  208. /examples/lu/lu_implicit_example_double
  209. /examples/lu/lu_implicit_example_float
  210. /examples/mult/dgemm
  211. /examples/mult/sgemm
  212. /mpi/starpumpi-1.0.pc
  213. /socl/socl-1.0.pc
  214. /starpufft/starpufft-1.0.pc
  215. /tests/core/deprecated
  216. /tests/core/deprecated_buffer
  217. /tests/core/deprecated_func
  218. /tests/core/multiformat_data_release
  219. /tests/core/multiformat_handle_conversion
  220. /tests/core/starpu_init
  221. /tests/core/starpu_task_bundle
  222. /tests/core/starpu_worker_exists
  223. /tests/datawizard/copy
  224. /tests/datawizard/double_parameter
  225. /tests/datawizard/gpu_register
  226. /tests/datawizard/in_place_partition
  227. /tests/datawizard/increment_redux_lazy
  228. /tests/datawizard/interfaces/bcsr/bcsr_interface
  229. /tests/datawizard/interfaces/block/block_interface
  230. /tests/datawizard/interfaces/csr/csr_interface
  231. /tests/datawizard/interfaces/matrix/matrix_interface
  232. /tests/datawizard/interfaces/multiformat/advanced/multiformat_cuda_opencl
  233. /tests/datawizard/interfaces/multiformat/advanced/multiformat_data_release
  234. /tests/datawizard/interfaces/multiformat/advanced/multiformat_handle_conversion
  235. /tests/datawizard/interfaces/multiformat/advanced/multiformat_worker
  236. /tests/datawizard/interfaces/multiformat/advanced/same_handle
  237. /tests/datawizard/interfaces/multiformat/multiformat_interface
  238. /tests/datawizard/interfaces/test_interfaces
  239. /tests/datawizard/interfaces/test_vector_interface
  240. /tests/datawizard/interfaces/variable/variable_interface
  241. /tests/datawizard/interfaces/vector/test_vector_interface
  242. /tests/datawizard/interfaces/void/void_interface
  243. /tests/datawizard/partition_lazy
  244. /tests/loader
  245. /tests/starpu_machine_display
  246. /tools/starpu_calibrate_bus.1
  247. /tools/starpu_machine_display.1
  248. /tools/starpu_perfmodel_display.1
  249. /tools/starpu_perfmodel_plot.1
  250. /starpu-1.0.pc
  251. /gcc-plugin/examples/cholesky/cholesky
  252. /gcc-plugin/tests/*.log
  253. /test/*.log
  254. /examples/*.log
  255. /tests/main/declare_deps_after_submission
  256. /tests/main/declare_deps_after_submission_synchronous
  257. /tests/main/declare_deps_in_callback
  258. /tests/main/deprecated
  259. /tests/main/deprecated_buffer
  260. /tests/main/deprecated_func
  261. /tests/main/empty_task
  262. /tests/main/empty_task_chain
  263. /tests/main/empty_task_sync_point
  264. /tests/main/empty_task_sync_point_tasks
  265. /tests/main/execute_on_a_specific_worker
  266. /tests/main/get_current_task
  267. /tests/main/insert_task
  268. /tests/main/multiformat_data_release
  269. /tests/main/multiformat_handle_conversion
  270. /tests/main/multithreaded
  271. /tests/main/multithreaded_init
  272. /tests/main/regenerate
  273. /tests/main/restart
  274. /tests/main/starpu_init
  275. /tests/main/starpu_task_bundle
  276. /tests/main/starpu_task_wait
  277. /tests/main/starpu_task_wait_for_all
  278. /tests/main/starpu_worker_exists
  279. /tests/main/static_restartable
  280. /tests/main/static_restartable_tag
  281. /tests/main/static_restartable_using_initializer
  282. /tests/main/subgraph_repeat
  283. /tests/main/subgraph_repeat_regenerate
  284. /tests/main/tag_wait_api
  285. /tests/main/task_wait_api
  286. /tests/main/wait_all_regenerable_tasks
  287. /tools/starpu_workers_activity
  288. /tests/datawizard/interfaces/copy_interfaces
  289. /gcc-plugin/tests/release
  290. /gcc-plugin/tests/opencl
  291. /gcc-plugin/tests/registered
  292. /gcc-plugin/tests/warn-unregistered
  293. /cyclomatic-complexity.html
  294. ./Makefile
  295. Makefile.in