Herramientas de usuario

Herramientas del sitio


wiki:licencias

Diferencias

Muestra las diferencias entre dos versiones de la página.

Enlace a la vista de comparación

Ambos lados, revisión anteriorRevisión previa
Próxima revisión
Revisión previa
Ambos lados, revisión siguiente
wiki:licencias [2022/08/16 14:46]
srgualpa [Modo uso de Slurm]
wiki:licencias [2022/08/17 13:41] (actual)
srgualpa [Licencias]
Línea 894: Línea 894:
          
 </CSS> </CSS>
-======= SLURM =======+======= Licencias =======
                                        
 <HTML> <HTML>
-<!--  ------------------------------------------------------PARTE SLURM---------------------------------------------------------------------------- -->+<!--  ---------------------------------------------------------------------------------------------------------------------------------- --
 +<p>Las licencias de software son un contrato de autorización sobre la obra entre el autor del programa y el usuario, en el cual definen con precisión los deberes de ambas partes. El autor tiene derecho intelectual exclusivo y concede a otros permisos utilizando licencias de software.</p>
  
-  <!-- <h1  id=""><div class="divSlurm">SLURM</div></h1>  --> 
  
-     <div class="explicacionSlurm"> 
  
-         <p><a href="https://slurm.schedmd.com/"> Slurm (Simple Linux Utility for Resource Management)</a> es un sistema de gestión de recursos en clusters de computadorasNos permite asignar los recursos computacionales (núcleos, memoria, gpu, etc.) de una forma equitativa a medida de su disposición. +  <!--   <p><a href="https://slurm.schedmd.com/"> Licencias</a> e. </p>--> 
-         </p>+ 
 +   
  
-    </div> 
-    <div class="recuadro">     
-        <br><h3><center>Entidades manejadas por los servicios de Slurm</center></h3> 
-        <p> 
-            <b>Nodos:</b>&nbsp;Sistema multiprocesador perteneciente al cluster<br><br> 
-            <b>Particiones:</b>&nbsp;es un mecanismo de agrupar en forma lógica los nodos. Sin importar el número de nodos que se disponen se puede crear la cantidad de particiones que uno desee. Un nodo puede pertenecer a varias particiones. Cada partición tiene sus propios parámetros: tiempo límite de trabajo, usuarios permitidos, que nodos la componen, etc. 
-            <br> <br>   
-              <b>Trabajos:</b>&nbsp;Un trabajo o job es la asignación de recursos a un usuario específico por una cantidad de tiempo determinada.<br><br> 
-            <b>Tareas:</b>&nbsp;Son el conjunto de programas (seriales o paralelas) que serán ejecutadas dentro de un trabajo.<br>  
-         </p> 
-    </div> 
     <br>     <br>
 <!--  ---------------------------------------------------------------------------------------------------------------------------------- --> <!--  ---------------------------------------------------------------------------------------------------------------------------------- -->
Línea 922: Línea 911:
 </HTML>     </HTML>    
  
-=====Ejemplos Script Slurm=====+=====Ejemplos de licencias de software=====
 <HTML>    <HTML>   
          <!--  ---------------------------------------------------------------------------------------------------------------------------------- -->          <!--  ---------------------------------------------------------------------------------------------------------------------------------- -->
  
-<button class="botonPanel"  >Scripts Slurm Clemente</button> + 
-<div class="panel"> +     <button class="botonPanel"  >MIT</button>
-     <button class="botonPanel"  >GPU</button>+
      <div class="panel">      <div class="panel">
          <br>          <br>
          <ul class="ul1">          <ul class="ul1">
-            <li class="li1">Tarea: ejecutar programas utilizando gpu </li> +            <li class="li1"> </li> 
-            <li class="li1">Ejecuciónsbatch submit_gpu_job.sh </li> +            <li class="li1">Wikipediahttps://es.wikipedia.org/wiki/Licencia_MIT </li> 
-            <li class="li1">Particióngpu </li> +            <li class="li1">CopyleftNO </li> 
-            <li class="li1">Tiempo máximo: 3 días </li>+            <li class="li1">Utilizable con otras licencias</li>
  
          </ul>              </ul>    
          <br>          <br>
 </HTML>          </HTML>         
-        <file c submit_gpu_job.sh[enable_line_numbers="true",highlight_lines_extra="7,10,11,14,17,28,32"]> +        <file txt LICENSE[enable_line_numbers="true",highlight_lines_extra="11,12,13,14,15,16,17"]> 
-                #!/bin/bash+               MIT License
  
