Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix compilation when enable_smpi=OFF
[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 mechanism (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 xbt/mmalloc module was adapted from the mmalloc module of gdb.
78 Both the simgrid version and the original version is distributed under
79 the LGPL v2.1
80
81 This affects the files in directory src/xbt/mmalloc and
82 include/xbt/mmalloc.h
83
84 =========================================================================
85
86 Some examples for SMPI were borowed from an IBM test suite.
87 Their copyright is the following:
88 /**
89  * MESSAGE PASSING INTERFACE TEST CASE SUITE
90  *
91  * Copyright IBM Corp. 1995
92  *
93  * IBM Corp. hereby grants a non-exclusive license to use, copy, modify, and
94  *distribute this software for any purpose and without fee provided that the
95  *above copyright notice and the following paragraphs appear in all copies.
96
97  * IBM Corp. makes no representation that the test cases comprising this
98  * suite are correct or are an accurate representation of any standard.
99
100  * In no event shall IBM be liable to any party for direct, indirect, special
101  * incidental, or consequential damage arising out of the use of this software
102  * even if IBM Corp. has been advised of the possibility of such damage.
103
104  * IBM CORP. SPECIFICALLY DISCLAIMS ANY WARRANTIES INCLUDING, BUT NOT LIMITED
105  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
106  * PURPOSE.  THE SOFTWARE PROVIDED HEREUNDER IS ON AN "AS IS" BASIS AND IBM
107  * CORP. HAS NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES,
108  * ENHANCEMENTS, OR MODIFICATIONS.
109  * ***************************************************************************
110  **/
111
112 List of files:
113  examples/smpi/scatter.c
114  examples/smpi/reduce.c
115  examples/smpi/allreduce.c
116  examples/smpi/alltoall2.c
117
118
119 =========================================================================
120
121 The SMPI testsuite was borrowed from the MPICH3 test files. It can be found
122 inside ./teshsuite/smpi/mpich3-test. Some of the collective algorithms
123 available in src/smpi/colls/ were also copied from MPICH
124
125
126 /*
127  *  (C) 2001 by Argonne National Laboratory.
128  *      See COPYRIGHT in top-level directory.
129  */
130 <------------- COPYRIGHT file in the top-level ----------------------->
131
132                                   COPYRIGHT
133
134 The following is a notice of limited availability of the code, and disclaimer
135 which must be included in the prologue of the code and in all source listings
136 of the code.
137
138 Copyright Notice
139  + 2002 University of Chicago
140
141 Permission is hereby granted to use, reproduce, prepare derivative works, and
142 to redistribute to others.  This software was authored by:
143
144 Mathematics and Computer Science Division
145 Argonne National Laboratory, Argonne IL 60439
146
147 (and)
148
149 Department of Computer Science
150 University of Illinois at Urbana-Champaign
151
152
153                               GOVERNMENT LICENSE
154
155 Portions of this material resulted from work developed under a U.S.
156 Government Contract and are subject to the following license: the Government
157 is granted for itself and others acting on its behalf a paid-up, nonexclusive,
158 irrevocable worldwide license in this computer software to reproduce, prepare
159 derivative works, and perform publicly and display publicly.
160
161                                   DISCLAIMER
162
163 This computer code material was prepared, in part, as an account of work
164 sponsored by an agency of the United States Government.  Neither the United
165 States, nor the University of Chicago, nor any of their employees, makes any
166 warranty express or implied, or assumes any legal liability or responsibility
167 for the accuracy, completeness, or usefulness of any information, apparatus,
168 product, or process disclosed, or represents that its use would not infringe
169 privately owned rights.
170
171
172 <-------------------- end of MPICH2 COPYRIGHT file -------------------->
173
174
175 =========================================================================
176
177
178 The directory examples/smpi/NAS contains a tweaked version of the
179 NAS Parallel Benchmark Team. The original software were retrieved from
180 here: http://www.nas.nasa.gov/Software/NPB
181
182 According to [1], this code is probably distributed under the NASA
183 Open Source Agreement (NOSA) version 1.3. Its text can be found at [2].
184 [1] http://www.nas.nasa.gov/Resources/Software/Open-Source/opensource.html
185 [2] http://www.opensource.org/licenses/nasa1.3.php
186
187 The changes over the original version are minor, and can be
188 distributed under the LGPL license (v2.1) or NOSA (v1.3 or higher)
189 licences, at your option.
190
191 ==========================================================================
192
193 Some of the collective algorithms inside src/smpi/colls folder are taken
194 from the STAR-MPI suite. The original software was retrieved from here:
195 http://star-mpi.sourceforge.net/
196
197 Copyright (c) 2006, Ahmad Faraj & Xin Yuan,
198 All rights reserved.
199
200 Redistribution and use in source and binary forms, with or without
201 modification, are permitted provided that the following conditions are met:
202
203   * Redistributions of source code must retain the above copyright notice,
204     this list of conditions and the following disclaimer.
205
206   * Redistributions in binary form must reproduce the above copyright notice,
207     this list of conditions and the following disclaimer in the documentation
208     and/or other materials provided with the distribution.
209
210   * Neither the name of the Florida State University nor the names of its
211     contributors may be used to endorse or promote products derived from this
212     software without specific prior written permission.
213
214 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
215 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
216 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
217 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
218 ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
219 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
220 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
221 ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
222 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
223 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
224
225   ***************************************************************************
226   *     Any results obtained from executing this software require the       *
227   *     acknowledgment and citation of the software and its owners.         *
228   *     The full citation is given below:                                   *
229   *                                                                         *
230   *     A. Faraj, X. Yuan, and D. Lowenthal. "STAR-MPI: Self Tuned Adaptive *
231   *     Routines for MPI Collective Operations." The 20th ACM International *
232   *     Conference on Supercomputing (ICS), Queensland, Australia           *
233   *     June 28-July 1, 2006.                                               *
234   ***************************************************************************
235
236 ==========================================================================
237
238 Some of the collective algorithms inside src/smpi/colls folder are taken
239 from the OpenMPI. The original software was retrieved from here:
240 http://www.open-mpi.org/
241
242 Most files in this release are marked with the copyrights of the
243 organizations who have edited them.  The copyrights below are in no
244 particular order and generally reflect members of the Open MPI core
245 team who have contributed code to this release.  The copyrights for
246 code used under license from other parties are included in the
247 corresponding files.
248
249 Copyright (c) 2004-2010 The Trustees of Indiana University and Indiana
250                         University Research and Technology
251                         Corporation.  All rights reserved.
252 Copyright (c) 2004-2010 The University of Tennessee and The University
253                         of Tennessee Research Foundation.  All rights
254                         reserved.
255 Copyright (c) 2004-2010 High Performance Computing Center Stuttgart,
256                         University of Stuttgart.  All rights reserved.
257 Copyright (c) 2004-2008 The Regents of the University of California.
258                         All rights reserved.
259 Copyright (c) 2006-2010 Los Alamos National Security, LLC.  All rights
260                         reserved.
261 Copyright (c) 2006-2010 Cisco Systems, Inc.  All rights reserved.
262 Copyright (c) 2006-2010 Voltaire, Inc. All rights reserved.
263 Copyright (c) 2006-2011 Sandia National Laboratories. All rights reserved.
264 Copyright (c) 2006-2010 Sun Microsystems, Inc.  All rights reserved.
265                         Use is subject to license terms.
266 Copyright (c) 2006-2010 The University of Houston. All rights reserved.
267 Copyright (c) 2006-2009 Myricom, Inc.  All rights reserved.
268 Copyright (c) 2007-2008 UT-Battelle, LLC. All rights reserved.
269 Copyright (c) 2007-2010 IBM Corporation.  All rights reserved.
270 Copyright (c) 1998-2005 Forschungszentrum Juelich, Juelich Supercomputing
271                         Centre, Federal Republic of Germany
272 Copyright (c) 2005-2008 ZIH, TU Dresden, Federal Republic of Germany
273 Copyright (c) 2007      Evergrid, Inc. All rights reserved.
274 Copyright (c) 2008      Chelsio, Inc.  All rights reserved.
275 Copyright (c) 2008-2009 Institut National de Recherche en
276                         Informatique.  All rights reserved.
277 Copyright (c) 2007      Lawrence Livermore National Security, LLC.
278                         All rights reserved.
279 Copyright (c) 2007-2009 Mellanox Technologies.  All rights reserved.
280 Copyright (c) 2006-2010 QLogic Corporation.  All rights reserved.
281 Copyright (c) 2008-2010 Oak Ridge National Labs.  All rights reserved.
282 Copyright (c) 2006-2010 Oracle and/or its affiliates.  All rights reserved.
283 Copyright (c) 2009      Bull SAS.  All rights reserved.
284 Copyright (c) 2010      ARM ltd.  All rights reserved.
285 Copyright (c) 2010-2011 Alex Brick <bricka@ccs.neu.edu>.  All rights reserved.
286 Copyright (c) 2012      The University of Wisconsin-La Crosse. All rights
287                         reserved.
288
289 $COPYRIGHT$
290
291 Additional copyrights may follow
292
293 $HEADER$
294
295 Redistribution and use in source and binary forms, with or without
296 modification, are permitted provided that the following conditions are
297 met:
298
299 - Redistributions of source code must retain the above copyright
300   notice, this list of conditions and the following disclaimer.
301
302 - Redistributions in binary form must reproduce the above copyright
303   notice, this list of conditions and the following disclaimer listed
304   in this license in the documentation and/or other materials
305   provided with the distribution.
306
307 - Neither the name of the copyright holders nor the names of its
308   contributors may be used to endorse or promote products derived from
309   this software without specific prior written permission.
310
311 The copyright holders provide no reassurances that the source code
312 provided does not infringe any patent, copyright, or any other
313 intellectual property rights of third parties.  The copyright holders
314 disclaim any liability to any recipient for claims brought against
315 recipient by any third party for infringement of that parties
316 intellectual property rights.
317
318 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
319 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
320 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
321 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
322 OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
323 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
324 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
325 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
326 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
327 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
328 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
329
330 ==========================================================================
331
332 Some collective algorithms and selection logic has been taken from MVAPICH2, available on http://mvapich.cse.ohio-state.edu/
333
334
335                          COPYRIGHT
336
337 Copyright (c) 2001-2014, The Ohio State University. All rights
338 reserved.
339
340 The MVAPICH2 software package is developed by the team members of The
341 Ohio State University's Network-Based Computing Laboratory (NBCL),
342 headed by Professor Dhabaleswar K. (DK) Panda.
343
344 Contact:
345 Prof. Dhabaleswar K. (DK) Panda
346 Dept. of Computer Science and Engineering
347 The Ohio State University
348 2015 Neil Avenue
349 Columbus, OH - 43210-1277
350 Tel: (614)-292-5199; Fax: (614)-292-2911
351 E-mail:panda@cse.ohio-state.edu
352
353 This program is available under BSD licensing.
354
355 Redistribution and use in source and binary forms, with or without
356 modification, are permitted provided that the following conditions are
357 met:
358
359 (1) Redistributions of source code must retain the above copyright
360 notice, this list of conditions and the following disclaimer.
361
362 (2) Redistributions in binary form must reproduce the above copyright
363 notice, this list of conditions and the following disclaimer in the
364 documentation and/or other materials provided with the distribution.
365
366 (3) Neither the name of The Ohio State University nor the names of
367 their contributors may be used to endorse or promote products derived
368 from this software without specific prior written permission.
369
370 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
371 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
372 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
373 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
374 OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
375 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
376 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
377 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
378 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
379 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
380 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
381
382 ==========================================================================
383
384 Torus Cluster support is based on the works of Christian Heinrich
385
386 /* Copyright (c) 2012
387  * Christian Heinrich, National Center for Supercomputing Applications
388  *                     University of Illinois <cheinric@illinois.edu>
389  * All rights reserved
390  */
391
392 /* This program is free software; you can redistribute it and/or modify it
393  * under the terms of the license (GNU LGPL) which comes with this package. */