Forráskód Böngészése

document which example is what

Samuel Thibault 4 éve
szülő
commit
99ec143f8a

+ 4 - 1
tests/fpga/max_fpga_advanced_static.c

@@ -1,6 +1,6 @@
 /* StarPU --- Runtime system for heterogeneous multicore architectures.
  *
- * Copyright (C) 2019-2020  Université de Bordeaux, CNRS (LaBRI UMR 5800), Inria
+ * Copyright (C) 2019-2021  Université de Bordeaux, CNRS (LaBRI UMR 5800), Inria
  *
  * 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
@@ -19,6 +19,9 @@
 #include <starpu_scheduler.h>
 #include "../helper.h"
 
+/* This examples shows the case of determining statically whether data is in CPU
+ * memory or DFE memory, and using the advanced Maxeler interface */
+
 #include "MyTasks.h"
 #include <MaxSLiCInterface.h>
 #define SIZE (192/sizeof(int32_t))

+ 4 - 1
tests/fpga/max_fpga_basic_static.c

@@ -1,6 +1,6 @@
 /* StarPU --- Runtime system for heterogeneous multicore architectures.
  *
- * Copyright (C) 2019-2020  Université de Bordeaux, CNRS (LaBRI UMR 5800), Inria
+ * Copyright (C) 2019-2021  Université de Bordeaux, CNRS (LaBRI UMR 5800), Inria
  *
  * 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
@@ -19,6 +19,9 @@
 #include <starpu_scheduler.h>
 #include "../helper.h"
 
+/* This examples shows the case of determining statically whether data is in CPU
+ * memory or DFE memory, and using the basic Maxeler interface */
+
 #include "MyTasks.h"
 #include <MaxSLiCInterface.h>
 #define SIZE (192/sizeof(int32_t))

+ 4 - 1
tests/fpga/max_fpga_dynamic.c

@@ -1,6 +1,6 @@
 /* StarPU --- Runtime system for heterogeneous multicore architectures.
  *
- * Copyright (C) 2019-2020  Université de Bordeaux, CNRS (LaBRI UMR 5800), Inria
+ * Copyright (C) 2019-2021  Université de Bordeaux, CNRS (LaBRI UMR 5800), Inria
  *
  * 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
@@ -19,6 +19,9 @@
 #include <starpu_scheduler.h>
 #include "../helper.h"
 
+/* This examples shows the case of determining statically whether data is in CPU
+ * memory or DFE memory, and using the dynamic Maxeler interface */
+
 #include "MyTasks.h"
 #include <MaxSLiCInterface.h>
 #define SIZE (192/sizeof(int32_t))

+ 5 - 1
tests/fpga/max_fpga_mux.c

@@ -1,6 +1,6 @@
 /* StarPU --- Runtime system for heterogeneous multicore architectures.
  *
- * Copyright (C) 2019-2020  Université de Bordeaux, CNRS (LaBRI UMR 5800), Inria
+ * Copyright (C) 2019-2021  Université de Bordeaux, CNRS (LaBRI UMR 5800), Inria
  *
  * 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
@@ -19,6 +19,10 @@
 #include <starpu_scheduler.h>
 #include "../helper.h"
 
+/* This examples shows the case of letting the runtime determing whether data
+ * should be in CPU memory or DFE memory, by integrating a multiplexer in a
+ * design that can be toggled dynamically.  */
+
 #include "MyTasksMux.h"
 #include <MaxSLiCInterface.h>
 #define SIZE (192/sizeof(int32_t))