瀏覽代碼

sc_hypervisor: fix copyrights

Nathalie Furmento 7 年之前
父節點
當前提交
d053f9e7d6
共有 40 個文件被更改,包括 113 次插入58 次删除
  1. 4 2
      sc_hypervisor/Makefile.am
  2. 4 2
      sc_hypervisor/examples/Makefile.am
  3. 3 1
      sc_hypervisor/examples/app_driven_test/app_driven_test.c
  4. 3 3
      sc_hypervisor/examples/cholesky/cholesky.h
  5. 4 3
      sc_hypervisor/examples/cholesky/cholesky_grain_tag.c
  6. 4 4
      sc_hypervisor/examples/cholesky/cholesky_implicit.c
  7. 3 2
      sc_hypervisor/examples/cholesky/cholesky_kernels.c
  8. 4 3
      sc_hypervisor/examples/cholesky/cholesky_models.c
  9. 4 3
      sc_hypervisor/examples/cholesky/cholesky_tag.c
  10. 3 2
      sc_hypervisor/examples/cholesky/cholesky_tile_tag.c
  11. 2 1
      sc_hypervisor/examples/hierarchical_ctxs/resize_hierarchical_ctxs.c
  12. 2 1
      sc_hypervisor/examples/lp_test/lp_resize_test.c
  13. 3 1
      sc_hypervisor/examples/lp_test/lp_test.c
  14. 3 1
      sc_hypervisor/examples/sched_ctx_utils/sched_ctx_utils.c
  15. 2 1
      sc_hypervisor/examples/sched_ctx_utils/sched_ctx_utils.h
  16. 2 1
      sc_hypervisor/include/sc_hypervisor.h
  17. 2 1
      sc_hypervisor/include/sc_hypervisor_config.h
  18. 2 1
      sc_hypervisor/include/sc_hypervisor_lp.h
  19. 3 1
      sc_hypervisor/include/sc_hypervisor_monitoring.h
  20. 4 2
      sc_hypervisor/include/sc_hypervisor_policy.h
  21. 5 2
      sc_hypervisor/src/Makefile.am
  22. 2 1
      sc_hypervisor/src/hypervisor_policies/app_driven_policy.c
  23. 3 2
      sc_hypervisor/src/hypervisor_policies/feft_lp_policy.c
  24. 2 1
      sc_hypervisor/src/hypervisor_policies/gflops_rate_policy.c
  25. 2 1
      sc_hypervisor/src/hypervisor_policies/hard_coded_policy.c
  26. 2 1
      sc_hypervisor/src/hypervisor_policies/idle_policy.c
  27. 3 1
      sc_hypervisor/src/hypervisor_policies/ispeed_lp_policy.c
  28. 3 1
      sc_hypervisor/src/hypervisor_policies/ispeed_policy.c
  29. 2 1
      sc_hypervisor/src/hypervisor_policies/perf_count_policy.c
  30. 3 1
      sc_hypervisor/src/hypervisor_policies/teft_lp_policy.c
  31. 3 1
      sc_hypervisor/src/hypervisor_policies/throughput_lp_policy.c
  32. 2 1
      sc_hypervisor/src/policies_utils/dichotomy.c
  33. 2 1
      sc_hypervisor/src/policies_utils/lp_programs.c
  34. 3 1
      sc_hypervisor/src/policies_utils/lp_tools.c
  35. 3 1
      sc_hypervisor/src/policies_utils/policy_tools.c
  36. 3 1
      sc_hypervisor/src/policies_utils/speed.c
  37. 2 1
      sc_hypervisor/src/policies_utils/task_pool.c
  38. 2 1
      sc_hypervisor/src/sc_config.c
  39. 3 1
      sc_hypervisor/src/sc_hypervisor.c
  40. 2 1
      sc_hypervisor/src/sc_hypervisor_intern.h

+ 4 - 2
sc_hypervisor/Makefile.am

@@ -1,6 +1,8 @@
 # StarPU --- Runtime system for heterogeneous multicore architectures.
 #
