http://en.wikipedia.org/wiki/Web-based_SSH
http://liftoffsoftware.com/Products/GateOne
http://code.google.com/p/shellinabox/
También se hicieron pruebas sobre PVM
Se instalo y se corrieron ejemplos
(Esta en proceso un tutorial para la instalacion de PVM)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <pvm3.h> | |
int main() | |
{ | |
int mytid; | |
mytid = pvm_mytid(); | |
printf("My TID is %d\n", mytid); | |
pvm_exit(); | |
return 0; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ gcc hello.c -o hello -lpvm3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#include <pvm3.h> | |
int main() | |
{ | |
int myTID; | |
int x = 12; | |
int children[10]; | |
int res; | |
myTID = pvm_mytid(); | |
printf("Master: TID is %d\n", myTID); | |
res = pvm_spawn("slave", NULL, PvmTaskDefault, "", 1, children); | |
if (res<1) { | |
printf("Master: pvm_spawn error\n"); | |
pvm_exit(); | |
exit(1); | |
} | |
pvm_initsend(PvmDataDefault); | |
pvm_pkint(&x, 1, 1); | |
pvm_send(children[0], 1); | |
pvm_recv(-1, -1); | |
pvm_upkint(&x, 1, 1); | |
printf("Master has received x=%d\n", x); | |
pvm_exit(); | |
return 0; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ gcc -o master master.c -lpvm3 | |
$ gcc -o slave slave.c -lpvm3 |
Nominaciones:
Juan Carlos http://jcecdps.blogspot.mx/2012/05/dps-class-benchmarks.html
Osvaldo : http://4imedio.blogspot.mx/2012/05/reporte-semana-14-paralelos.html
1 comentarios:
Bien; 5.
Publicar un comentario