Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: Renardp
  • Content: Threads
  • Order by date
  1. Renardp

    Multi-core system

    Hello, I know that a process on a 32 bits machine could use only 4 GB of RAM. On a multi-core system like Intel dual(quad)-core it is possible for a program to use 8(16) GB of RAM ? Thanks.
  2. Renardp

    Parallel Fortran

    Hello, I want to devlop a Fortran CFD code for a multicore machine, could someone recomand me a good tutorial in MPI or OpenMP (I'm not sure what is the best choice for my problem). Thanks
  3. Renardp

    Mixing integers with characters ?

    Hi all, I have a problem when I try to output in a file something like: "vertex.1" "vertex.2" ............ I could solve the problem with the next code, but this is rather clumsy: character*10 aux n=10 open(10,file='scratch') ! this is not very nice ... open(11,file='rez.txt') do i=1,n...
  4. Renardp

    EOF() intrinsic function ?

    Hi all, I have a problem with reading a file in wich i don't know in advance how much lines i need to read. In the past I could solve the problem with the next lines: .... open(10,file='data.txt') do while(.not.eof(10)) read(10,*)x enddo .... this solution works well with Compaq...

Part and Inventory Search

Back
Top