Browse Source

Remove the copyright header from the examples included in the doc

Cédric Augonnet 15 years ago
parent
commit
4fdd2297a7

+ 0 - 17
doc/vector_scal_c.texi

@@ -1,20 +1,4 @@
 /*
 /*
- * StarPU
- * Copyright (C) INRIA 2008-2010 (see AUTHORS file)
- *
- * This program 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
- * your option) any later version.
- *
- * This program is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- *
- * See the GNU Lesser General Public License in COPYING.LGPL for more details.
- */
-
-/*
  * This example demonstrates how to use StarPU to scale an array by a factor.
  * This example demonstrates how to use StarPU to scale an array by a factor.
  * It shows how to manipulate data with StarPU's data management library.
  * It shows how to manipulate data with StarPU's data management library.
  *  1- how to declare a piece of data to StarPU (starpu_vector_data_register)
  *  1- how to declare a piece of data to StarPU (starpu_vector_data_register)
@@ -22,7 +6,6 @@
  *  3- how a kernel can manipulate the data (buffers[0].vector.ptr)
  *  3- how a kernel can manipulate the data (buffers[0].vector.ptr)
  */
  */
 
 
-
 #include <stdio.h>
 #include <stdio.h>
 #include <stdint.h>
 #include <stdint.h>
 #include <starpu.h>
 #include <starpu.h>

+ 0 - 16
doc/vector_scal_cpu.texi

@@ -1,20 +1,4 @@
 /*
 /*
- * StarPU
- * Copyright (C) INRIA 2008-2010 (see AUTHORS file)
- *
- * This program 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
- * your option) any later version.
- *
- * This program is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- *
- * See the GNU Lesser General Public License in COPYING.LGPL for more details.
- */
-
-/*
  * This example complements vector_scale.c: here we implement a CPU version.
  * This example complements vector_scale.c: here we implement a CPU version.
  */
  */
 
 

+ 0 - 16
doc/vector_scal_cuda.texi

@@ -1,20 +1,4 @@
 /*
 /*
- * StarPU
- * Copyright (C) INRIA 2008-2009 (see AUTHORS file)
- *
- * This program 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
- * your option) any later version.
- *
- * This program is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- *
- * See the GNU Lesser General Public License in COPYING.LGPL for more details.
- */
-
-/*
  * This example complements vector_scale.c: here we implement a CUDA version.
  * This example complements vector_scale.c: here we implement a CUDA version.
  */
  */
 
 

+ 0 - 16
doc/vector_scal_opencl.texi

@@ -1,20 +1,4 @@
 /*
 /*
- * StarPU
- * Copyright (C) INRIA 2008-2010 (see AUTHORS file)
- *
- * This program 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
- * your option) any later version.
- *
- * This program is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- *
- * See the GNU Lesser General Public License in COPYING.LGPL for more details.
- */
-
-/*
  * This example complements vector_scale.c: here we implement a OpenCL version.
  * This example complements vector_scale.c: here we implement a OpenCL version.
  */
  */
 
 

+ 0 - 16
doc/vector_scal_opencl_codelet.texi

@@ -1,19 +1,3 @@
-/*
- * StarPU
- * Copyright (C) INRIA 2008-2010 (see AUTHORS file)
- *
- * This program 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
- * your option) any later version.
- *
- * This program is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- *
- * See the GNU Lesser General Public License in COPYING.LGPL for more details.
- */
-
 __kernel void vector_mult_opencl(__global float* val, int nx, float factor)
 __kernel void vector_mult_opencl(__global float* val, int nx, float factor)
 @{
 @{
         const int i = get_global_id(0);
         const int i = get_global_id(0);