How to find the number of physical processors and architecture in a hp-ux machine


 
Thread Tools Search this Thread
Operating Systems HP-UX How to find the number of physical processors and architecture in a hp-ux machine
# 8  
Old 07-09-2009
Bug Not quite that simple

Shawshank,

Just to clarify, the psp_socket_id field is not going to be enough to give you a count of the physical processors. It will only give you the id of the processor you're currently on. The mpctl() call can be used with the MPC_GETFIRSTSPU_SYS argument to allow you to iterate through the logical processors on the system and, if you keep a list of the existing processor ids, you can then count up the number of running sockets you're working with.

Something like this:
Code:
spu_t spu;
PST_PROCESSOR psp;
int returnval;

spu = mpctl(MPC_GETFIRSTSPU_SYS, 0, 0);
while (spu != (spu_t)-1)
{
     returnval = pstat_getprocessor(pst, sizeof(PST_PROCESSOR), 1, spu);
     if (returnval != -1)
        /* Check to see if this socket id exists in your list */
        /* If it doesn't exist, add it */

     spu = mpctl(MPC_GETNEXTSPU_SYS, spu, 0);
}

That should give you your list of physical processors that you can then add up. You can use a variation of this with the MPC_GETFIRSTCORE_SYS and MPC_GETNEXTCORE_SYS arguments to count the cores as well (please note that this may be preferred to using ioscan to get the data, as HP-UX does allow the allocation of processor sets. Ioscan may not recognize this, and you'll end up only getting stats for the processor set you're running on).

Also, on versions earlier than 11i v2, I've generally used the pstat_getdynamic() call to get back pst_dynamic.psd_proc_cnt to get reasonably close.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

How to find whether Solaris installed on physical machine or on a VMware/KVM?

Hi All, . I am trying to find whether Solaris 11 installed on physical server or on VMware/KVM. I tried uname -a but it's giving only whether i installed on X86 or sparc machine. I tried prtdiag command but it's giving below information. command : prtdiag -v |grep "System... (2 Replies)
Discussion started by: sravani25
2 Replies

2. AIX

Virtualizing Physical Machine

Hi Experts - we have power710 (no VIOs) that is already connected to hmc and everything . I already have a Physical LPAR in there and network configured . Now I plan to delete that LPAR and then put Virtualization code (COD) to virtualize that machine by building VIO servers and stuff.Also ordered... (9 Replies)
Discussion started by: JME2015
9 Replies

3. Red Hat

Number of physical and virtual processors

Hi, i am trying to find out hpw many virtual and physical processors does any linux machine has: output of /proc/cpuinfo is as below : # cat /proc/cpuinfo processor : 0 vendor_id : GenuineIntel cpu family : 6 model : 26 model name : Intel(R) Xeon(R) CPU... (8 Replies)
Discussion started by: omkar.jadhav
8 Replies

4. Solaris

How to count number of physical and virtual processors on Solaris machine.?

hi, I am using command psrinfo -p to check the number of physical processors present on any soalris machine.I want to check the number of virtual processors assigned for particular solaris machine. which command/set of command need to be used which can grep or show the total virtual processors... (8 Replies)
Discussion started by: omkar.jadhav
8 Replies

5. High Performance Computing

PBS - restrict total number of processors per user

Hello everyone! I am a bit inexperienced with administering queueing programs. I installed Torque (a PBS derivative) on a Linux cluster and it is running well. There is one annoying problem though: users can run massively parallel jobs and serial jobs too. Almost all users do a mix of the two. I... (0 Replies)
Discussion started by: gnuplot
0 Replies

6. UNIX for Advanced & Expert Users

How to find locked processors

Hi all, i have no of processors .in that some processors locked. how to find the particular locked processors into list of all the processors. i hav no of processors like ex: processors 1021 1022 1023 1024 1025 ---it is locked 1026 -- - - - - -- 2334334 so i don't know 1025 is... (1 Reply)
Discussion started by: venkatreddy
1 Replies

7. AIX

Maximum Limit of HMC to handle Physical Power Virtualization Physical Machine

Hello All, Can anybody please tell me what is the maximum limit of Physical IBM Power Machine which can be handled by single HMC at a single point of time? Thanks, Jenish (1 Reply)
Discussion started by: jenish_shah
1 Replies

8. Solaris

Limiting number of processors used by an application

Hello, Using a Solaris SunOS 5.10, is there anyway to limit the number of processors utilised by an external vendor application over the server, from the unix OS perspective? (1 Reply)
Discussion started by: pgop
1 Replies

9. UNIX for Dummies Questions & Answers

Command to know the architecture of the machine

Hi, Is there any command to know whether the machine 64 bit or 32 bit? now I am using "uname -p" for this purpose but I want a straight command if it is there. (1 Reply)
Discussion started by: siba.s.nayak
1 Replies

10. Programming

trying to find number of caches on a machine

I am trying to find the number of caches on a machine programatically. #include <stdio.h> #include <malloc.h> int main(void) { int *ptr,*ptr1,i,j; j=0; i=1; printf("Changing allocation with brk()\n"); while(1) { for(j=0;j<i;j++) { ptr =... (1 Reply)
Discussion started by: jacques83
1 Replies
Login or Register to Ask a Question