US6901522B2 - System and method for reducing power consumption in multiprocessor system - Google Patents

System and method for reducing power consumption in multiprocessor system Download PDF

Info

Publication number
US6901522B2
US6901522B2 US09/876,609 US87660901A US6901522B2 US 6901522 B2 US6901522 B2 US 6901522B2 US 87660901 A US87660901 A US 87660901A US 6901522 B2 US6901522 B2 US 6901522B2
Authority
US
United States
Prior art keywords
processors
active threads
threads
ratio
virtual machine
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Expired - Fee Related, expires
Application number
US09/876,609
Other versions
US20020188877A1 (en
Inventor
Deep K. Buch
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Intel Corp
Original Assignee
Intel Corp
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Intel Corp filed Critical Intel Corp
Priority to US09/876,609 priority Critical patent/US6901522B2/en
Assigned to INTEL CORPORATION reassignment INTEL CORPORATION ASSIGNMENT OF ASSIGNORS INTEREST (SEE DOCUMENT FOR DETAILS). Assignors: BUCH, DEEP K.
Publication of US20020188877A1 publication Critical patent/US20020188877A1/en
Application granted granted Critical
Publication of US6901522B2 publication Critical patent/US6901522B2/en
Adjusted expiration legal-status Critical
Expired - Fee Related legal-status Critical Current

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F1/00Details not covered by groups G06F3/00 - G06F13/00 and G06F21/00
    • G06F1/26Power supply means, e.g. regulation thereof
    • G06F1/32Means for saving power
    • G06F1/3203Power management, i.e. event-based initiation of a power-saving mode
    • G06F1/3234Power saving characterised by the action undertaken
    • G06F1/329Power saving characterised by the action undertaken by task scheduling
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F1/00Details not covered by groups G06F3/00 - G06F13/00 and G06F21/00
    • G06F1/26Power supply means, e.g. regulation thereof
    • G06F1/32Means for saving power
    • G06F1/3203Power management, i.e. event-based initiation of a power-saving mode
    • YGENERAL TAGGING OF NEW TECHNOLOGICAL DEVELOPMENTS; GENERAL TAGGING OF CROSS-SECTIONAL TECHNOLOGIES SPANNING OVER SEVERAL SECTIONS OF THE IPC; TECHNICAL SUBJECTS COVERED BY FORMER USPC CROSS-REFERENCE ART COLLECTIONS [XRACs] AND DIGESTS
    • Y02TECHNOLOGIES OR APPLICATIONS FOR MITIGATION OR ADAPTATION AGAINST CLIMATE CHANGE
    • Y02DCLIMATE CHANGE MITIGATION TECHNOLOGIES IN INFORMATION AND COMMUNICATION TECHNOLOGIES [ICT], I.E. INFORMATION AND COMMUNICATION TECHNOLOGIES AIMING AT THE REDUCTION OF THEIR OWN ENERGY USE
    • Y02D10/00Energy efficient computing, e.g. low power processors, power management or thermal management

Definitions

  • the invention is related to processors and more particularly, to power management in multi-processor systems.
  • a server used in business transaction processing or e-commerce may require simultaneous execution of a high volume of transactions.
  • server systems are typically set to process the highest expectant volume of transactions or workload. Nevertheless, servers run, during much of the time, at a fraction of the peak capacity. Regardless of the workload, however, these systems generally run at nearly full power, thereby consuming great amounts of electrical power.
  • millions surf the World Wide Web and organizations (including corporations and government) use the Internet to implement more of their business, internet servers form the core of e-business and tend to be massive consumers of power.
  • OS Operating Systems
  • ACPI Advanced Configuration and Power Interface
  • OS MICROSOFT WINDOWS® 2000
  • CPU Central Processing Unit
  • the OS defines “CPU usage” as “time not spent in the OS idle loop”.
  • the OS transitions the CPU into a low power state when idle. This reduces the CPU power consumption.
  • the ability of an OS to efficiently manage CPU power is limited.
  • the Java application server software and the Java Virtual Machine (JVM) can appear to consume a large percentage of the CPU time, even under relatively light user load.
  • the OS has limited visibility into the actual CPU usage of the server system, the OS cannot efficiently manage power on its own with the existing mechanisms. For example, threads could be in a spin loop or doing housekeeping tasks, which does not require full CPU power usage.
  • the OS when the JVM makes use of a user-level threads library, the OS's visibility into the actual CPU usage is reduced further since the OS sees only a few active threads, while a large number of user threads are mapped on top of the OS native threads.
  • FIG. 1 shows an exemplary system to which a power management in accordance with the invention can be implemented
  • FIG. 2 shows an exemplary Java application system environment
  • FIG. 3 is a flowchart showing the power management in accordance with one embodiment of the invention.
  • FIG. 4 shows an exemplary result of applying the power management in accordance with one embodiment of the invention.
  • FIG. 5 shows an exemplary system which allows a fine-grained power control in accordance with one embodiment of the invention.
  • a “thread” is a sequence of computing instructions that make up a program. Within a program, a single thread can be assigned to execute one task or multiple threads can be assigned to execute more than one task at a time. Typical multiprocessing systems can have four to eight (or more) individual processors sharing processing tasks. Therefore, by breaking down a process into multiple threads, different processors in the system can be operating on different portions or tasks of the process at the same time.
  • the term “computer readable medium” includes, but is not limited to portable or fixed storage devices, optical storage devices, and any other memory devices capable of storing computer instructions and/or data.
  • “computer instructions” are software or firmware including data, codes, and programs that can be read and/or executed to perform certain tasks.
  • processor and “central processing unit” (CPU) refer to circuitry that controls various functions of a computer system and will be used interchangeably.
  • FIG. 1 An example of a multiprocessing system 100 implementing the principles of the invention is shown in FIG. 1 , including a plurality of processors 110 , a storage device 120 and a bus 130 .
  • the processors 110 are coupled to the storage device 120 by the bus 130 .
  • a number of input/output devices 140 such as a keyboard, mouse and displays can also be coupled to the bus 130 .
  • the memory 120 stores computer programs such as an operating system (OS), application software, utility software, Java servlets or applets, and other/or other instructions which are executed by the processors 110 .
  • An OS manages the basic operations of a system such as determining how and in what order assigned tasks are to be handled, managing the flow of information into and out of the processor(s), receiving inputs from a keyboard and sending outputs to a display.
  • the system 100 and an OS form a platform.
  • An application software runs on top of the OS and performs a specific task for a user using services offered by the OS.
  • An application software is usually designed to run on a particular OS because various operating systems operate in different ways.
  • Java application software is generally platform independent and can be run on different platforms without alteration.
  • FIG. 2 shows an exemplary Java application system 200 including a JVM.
  • the system 200 includes computer hardware 210 controlled by OS 220 and a JVM 230 for running Java programs 290 .
  • the JVM 230 running on the system 200 relies on services from the underlying OS 220 and the computer hardware 210 .
  • FIG. 3 is a flowchart showing power management of a Java application system environment in accordance with one embodiment of the invention.
  • the JVM periodically monitors the state of Java threads to determine the number of threads in active processing and the number of threads in a “blocked” or “idle” state.
  • a web server may have an allocated pool of 50 worker threads for processing Hypertext Transfer Protocol (HTTP) connection requests.
  • HTTP Hypertext Transfer Protocol
  • a few of these threads will actually be processing requests while the other remaining threads will be blocked waiting for client connection attempts.
  • the states of threads may be seen as blocked by the JVM but not by the OS.
  • threads which are waiting to acquire a required synchronization or mutex object may be considered “blocked” by the JVM. However, the same threads may simply be considered “running” from the OS viewpoint.
  • the JVM determines the number of required processor (block 310 ) in order to efficiently perform the tasks of the system. Particularly, the JVM determines the total number “n” of processors in the system. Here, the JVM can determine the number of processors through an OS Application Programming Interface (API) call. The JVM then determines a ratio of active threads to processors required for good performance, depending on the type of processing. For example, if the threads are mostly doing Input/Output (I/O) or other high-latency tasks, a higher ratio of threads to processor is used. On the other hand, if threads are mostly doing CPU-intensive processing and less I/O, a lower ratio of threads to processor is used, for example, 1 thread per CPU.
  • I/O Input/Output
  • a lower ratio of threads to processor is used, for example, 1 thread per CPU.
  • the JVM Upon determining the number of required processors, the JVM makes a system call to the OS to set a processor affinity of the entire Java thread pool (block 320 ), including the JVM's own threads.
  • equation 2 forces the entire pool of threads 1 to t to run on processors 1 to k out of n processors.
  • the API call “SetProcessAffinityMask” can be used to set the processor affinity.
  • the OS assigns the desired processor affinities to the Java threads and causes all of Java to run on k processors, leaving (n ⁇ k) processor to run the OS idle loop. Therefore, the (n ⁇ k) CPUs enter(s) the low-power state (block 330 ).
  • the CPUs can enter the low-power states using a typical OS Advanced Configuration and Power Interface (ACPI) mechanism.
  • FIG. 4 shows an exemplary result of the present power management on a 4-CPU system. Prior to power management, the CPU 1 to CPU 4 are in full-power state to run active and blocked/idle threads. By setting the appropriate processor affinity, the active and blocked/idle threads are run on CPU 1 and CPU 2 while CPU 3 and CPU 4 are transitioned into low-power states.
  • the reverse procedure is used when the JVM determines that the system load has increased. This requires another call into OS to set the processor affinities. As large-scale changes to the system workload tend to occur gradually in servers running enterprise or e-business applications, the performance overhead of the above procedure is expected to be small.
  • the procedure described above is a minimal implementation of the invention. Because the OS has various services which periodically will run on the (n ⁇ k) processors, a fine-grained hardware/software support for processor power management can further improve the performance of the system. In such systems, the procedure is extended as follows.
  • the JVM can use this API to specifically request the OS to transition (n ⁇ k) CPUs into deep sleep and/or turn off associated cooling devices such as fans. If a Java API allows the JVM to expose the above OS API to Java applications, the Java application software can use the Java API to achieve the same end results.
  • FIG. 5 shows one embodiment of a fine-grained power control mechanism in a Java application server environment 500 .
  • the system 500 includes a JVM 510 on top of an underlying operating system 520 and computer hardware 530 .
  • the computer hardware 530 includes a plurality of CPUs 540 coupled to a chipset 550 and individual voltage regulators 560 for each CPUs 540 .
  • separate power control signals can be used to transition particular CPUs into a “deep sleep” state and/or turn off associated cooling devices. Therefore, power states of individual CPUs 540 can be controlled to achieve a fine-grained power control.
  • One particular application of the power management in accordance to the present invention is in server systems, which currently lacks support for fine-grained power control of individual CPUs.
  • Server chipsets connect a single “stop-clock” output to all the CPUs' input pins, thereby making it impossible to selectively throttle a particular CPU.
  • OS API that allows a server application to inform the OS that it no longer needs to use a certain number of CPUs so that the OS can transition those CPUs into a deep sleep state.
  • the power management in accordance to the invention allows fine-grained power control and can be implemented in a platform that follows the ACPI standard.
  • multiprocessor systems can provide the performance when needed, for example, performance on-demand by dynamically bringing more CPU's on-line to meet increased server workload.
  • CPU power consumption can be scaled back depending on the server workload, thereby saving power at low system utilization.
  • implementation of the invention results in extensive power savings.
  • the low-power states such as deep sleep can save significant CPU power, while the associated cooling systems can be turned off, further reducing power consumption. Also reducing the noise level.
  • the invention addresses multiprocessor servers in a Java application server environment,.
  • the technique above can be implemented in run-time environments other than Java application systems such as MICROSOFT®.NET.
  • the invention can be implemented in any system with a layer of software above the OS that has visibility into the processing needs of the application system.
  • the technique can be applied to different operating systems including MS Windows and Linux.
  • the technique can be modified to cover a broader range of systems and software (i.e. non-Java case).
  • a “watchdog” thread can be implemented within an OS, whose function is to monitor the states and the processing nature of the other threads in the system.
  • the watchdog thread would perform similar calculation as the JVM above and make a call to the OS to request that (n ⁇ k) CPUs be put into a low-power state.
  • the watchdog thread functionality can be implemented in Windows native threads library, Linux native thread library, and User (green) threads library that may sit on top of the OS native libraries.
  • the present power management in accordance with the invention allows a selected number of processors, based on the amount of workload, to enter low-power states, thereby reducing the overall power consumption.
  • the system level and the CPU level power consumption would significantly fall at lower workload levels. Therefore, the systems can be efficiently operated at reduced costs, even with power supply constraints.

Abstract

A method and apparatus for power management is disclosed. The invention reduces power consumption in multiprocessing systems by dynamically adjusting processor power based on system workload. Particularly, the method and apparatus determines the number of required processors based on the number or active threads and sets a processor affinity to run the active threads on the determined number of required processors, thereby allowing the free processors to enter a low-power state.

Description

FIELD
The invention is related to processors and more particularly, to power management in multi-processor systems.
GENERAL BACKGROUND
In recent years, advances in technology have led to more powerful computing devices. For example, a server used in business transaction processing or e-commerce may require simultaneous execution of a high volume of transactions. Accordingly, server systems are typically set to process the highest expectant volume of transactions or workload. Nevertheless, servers run, during much of the time, at a fraction of the peak capacity. Regardless of the workload, however, these systems generally run at nearly full power, thereby consuming great amounts of electrical power. Particularly, as millions surf the World Wide Web and organizations (including corporations and government) use the Internet to implement more of their business, internet servers form the core of e-business and tend to be massive consumers of power.
In addition, a system running at nearly full power dissipates large amounts of heat, requiring cooling fans which create a high decibel noise. The cooling and power distribution requirements also limit the number of server systems that can be stacked in “racks”. As a result, internet data centers are faced with increasing infrastructure requirements for space, cooling, and electrical power. Furthermore, for computing devices with a finite source of power such as portable computers, power consumption can limit the usage time as well as generate uncomfortable heat for users. Therefore, power management can be critical for any computing devices.
Currently, some Operating Systems (OS) have built-in power management. For example, Advanced Configuration and Power Interface (ACPI) compliant hardware can support dynamic power management under the control of an OS, for example MICROSOFT WINDOWS® 2000. Based on the Central Processing Unit (CPU) usage, the MICROSOFT WINDOWS® 2000 dynamically controls the power consumed. Under MICROSOFT WINDOWS® 2000, the OS defines “CPU usage” as “time not spent in the OS idle loop”. On ACPI systems, the OS transitions the CPU into a low power state when idle. This reduces the CPU power consumption.
Nevertheless, in a Java application server environment, the ability of an OS to efficiently manage CPU power is limited. Particularly, as seen at the level of an OS, the Java application server software and the Java Virtual Machine (JVM) can appear to consume a large percentage of the CPU time, even under relatively light user load. As the OS has limited visibility into the actual CPU usage of the server system, the OS cannot efficiently manage power on its own with the existing mechanisms. For example, threads could be in a spin loop or doing housekeeping tasks, which does not require full CPU power usage. Moreover, when the JVM makes use of a user-level threads library, the OS's visibility into the actual CPU usage is reduced further since the OS sees only a few active threads, while a large number of user threads are mapped on top of the OS native threads.
BRIEF DESCRIPTION OF THE DRAWINGS
The invention will be described in detail with reference to the following drawings in which like reference numerals refer to like elements wherein:
FIG. 1 shows an exemplary system to which a power management in accordance with the invention can be implemented;
FIG. 2 shows an exemplary Java application system environment;
FIG. 3 is a flowchart showing the power management in accordance with one embodiment of the invention;
FIG. 4 shows an exemplary result of applying the power management in accordance with one embodiment of the invention; and
FIG. 5 shows an exemplary system which allows a fine-grained power control in accordance with one embodiment of the invention.
DETAILED DESCRIPTION
A method and apparatus for reducing power consumption is disclosed. In the following description, numerous specific details are set forth to provide a thorough understanding of the invention. However, it will be understood by one of ordinary skill in the art that the invention may be practiced without these specific details. For example, although the invention will be described with reference to a Java application server environment, the same techniques and teachings can be applied to other types of systems, environments or platforms.
Disclosed herein, a “thread” is a sequence of computing instructions that make up a program. Within a program, a single thread can be assigned to execute one task or multiple threads can be assigned to execute more than one task at a time. Typical multiprocessing systems can have four to eight (or more) individual processors sharing processing tasks. Therefore, by breaking down a process into multiple threads, different processors in the system can be operating on different portions or tasks of the process at the same time. Also, the term “computer readable medium” includes, but is not limited to portable or fixed storage devices, optical storage devices, and any other memory devices capable of storing computer instructions and/or data. Here, “computer instructions” are software or firmware including data, codes, and programs that can be read and/or executed to perform certain tasks. In addition, the terms “processor” and “central processing unit” (CPU) refer to circuitry that controls various functions of a computer system and will be used interchangeably.
An example of a multiprocessing system 100 implementing the principles of the invention is shown in FIG. 1, including a plurality of processors 110, a storage device 120 and a bus 130. The processors 110 are coupled to the storage device 120 by the bus 130. A number of input/output devices 140 such as a keyboard, mouse and displays can also be coupled to the bus 130.
The memory 120 stores computer programs such as an operating system (OS), application software, utility software, Java servlets or applets, and other/or other instructions which are executed by the processors 110. An OS manages the basic operations of a system such as determining how and in what order assigned tasks are to be handled, managing the flow of information into and out of the processor(s), receiving inputs from a keyboard and sending outputs to a display. Here, the system 100 and an OS form a platform.
An application software runs on top of the OS and performs a specific task for a user using services offered by the OS. An application software is usually designed to run on a particular OS because various operating systems operate in different ways. However, Java application software is generally platform independent and can be run on different platforms without alteration.
Java is an object-oriented language compiled into a format called bytecode. The Java bytecodes are designed to be executed on a Java Virtual Machine (JVM). The JVM is not an actual hardware platform, but is a low-level software emulator that can be implemented on many different computer processor architectures and under many different operating systems. FIG. 2 shows an exemplary Java application system 200 including a JVM. The system 200 includes computer hardware 210 controlled by OS 220 and a JVM 230 for running Java programs 290. The JVM 230 running on the system 200 relies on services from the underlying OS 220 and the computer hardware 210.
FIG. 3 is a flowchart showing power management of a Java application system environment in accordance with one embodiment of the invention. The JVM periodically monitors the state of Java threads to determine the number of threads in active processing and the number of threads in a “blocked” or “idle” state. For example, a web server may have an allocated pool of 50 worker threads for processing Hypertext Transfer Protocol (HTTP) connection requests. However, at light load, a few of these threads will actually be processing requests while the other remaining threads will be blocked waiting for client connection attempts. In some cases, the states of threads may be seen as blocked by the JVM but not by the OS. For example, threads which are waiting to acquire a required synchronization or mutex object may be considered “blocked” by the JVM. However, the same threads may simply be considered “running” from the OS viewpoint.
Based on the number of active threads, the JVM then determines the number of required processor (block 310) in order to efficiently perform the tasks of the system. Particularly, the JVM determines the total number “n” of processors in the system. Here, the JVM can determine the number of processors through an OS Application Programming Interface (API) call. The JVM then determines a ratio of active threads to processors required for good performance, depending on the type of processing. For example, if the threads are mostly doing Input/Output (I/O) or other high-latency tasks, a higher ratio of threads to processor is used. On the other hand, if threads are mostly doing CPU-intensive processing and less I/O, a lower ratio of threads to processor is used, for example, 1 thread per CPU.
Based on the determined ratio, the JVM determines the number “k” of required processors out of the total number n of processors, wherein k is determined as follows:
k=(number of active threads)/(ratio of active threads to processors)  [Equation 1]
The remaining number, i.e. (n−k), of processors can be transitioned into low-power states. For example, if there are 15 active threads and the optimum ratio of active threads to processors is 3:1, k=15/3 and five processors are required to run the system tasks. Assuming an 8-CPU system, three CPUs can be placed into a low-power state.
Upon determining the number of required processors, the JVM makes a system call to the OS to set a processor affinity of the entire Java thread pool (block 320), including the JVM's own threads. A processor affinity means forcing threads to run a specific subset of processors and is set as follows:
Affinity(Thread 1 . . . t)=processors1 . . . k,1≦k<n  [Equation 2]
Namely, equation 2 forces the entire pool of threads 1 to t to run on processors 1 to k out of n processors. For example, in MICROSOFT WINDOWS® 2000, the API call “SetProcessAffinityMask” can be used to set the processor affinity.
Accordingly, the OS assigns the desired processor affinities to the Java threads and causes all of Java to run on k processors, leaving (n−k) processor to run the OS idle loop. Therefore, the (n−k) CPUs enter(s) the low-power state (block 330). Here, the CPUs can enter the low-power states using a typical OS Advanced Configuration and Power Interface (ACPI) mechanism. FIG. 4 shows an exemplary result of the present power management on a 4-CPU system. Prior to power management, the CPU1 to CPU 4 are in full-power state to run active and blocked/idle threads. By setting the appropriate processor affinity, the active and blocked/idle threads are run on CPU1 and CPU2 while CPU 3 and CPU4 are transitioned into low-power states.
The reverse procedure is used when the JVM determines that the system load has increased. This requires another call into OS to set the processor affinities. As large-scale changes to the system workload tend to occur gradually in servers running enterprise or e-business applications, the performance overhead of the above procedure is expected to be small. In addition, the procedure described above is a minimal implementation of the invention. Because the OS has various services which periodically will run on the (n−k) processors, a fine-grained hardware/software support for processor power management can further improve the performance of the system. In such systems, the procedure is extended as follows.
If an OS API is available to set individual CPU's power state, the JVM can use this API to specifically request the OS to transition (n−k) CPUs into deep sleep and/or turn off associated cooling devices such as fans. If a Java API allows the JVM to expose the above OS API to Java applications, the Java application software can use the Java API to achieve the same end results.
FIG. 5 shows one embodiment of a fine-grained power control mechanism in a Java application server environment 500. The system 500 includes a JVM 510 on top of an underlying operating system 520 and computer hardware 530. The computer hardware 530 includes a plurality of CPUs 540 coupled to a chipset 550 and individual voltage regulators 560 for each CPUs 540. Using the chipset 550 and the voltage regulators 560, separate power control signals can be used to transition particular CPUs into a “deep sleep” state and/or turn off associated cooling devices. Therefore, power states of individual CPUs 540 can be controlled to achieve a fine-grained power control.
One particular application of the power management in accordance to the present invention is in server systems, which currently lacks support for fine-grained power control of individual CPUs. Server chipsets connect a single “stop-clock” output to all the CPUs' input pins, thereby making it impossible to selectively throttle a particular CPU. Also, there is currently no OS API that allows a server application to inform the OS that it no longer needs to use a certain number of CPUs so that the OS can transition those CPUs into a deep sleep state. However, the power management in accordance to the invention allows fine-grained power control and can be implemented in a platform that follows the ACPI standard. Therefore multiprocessor systems can provide the performance when needed, for example, performance on-demand by dynamically bringing more CPU's on-line to meet increased server workload. On the other hand, CPU power consumption can be scaled back depending on the server workload, thereby saving power at low system utilization.
Accordingly, implementation of the invention results in extensive power savings. The low-power states such as deep sleep can save significant CPU power, while the associated cooling systems can be turned off, further reducing power consumption. Also reducing the noise level. Furthermore, the invention addresses multiprocessor servers in a Java application server environment,.
In addition, the technique above can be implemented in run-time environments other than Java application systems such as MICROSOFT®.NET. The invention can be implemented in any system with a layer of software above the OS that has visibility into the processing needs of the application system. Also, the technique can be applied to different operating systems including MS Windows and Linux. Furthermore, the technique can be modified to cover a broader range of systems and software (i.e. non-Java case).
Namely, a “watchdog” thread can be implemented within an OS, whose function is to monitor the states and the processing nature of the other threads in the system. The watchdog thread would perform similar calculation as the JVM above and make a call to the OS to request that (n−k) CPUs be put into a low-power state. For example, the watchdog thread functionality can be implemented in Windows native threads library, Linux native thread library, and User (green) threads library that may sit on top of the OS native libraries.
As discussed above, the present power management in accordance with the invention allows a selected number of processors, based on the amount of workload, to enter low-power states, thereby reducing the overall power consumption. As a result, the system level and the CPU level power consumption would significantly fall at lower workload levels. Therefore, the systems can be efficiently operated at reduced costs, even with power supply constraints.
The foregoing embodiments are merely exemplary and are not to be construed as limiting the present invention. The present teachings can be readily applied to other types of apparatuses. The description of the present invention is intended to be illustrative, and not to limit the scope of the claims. Many alternatives, modifications, and variations will be apparent to those skilled in the art.

Claims (22)

1. A method comprising:
determining a number of required processors in a system based on a number of active threads, comprises
determining a ratio of active threads to the number of required processors to process the active threads, the ratio being based on a type of processing associated with the active threads, and
dividing the number of active threads by the determined ratio;
setting processor affinity to run the active threads on k number of processors, the k number of processors determined as being the number of required processors; and
transitioning processors other than the k number of processors to enter a low-power state.
2. The method of claim 1, wherein determining the ratio based on the type of processing.
3. The method of claim 1, wherein transitioning processors other than the k number of processors into a deep sleep state.
4. The method of claim 1, further comprising turning off unnecessary periodic services running on processors other than the k number of processors.
5. The method of claim 1, wherein the system is a Java application server.
6. The method of claim 1, further comprising assigning a watchdog thread on an operating system of the system to monitor the state of the system threads to determine the number of required processors.
7. A system comprising:
an operating system; and
a virtual machine to determine a number of required processors in the system based on a number of active threads by determining a ratio of active threads to the number of required processors to process the active thread and dividing the number of active thread by the determined ratio, the ratio being based on a type of processing associated with the active threads, the virtual machine to cause the operating system to at least
set processor affinity to run the active threads on k number of processors, the k number of processor determined as the number of required processors, and
transition processors other than the k number of processors to enter a low-power state.
8. The system of claim 7, further comprising voltage regulators corresponding to each processor, the voltage regulator to allow separate power state control of the plurality of processors.
9. The system of claim 8, wherein the virtual machine to further cause the operating system to transition processors other than the k number of processor into deep sleep.
10. The system of claim 8, wherein the virtual machine to further cause the operating system to turn off unnecessary periodic services running on processors other than the k number of processors.
11. The system of claim 7, wherein the virtual machine is a Java virtual machine.
12. A method comprising:
assigning a first thread to monitor the states of other threads in a system, the first thread to determine the number of active threads in the system;
determining a number of required processors in the system based on a number of active threads, comprises:
determining a ratio of active threads to the number of required processors to process the active threads; based on the type of processing, and
dividing the number of active threads by the determined ratio;
setting processor affinity to run the active threads on k number of processors, the k number of processor determined as the number of required processors; and
transitioning processors other than the k number of processors to enter a low-power state.
13. The method of claim 12, wherein transitioning processors other than the k number of processors into deep sleep.
14. A system comprising:
means for determining a number of required processors in a system based on a number of active threads by determining a ratio of active threads to the number of required processors to process the active threads, the ratio being based on a type of processing associated with the active threads, and dividing the number of active threads by the determined ratio to determine the number of required processors;
means for setting processor affinity to run the active threads on k number of processors, the k number of processor determined as the number of required processors; and
means for transitioning processors other than the k number of processors to enter a low-power state.
15. The system of claim 14, further comprising means for transitioning processors other than the k number of processors into deep sleep.
16. The system of claim 14, further comprising means for turning off unnecessary periodic services running on processors other than the k number of processors.
17. A system comprising:
a Java virtual machine to determine a number of required processors in a system based on a number of active threads, the Java virtual machine determines a ratio of active threads to the number of required processors to process the active threads, the ratio being based on a type of processing associated with the active threads, and divides the number of active threads by the determined ratio to determine the number of required processors; and
an operation system caused by the Java virtual machine to at least:
set processor affinity to run the active threads on k number of processors, the k number of processor determined as the number of required processors, and
transition processors other than the k number of processors to enter a low-power state.
18. The system of claim 17, wherein the Java virtual machine further causes the operation system to transition processors other than the k number of processors into a deep sleep state.
19. The system of claim 17, wherein the Java virtual machine further causes the operation system to turn off unnecessary periodic services running on processors other than the k number of processors.
20. A program loaded in a computer readable medium comprising:
a first group of computer instructions to determine a number of required processors in a system based on a number of active threads and a type of processing associated with the active threads;
a second group of computer instructions to set processor affinity to run the active threads on k number of processors, the k number of processor determined as the number of required processors; and
a third group of computer instructions to transition processors other than the k number of processors to enter a low-power state.
21. The program of claim 20, further comprises computer instructions to transition processors other than the k number of processors into deep sleep.
22. The program of claim 20, further comprising computer instructions to turn off unnecessary periodic services running on processors other than the k number of processors.
US09/876,609 2001-06-07 2001-06-07 System and method for reducing power consumption in multiprocessor system Expired - Fee Related US6901522B2 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
US09/876,609 US6901522B2 (en) 2001-06-07 2001-06-07 System and method for reducing power consumption in multiprocessor system

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
US09/876,609 US6901522B2 (en) 2001-06-07 2001-06-07 System and method for reducing power consumption in multiprocessor system

Publications (2)

Publication Number Publication Date
US20020188877A1 US20020188877A1 (en) 2002-12-12
US6901522B2 true US6901522B2 (en) 2005-05-31

Family

ID=25368141

Family Applications (1)

Application Number Title Priority Date Filing Date
US09/876,609 Expired - Fee Related US6901522B2 (en) 2001-06-07 2001-06-07 System and method for reducing power consumption in multiprocessor system

Country Status (1)

Country Link
US (1) US6901522B2 (en)

Cited By (57)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20020083110A1 (en) * 2000-12-27 2002-06-27 Michael Kozuch Mechanism for providing power management through virtualization
US20020154983A1 (en) * 2001-04-24 2002-10-24 Corghi S.P.A. Lifting device for tyre removal machines
US20030055969A1 (en) * 2001-09-17 2003-03-20 International Business Machines Corporation System and method for performing power management on a distributed system
US20030115495A1 (en) * 2001-12-13 2003-06-19 International Business Machines Corporation Conserving energy in a data processing system by selectively powering down processors
US20030188052A1 (en) * 2002-03-07 2003-10-02 Hamilton Tony G. Scalable logic
US20040030773A1 (en) * 2002-08-12 2004-02-12 Ricardo Espinoza-Ibarra System and method for managing the operating frequency of blades in a bladed-system
US20040030774A1 (en) * 2002-08-12 2004-02-12 Ricardo Espinoza-Ibarra System and method for load dependent frequency and performance modulation in bladed systems
US20040121797A1 (en) * 2002-12-20 2004-06-24 Gupta Vivek G. Portable communication device having dynamic power management contol and method therefor
US20040128564A1 (en) * 2002-12-30 2004-07-01 Dubinsky Dean V. Power management system
US20040255171A1 (en) * 2003-06-13 2004-12-16 Zimmer Vincent J. Power management for clustered computing platforms
US20050022038A1 (en) * 2003-07-23 2005-01-27 Kaushik Shivnandan D. Determining target operating frequencies for a multiprocessor system
US20050166074A1 (en) * 2004-01-22 2005-07-28 International Business Machines Corporation Method and apparatus for reducing power consumption in a logically partitioned data processing system
US20050166075A1 (en) * 2004-01-22 2005-07-28 International Business Machines Corporation Method and apparatus for managing power and thermal alerts transparently to an operating system in a data processing system with increased granularity in reducing power usage and thermal generation
US20050216222A1 (en) * 2004-03-29 2005-09-29 Sony Computer Entertainment Inc. Methods and apparatus for achieving thermal management using processing task scheduling
US20050228967A1 (en) * 2004-03-16 2005-10-13 Sony Computer Entertainment Inc. Methods and apparatus for reducing power dissipation in a multi-processor system
US20060036878A1 (en) * 2004-08-11 2006-02-16 Rothman Michael A System and method to enable processor management policy in a multi-processor environment
US20060279152A1 (en) * 2005-06-11 2006-12-14 Lg Electronics Inc. Method and apparatus for implementing a hybrid mode for a multi-core processor
US20060294401A1 (en) * 2005-06-24 2006-12-28 Dell Products L.P. Power management of multiple processors
US20080104608A1 (en) * 2006-10-27 2008-05-01 Hyser Chris D Starting up at least one virtual machine in a physical machine by a load balancer
US20080104429A1 (en) * 2006-10-31 2008-05-01 Stephen Ejner Horvath Multiprocessor system with selective processor power down of core and inter-processor communications ports
US20080104587A1 (en) * 2006-10-27 2008-05-01 Magenheimer Daniel J Migrating a virtual machine from a first physical machine in response to receiving a command to lower a power mode of the first physical machine
US7389506B1 (en) * 2002-07-30 2008-06-17 Unisys Corporation Selecting processor configuration based on thread usage in a multiprocessor system
US20080244294A1 (en) * 2007-03-29 2008-10-02 Allarey Jose P Dynamic power reduction
US20090089543A1 (en) * 2007-09-28 2009-04-02 Gunther Stephen H Integrated circuit performance improvement across a range of operating conditions and physical constraints
US20090150650A1 (en) * 2007-12-07 2009-06-11 Microsoft Corporation Kernel Processor Grouping
US20090222654A1 (en) * 2008-02-29 2009-09-03 Herbert Hum Distribution of tasks among asymmetric processing elements
US20090249094A1 (en) * 2008-03-28 2009-10-01 Microsoft Corporation Power-aware thread scheduling and dynamic use of processors
US20090307698A1 (en) * 2008-06-10 2009-12-10 Dell Products, Lp Information handling system power management device and methods thereof
US20100169681A1 (en) * 2008-12-31 2010-07-01 Wong Carl K Method and system for reducing power consumption of active web page content
US20100169609A1 (en) * 2008-12-30 2010-07-01 Lev Finkelstein Method for optimizing voltage-frequency setup in multi-core processor systems
US20100218018A1 (en) * 2009-02-23 2010-08-26 International Business Machines Corporation Applying power management on a partition basis in a multipartitioned computer system
US20100332883A1 (en) * 2009-06-30 2010-12-30 Sun Microsystems, Inc. Method and system for event-based management of resources
US20110078469A1 (en) * 2009-09-26 2011-03-31 Therien Guy M Method and apparatus for low power operation of multi-core processors
US20110107332A1 (en) * 2008-04-10 2011-05-05 Cullen Bash Virtual Machine Migration According To Environmental Data
US8005101B1 (en) * 2006-08-10 2011-08-23 Bivio Networks, Inc. Scalable architecture for deep-packet processing
US20110252260A1 (en) * 2010-04-08 2011-10-13 International Business Machines Corporation Reducing Power Requirements of a Multiple Core Processor
US20120185866A1 (en) * 2009-09-25 2012-07-19 Philippe Couvee System and method for managing the interleaved execution of threads
US8341626B1 (en) 2007-11-30 2012-12-25 Hewlett-Packard Development Company, L. P. Migration of a virtual machine in response to regional environment effects
US20130179710A1 (en) * 2012-01-06 2013-07-11 Via Technologies, Inc. Multi-core processor system, dynamic power management method thereof and control apparatus thereof
US8490103B1 (en) * 2007-04-30 2013-07-16 Hewlett-Packard Development Company, L.P. Allocating computer processes to processor cores as a function of process utilizations
US8533514B2 (en) 2011-06-26 2013-09-10 Microsoft Corporation Power-capping based on UPS capacity
US20130312004A1 (en) * 2011-02-02 2013-11-21 Nec Corporation Distributed system, device, method, and program
US8732699B1 (en) 2006-10-27 2014-05-20 Hewlett-Packard Development Company, L.P. Migrating virtual machines between physical machines in a define group
US20140181559A1 (en) * 2012-12-26 2014-06-26 Robert Gough Supporting runtime d3 and buffer flush and fill for a peripheral component interconnect device
US8924781B2 (en) 2011-06-30 2014-12-30 Microsoft Corporation Power capping based on generator capacity
US9086883B2 (en) 2011-06-10 2015-07-21 Qualcomm Incorporated System and apparatus for consolidated dynamic frequency/voltage control
US9092250B1 (en) * 2006-10-27 2015-07-28 Hewlett-Packard Development Company, L.P. Selecting one of plural layouts of virtual machines on physical machines
US9557795B1 (en) * 2009-09-23 2017-01-31 Xilinx, Inc. Multiprocessor system with performance control based on input and output data rates
US9594579B2 (en) 2011-07-29 2017-03-14 Hewlett Packard Enterprise Development Lp Migrating virtual machines
US9652027B2 (en) 2015-04-01 2017-05-16 Microsoft Technology Licensing, Llc Thread scheduling based on performance state and idle state of processing units
CN107132903A (en) * 2016-02-29 2017-09-05 中兴通讯股份有限公司 A kind of administration of energy conservation implementation method, device and the network equipment
US9813297B2 (en) 2014-03-27 2017-11-07 Huawei Technologies Co., Ltd. Application scenario identification method, power consumption management method, apparatus, and terminal device
US20170344399A1 (en) * 2011-05-02 2017-11-30 Green Hills Software, Inc Time-variant scheduling of affinity groups on a multi-core processor
USRE47420E1 (en) 2001-03-02 2019-06-04 Advanced Micro Devices, Inc. Performance and power optimization via block oriented performance measurement and control
US10365700B2 (en) 2015-11-27 2019-07-30 Samsung Electronics Co., Ltd. System and method of managing context-aware resource hotplug
US10606663B2 (en) * 2017-01-17 2020-03-31 International Business Machines Corporation Processor mode switching
US10698737B2 (en) * 2018-04-26 2020-06-30 Hewlett Packard Enterprise Development Lp Interoperable neural network operation scheduler

Families Citing this family (44)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6996745B1 (en) * 2001-09-27 2006-02-07 Sun Microsystems, Inc. Process for shutting down a CPU in a SMP configuration
US6795928B2 (en) * 2002-03-18 2004-09-21 International Business Machines Corporation Method for managing power consumption of multiple computer servers
US7174468B2 (en) * 2002-08-01 2007-02-06 Texas Instruments Incorporated Methodology for coordinating and tuning application power
US7155617B2 (en) * 2002-08-01 2006-12-26 Texas Instruments Incorporated Methods and systems for performing dynamic power management via frequency and voltage scaling
US7080267B2 (en) 2002-08-01 2006-07-18 Texas Instruments Incorporated Methodology for managing power consumption in an application
US20050050310A1 (en) * 2003-07-15 2005-03-03 Bailey Daniel W. Method, system, and apparatus for improving multi-core processor performance
US7134031B2 (en) * 2003-08-04 2006-11-07 Arm Limited Performance control within a multi-processor system
GB2406184B (en) 2003-09-17 2006-03-15 Advanced Risc Mach Ltd Data processing system
US8533716B2 (en) 2004-03-31 2013-09-10 Synopsys, Inc. Resource management in a multicore architecture
US7437581B2 (en) * 2004-09-28 2008-10-14 Intel Corporation Method and apparatus for varying energy per instruction according to the amount of available parallelism
JP2006113767A (en) * 2004-10-14 2006-04-27 Sony Corp Information processing system and method, and program
EP1715405A1 (en) * 2005-04-19 2006-10-25 STMicroelectronics S.r.l. Processing method, system and computer program product for dynamic allocation of processing tasks in a multiprocessor cluster platforms with power adjustment
GB0519981D0 (en) 2005-09-30 2005-11-09 Ignios Ltd Scheduling in a multicore architecture
US8108863B2 (en) * 2005-12-30 2012-01-31 Intel Corporation Load balancing for multi-threaded applications via asymmetric power throttling
JP4653841B2 (en) * 2006-02-28 2011-03-16 インテル・コーポレーション Enhanced reliability of multi-core processors
US20070214374A1 (en) * 2006-03-13 2007-09-13 Mark Hempstead Ultra low power system for sensor network applications
US7607030B2 (en) * 2006-06-27 2009-10-20 Hewlett-Packard Development Company, L.P. Method and apparatus for adjusting power consumption during server initial system power performance state
US7739548B2 (en) * 2006-06-27 2010-06-15 Hewlett-Packard Development Company, L.P. Determining actual power consumption for system power performance states
US7757107B2 (en) * 2006-06-27 2010-07-13 Hewlett-Packard Development Company, L.P. Maintaining a power budget
US7702931B2 (en) * 2006-06-27 2010-04-20 Hewlett-Packard Development Company, L.P. Adjusting power budgets of multiple servers
US8046565B2 (en) * 2006-12-06 2011-10-25 Kabushiki Kaisha Toshiba Accelerator load balancing with dynamic frequency and voltage reduction
US8171321B2 (en) * 2007-12-26 2012-05-01 Intel Corporation Method and apparatus for cost and power efficient, scalable operating system independent services
EP2263136A4 (en) * 2008-03-03 2015-10-07 Hewlett Packard Development Co Software-based power-capping
KR20090098500A (en) * 2008-03-14 2009-09-17 삼성전자주식회사 Apparatus and method for checking a virtual machine for idleness, and computer readable recording medium to perform the method
US8488500B2 (en) 2008-05-02 2013-07-16 Dhaani Systems Power management of networked devices
WO2010029641A1 (en) * 2008-09-12 2010-03-18 富士通株式会社 Information processing device, method for controlling information processing device, and program for controlling information processing device
US20100262966A1 (en) * 2009-04-14 2010-10-14 International Business Machines Corporation Multiprocessor computing device
KR101620103B1 (en) * 2009-10-21 2016-05-13 삼성전자주식회사 Appratus and method for power control of central processing unit in a multi-core system
KR101648978B1 (en) * 2009-11-05 2016-08-18 삼성전자주식회사 Method for controlling power in low power multi-core system
US9128705B2 (en) 2009-12-16 2015-09-08 Qualcomm Incorporated System and method for controlling central processing unit power with reduced frequency oscillations
US9563250B2 (en) 2009-12-16 2017-02-07 Qualcomm Incorporated System and method for controlling central processing unit power based on inferred workload parallelism
US8650426B2 (en) * 2009-12-16 2014-02-11 Qualcomm Incorporated System and method for controlling central processing unit power in a virtualized system
US8689037B2 (en) * 2009-12-16 2014-04-01 Qualcomm Incorporated System and method for asynchronously and independently controlling core clocks in a multicore central processing unit
US8775830B2 (en) 2009-12-16 2014-07-08 Qualcomm Incorporated System and method for dynamically controlling a plurality of cores in a multicore central processing unit based on temperature
US9176572B2 (en) 2009-12-16 2015-11-03 Qualcomm Incorporated System and method for controlling central processing unit power with guaranteed transient deadlines
US20110145559A1 (en) * 2009-12-16 2011-06-16 Thomson Steven S System and method for controlling central processing unit power with guaranteed steady state deadlines
US9104411B2 (en) 2009-12-16 2015-08-11 Qualcomm Incorporated System and method for controlling central processing unit power with guaranteed transient deadlines
US8909962B2 (en) 2009-12-16 2014-12-09 Qualcomm Incorporated System and method for controlling central processing unit power with guaranteed transient deadlines
US20110289332A1 (en) * 2010-05-24 2011-11-24 Advanced Micro Devices, Inc. Method and apparatus for power management in a multi-processor system
US8869164B2 (en) 2010-09-02 2014-10-21 International Business Machines Corporation Scheduling a parallel job in a system of virtual containers
US9213381B2 (en) * 2012-05-24 2015-12-15 Ati Technologies Ulc Voltage regulator dynamically determining whether requested power transition can be supported
US9354943B2 (en) * 2014-03-19 2016-05-31 International Business Machines Corporation Power management for multi-core processing systems
US9696787B2 (en) * 2014-12-10 2017-07-04 Qualcomm Innovation Center, Inc. Dynamic control of processors to reduce thermal and power costs
US10997029B2 (en) * 2019-03-07 2021-05-04 International Business Machines Corporation Core repair with failure analysis and recovery probe

Citations (7)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5615370A (en) * 1994-09-16 1997-03-25 Fujitsu Limited Computer system with automatic degradation/initialization function
US6122745A (en) 1998-12-31 2000-09-19 Sun Microsystems Incorporated Method and apparatus for managing power consumption in data processing systems
US6131166A (en) 1998-03-13 2000-10-10 Sun Microsystems, Inc. System and method for cross-platform application level power management
US6141762A (en) 1998-08-03 2000-10-31 Nicol; Christopher J. Power reduction in a multiprocessor digital signal processor based on processor load
US6269391B1 (en) * 1997-02-24 2001-07-31 Novell, Inc. Multi-processor scheduling kernel
US6711691B1 (en) * 1999-05-13 2004-03-23 Apple Computer, Inc. Power management for computer systems
US6732139B1 (en) * 1999-08-16 2004-05-04 International Business Machines Corporation Method to distribute programs using remote java objects

Patent Citations (7)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5615370A (en) * 1994-09-16 1997-03-25 Fujitsu Limited Computer system with automatic degradation/initialization function
US6269391B1 (en) * 1997-02-24 2001-07-31 Novell, Inc. Multi-processor scheduling kernel
US6131166A (en) 1998-03-13 2000-10-10 Sun Microsystems, Inc. System and method for cross-platform application level power management
US6141762A (en) 1998-08-03 2000-10-31 Nicol; Christopher J. Power reduction in a multiprocessor digital signal processor based on processor load
US6122745A (en) 1998-12-31 2000-09-19 Sun Microsystems Incorporated Method and apparatus for managing power consumption in data processing systems
US6711691B1 (en) * 1999-05-13 2004-03-23 Apple Computer, Inc. Power management for computer systems
US6732139B1 (en) * 1999-08-16 2004-05-04 International Business Machines Corporation Method to distribute programs using remote java objects

Non-Patent Citations (3)

* Cited by examiner, † Cited by third party
Title
Michael Kanellos, Transmeta-based servers boast power-saving chips, Jan. 25, 2001, pp 1-3, c/net News.com Tech news first.
Process and Thread Functions, Dec. 5, 2000, pp 1-4, Microsoft Corporation.
Server Design FAQ, Version 1.0, Jul. 2, 1999, pp 1-39, Intel Corporation and Microsoft Corporation.

Cited By (126)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20020083110A1 (en) * 2000-12-27 2002-06-27 Michael Kozuch Mechanism for providing power management through virtualization
US7225441B2 (en) * 2000-12-27 2007-05-29 Intel Corporation Mechanism for providing power management through virtualization
USRE48819E1 (en) 2001-03-02 2021-11-16 Advanced Micro Devices, Inc. Performance and power optimization via block oriented performance measurement and control
USRE47420E1 (en) 2001-03-02 2019-06-04 Advanced Micro Devices, Inc. Performance and power optimization via block oriented performance measurement and control
US20020154983A1 (en) * 2001-04-24 2002-10-24 Corghi S.P.A. Lifting device for tyre removal machines
US20030055969A1 (en) * 2001-09-17 2003-03-20 International Business Machines Corporation System and method for performing power management on a distributed system
US20030115495A1 (en) * 2001-12-13 2003-06-19 International Business Machines Corporation Conserving energy in a data processing system by selectively powering down processors
US7318164B2 (en) * 2001-12-13 2008-01-08 International Business Machines Corporation Conserving energy in a data processing system by selectively powering down processors
US7349995B2 (en) * 2002-03-07 2008-03-25 Intel Corporation Computing device with scalable logic block to respond to data transfer requests
US20030188052A1 (en) * 2002-03-07 2003-10-02 Hamilton Tony G. Scalable logic
US7389506B1 (en) * 2002-07-30 2008-06-17 Unisys Corporation Selecting processor configuration based on thread usage in a multiprocessor system
US7548971B2 (en) * 2002-08-12 2009-06-16 Hewlett-Packard Development Company, L.P. System and method for managing the operating frequency of blades in a bladed-system
US20040030774A1 (en) * 2002-08-12 2004-02-12 Ricardo Espinoza-Ibarra System and method for load dependent frequency and performance modulation in bladed systems
US7185214B2 (en) * 2002-08-12 2007-02-27 Hewlett-Packard Development Company, L.P. System and method for load dependent frequency and performance modulation in bladed systems
US20040030773A1 (en) * 2002-08-12 2004-02-12 Ricardo Espinoza-Ibarra System and method for managing the operating frequency of blades in a bladed-system
US20040121797A1 (en) * 2002-12-20 2004-06-24 Gupta Vivek G. Portable communication device having dynamic power management contol and method therefor
US7162279B2 (en) * 2002-12-20 2007-01-09 Intel Corporation Portable communication device having dynamic power management control and method therefor
US20070266266A1 (en) * 2002-12-30 2007-11-15 International Business Machines Corporation Power Management System
US7596686B2 (en) 2002-12-30 2009-09-29 International Business Machines Corporation Power management system
US20040128564A1 (en) * 2002-12-30 2004-07-01 Dubinsky Dean V. Power management system
US7290152B2 (en) * 2002-12-30 2007-10-30 International Business Machines Corporation Method and system for managing power within a compute component of a multiprocessor system
US7051215B2 (en) * 2003-06-13 2006-05-23 Intel Corporation Power management for clustered computing platforms
US20040255171A1 (en) * 2003-06-13 2004-12-16 Zimmer Vincent J. Power management for clustered computing platforms
US7146514B2 (en) * 2003-07-23 2006-12-05 Intel Corporation Determining target operating frequencies for a multiprocessor system
US20050022038A1 (en) * 2003-07-23 2005-01-27 Kaushik Shivnandan D. Determining target operating frequencies for a multiprocessor system
US7702936B2 (en) 2004-01-22 2010-04-20 International Business Machines Corporation Reducing power consumption in a logically partitioned data processing system
US20050166074A1 (en) * 2004-01-22 2005-07-28 International Business Machines Corporation Method and apparatus for reducing power consumption in a logically partitioned data processing system
US7334142B2 (en) * 2004-01-22 2008-02-19 International Business Machines Corporation Reducing power consumption in a logically partitioned data processing system with operating system call that indicates a selected processor is unneeded for a period of time
US7194641B2 (en) 2004-01-22 2007-03-20 International Business Machines Corporation Method and apparatus for managing power and thermal alerts transparently to an operating system in a data processing system with increased granularity in reducing power usage and thermal generation
US20080091964A1 (en) * 2004-01-22 2008-04-17 Hack Mark E Method and apparatus for reducing power consumption in a logically partitioned data processing system
US20050166075A1 (en) * 2004-01-22 2005-07-28 International Business Machines Corporation Method and apparatus for managing power and thermal alerts transparently to an operating system in a data processing system with increased granularity in reducing power usage and thermal generation
US20050228967A1 (en) * 2004-03-16 2005-10-13 Sony Computer Entertainment Inc. Methods and apparatus for reducing power dissipation in a multi-processor system
US20050216222A1 (en) * 2004-03-29 2005-09-29 Sony Computer Entertainment Inc. Methods and apparatus for achieving thermal management using processing task scheduling
US8224639B2 (en) 2004-03-29 2012-07-17 Sony Computer Entertainment Inc. Methods and apparatus for achieving thermal management using processing task scheduling
US8751212B2 (en) 2004-03-29 2014-06-10 Sony Computer Entertainment Inc. Methods and apparatus for achieving thermal management using processing task scheduling
US9183051B2 (en) 2004-03-29 2015-11-10 Sony Computer Entertainment Inc. Methods and apparatus for achieving thermal management using processing task scheduling
US20060036878A1 (en) * 2004-08-11 2006-02-16 Rothman Michael A System and method to enable processor management policy in a multi-processor environment
US7739527B2 (en) * 2004-08-11 2010-06-15 Intel Corporation System and method to enable processor management policy in a multi-processor environment
US7702938B2 (en) * 2005-06-11 2010-04-20 Lg Electronics Inc. Method and apparatus for implementing a hybrid power management mode for a computer with a multi-core processor
US20060279152A1 (en) * 2005-06-11 2006-12-14 Lg Electronics Inc. Method and apparatus for implementing a hybrid mode for a multi-core processor
US20060294401A1 (en) * 2005-06-24 2006-12-28 Dell Products L.P. Power management of multiple processors
US8599687B1 (en) 2006-08-10 2013-12-03 Bivio Networks, Inc. Scalable architecture for deep-packet processing
US8005101B1 (en) * 2006-08-10 2011-08-23 Bivio Networks, Inc. Scalable architecture for deep-packet processing
US9092250B1 (en) * 2006-10-27 2015-07-28 Hewlett-Packard Development Company, L.P. Selecting one of plural layouts of virtual machines on physical machines
US20080104587A1 (en) * 2006-10-27 2008-05-01 Magenheimer Daniel J Migrating a virtual machine from a first physical machine in response to receiving a command to lower a power mode of the first physical machine
US8732699B1 (en) 2006-10-27 2014-05-20 Hewlett-Packard Development Company, L.P. Migrating virtual machines between physical machines in a define group
US8296760B2 (en) 2006-10-27 2012-10-23 Hewlett-Packard Development Company, L.P. Migrating a virtual machine from a first physical machine in response to receiving a command to lower a power mode of the first physical machine
US10346208B2 (en) 2006-10-27 2019-07-09 Hewlett Packard Enterprise Development Lp Selecting one of plural layouts of virtual machines on physical machines
US20080104608A1 (en) * 2006-10-27 2008-05-01 Hyser Chris D Starting up at least one virtual machine in a physical machine by a load balancer
US8185893B2 (en) 2006-10-27 2012-05-22 Hewlett-Packard Development Company, L.P. Starting up at least one virtual machine in a physical machine by a load balancer
US7424630B2 (en) 2006-10-31 2008-09-09 Hewlett-Packard Development Company, L.P. Multiprocessor system with selective processor power down of core and inter-processor communications ports
US20080104429A1 (en) * 2006-10-31 2008-05-01 Stephen Ejner Horvath Multiprocessor system with selective processor power down of core and inter-processor communications ports
GB2459230B (en) * 2007-03-29 2011-11-30 Intel Corp Dynamic power reduction
US20080244294A1 (en) * 2007-03-29 2008-10-02 Allarey Jose P Dynamic power reduction
WO2008121625A1 (en) * 2007-03-29 2008-10-09 Intel Corporation Dynamic power reduction
US20110154081A1 (en) * 2007-03-29 2011-06-23 Allarey Jose P Dynamic power reduction
US7900069B2 (en) 2007-03-29 2011-03-01 Intel Corporation Dynamic power reduction
GB2459230A (en) * 2007-03-29 2009-10-21 Intel Corp Dynamic power reduction
US8560869B2 (en) 2007-03-29 2013-10-15 Intel Corporation Dynamic power reduction
US8490103B1 (en) * 2007-04-30 2013-07-16 Hewlett-Packard Development Company, L.P. Allocating computer processes to processor cores as a function of process utilizations
US20090089543A1 (en) * 2007-09-28 2009-04-02 Gunther Stephen H Integrated circuit performance improvement across a range of operating conditions and physical constraints
US8949635B2 (en) * 2007-09-28 2015-02-03 Intel Corporation Integrated circuit performance improvement across a range of operating conditions and physical constraints
US8341626B1 (en) 2007-11-30 2012-12-25 Hewlett-Packard Development Company, L. P. Migration of a virtual machine in response to regional environment effects
US20090150650A1 (en) * 2007-12-07 2009-06-11 Microsoft Corporation Kernel Processor Grouping
US9829965B2 (en) 2008-02-29 2017-11-28 Intel Corporation Distribution of tasks among asymmetric processing elements
US8930722B2 (en) * 2008-02-29 2015-01-06 Intel Corporation Distribution of tasks among asymmetric processing elements
US11366511B2 (en) 2008-02-29 2022-06-21 Intel Corporation Distribution of tasks among asymmetric processing elements
US11054890B2 (en) 2008-02-29 2021-07-06 Intel Corporation Distribution of tasks among asymmetric processing elements
US20100005474A1 (en) * 2008-02-29 2010-01-07 Eric Sprangle Distribution of tasks among asymmetric processing elements
US10437320B2 (en) 2008-02-29 2019-10-08 Intel Corporation Distribution of tasks among asymmetric processing elements
US10409360B2 (en) 2008-02-29 2019-09-10 Intel Corporation Distribution of tasks among asymmetric processing elements
US10386915B2 (en) 2008-02-29 2019-08-20 Intel Corporation Distribution of tasks among asymmetric processing elements
US9939882B2 (en) 2008-02-29 2018-04-10 Intel Corporation Systems and methods for migrating processes among asymmetrical processing cores
US9910483B2 (en) 2008-02-29 2018-03-06 Intel Corporation Distribution of tasks among asymmetric processing elements
US9874926B2 (en) 2008-02-29 2018-01-23 Intel Corporation Distribution of tasks among asymmetric processing elements
US9870046B2 (en) 2008-02-29 2018-01-16 Intel Corporation Distribution of tasks among asymmetric processing elements
US9760162B2 (en) 2008-02-29 2017-09-12 Intel Corporation Distribution of tasks among asymmetric processing elements
US9753530B2 (en) 2008-02-29 2017-09-05 Intel Corporation Distribution of tasks among asymmetric processing elements
US20090222654A1 (en) * 2008-02-29 2009-09-03 Herbert Hum Distribution of tasks among asymmetric processing elements
US8615647B2 (en) 2008-02-29 2013-12-24 Intel Corporation Migrating execution of thread between cores of different instruction set architecture in multi-core processor and transitioning each core to respective on / off power state
RU2503987C2 (en) * 2008-03-28 2014-01-10 Майкрософт Корпорейшн Power-saving stream scheduling and dynamic use of processors
US9003215B2 (en) 2008-03-28 2015-04-07 Microsoft Technology Licensing, Llc Power-aware thread scheduling and dynamic use of processors
US20090249094A1 (en) * 2008-03-28 2009-10-01 Microsoft Corporation Power-aware thread scheduling and dynamic use of processors
TWI464570B (en) * 2008-03-28 2014-12-11 Microsoft Corp Method, computer readable storage media, and multiple logical processor system for balancing performance and power savings of a computing device having muitiple cores
US8010822B2 (en) 2008-03-28 2011-08-30 Microsoft Corporation Power-aware thread scheduling and dynamic use of processors
US20110107332A1 (en) * 2008-04-10 2011-05-05 Cullen Bash Virtual Machine Migration According To Environmental Data
US8904383B2 (en) 2008-04-10 2014-12-02 Hewlett-Packard Development Company, L.P. Virtual machine migration according to environmental data
US9110716B2 (en) 2008-06-10 2015-08-18 Dell Products, Lp Information handling system power management device and methods thereof
US20090307698A1 (en) * 2008-06-10 2009-12-10 Dell Products, Lp Information handling system power management device and methods thereof
US20100169609A1 (en) * 2008-12-30 2010-07-01 Lev Finkelstein Method for optimizing voltage-frequency setup in multi-core processor systems
US8245070B2 (en) * 2008-12-30 2012-08-14 Intel Corporation Method for optimizing voltage-frequency setup in multi-core processor systems
US20100169681A1 (en) * 2008-12-31 2010-07-01 Wong Carl K Method and system for reducing power consumption of active web page content
US8010816B2 (en) * 2008-12-31 2011-08-30 Intel Corporation Method and system for reducing power consumption of active web page content
US8370660B2 (en) 2008-12-31 2013-02-05 Intel Corporation Method and system for reducing power consumption of active web page content
US20100218018A1 (en) * 2009-02-23 2010-08-26 International Business Machines Corporation Applying power management on a partition basis in a multipartitioned computer system
US8209554B2 (en) * 2009-02-23 2012-06-26 International Business Machines Corporation Applying power management on a partition basis in a multipartitioned computer system
US20100332883A1 (en) * 2009-06-30 2010-12-30 Sun Microsystems, Inc. Method and system for event-based management of resources
US8683476B2 (en) * 2009-06-30 2014-03-25 Oracle America, Inc. Method and system for event-based management of hardware resources using a power state of the hardware resources
US9557795B1 (en) * 2009-09-23 2017-01-31 Xilinx, Inc. Multiprocessor system with performance control based on input and output data rates
US20120185866A1 (en) * 2009-09-25 2012-07-19 Philippe Couvee System and method for managing the interleaved execution of threads
US9436510B2 (en) * 2009-09-25 2016-09-06 Bull Sas System and method for managing the interleaved execution of threads
CN102033596A (en) * 2009-09-26 2011-04-27 英特尔公司 Method and apparatus for low power operation of multi-core processor
CN102033596B (en) * 2009-09-26 2015-11-25 英特尔公司 For the method and apparatus of the low-power operation of multi-core processor
US20110078469A1 (en) * 2009-09-26 2011-03-31 Therien Guy M Method and apparatus for low power operation of multi-core processors
US8543857B2 (en) 2009-09-26 2013-09-24 Intel Corporation Method and apparatus for low power operation of multi-core processors
US8381006B2 (en) * 2010-04-08 2013-02-19 International Business Machines Corporation Reducing power requirements of a multiple core processor
US20110252260A1 (en) * 2010-04-08 2011-10-13 International Business Machines Corporation Reducing Power Requirements of a Multiple Core Processor
US9201707B2 (en) * 2011-02-02 2015-12-01 Nec Corporation Distributed system, device, method, and program
US20130312004A1 (en) * 2011-02-02 2013-11-21 Nec Corporation Distributed system, device, method, and program
US20170344399A1 (en) * 2011-05-02 2017-11-30 Green Hills Software, Inc Time-variant scheduling of affinity groups on a multi-core processor
US9086883B2 (en) 2011-06-10 2015-07-21 Qualcomm Incorporated System and apparatus for consolidated dynamic frequency/voltage control
US8533514B2 (en) 2011-06-26 2013-09-10 Microsoft Corporation Power-capping based on UPS capacity
US8924781B2 (en) 2011-06-30 2014-12-30 Microsoft Corporation Power capping based on generator capacity
US9594579B2 (en) 2011-07-29 2017-03-14 Hewlett Packard Enterprise Development Lp Migrating virtual machines
US8977880B2 (en) * 2012-01-06 2015-03-10 Via Technologies, Inc. Method for managing power supply of multi-core processor system involves powering off main and slave cores when master bus is in idle state
US20130179710A1 (en) * 2012-01-06 2013-07-11 Via Technologies, Inc. Multi-core processor system, dynamic power management method thereof and control apparatus thereof
US9746910B2 (en) 2012-12-26 2017-08-29 Intel Corporation Supporting runtime D3 and buffer flush and fill for a peripheral component interconnect device
US9244521B2 (en) * 2012-12-26 2016-01-26 Intel Corporation Supporting runtime D3 and buffer flush and fill for a peripheral component interconnect device
US20140181559A1 (en) * 2012-12-26 2014-06-26 Robert Gough Supporting runtime d3 and buffer flush and fill for a peripheral component interconnect device
US9813297B2 (en) 2014-03-27 2017-11-07 Huawei Technologies Co., Ltd. Application scenario identification method, power consumption management method, apparatus, and terminal device
US9652027B2 (en) 2015-04-01 2017-05-16 Microsoft Technology Licensing, Llc Thread scheduling based on performance state and idle state of processing units
US10365700B2 (en) 2015-11-27 2019-07-30 Samsung Electronics Co., Ltd. System and method of managing context-aware resource hotplug
CN107132903A (en) * 2016-02-29 2017-09-05 中兴通讯股份有限公司 A kind of administration of energy conservation implementation method, device and the network equipment
CN107132903B (en) * 2016-02-29 2020-11-13 中兴通讯股份有限公司 Energy-saving management implementation method, device and network equipment
US10606663B2 (en) * 2017-01-17 2020-03-31 International Business Machines Corporation Processor mode switching
US10698737B2 (en) * 2018-04-26 2020-06-30 Hewlett Packard Enterprise Development Lp Interoperable neural network operation scheduler

Also Published As

Publication number Publication date
US20020188877A1 (en) 2002-12-12

Similar Documents

Publication Publication Date Title
US6901522B2 (en) System and method for reducing power consumption in multiprocessor system
US11181970B2 (en) System and method for performing distributed power management without power cycling hosts
US7484110B2 (en) Adaptive power management
US7761720B2 (en) Mechanism for processor power state aware distribution of lowest priority interrupts
US7219241B2 (en) Method for managing virtual and actual performance states of logical processors in a multithreaded processor using system management mode
US7496915B2 (en) Dynamic switching of multithreaded processor between single threaded and simultaneous multithreaded modes
GB2427724A (en) High speed and low power mode multiprocessor system using multithreading processors
US8578388B2 (en) Optimizing the performance of hybrid CPU systems based upon the thread type of applications to be run on the CPUs
US10860085B2 (en) Modified sleep state graphics processing system
US8261117B2 (en) Virtualization in a multi-core processor (MCP)
US8886917B1 (en) Switching to core executing OS like codes upon system call reading greater than predetermined amount of data
US20050154928A1 (en) Remote power-on functionality in a partitioned environment
Lien et al. Energy efficiency and performance of a controlled model for scalable computing systems

Legal Events

Date Code Title Description
AS Assignment

Owner name: INTEL CORPORATION, CALIFORNIA

Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNOR:BUCH, DEEP K.;REEL/FRAME:011899/0836

Effective date: 20010605

FPAY Fee payment

Year of fee payment: 4

FPAY Fee payment

Year of fee payment: 8

REMI Maintenance fee reminder mailed
LAPS Lapse for failure to pay maintenance fees
STCH Information on status: patent discontinuation

Free format text: PATENT EXPIRED DUE TO NONPAYMENT OF MAINTENANCE FEES UNDER 37 CFR 1.362

FP Lapsed due to failure to pay maintenance fee

Effective date: 20170531