Smt


 
Thread Tools Search this Thread
Operating Systems AIX Smt
# 1  
Old 11-28-2005
Smt

How do you turn SMT(symm multi threading).I think that is what it's called.Smilie

TIA
Mike
# 2  
Old 11-30-2005
You can use "smctl" command to enable SMT..

smtctl -m off - to disable SMT
smtctl -m on - to enable SMT

Bala
# 3  
Old 12-01-2005
I suppose you mean "Symmetrical Multiprocessing" (SMP). Multithreading is automatically enabled if you use the correct libraries for your softwre development (libpthreads.so).

The multiprocessor kernel resides in a package called "bos.mp", whereas the uniprocessor kernel resides in "bos.up". One can have installed both and decide which one to use.

First check what is installed on the machine. The command and its output should look similar to the following:

Code:
# lslpp -l bos.mp
  Fileset                      Level  State      Description         
  ----------------------------------------------------------------------------
Path: /usr/lib/objrepos
  bos.mp                    5.2.0.76  COMMITTED  Base Operating System
                                                 Multiprocessor Runtime

Path: /etc/objrepos
  bos.mp                     5.2.0.0  COMMITTED  Base Operating System
                                                 Multiprocessor Runtime

Then check which kernel gets booted on system startup. The kernel to get booted is "/unix", which is a link to the kernel file:

Code:
# ls -l /unix
lrwxrwxrwx   1 root     system           21 Oct 11 06:07 /unix -> /usr/lib/boot/unix_64

You can use the bosboot-command (as root) to alter the kernel to boot, the boot image, the device from which to boot, etc.

PLEASE READ CAREFULLY the manpage of bosboot prior to usage - you can easily render your machine useless and ready for a reinstallation by (mis-)using this command.

bakunin
Login or Register to Ask a Question

Previous Thread | Next Thread

3 More Discussions You Might Find Interesting

1. AIX

Shared-SMT-4 vs Dedicated-SMT-4 on capped LPAR

Hi, I have a POWER8 server running in Processor Implementation Mode: POWER 7. I have 2 LPAR's, both are capped with 4 cores. One of them displays: Shared-SMT-4 and the other: Dedicated-SMT-4 What is the difference when running in capped mode? Thanks (1 Reply)
Discussion started by: amitlib
1 Replies

2. AIX

Enable SMT

How to enable SMT in aix 5.2 ml 9? If i run smtctl it gives error ksh: smtctl: not found. please tell me if SMT is supported in 5.2 (4 Replies)
Discussion started by: vjm
4 Replies

3. HP-UX

Anything like AIX's SMT?

I'm working on a system to monitor a wide-range of Unix platforms, and I'd like to know if HP-UX has anything similar to AIX's SMT (simultaneous multithreading)? If there a way to separate an HP-UX CPU into multiple logical partitions which can then act as multiple CPUs? Thanks in advance, Dave (0 Replies)
Discussion started by: DaveZeltserman
0 Replies
Login or Register to Ask a Question