I just visited the Cluster Monkey page, and I was amazed to see that my article on Building a Virtual Cluster with Xen got nearly 48000 visits!!! I guess it was a popular one… I should update it, since Xen has had a lot of progress since I wrote it.
Archive for April 25th, 2008
Building A Virtual Cluster with Xen
Posted by angeldevicente on April 25, 2008
Posted in Admin | Tagged: Xen | Leave a Comment »
Anti-blot system (SPOJ)
Posted by angeldevicente on April 25, 2008
I just decided a couple of days ago to start a daily “programming gym” session, to keep my programming skills sharp, since otherwise there are long periods of time in which I don’t do any programming, and the “trade” suffers.
Languages to practice will vary, but at present the focus will be in Fortran. And the problems to solve will come from Sphere Online Judge.
The first program to try has been ABSYS, and here is the code for it:
PROGRAM ABSYS
IMPLICIT NONECHARACTER :: mas, igual
CHARACTER (LEN=50) :: dato1,dato2,resultado
INTEGER :: sets,count,idato1,idato2,iresultadoREAD*, sets
DO count=1,sets
READ*, dato1,mas,dato2,igual,resultado
CALL convert(dato1,idato1)
CALL convert(dato2,idato2)
CALL convert(resultado,iresultado)IF (idato1 .EQ. -1) WRITE(*,’(I0,A,I0,A,I0)’) iresultado-idato2, ” + “, idato2, ” = “, iresultado
IF (idato2 .EQ. -1) WRITE(*,’(I0,A,I0,A,I0)’) idato1, ” + “, iresultado-idato1, ” = “, iresultado
IF (iresultado .EQ. -1) WRITE(*,’(I0,A,I0,A,I0)’) idato1, ” + “, idato2, ” = “, idato1+idato2
END DOCONTAINS
SUBROUTINE convert(dato,idato)
CHARACTER (LEN=*) :: dato
INTEGER :: idato, pospos = INDEX(dato,”machula”)
IF (pos .EQ. 0) THEN
READ (dato,’(I50)’), idato
ELSE
idato = -1
END IFEND SUBROUTINE convert
END PROGRAM ABSYS
The program is trivial, but there are a couple of things to note:
- In Fortran, to print a number with just the minimum necessary width, the edit descriptor is I0.
- There are no intrinsic functions to convert a string to a number or viceversa, but instead we use what it is called an internal file, and we can write something like “READ (dato,’(I50)’), idato”
Posted in Fortran | Tagged: SPOJ | Leave a Comment »
Fortran Compiler Comparisons
Posted by angeldevicente on April 25, 2008
Just yesterday, Polyhedron Software announced a comparative study of different Fortran compilers, which can be found at: http://www.polyhedron.com/compare0html
Posted in Fortran | Leave a Comment »