Thread: type of a workstation for parallel computing

  1. #1
    Registered User
    Join Date
    Jan 2009
    Posts
    159

    type of a workstation for parallel computing

    Hi,
    According to what wiki says about parallel computing (Parallel computing - Wikipedia, the free encyclopedia), parallel models are implemented in several ways based on the underlying memory architecture—shared memory, distributed memory, or shared distributed memory. For example, OpenMP currently only runs efficiently in shared-memory multiprocessor platforms.

    I can ssh connect to a linux workstation, and would like to do some parallel computation on it. So how to find out in ssh terminal if the workstation is shared memory, distributed memory, or shared distributed memory?

    Thanks and regards!

  2. #2
    {Jaxom,Imriel,Liam}'s Dad Kennedy's Avatar
    Join Date
    Aug 2006
    Location
    Alabama
    Posts
    1,065
    An ssh into a computer is NOT parallel computing. That is simply a terminal on that computer. Parallel computing refers more to a system configuration not the ability to execute commands remotely.

    Parallel computing used to be mainly something like a Beowulf server or the like. Only the HIGH HIGH HIGH end machines had parallel processors. These days, with multi-core processors, this is no longer the case.

  3. #3
    Registered User
    Join Date
    Jan 2009
    Posts
    159
    Thanks.
    Actually I wanted to ask after ssh to the workstation, what bash command or application can give info about the type of the workstation: shared memory, distributed memory, or shared distributed memory?

  4. #4
    spurious conceit MK27's Avatar
    Join Date
    Jul 2008
    Location
    segmentation fault
    Posts
    8,300
    Quote Originally Posted by lehe View Post
    Thanks.
    Actually I wanted to ask after ssh to the workstation, what bash command or application can give info about the type of the workstation: shared memory, distributed memory, or shared distributed memory?
    The exact same ones you would use if you were using bash on the workstation, because, of course, you are. So just google around for "linux shared memory", etc. The fact that you are using ssh is irrelevant.
    C programming resources:
    GNU C Function and Macro Index -- glibc reference manual
    The C Book -- nice online learner guide
    Current ISO draft standard
    CCAN -- new CPAN like open source library repository
    3 (different) GNU debugger tutorials: #1 -- #2 -- #3
    cpwiki -- our wiki on sourceforge

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Conversion of pointers to functions
    By hzmonte in forum C Programming
    Replies: 0
    Last Post: 01-20-2009, 01:56 AM
  2. Replies: 0
    Last Post: 03-20-2008, 07:59 AM
  3. Replies: 28
    Last Post: 07-16-2006, 11:35 PM
  4. Compiler "Warnings"
    By Jeremy G in forum A Brief History of Cprogramming.com
    Replies: 24
    Last Post: 04-24-2005, 01:09 PM
  5. Errors
    By Rhidian in forum C Programming
    Replies: 10
    Last Post: 04-04-2005, 12:22 PM