Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[mc] Move ignore_local_variable() into Process
[simgrid.git] / COPYING
1 Most of the SimGrid software was written internally by the team. This
2 software is distributed under the GNU lesser general public license
3 version 2.1, which you can find in the archive under the name
4 LICENSE-LGPL-2.1.
5
6 For any copyright year range specified as YYYY-ZZZZ in this package
7 note that the range specifies every single year in that closed interval.
8
9 Some perticular files distributed with the project have other
10 licenses. More specifically, these files are listed below, along with
11 their license.
12
13 The SimGrid logo is distributed under the CC-BY-SA license.
14
15 =========================================================================
16
17 The file src/xbt/snprintf.c contains this license text:
18
19 /*
20  * snprintf.c - a portable implementation of snprintf
21  *
22  * AUTHOR
23  *   Mark Martinec <mark.martinec@ijs.si>, April 1999.
24  *
25  *   Copyright 1999, Mark Martinec. All rights reserved.
26  *
27  * TERMS AND CONDITIONS
28  *   This program is free software; you can redistribute it and/or modify
29  *   it under the terms of the "Frontier Artistic License" which comes
30  *   with this Kit.
31  *
32  *   This program is distributed in the hope that it will be useful,
33  *   but WITHOUT ANY WARRANTY; without even the implied warranty
34  *   of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
35  *   See the Frontier Artistic License for more details.
36  *
37  *   You should have received a copy of the Frontier Artistic License
38  *   with this Kit in the file named LICENSE.txt .
39  *   If not, I'll be glad to provide one.
40  *
41  */
42
43 =========================================================================
44
45 The exception handling mecanism (mainly living in src/xbt/ex.c and
46 include/xbt/ex.h) was adapted from code from Ralf S. Engelschall and
47 others in the OSSP project. The OSSP version has the following license:
48
49 **  OSSP ex - Exception Handling
50 **  Copyright (c) 2002-2007 Ralf S. Engelschall <rse@engelschall.com>
51 **  Copyright (c) 2002-2007 The OSSP Project <http://www.ossp.org/>
52 **
53 **  This file is part of OSSP ex, an exception handling library
54 **  which can be found at http://www.ossp.org/pkg/lib/ex/.
55 **
56 **  Permission to use, copy, modify, and distribute this software for
57 **  any purpose with or without fee is hereby granted, provided that
58 **  the above copyright notice and this permission notice appear in all
59 **  copies.
60 **
61 **  THIS SOFTWARE IS PROVIDED `AS IS'' AND ANY EXPRESSED OR IMPLIED
62 **  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
63 **  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
64 **  IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR
65 **  CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
66 **  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
67 **  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
68 **  USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
69 **  ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
70 **  OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
71 **  OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
72 **  SUCH DAMAGE.
73
74
75 =========================================================================
76
77 The sha implementation (src/xbt/xbt_sha.c:) was borowed and adapted
78 from the iksemel one (http://code.google.com/p/iksemel/). Both the
79 original and the current version of this code is distributed under the
80 LGPL v2.1 license.
81
82 =========================================================================
83
84 The xbt/mmalloc module was adapted from the mmalloc module of gdb.
85 Both the simgrid version and the original version is distributed under
86 the LGPL v2.1
87
88 This affects the files in directory src/xbt/mmalloc and
89 include/xbt/mmalloc.h
90
91 =========================================================================
92
93 In order to use ucontext with windows platform we had those files :
94         src/xbt/win32_ucontext.c
95         src/include/xbt/win32_ucontext.h
96
97 Their copyright is the following:
98
99 /*
100  *      win32-ucontext: Unix ucontext_t operations on Windows platforms
101  *      Copyright(C) 2007 Panagiotis E. Hadjidoukas
102  *
103  *      Contact Email: phadjido@cs.uoi.gr, xdoukas@ceid.upatras.gr
104  *
105  *      win32-ucontext is free software; you can redistribute it and/or
106  *      modify it under the terms of the GNU Lesser General Public
107  *      License as published by the Free Software Foundation; either
108  *      version 2 of the License, or (at your option) any later version.
109  *
110  *      win32-ucontext is distributed in the hope that it will be useful,
111  *      but WITHOUT ANY WARRANTY; without even the implied warranty of
112  *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
113  *      Lesser General Public License for more details.
114  *
115  *      You should have received a copy of the GNU Lesser General Public
116  *      License along with SimGrid in the file LICENSE-LGPL-2.1;
117  *      if not, write to the Free Software Foundation, Inc.,
118  *      51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
119  */
120
121 =========================================================================
122
123 Some examples for SMPI were borowed from an IBM test suite.
124 Their copyright is the following:
125 /**
126  * MESSAGE PASSING INTERFACE TEST CASE SUITE
127  *
128  * Copyright IBM Corp. 1995
129  *
130  * IBM Corp. hereby grants a non-exclusive license to use, copy, modify, and
131  *distribute this software for any purpose and without fee provided that the
132  *above copyright notice and the following paragraphs appear in all copies.
133
134  * IBM Corp. makes no representation that the test cases comprising this
135  * suite are correct or are an accurate representation of any standard.
136
137  * In no event shall IBM be liable to any party for direct, indirect, special
138  * incidental, or consequential damage arising out of the use of this software
139  * even if IBM Corp. has been advised of the possibility of such damage.
140
141  * IBM CORP. SPECIFICALLY DISCLAIMS ANY WARRANTIES INCLUDING, BUT NOT LIMITED
142  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
143  * PURPOSE.  THE SOFTWARE PROVIDED HEREUNDER IS ON AN "AS IS" BASIS AND IBM
144  * CORP. HAS NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES,
145  * ENHANCEMENTS, OR MODIFICATIONS.
146  * ***************************************************************************
147  **/
148
149 List of files:
150  examples/smpi/scatter.c
151  examples/smpi/reduce.c
152  examples/smpi/allreduce.c
153  examples/smpi/alltoall2.c
154
155
156 =========================================================================
157
158 The SMPI testsuite was borrowed from the MPICH3 test files. It can be found
159 inside ./teshsuite/smpi/mpich3-test. Some of the collective algorithms
160 available in src/smpi/colls/ were also copied from MPICH
161
162
163 /*
164  *  (C) 2001 by Argonne National Laboratory.
165  *      See COPYRIGHT in top-level directory.
166  */
167 <------------- COPYRIGHT file in the top-level ----------------------->
168
169                                   COPYRIGHT
170
171 The following is a notice of limited availability of the code, and disclaimer
172 which must be included in the prologue of the code and in all source listings
173 of the code.
174
175 Copyright Notice
176  + 2002 University of Chicago
177
178 Permission is hereby granted to use, reproduce, prepare derivative works, and
179 to redistribute to others.  This software was authored by:
180
181 Mathematics and Computer Science Division
182 Argonne National Laboratory, Argonne IL 60439
183
184 (and)
185
186 Department of Computer Science
187 University of Illinois at Urbana-Champaign
188
189
190                               GOVERNMENT LICENSE
191
192 Portions of this material resulted from work developed under a U.S.
193 Government Contract and are subject to the following license: the Government
194 is granted for itself and others acting on its behalf a paid-up, nonexclusive,
195 irrevocable worldwide license in this computer software to reproduce, prepare
196 derivative works, and perform publicly and display publicly.
197
198                                   DISCLAIMER
199
200 This computer code material was prepared, in part, as an account of work
201 sponsored by an agency of the United States Government.  Neither the United
202 States, nor the University of Chicago, nor any of their employees, makes any
203 warranty express or implied, or assumes any legal liability or responsibility
204 for the accuracy, completeness, or usefulness of any information, apparatus,
205 product, or process disclosed, or represents that its use would not infringe
206 privately owned rights.
207
208
209 <-------------------- end of MPICH2 COPYRIGHT file -------------------->
210
211
212 =========================================================================
213
214
215 The directory examples/smpi/NAS contains a tweaked version of the
216 NAS Parallel Benchmark Team. The original software were retrieved from
217 here: http://www.nas.nasa.gov/Software/NPB
218
219 According to [1], this code is probably distributed under the NASA
220 Open Source Agreement (NOSA) version 1.3. Its text can be found at [2].
221 [1] http://www.nas.nasa.gov/Resources/Software/Open-Source/opensource.html
222 [2] http://www.opensource.org/licenses/nasa1.3.php
223
224 The changes over the original version are minor, and can be
225 distributed under the LGPL license (v2.1) or NOSA (v1.3 or higher)
226 licences, at your option.
227
228 ==========================================================================
229
230 Some of the collective algorithms inside src/smpi/colls folder are taken
231 from the STAR-MPI suite. The original software was retrieved from here:
232 http://star-mpi.sourceforge.net/
233
234 Copyright (c) 2006, Ahmad Faraj & Xin Yuan,
235 All rights reserved.
236
237 Redistribution and use in source and binary forms, with or without
238 modification, are permitted provided that the following conditions are met:
239
240   * Redistributions of source code must retain the above copyright notice,
241     this list of conditions and the following disclaimer.
242
243   * Redistributions in binary form must reproduce the above copyright notice,
244     this list of conditions and the following disclaimer in the documentation
245     and/or other materials provided with the distribution.
246
247   * Neither the name of the Florida State University nor the names of its
248     contributors may be used to endorse or promote products derived from this
249     software without specific prior written permission.
250
251 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
252 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
253 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
254 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
255 ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
256 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
257 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
258 ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
259 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
260 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
261
262   ***************************************************************************
263   *     Any results obtained from executing this software require the       *
264   *     acknowledgment and citation of the software and its owners.         *
265   *     The full citation is given below:                                   *
266   *                                                                         *
267   *     A. Faraj, X. Yuan, and D. Lowenthal. "STAR-MPI: Self Tuned Adaptive *
268   *     Routines for MPI Collective Operations." The 20th ACM International *
269   *     Conference on Supercomputing (ICS), Queensland, Australia           *
270   *     June 28-July 1, 2006.                                               *
271   ***************************************************************************
272
273 ==========================================================================
274
275 Some of the collective algorithms inside src/smpi/colls folder are taken
276 from the OpenMPI. The original software was retrieved from here:
277 http://www.open-mpi.org/
278
279 Most files in this release are marked with the copyrights of the
280 organizations who have edited them.  The copyrights below are in no
281 particular order and generally reflect members of the Open MPI core
282 team who have contributed code to this release.  The copyrights for
283 code used under license from other parties are included in the
284 corresponding files.
285
286 Copyright (c) 2004-2010 The Trustees of Indiana University and Indiana
287                         University Research and Technology
288                         Corporation.  All rights reserved.
289 Copyright (c) 2004-2010 The University of Tennessee and The University
290                         of Tennessee Research Foundation.  All rights
291                         reserved.
292 Copyright (c) 2004-2010 High Performance Computing Center Stuttgart,
293                         University of Stuttgart.  All rights reserved.
294 Copyright (c) 2004-2008 The Regents of the University of California.
295                         All rights reserved.
296 Copyright (c) 2006-2010 Los Alamos National Security, LLC.  All rights
297                         reserved.
298 Copyright (c) 2006-2010 Cisco Systems, Inc.  All rights reserved.
299 Copyright (c) 2006-2010 Voltaire, Inc. All rights reserved.
300 Copyright (c) 2006-2011 Sandia National Laboratories. All rights reserved.
301 Copyright (c) 2006-2010 Sun Microsystems, Inc.  All rights reserved.
302                         Use is subject to license terms.
303 Copyright (c) 2006-2010 The University of Houston. All rights reserved.
304 Copyright (c) 2006-2009 Myricom, Inc.  All rights reserved.
305 Copyright (c) 2007-2008 UT-Battelle, LLC. All rights reserved.
306 Copyright (c) 2007-2010 IBM Corporation.  All rights reserved.
307 Copyright (c) 1998-2005 Forschungszentrum Juelich, Juelich Supercomputing
308                         Centre, Federal Republic of Germany
309 Copyright (c) 2005-2008 ZIH, TU Dresden, Federal Republic of Germany
310 Copyright (c) 2007      Evergrid, Inc. All rights reserved.
311 Copyright (c) 2008      Chelsio, Inc.  All rights reserved.
312 Copyright (c) 2008-2009 Institut National de Recherche en
313                         Informatique.  All rights reserved.
314 Copyright (c) 2007      Lawrence Livermore National Security, LLC.
315                         All rights reserved.
316 Copyright (c) 2007-2009 Mellanox Technologies.  All rights reserved.
317 Copyright (c) 2006-2010 QLogic Corporation.  All rights reserved.
318 Copyright (c) 2008-2010 Oak Ridge National Labs.  All rights reserved.
319 Copyright (c) 2006-2010 Oracle and/or its affiliates.  All rights reserved.
320 Copyright (c) 2009      Bull SAS.  All rights reserved.
321 Copyright (c) 2010      ARM ltd.  All rights reserved.
322 Copyright (c) 2010-2011 Alex Brick <bricka@ccs.neu.edu>.  All rights reserved.
323 Copyright (c) 2012      The University of Wisconsin-La Crosse. All rights
324                         reserved.
325
326 $COPYRIGHT$
327
328 Additional copyrights may follow
329
330 $HEADER$
331
332 Redistribution and use in source and binary forms, with or without
333 modification, are permitted provided that the following conditions are
334 met:
335
336 - Redistributions of source code must retain the above copyright
337   notice, this list of conditions and the following disclaimer.
338
339 - Redistributions in binary form must reproduce the above copyright
340   notice, this list of conditions and the following disclaimer listed
341   in this license in the documentation and/or other materials
342   provided with the distribution.
343
344 - Neither the name of the copyright holders nor the names of its
345   contributors may be used to endorse or promote products derived from
346   this software without specific prior written permission.
347
348 The copyright holders provide no reassurances that the source code
349 provided does not infringe any patent, copyright, or any other
350 intellectual property rights of third parties.  The copyright holders
351 disclaim any liability to any recipient for claims brought against
352 recipient by any third party for infringement of that parties
353 intellectual property rights.
354
355 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
356 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
357 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
358 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
359 OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
360 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
361 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
362 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
363 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
364 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
365 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
366
367 ==========================================================================
368
369 Some collective algorithms and selection logic has been taken from MVAPICH2, available on http://mvapich.cse.ohio-state.edu/
370
371
372                          COPYRIGHT
373
374 Copyright (c) 2001-2014, The Ohio State University. All rights
375 reserved.
376
377 The MVAPICH2 software package is developed by the team members of The
378 Ohio State University's Network-Based Computing Laboratory (NBCL),
379 headed by Professor Dhabaleswar K. (DK) Panda.
380
381 Contact:
382 Prof. Dhabaleswar K. (DK) Panda
383 Dept. of Computer Science and Engineering
384 The Ohio State University
385 2015 Neil Avenue
386 Columbus, OH - 43210-1277
387 Tel: (614)-292-5199; Fax: (614)-292-2911
388 E-mail:panda@cse.ohio-state.edu
389
390 This program is available under BSD licensing.
391
392 Redistribution and use in source and binary forms, with or without
393 modification, are permitted provided that the following conditions are
394 met:
395
396 (1) Redistributions of source code must retain the above copyright
397 notice, this list of conditions and the following disclaimer.
398
399 (2) Redistributions in binary form must reproduce the above copyright
400 notice, this list of conditions and the following disclaimer in the
401 documentation and/or other materials provided with the distribution.
402
403 (3) Neither the name of The Ohio State University nor the names of
404 their contributors may be used to endorse or promote products derived
405 from this software without specific prior written permission.
406
407 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
408 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
409 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
410 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
411 OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
412 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
413 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
414 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
415 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
416 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
417 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
418
419 ==========================================================================
420
421 Torus Cluster support is based on the works of Christian Heinrich
422
423 /* Copyright (c) 2012
424  * Christian Heinrich, National Center for Supercomputing Applications
425  *                     University of Illinois <cheinric@illinois.edu>
426  * All rights reserved
427  */
428
429 /* This program is free software; you can redistribute it and/or modify it
430  * under the terms of the license (GNU LGPL) which comes with this package. */