Sponsored Content
Full Discussion: iBook G3
UNIX Standards and Benchmarks UNIX & LINUX Benchmarks (Version 3.11) UNIX Benchmarks iBook G3 Post 46549 by ajcarr on Monday 19th of January 2004 02:17:26 PM
Old 01-19-2004
iBook G3

Notes

CPU/Speed: PPC750FX, 700 MHz
Ram: 640 MB
Motherboard: iBook (2001)
Bus: 133 MHz
Cache: 64 KB L1, 512 KB L2
Controller: Apple
Disk: 20 MB Toshiba
Load: 1 user
Kernel: Mac OS X 10.3.2
Kernel ELF?: No
pgms: gcc 3.3 (Apple)
options: -O3 -mcpu=750



BYTE UNIX Benchmarks (Version 3.11)
System -- Darwin Haegg.local 7.2.0 Darwin Kernel Version 7.2.0: Thu Dec 11 16:20:23 PST 2003; root:xnu/xnu-517.3.7.obj~1/RELEASE_PPC Power Macintosh powerpc
Start Benchmark Run: Mon Jan 19 17:37:35 GMT 2004
2 interactive users.
Dhrystone 2 without register variables 1693612.6 lps (10 secs, 6 samples)
Dhrystone 2 using register variables 1692337.8 lps (10 secs, 6 samples)
Arithmetic Test (type = arithoh) 6131217.9 lps (10 secs, 6 samples)
Arithmetic Test (type = register) 277601.8 lps (10 secs, 6 samples)
Arithmetic Test (type = short) 256296.7 lps (10 secs, 6 samples)
Arithmetic Test (type = int) 277669.4 lps (10 secs, 6 samples)
Arithmetic Test (type = long) 277739.9 lps (10 secs, 6 samples)
Arithmetic Test (type = float) 154565.9 lps (10 secs, 6 samples)
Arithmetic Test (type = double) 120933.5 lps (10 secs, 6 samples)
System Call Overhead Test 139670.0 lps (10 secs, 6 samples)
Pipe Throughput Test 93892.5 lps (10 secs, 6 samples)
Pipe-based Context Switching Test 35186.1 lps (10 secs, 6 samples)
Process Creation Test 509.1 lps (10 secs, 6 samples)
Execl Throughput Test 199.1 lps (9 secs, 6 samples)
File Read (10 seconds) 224570.0 KBps (10 secs, 6 samples)
File Write (10 seconds) 15392.0 KBps (10 secs, 6 samples)
File Copy (10 seconds) 14076.0 KBps (10 secs, 6 samples)
File Read (30 seconds) 26210.0 KBps (30 secs, 6 samples)
File Write (30 seconds) 16311.0 KBps (30 secs, 6 samples)
File Copy (30 seconds) 6599.0 KBps (30 secs, 6 samples)
C Compiler Test 355.2 lpm (60 secs, 3 samples)
Shell scripts (1 concurrent) 453.1 lpm (60 secs, 3 samples)
Shell scripts (2 concurrent) 237.7 lpm (60 secs, 3 samples)
Shell scripts (4 concurrent) 122.0 lpm (60 secs, 3 samples)
Shell scripts (8 concurrent) 62.0 lpm (60 secs, 3 samples)
Dc: sqrt(2) to 99 decimal places no measured results
Recursion Test--Tower of Hanoi 19492.8 lps (10 secs, 6 samples)


INDEX VALUES
TEST BASELINE RESULT INDEX

Arithmetic Test (type = double) 2541.7 120933.5 47.6
Dhrystone 2 without register variables 22366.3 1693612.6 75.7
Execl Throughput Test 16.5 199.1 12.1
File Copy (30 seconds) 179.0 6599.0 36.9
Pipe-based Context Switching Test 1318.5 35186.1 26.7
Shell scripts (8 concurrent) 4.0 62.0 15.5
=========
SUM of 6 items 214.4
AVERAGE 35.7
 