-# Copyright (C) 2011,2012 Inria
+# Copyright (C) 2011-2014                                Inria
+# Copyright (C) 2012,2015,2017                           CNRS
+# Copyright (C) 2013,2015                                Université de Bordeaux
 #
 # StarPU is free software; you can redistribute it and/or modify
 # it under the terms of the GNU Lesser General Public License as published by
@@ -12,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 #
 # See the GNU Lesser General Public License in COPYING.LGPL for more details.
-
+#
 SUBDIRS = src examples
 
 versincludedir = $(includedir)/starpu/$(STARPU_EFFECTIVE_VERSION)

+ 4 - 2
sc_hypervisor/examples/Makefile.am

@@ -1,6 +1,8 @@
 # StarPU --- Runtime system for heterogeneous multicore architectures.
 #
-# Copyright (C) 2011,2012 Inria
+# Copyright (C) 2011-2014                                Inria
+# Copyright (C) 2012-2015,2017                           CNRS
+# Copyright (C) 2015-2016                                Université de Bordeaux
 #
 # StarPU is free software; you can redistribute it and/or modify
 # it under the terms of the GNU Lesser General Public License as published by
@@ -12,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 #
 # See the GNU Lesser General Public License in COPYING.LGPL for more details.
-
+#
 include $(top_srcdir)/starpu.mk
 
 AM_CFLAGS = -Wall $(STARPU_CUDA_CPPFLAGS) $(STARPU_OPENCL_CPPFLAGS) $(FXT_CFLAGS) $(MAGMA_CFLAGS) $(HWLOC_CFLAGS) $(GLOBAL_AM_CFLAGS)

+ 3 - 1
sc_hypervisor/examples/app_driven_test/app_driven_test.c

