Sponsored Content
Operating Systems AIX Upgrading with NIM Instructions. Post 302530693 by bakunin on Tuesday 14th of June 2011 08:34:17 PM
Old 06-14-2011
You might want to read this thread for a discussion about alt-disk-install, NIM usage and neighboring topics. You might also want to read this thread for some general information about NIM and NIM concepts.

I hope this helps.

bakunin
 

8 More Discussions You Might Find Interesting

1. Linux Benchmarks

Instructions for Linux Benchmarks

STEP 1: Get the source here: https://www.unix.com/source/bm.zip or https://www.unix.com/source/unix_linux_bench.tar.gz STEP 2: unzip or untar and cd into the bm directory STEP 3: make (Note: there is a pre-compiled Linux binary in the distro, so Linux users don't have to make a... (0 Replies)
Discussion started by: Neo
0 Replies

2. UNIX Benchmarks

Instructions for UNIX Benchmarks

STEP 1: Get the source here: https://www.unix.com/source/bm.zip or https://www.unix.com/source/unix_linux_bench.tar.gz STEP 2: Unzip or Untar STEP 3: make STEP 4: Run STEP: 5: Please login to www.unix.com and post test results along with platform info to: Include (if you... (0 Replies)
Discussion started by: Neo
0 Replies

3. AIX

migrate NIM server through NIM installation

I try to migrate a NIM server from one server to another. I try to do a mksysb on NIM server restore the NIM server's mksysb to a client through NIM installation shutdown NIM server start newly installed client as NIM server Does anyone do this before? who can give me some suggestion? (1 Reply)
Discussion started by: yanzhang
1 Replies

4. Solaris

patch update instructions

Hi All, I need to update my solaris with a particular patch. When reading the instruction on the sun web site, I got this: Installation Requirements: Reboot immediately after installing this patch on an active boot environment to bring the system to a consistent state. An alternative may... (8 Replies)
Discussion started by: itik
8 Replies

5. AIX

Back up a client NIM from nim master

Hello everyone Im trying to backup a nim client from nim master but I got this message COMMAND STATUS Command: failed stdout: yes stderr: no Before command completion, additional instructions may appear below. 0042-001 nim:... (2 Replies)
Discussion started by: lo-lp-kl
2 Replies

6. AIX

NIM : remove nim client info from the client

Hi. I change my client's IP and hostname but I forgot to change anything on the master. How can I redefine or modify my client's resource from my master, or with using smit niminit from my client ? Tks (2 Replies)
Discussion started by: stephnane
2 Replies

7. AIX

Problem in communication nim client with nim master

Hello, I have an AIX6.1 machine which is a nim client to my nim master which is also AIX6.1 machine. I had some problem to perform an installation on my client using smit nim . i removed /etc/niminfo file in order to do the initialization again but when i run the command niminit -a name=client... (0 Replies)
Discussion started by: omonoiatis9
0 Replies

8. AIX

How to know NIM name from NIM client?

Friend's, I was playing around with NIM in my environment & had a quick question in mind which I didn't/couldn't find answer to, which is -- how to find the name of the NIM server sitting on the NIM client? All leads to the answer would be much appreciated, many thanks! -- Souvik (2 Replies)
Discussion started by: thisissouvik
2 Replies
ggGetSwarType(3)							GGI							  ggGetSwarType(3)

NAME
ggGetSwarType - Get CPU features SYNOPSIS
#include <ggi/gg.h> #if defined GG_HAVE_INT64 #endif #if defined GG_LITTLE_ENDIAN #endif #if defined GG_BIG_ENDIAN #endif gg_swartype ggGetSwarType(void); DESCRIPTION
The GG_HAVE_INT64 macro is defined on 64-bit architectures where 64-bit integer values function as normal integer values with respect to C operations. Otherwise it is not defined. The GG_LITTLE_ENDIAN or GG_BIG_ENDIAN are defined, respectively, when the architecture stores values in little or big endian order. One of the two will be defined, the other undefined, accordingly. SWAR stands for SIMD Within A Register. The most well known example of SWAR is Intel MMX technology. ggGetSwarType tells which specific SWAR instruction sets the CPU implements. This is useful to choose at runtime a machine-specific imple- mentation of a very calculation-intensive routine. SWAR detection is done once during ggInit(3) and the value is cached for future use, thus it should be fast enough to choose implementations on the fly. However, due to this, SMP machines must have identical feature sets in all processors in order to ensure accurate results (see the GG_OPTS option description below.) RETURN VALUE
ggGetSwarType returns an integer in which each bit set means that a specific SWAR instruction set is available. The integer value may be 32 bits long or 64 bits long, depending on whether LibGG was compiled for a 32-bit or 64-bit machine, as per the GG_HAVE_INT64 macro. RECOGNIZED SWARS
The following flags are defined for all architectures. All of these flags can be OR'ed and are exclusive even between architectures. Note at this stage of development some of these SIMD sets are not yet detected correctly. GG_SWAR_NONE The CPU can run a vanilla C program. (hopefully! :-) GG_SWAR_32BITC The CPU can perform 32-bit math fast enough to give an advantage over 16-bit math for software SWAR implementations. Almost all computers will have this capability today. GG_SWAR_ALTIVEC The CPU has an AltiVec matrix coprocessor (Motorola G4.) GG_SWAR_SSE The CPU supports Intel Streaming SIMD Extensions. GG_SWAR_SSE2 The CPU supports Intel Streaming SIMD Extensions Version 2. GG_SWAR_SSE3 The CPU supports Intel Streaming SIMD Extensions Version 3. GG_SWAR_MMX The CPU supports Intel Multimedia Extensions. GG_SWAR_MMXPLUS The CPU supports Cyrix enhancements to Intel Multimedia Extensions. GG_SWAR_3DNOW The CPU supports AMD 3DNOW! instructions. GG_SWAR_ADV3DNOW The CPU supports AMD Advanced 3DNOW! instructions. GG_SWAR_MAX The CPU supports PA-RISC MAX Instructions. GG_SWAR_SIGD The CPU supports Microunity Mediaprocessor SIGD instructions. Additionally, 64 bits architectures define the following flags: GG_SWAR_64BITC The CPU can perform 64-bit math fast enough to give an advantage over 32-bit and 16-bit math for software SWAR implementations. GG_SWAR_MVI The CPU supports DEC (Compaq) Alpha Motion Video Instructions. GG_SWAR_MAX2 The CPU supports PA-RISC MAX2 Instructions. GG_SWAR_MDMX The CPU supports MIPS Digital Media Extension (MaDMaX) Instructions. GG_SWAR_MAJC The CPU supports SUN Microprocessor Architecture for Java Computing. GG_SWAR_VIS The CPU supports the SUN Visual Instruction Set ENVIRONMENT VARIABLE
If the "-banswar=0xhexnumber" option is present in the GG_OPTS environment variable when ggInit is first called, bits set in the 0xhexnum- ber field will not be presented to the application in the return value of ggGetSwarType. This feature can be used for performance bench- marking, to disable the use of certain SWAR implementations. It may also be used if a multiproccesor machine mis-detects the usable SWAR instruction set because the processors are not identical. BUGS
No support is currently implemented for PDP endian machines. SWAR detection code is incomplete for many architectures, and as such LibGG may may fail to detect SWAR in the CPU. libgg-1.0.x 2005-08-26 ggGetSwarType(3)
All times are GMT -4. The time now is 10:30 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy