00001 00075 00076 00159 00219 00241 00285 00286 00287 program info 00288 implicit none 00289 00290 00291 print*, " " 00292 print*, "****************** Frotran Mathematics Library ******************" 00293 print*, " " 00294 00295 print*, "This code has been performed by Abal-Kassim Cheik Ahamed," 00296 print*, "It is freed at Ecole Internationale des Sciences du Traitement de l'Information (EISTI)" 00297 print*, "and Universit of Cergy-Pontoise (UCP) under licence CeCILL." 00298 print*, "" 00299 print*, "Copyright or (c) or Copr. Abal-Kassim Cheik Ahamed (student of EISTI<www.eisti.fr> and " 00300 print*, "University of Cergy<www.u-cergy.fr> (May 01 2011)" 00301 print*, "" 00302 print*, "akcheik@gmail.com" 00303 print*, "" 00304 print*, "This software is a computer program whose purpose is to fortran mathematics" 00305 print*, "library and some solve linear equation in high performance computing." 00306 print*, "" 00307 print*, "This software is governed by the CeCILL license under French law and" 00308 print*, "abiding by the rules of distribution of free software. You can use," 00309 print*, "modify and/ or redistribute the software under the terms of the CeCILL" 00310 print*, "license as circulated by CEA, CNRS and INRIA at the following URL" 00311 print*, '"http://www.cecill.info". ' 00312 print*, "" 00313 print*, "As a counterpart to the access to the source code and rights to copy," 00314 print*, "modify and redistribute granted by the license, users are provided only" 00315 print*, "with a limited warranty and the software's author, the holder of the" 00316 print*, "economic rights, and the successive licensors have only limited" 00317 print*, "liability. " 00318 print*, "" 00319 print*, "In this respect, the user's attention is drawn to the risks associated" 00320 print*, "with loading, using, modifying and/or developing or reproducing the" 00321 print*, "software by the user in light of its specific status of free software," 00322 print*, "that may mean that it is complicated to manipulate, and that also" 00323 print*, "therefore means that it is reserved for developers and experienced" 00324 print*, "professionals having in-depth computer knowledge. Users are therefore" 00325 print*, "encouraged to load and test the software's suitability as regards their" 00326 print*, "requirements in conditions enabling the security of their systems and/or" 00327 print*, "data to be ensured and, more generally, to use and operate it in the" 00328 print*, "same conditions as regards security." 00329 print*, "" 00330 print*, "The fact that you are presently reading this means that you have had" 00331 print*, "knowledge of the CeCILL license and that you accept its terms." 00332 print*, " " 00333 print*, " " 00334 print*, "Bibliography : I use some existant algorithm (Youcef Saad, !> ... .)" 00335 print*, " " 00336 print*, "***** Note: first version without MPI and CUDA " 00337 print*, " " 00338 print*, "contact : Abal-Kassim Cheik Ahamed <akcheik@gmail.com>" 00339 print*, " " 00340 00341 00342 end program info 00343