@@ -1,6 +1,8 @@
 /* StarPU --- Runtime system for heterogeneous multicore architectures.
  *
- * Copyright (C) 2010-2012  Inria
+ * Copyright (C) 2010-2013,2016                           Inria
+ * Copyright (C) 2012-2013,2016-2017                      CNRS
+ * Copyright (C) 2013                                     Université de Bordeaux
  *
  * StarPU is free software; you can redistribute it and/or modify
  * it under the terms of the GNU Lesser General Public License as published by

+ 3 - 3
sc_hypervisor/examples/cholesky/cholesky.h

@@ -1,8 +1,8 @@
 /* StarPU --- Runtime system for heterogeneous multicore architectures.
  *
- * Copyright (C) 2009, 2010, 2011, 2013  Université de Bordeaux
- * Copyright (C) 2010, 2011, 2017  CNRS
- * Copyright (C) 2011, 2012  Inria
+ * Copyright (C) 2011-2013                                Inria
+ * Copyright (C) 2010-2013,2015,2017                      CNRS
+ * Copyright (C) 2009-2011,2013-2014                      Université de Bordeaux
  *
  * StarPU is free software; you can redistribute it and/or modify
  * it under the terms of the GNU Lesser General Public License as published by

+ 4 - 3
sc_hypervisor/examples/cholesky/cholesky_grain_tag.c

@@ -1,8 +1,9 @@
 /* StarPU --- Runtime system for heterogeneous multicore architectures.
  *
- * Copyright (C) 2009-2012  Université de Bordeaux
- * Copyright (C) 2010  Mehdi Juhoor
- * Copyright (C) 2010, 2011, 2012, 2013, 2017  CNRS
+ * Copyright (C) 2011-2013                                Inria
+ * Copyright (C) 2010-2013,2015,2017                      CNRS
+ * Copyright (C) 2009-2012,2014                           Université de Bordeaux
+ * Copyright (C) 2010                                     Mehdi Juhoor
  *
  * StarPU is free software; you can redistribute it and/or modify
  * it under the terms of the GNU Lesser General Public License as published by

+ 4 - 4
sc_hypervisor/examples/cholesky/cholesky_implicit.c

@@ -1,9 +1,9 @@
 /* StarPU --- Runtime system for heterogeneous multicore architectures.
  *
- * Copyright (C) 2009-2012  Université de Bordeaux
- * Copyright (C) 2010  Mehdi Juhoor
- * Copyright (C) 2010, 2011, 2012, 2013, 2017  CNRS
- * Copyright (C) 2011, 2012  Inria
+ * Copyright (C) 2011-2013,2016                           Inria
+ * Copyright (C) 2010-2013,2015,2017                      CNRS
+ * Copyright (C) 2009-2014                                Université de Bordeaux
+ * Copyright (C) 2010                                     Mehdi Juhoor
  *
  * StarPU is free software; you can redistribute it and/or modify
  * it under the terms of the GNU Lesser General Public License as published by

+ 3 - 2
sc_hypervisor/examples/cholesky/cholesky_kernels.c

@@ -1,7 +1,8 @@
 /* StarPU --- Runtime system for heterogeneous multicore architectures.
  *
- * Copyright (C) 2009, 2010, 2011  Université de Bordeaux
- * Copyright (C) 2010, 2011, 2017  CNRS
+ * Copyright (C) 2011-2013                                Inria
+ * Copyright (C) 2010-2012,2015,2017                      CNRS
+ * Copyright (C) 2009-2011,2013-2014                      Université de Bordeaux
  *
  * StarPU is free software; you can redistribute it and/or modify
  * it under the terms of the GNU Lesser General Public License as published by

+ 4 - 3
sc_hypervisor/examples/cholesky/cholesky_models.c

@@ -1,8 +1,9 @@
 /* StarPU --- Runtime system for heterogeneous multicore architectures.
  *
- * Copyright (C) 2009, 2010-2011  Université de Bordeaux
- * Copyright (C) 2010, 2011, 2012, 2013, 2014, 2015  CNRS
- * Copyright (C) 2011  Télécom-SudParis
+ * Copyright (C) 2011-2013                                Inria
+ * Copyright (C) 2010-2015                                CNRS
+ * Copyright (C) 2009-2011,2014                           Université de Bordeaux
+ * Copyright (C) 2011                                     Télécom-SudParis
  *
  * StarPU is free software; you can redistribute it and/or modify
  * it under the terms of the GNU Lesser General Public License as published by

+ 4 - 3
sc_hypervisor/examples/cholesky/cholesky_tag.c

@@ -1,8 +1,9 @@
 /* StarPU --- Runtime system for heterogeneous multicore architectures.
  *
- * Copyright (C) 2009-2012  Université de Bordeaux
- * Copyright (C) 2010  Mehdi Juhoor
- * Copyright (C) 2010, 2011, 2012, 2013  CNRS
+ * Copyright (C) 2011-2013                                Inria
+ * Copyright (C) 2010-2013,2015,2017                      CNRS
+ * Copyright (C) 2009-2012,2014                           Université de Bordeaux
+ * Copyright (C) 2010                                     Mehdi Juhoor
  *
  * StarPU is free software; you can redistribute it and/or modify
  * it under the terms of the GNU Lesser General Public License as published by

+ 3 - 2
sc_hypervisor/examples/cholesky/cholesky_tile_tag.c

@@ -1,7 +1,8 @@
 /* StarPU --- Runtime system for heterogeneous multicore architectures.
  *
- * Copyright (C) 2009-2012  Université de Bordeaux
- * Copyright (C) 2010, 2011, 2012, 2013  CNRS
+ * Copyright (C) 2011-2013                                Inria
+ * Copyright (C) 2010-2013,2015                           CNRS
+ * Copyright (C) 2009-2012,2014                           Université de Bordeaux
  *
  * StarPU is free software; you can redistribute it and/or modify
  * it under the terms of the GNU Lesser General Public License as published by

+ 2 - 1
sc_hypervisor/examples/hierarchical_ctxs/resize_hierarchical_ctxs.c

@@ -1,6 +1,7 @@
 /* StarPU --- Runtime system for heterogeneous multicore architectures.
  *
- * Copyright (C) 2010-2012  Inria
+ * Copyright (C) 2010-2012,2014                           Inria
+ * Copyright (C) 2016-2017                                CNRS
  *
  * StarPU is free software; you can redistribute it and/or modify
  * it under the terms of the GNU Lesser General Public License as published by

+ 2 - 1
sc_hypervisor/examples/lp_test/lp_resize_test.c

@@ -1,6 +1,7 @@
 /* StarPU --- Runtime system for heterogeneous multicore architectures.
  *
- * Copyright (C) 2010-2012  Inria
+ * Copyright (C) 2010-2013                                Inria
+ * Copyright (C) 2013,2016-2017                           CNRS
  *
  * StarPU is free software; you can redistribute it and/or modify
  * it under the terms of the GNU Lesser General Public License as published by

+ 3 - 1
sc_hypervisor/examples/lp_test/lp_test.c

@@ -1,6 +1,8 @@
 /* StarPU --- Runtime system for heterogeneous multicore architectures.
  *
- * Copyright (C) 2010-2012  Inria
+ * Copyright (C) 2010-2013                                Inria
+ * Copyright (C) 2013,2016-2017                           CNRS
+ * Copyright (C) 2013                                     Université de Bordeaux
  *
  * StarPU is free software; you can redistribute it and/or modify
  * it under the terms of the GNU Lesser General Public License as published by

+ 3 - 1
sc_hypervisor/examples/sched_ctx_utils/sched_ctx_utils.c

@@ -1,6 +1,8 @@
 /* StarPU --- Runtime system for heterogeneous multicore architectures.
  *
- * Copyright (C) 2011, 2012  Inria
+ * Copyright (C) 2011-2013,2016                           Inria
+ * Copyright (C) 2012-2013,2017                           CNRS
+ * Copyright (C) 2015                                     Université de Bordeaux
  *
  * StarPU is free software; you can redistribute it and/or modify
  * it under the terms of the GNU Lesser General Public License as published by

+ 2 - 1
sc_hypervisor/examples/sched_ctx_utils/sched_ctx_utils.h

@@ -1,6 +1,7 @@
 /* StarPU --- Runtime system for heterogeneous multicore architectures.
  *
- * Copyright (C) 2011, 2012  Inria
+ * Copyright (C) 2011-2013                                Inria
+ * Copyright (C) 2012-2013,2017                           CNRS
  *
  * StarPU is free software; you can redistribute it and/or modify
  * it under the terms of the GNU Lesser General Public License as published by

+ 2 - 1
sc_hypervisor/include/sc_hypervisor.h

@@ -1,6 +1,7 @@
 /* StarPU --- Runtime system for heterogeneous multicore architectures.
  *
- * Copyright (C) 2011 - 2013  Inria
+ * Copyright (C) 2011-2015                                Inria
+ * Copyright (C) 2012-2013,2017                           CNRS
  *
  * StarPU is free software; you can redistribute it and/or modify
  * it under the terms of the GNU Lesser General Public License as published by

+ 2 - 1
sc_hypervisor/include/sc_hypervisor_config.h

@@ -1,6 +1,7 @@
 /* StarPU --- Runtime system for heterogeneous multicore architectures.
  *
- * Copyright (C) 2011 - 2013  Inria
+ * Copyright (C) 2011,2013                                Inria
+ * Copyright (C) 2013,2017                                CNRS
  *
  * StarPU is free software; you can redistribute it and/or modify
  * it under the terms of the GNU Lesser General Public License as published by

+ 2 - 1
sc_hypervisor/include/sc_hypervisor_lp.h

@@ -1,6 +1,7 @@
 /* StarPU --- Runtime system for heterogeneous multicore architectures.
  *
- * Copyright (C) 2010-2013  Inria
+ * Copyright (C) 2010-2014                                Inria
+ * Copyright (C) 2012-2013,2017                           CNRS
  *
  * StarPU is free software; you can redistribute it and/or modify
  * it under the terms of the GNU Lesser General Public License as published by

+ 3 - 1
sc_hypervisor/include/sc_hypervisor_monitoring.h

@@ -1,6 +1,8 @@
 /* StarPU --- Runtime system for heterogeneous multicore architectures.
  *
- * Copyright (C) 2011 - 2013  Inria
+ * Copyright (C) 2011,2013-2014                           Inria
+ * Copyright (C) 2015                                     Mathieu Lirzin
+ * Copyright (C) 2013,2017                                CNRS
  *
  * StarPU is free software; you can redistribute it and/or modify
  * it under the terms of the GNU Lesser General Public License as published by

+ 4 - 2
sc_hypervisor/include/sc_hypervisor_policy.h

@@ -1,6 +1,8 @@
-/* StarPUf --- Runtime system for heterogeneous multicore architectures.
+/* StarPU --- Runtime system for heterogeneous multicore architectures.
  *
- * Copyright (C) 2010-2012  Inria
+ * Copyright (C) 2010-2014                                Inria
+ * Copyright (C) 2012-2013,2017                           CNRS
+ * Copyright (C) 2012-2013                                Université de Bordeaux
  *
  * StarPU is free software; you can redistribute it and/or modify
  * it under the terms of the GNU Lesser General Public License as published by

+ 5 - 2
sc_hypervisor/src/Makefile.am

@@ -1,6 +1,9 @@
 # StarPU --- Runtime system for heterogeneous multicore architectures.
 #
-# Copyright (C) 2011, 2012  Inria
+# Copyright (C) 2011-2015                                Inria
+# Copyright (C) 2012-2013,2015,2017                      CNRS
+# Copyright (C) 2013                                     Université de Bordeaux
+#
 # StarPU is free software; you can redistribute it and/or modify
 # it under the terms of the GNU Lesser General Public License as published by
 # the Free Software Foundation; either version 2.1 of the License, or (at
@@ -11,7 +14,7 @@
 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 #
 # See the GNU Lesser General Public License in COPYING.LGPL for more details.
-
+#
 AM_CFLAGS = -Wall $(STARPU_CUDA_CPPFLAGS) $(STARPU_OPENCL_CPPFLAGS) $(FXT_CFLAGS) $(MAGMA_CFLAGS) $(HWLOC_CFLAGS) $(GLOBAL_AM_CFLAGS)
 LIBS = $(top_builddir)/src/libstarpu-@STARPU_EFFECTIVE_VERSION@.la
 AM_CPPFLAGS = -I$(top_builddir)/include -I$(top_srcdir)/include -I$(top_srcdir)/sc_hypervisor/include/ -I$(top_srcdir)/sc_hypervisor/src

+ 2 - 1
sc_hypervisor/src/hypervisor_policies/app_driven_policy.c

@@ -1,6 +1,7 @@
 /* StarPU --- Runtime system for heterogeneous multicore architectures.
  *
- * Copyright (C) 2011, 2012  Inria
+ * Copyright (C) 2011-2013,2015                           Inria
+ * Copyright (C) 2012,2017                                CNRS
  *
  * StarPU is free software; you can redistribute it and/or modify
  * it under the terms of the GNU Lesser General Public License as published by

+ 3 - 2
sc_hypervisor/src/hypervisor_policies/feft_lp_policy.c

@@ -1,7 +1,8 @@
-
 /* StarPU --- Runtime system for heterogeneous multicore architectures.
  *
- * Copyright (C) 2011 - 2013  Inria
+ * Copyright (C) 2011-2016                                Inria
+ * Copyright (C) 2012-2014,2016-2017                      CNRS
+ * Copyright (C) 2017                                     Université de Bordeaux
  *
  * StarPU is free software; you can redistribute it and/or modify
  * it under the terms of the GNU Lesser General Public License as published by

+ 2 - 1
sc_hypervisor/src/hypervisor_policies/gflops_rate_policy.c

@@ -1,6 +1,7 @@
 /* StarPU --- Runtime system for heterogeneous multicore architectures.
  *
- * Copyright (C) 2011, 2012  Inria
+ * Copyright (C) 2011-2013,2015                           Inria
+ * Copyright (C) 2012-2013,2016-2017                      CNRS
  *
  * StarPU is free software; you can redistribute it and/or modify
  * it under the terms of the GNU Lesser General Public License as published by

+ 2 - 1
sc_hypervisor/src/hypervisor_policies/hard_coded_policy.c

@@ -1,6 +1,7 @@
 /* StarPU --- Runtime system for heterogeneous multicore architectures.
  *
- * Copyright (C) 2011, 2012  Inria
+ * Copyright (C) 2011-2012,2015-2016                      Inria
+ * Copyright (C) 2016-2017                                CNRS
  *
  * StarPU is free software; you can redistribute it and/or modify
  * it under the terms of the GNU Lesser General Public License as published by

+ 2 - 1
sc_hypervisor/src/hypervisor_policies/idle_policy.c

@@ -1,6 +1,7 @@
 /* StarPU --- Runtime system for heterogeneous multicore architectures.
  *
- * Copyright (C) 2011, 2012  Inria
+ * Copyright (C) 2011-2013,2015                           Inria
+ * Copyright (C) 2012,2017                                CNRS
  *
  * StarPU is free software; you can redistribute it and/or modify
  * it under the terms of the GNU Lesser General Public License as published by

+ 3 - 1
sc_hypervisor/src/hypervisor_policies/ispeed_lp_policy.c

@@ -1,6 +1,8 @@
 /* StarPU --- Runtime system for heterogeneous multicore architectures.
  *
- * Copyright (C) 2011, 2012  Inria
+ * Copyright (C) 2011-2015                                Inria
+ * Copyright (C) 2013-2014,2016-2017                      CNRS
+ * Copyright (C) 2013,2017                                Université de Bordeaux
  *
  * StarPU is free software; you can redistribute it and/or modify
  * it under the terms of the GNU Lesser General Public License as published by

+ 3 - 1
sc_hypervisor/src/hypervisor_policies/ispeed_policy.c

@@ -1,6 +1,8 @@
 /* StarPU --- Runtime system for heterogeneous multicore architectures.
  *
- * Copyright (C) 2011, 2012  Inria
+ * Copyright (C) 2011-2013,2015                           Inria
+ * Copyright (C) 2013,2016-2017                           CNRS
+ * Copyright (C) 2014                                     Université de Bordeaux
  *
  * StarPU is free software; you can redistribute it and/or modify
  * it under the terms of the GNU Lesser General Public License as published by

+ 2 - 1
sc_hypervisor/src/hypervisor_policies/perf_count_policy.c

@@ -1,6 +1,7 @@
 /* StarPU --- Runtime system for heterogeneous multicore architectures.
  *
- * Copyright (C) 2011, 2012  Inria
+ * Copyright (C) 2011-2012,2015                           Inria
+ * Copyright (C) 2016-2017                                CNRS
  *
  * StarPU is free software; you can redistribute it and/or modify
  * it under the terms of the GNU Lesser General Public License as published by

+ 3 - 1
sc_hypervisor/src/hypervisor_policies/teft_lp_policy.c

@@ -1,6 +1,8 @@
 /* StarPU --- Runtime system for heterogeneous multicore architectures.
  *
- * Copyright (C) 2011, 2012  Inria
+ * Copyright (C) 2011-2016                                Inria
+ * Copyright (C) 2012-2014,2016-2017                      CNRS
+ * Copyright (C) 2012                                     Université de Bordeaux
  *
  * StarPU is free software; you can redistribute it and/or modify
  * it under the terms of the GNU Lesser General Public License as published by

+ 3 - 1
sc_hypervisor/src/hypervisor_policies/throughput_lp_policy.c

@@ -1,6 +1,8 @@
 /* StarPU --- Runtime system for heterogeneous multicore architectures.
  *
- * Copyright (C) 2011, 2013  Inria
+ * Copyright (C) 2011,2013-2015                           Inria
+ * Copyright (C) 2013,2016-2017                           CNRS
+ * Copyright (C) 2017                                     Université de Bordeaux
  *
  * StarPU is free software; you can redistribute it and/or modify
  * it under the terms of the GNU Lesser General Public License as published by

+ 2 - 1
sc_hypervisor/src/policies_utils/dichotomy.c

@@ -1,6 +1,7 @@
 /* StarPU --- Runtime system for heterogeneous multicore architectures.
  *
- * Copyright (C) 2011 - 2013  Inria
+ * Copyright (C) 2011,2013,2015                           Inria
+ * Copyright (C) 2016-2017                                CNRS
  *
  * StarPU is free software; you can redistribute it and/or modify
  * it under the terms of the GNU Lesser General Public License as published by

+ 2 - 1
sc_hypervisor/src/policies_utils/lp_programs.c

@@ -1,6 +1,7 @@
 /* StarPU --- Runtime system for heterogeneous multicore architectures.
  *
- * Copyright (C) 2011 - 2013  Inria
+ * Copyright (C) 2011,2013-2016                           Inria
+ * Copyright (C) 2016-2017                                CNRS
  *
  * StarPU is free software; you can redistribute it and/or modify
  * it under the terms of the GNU Lesser General Public License as published by

+ 3 - 1
sc_hypervisor/src/policies_utils/lp_tools.c

@@ -1,6 +1,8 @@
 /* StarPU --- Runtime system for heterogeneous multicore architectures.
  *
- * Copyright (C) 2010-2012  Inria
+ * Copyright (C) 2010-2016                                Inria
+ * Copyright (C) 2013-2014,2016-2017                      CNRS
+ * Copyright (C) 2014,2017                                Université de Bordeaux
  *
  * StarPU is free software; you can redistribute it and/or modify
  * it under the terms of the GNU Lesser General Public License as published by

+ 3 - 1
sc_hypervisor/src/policies_utils/policy_tools.c

@@ -1,6 +1,8 @@
 /* StarPU --- Runtime system for heterogeneous multicore architectures.
  *
- * Copyright (C) 2010-2013  Inria
+ * Copyright (C) 2010-2016                                Inria
+ * Copyright (C) 2013-2014,2016-2017                      CNRS
+ * Copyright (C) 2013-2015,2017                           Université de Bordeaux
  *
  * StarPU is free software; you can redistribute it and/or modify
  * it under the terms of the GNU Lesser General Public License as published by

+ 3 - 1
sc_hypervisor/src/policies_utils/speed.c

@@ -1,6 +1,8 @@
 /* StarPU --- Runtime system for heterogeneous multicore architectures.
  *
- * Copyright (C) 2010-2013  Inria
+ * Copyright (C) 2010-2015                                Inria
+ * Copyright (C) 2016-2017                                CNRS
+ * Copyright (C) 2013-2014,2017                           Université de Bordeaux
  *
  * StarPU is free software; you can redistribute it and/or modify
  * it under the terms of the GNU Lesser General Public License as published by

+ 2 - 1
sc_hypervisor/src/policies_utils/task_pool.c

@@ -1,6 +1,7 @@
 /* StarPU --- Runtime system for heterogeneous multicore architectures.
  *
- * Copyright (C) 2010-2013  Inria
+ * Copyright (C) 2010-2013,2015                           Inria
+ * Copyright (C) 2017                                     CNRS
  *
  * StarPU is free software; you can redistribute it and/or modify
  * it under the terms of the GNU Lesser General Public License as published by

+ 2 - 1
sc_hypervisor/src/sc_config.c

@@ -1,6 +1,7 @@
 /* StarPU --- Runtime system for heterogeneous multicore architectures.
  *
- * Copyright (C) 2011, 2012  Inria
+ * Copyright (C) 2011-2013,2016                           Inria
+ * Copyright (C) 2012-2013,2016-2017                      CNRS
  *
  * StarPU is free software; you can redistribute it and/or modify
  * it under the terms of the GNU Lesser General Public License as published by

+ 3 - 1
sc_hypervisor/src/sc_hypervisor.c

@@ -1,6 +1,8 @@
 /* StarPU --- Runtime system for heterogeneous multicore architectures.
  *
- * Copyright (C) 2011, 2012  Inria
+ * Copyright (C) 2011-2017                                Inria
+ * Copyright (C) 2012-2014,2016-2017                      CNRS
+ * Copyright (C) 2014,2017                                Université de Bordeaux
  *
  * StarPU is free software; you can redistribute it and/or modify
  * it under the terms of the GNU Lesser General Public License as published by

+ 2 - 1
sc_hypervisor/src/sc_hypervisor_intern.h

@@ -1,6 +1,7 @@
 /* StarPU --- Runtime system for heterogeneous multicore architectures.
  *
- * Copyright (C) 2011, 2012  Inria
+ * Copyright (C) 2011-2013                                Inria
+ * Copyright (C) 2012-2013,2016-2017                      CNRS
  *
  * StarPU is free software; you can redistribute it and/or modify
  * it under the terms of the GNU Lesser General Public License as published by