home *** CD-ROM | disk | FTP | other *** search
- Newsgroups: comp.parallel
- Path: sparky!uunet!gatech!hubcap!fpst
- From: l249114@godzilla (Ken Van de Houten)
- Subject: Determining physical nodes on Intel iPSC
- Message-ID: <1992Sep9.173706.27672@hubcap.clemson.edu>
- Sender: fpst@hubcap.clemson.edu (Steve Stevenson)
- Organization: Clemson University
- Date: Wed, 9 Sep 92 09:26:25 PDT
- Approved: parallel@hubcap.clemson.edu
- Lines: 16
-
-
- Here's a C routine that works for me :
-
-
- /*
- Return physical node number
- */
-
- #include <sys/types.h>
- #include <nxinfo.h>
-
- int physnode_()
- {
- return(nxinfo.physnode);
- }
-
-