-                ### Las líneas #SBATCH configuran los recursos de la tarea +Copyright (c<YEAR> <COPYRIGHT HOLDER>
-                ### (aunque parezcan estar comentadas)+
  
-                ### Nombre de la tarea +Permission is hereby granted, free of charge, to any person obtaining a copy 
-                #SBATCH --job-name=gpu_job+of this software and associated documentation files (the "Software"), to deal 
 +in the Software without restriction, including without limitation the rights 
 +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 
 +copies of the Software, and to permit persons to whom the Software is 
 +furnished to do so, subject to the following conditions:
  
-                ### Cola de trabajos a la cual enviar. +The above copyright notice and this permission notice shall be included in all 
-                #SBATCH --partition=gpu +copies or substantial portions of the Software.
-                #SBATCH --gres=gpu:1+
  
-                ### Procesos a largar. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
-                ### Por defectose usa un solo proceso para tareas GPU. +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY
-                #SBATCH --ntasks-per-node=1 +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENTIN NO EVENT SHALL THE 
- +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
-                ### Tiempo de ejecucion. Formato dias-horas:minutos+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 
-                #SBATCH --time 3-0:00 +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 
- +SOFTWARE.
-                ### Script que se ejecuta al arrancar el trabajo +
- +
-                ### Cargar el entorno del usuario incluyendo la funcionalidad de modules +
-                ### No tocar +
-                /etc/profile +
- +
-                ### Cargar los módulos para la tarea +
-                # FALTA: Agregar los módulos necesarios +
-                module load gcc +
-                module load cuda +
-                ### Largar el programa +
-                # FALTA: Cambiar el nombre del programa +
-                srun NOMBRE_DEL_PROGRAMA+
         </file>         </file>
 <HTML>  <HTML> 
Línea 981: Línea 958:
          <br>          <br>
          <ul class="ul1">          <ul class="ul1">
-            <li class="li1">Tareaejecutar programas utilizando mpi </li> +            <li class="li1">Wikipedia: https://es.wikipedia.org/wiki/Licencia_BSD </li> 
-            <li class="li1">Ejecución: sbatch submit_mpi_job.sh </li> +            <li class="li1">CopyleftNO </li> 
-            <li class="li1">Particiónbatch </li> +            <li class="li1">Utilizable con otras licencias</li>
-            <li class="li1">Tiempo máximo: 3 días  </li>+
          </ul>              </ul>    
          <br>          <br>
Línea 991: Línea 967:
 BSD 3-Clause License BSD 3-Clause License
  
-Copyright (c) 2022, varios_iate+Copyright (c) <YEAR> <COPYRIGHT HOLDER>
 All rights reserved. All rights reserved.
  
Línea 1021: Línea 997:
 <HTML>   <HTML>  
     </div>     </div>
-     
-    <button class="botonPanel"  >Unlicense</button> 
-     <div class="panel"> 
-         <br> 
-         <ul class="ul1"> 
-            <li class="li1">Tarea: ejecutar programas utilizando OPENMP </li> 
-            <li class="li1">Ejecución: sbatch openmp </li> 
-            <li class="li1">Partición: batch </li> 
-            <li class="li1">Tiempo máximo: 3 días </li> 
-         </ul>     
-         <br> 
-</HTML>          
-        <file c LICENSE[enable_line_numbers="true",highlight_lines_extra="1,3,4,5,6,16,17,18,19,20"]> 
-This is free and unencumbered software released into the public domain. 
  
-Anyone is free to copy, modify, publish, use, compile, sell, or 
-distribute this software, either in source code form or as a compiled 
-binary, for any purpose, commercial or non-commercial, and by any 
-means. 
- 
-In jurisdictions that recognize copyright laws, the author or authors 
-of this software dedicate any and all copyright interest in the 
-software to the public domain. We make this dedication for the benefit 
-of the public at large and to the detriment of our heirs and 
-successors. We intend this dedication to be an overt act of 
-relinquishment in perpetuity of all present and future rights to this 
-software under copyright law. 
- 
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 
-EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 
-MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 
-IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR 
-OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 
-ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 
-OTHER DEALINGS IN THE SOFTWARE. 
- 
-For more information, please refer to <https://unlicense.org> 
-        </file> 
-<HTML> 
-    </div> 
          
          
Línea 1069: Línea 1006:
     </div>     </div>
  
-     +
-    </div>+
     <br>               <br>          
     <br>               <br>          
wiki/licencias.1660661191.txt.gz · Última modificación: 2022/08/16 14:46 por srgualpa