We Also Found This Discussion For You

1. Linux

Audio support for clamshell iBook - Xubuntu Hardy Heron

I am not able to hear any audio on my G3 iBook. What should I do to get it working? When I hit the volume keys with or without Fn, nothing happens, except I hear the HDD clicking. Same for the mute key. The sound pref panel displays the built-in device as an audio out, but I get no other... (0 Replies)
Discussion started by: Astrochess
0 Replies
pci_report_pmcap(9F)					   Kernel Functions for Drivers 				      pci_report_pmcap(9F)

NAME
pci_report_pmcap - Report Power Management capability of a PCI device SYNOPSIS
#include <sys/ddi.h> #include <sys/sunddi.h> int pci_report_pmcap(dev_info_t *dip, int cap, void *arg); INTERFACE LEVEL
Solaris DDI specific (Solaris DDI) PARAMETERS
dip Pointer to the device's dev_info structure cap Power management capability arg Argument for the capability DESCRIPTION
Some PCI devices provide power management capabilities in addition to those provided by the PCI Power Management Specification. The pci_report_pmcap(9F) function reports those Power Management capabilities of the PCI device to the framework. Framework supports dynamic changing of the capability by allowing pci_report_pmcap(9F) to be called multiple times. Following are the supported capabilities as indi- cated by the cap: PCI_PM_IDLESPEED -- The PCI_PM_IDLESPEED value indicates the lowest PCI clock speed that a device can tolerate when idle, and is applica- ble only to 33 MHz PCI bus. arg represents the lowest possible idle speed in KHz (1 KHz is 1000 Hz). The integer value representing the speed should be cast to (void *) before passing as arg to pci_report_pmcap(9F). The special values of arg are: PCI_PM_IDLESPEED_ANY The device can tolerate any idle clock speed. PCI_PM_IDLESPEED_NONE The device cannot tolerate slowing down of PCI clock even when idle. If the driver doesn't make this call, PCI_PM_IDLESPEED_NONE is assumed. In this case, one offending device can keep the entire bus from being power managed. RETURN VALUES
The pci_report_pmcap(9F) function returns: DDI_SUCCESS Successful reporting of the capability DDI_FAILURE Failure to report capability because of invalid argument(s) CONTEXT
The pci_report_pmcap(9F) function can be called from user, kernel and interrupt context. EXAMPLES
1. A device driver knows that the device it controls works with any clock between DC and 33 MHz as specified in Section 4.2.3.1: Clock Specification of the PCI Bus Specification Revision 2.1. The device driver makes the following call from its attach(9E): if (pci_report_pmcap(dip, PCI_PM_IDLESPEED, PCI_PM_IDLESPEED_ANY) != DDI_SUCCESS) cmn_err(CE_WARN, "%s%d: pci_report_pmcap failed ", ddi_driver_name(dip), ddi_get_instance(dip)); 2. A device driver controls a 10/100 Mb Ethernet device which runs the device state machine on the chip from the PCI clock. For the device state machine to receive packets at 100 Mb, the PCI clock cannot drop below 4 MHz. The driver makes the following call whenever it negoti- ates a 100 Mb Ethernet connection: if (pci_report_pmcap(dip, PCI_PM_IDLESPEED, (void *)4000) != DDI_SUCCESS) cmn_err(CE_WARN, "%s%d: pci_report_pmcap failed ", ddi_driver_name(dip), ddi_get_instance(dip)); ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +--------------------------+--------------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +--------------------------+--------------------------------+ |Interface Stability | Evolving | +--------------------------+--------------------------------+ SEE ALSO
Writing Device Drivers PCI Bus Power Management Interface Specification Version 1.1 PCI Bus Specification Revision 2.1 SunOS 5.10 13 August 1999 pci_report_pmcap(9F)
All times are GMT -4. The time now is 02:55 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy