JPH1063516A - Method and device for bottleneck detection - Google Patents

Method and device for bottleneck detection

Info

Publication number
JPH1063516A
JPH1063516A JP8218445A JP21844596A JPH1063516A JP H1063516 A JPH1063516 A JP H1063516A JP 8218445 A JP8218445 A JP 8218445A JP 21844596 A JP21844596 A JP 21844596A JP H1063516 A JPH1063516 A JP H1063516A
Authority
JP
Japan
Prior art keywords
time
information
task
measured
semaphore
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.)
Pending
Application number
JP8218445A
Other languages
Japanese (ja)
Inventor
Susumu Shibazaki
進 柴崎
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.)
NEC Corp
Original Assignee
NEC 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 NEC Corp filed Critical NEC Corp
Priority to JP8218445A priority Critical patent/JPH1063516A/en
Publication of JPH1063516A publication Critical patent/JPH1063516A/en
Pending legal-status Critical Current

Links

Landscapes

  • Debugging And Monitoring (AREA)
  • Multi Processors (AREA)

Abstract

PROBLEM TO BE SOLVED: To detect a bottleneck of a task with high precision by measuring the wait times of semaphores suspected to be bottlenecks by individual tasks and obtaining the cumulative time of the wait times. SOLUTION: An all-wait-state cumulative time calculating means 15 in a processor 1 adds the difference between the time that a timer mechanism 10 indicates when a task in a wait state enters an execution state and a state update time in a task control block 20, i.e., the time for which the task is in the wait time to the all-waitstate cumulative time in the task control block 20 to measure the cumulative time for which the task to be measured is in the wait time at an arbitrary semaphore 28. Thus, the wait times of semaphores suspected to be bottlenecks can be measured as to the respective tasks. Further, the semaphore 28 having the longest measured wait-state cumulative time is detected as a bottleneck.

Description

【発明の詳細な説明】DETAILED DESCRIPTION OF THE INVENTION

【0001】[0001]

【発明の属する技術分野】本発明は、情報処理装置に関
し、特に並列処理環境におけるボトルネックを検出する
ためのボトルネック検出装置及びボトルネック検出方法
に関する。
The present invention relates to an information processing apparatus, and more particularly to a bottleneck detecting apparatus and a bottleneck detecting method for detecting a bottleneck in a parallel processing environment.

【0002】[0002]

【従来の技術】近年、単一プロセッサでは実現困難なレ
ベルの高性能達成手段として、並列処理が注目されてい
る。
2. Description of the Related Art In recent years, parallel processing has attracted attention as a means of achieving a high level of performance that is difficult to achieve with a single processor.

【0003】このような並列処理において、共有メモリ
内の各種管理テーブルなどの資源を複数のタスクが相互
排除しながら使用する場合、該資源に対応したセマフォ
を用いて排他制御を行うのが一般的である。ここで、セ
マフォとは、相互排除を実現するために用いる変数のこ
とである。この際、タスクによる使用が特定の資源に集
中してしまうと、該特定資源への使用能力が限界とな
り、他の資源に余裕があったとしても全体として性能が
低下してしまうといった現象が発生することがある。こ
のような特定の資源のことをボトルネックと呼ぶ。
In such parallel processing, when a plurality of tasks use resources such as various management tables in a shared memory while mutually excluding each other, exclusive control is generally performed using a semaphore corresponding to the resources. It is. Here, a semaphore is a variable used to implement mutual exclusion. At this time, if the use by the task concentrates on a specific resource, the ability to use the specific resource will be limited, and the performance will decrease as a whole even if there is room for other resources. May be. Such a specific resource is called a bottleneck.

【0004】従来、このようなボトルネックの存在によ
り、処理の並列度を上げることがそのまま性能の向上に
直結しないといった事態が生じることとなり、期待通り
の性能向上を実現することができなかった。
Heretofore, due to the existence of such a bottleneck, a situation has arisen in which increasing the degree of parallelism of processing does not directly lead to an improvement in performance as it is, and it has not been possible to achieve the expected improvement in performance.

【0005】また、このボトルネックは、その存在を検
出すること自体容易ではなく、更に、ボトルネックとな
る箇所を特定することは極めて困難であった。
In addition, it is not easy to detect the existence of the bottleneck, and it is extremely difficult to specify a bottleneck portion.

【0006】従って、従来、ボトルネックの検出は、並
列処理において並列動作できない区間を選定し、その区
間で費やされる時間を測定することにより行われてい
た。
Therefore, conventionally, bottleneck detection has been performed by selecting a section where parallel operation is not possible in parallel processing and measuring the time spent in that section.

【0007】尚、このような並列動作できない区間にお
いて費やされる時間の代表的な例としては、条件が成立
するまでプログラムの実行を繰り返すスピン型の待ち時
間と、条件が成立するまで一端タスク情報をタスク制御
ブロックに格納して待つブロック型の待ち時間が挙げら
れる。
A typical example of the time spent in such a section where parallel operation cannot be performed is a spin-type waiting time in which program execution is repeated until a condition is satisfied, and task information is temporarily stored until the condition is satisfied. A block type waiting time stored in the task control block and waited is exemplified.

【0008】ここで、ブロック型の同期方式において、
プログラムはタスク(プロセス)単位に制御され、各々
のタスクは、プログラムの実行に伴い、実行状態と待ち
状態とを遷移することになる。従ってブロック型の同期
待ち時間測定方式は、タスクの各状態に滞在した時間を
合計して待ち時間を測定していた。
Here, in the block type synchronization system,
The program is controlled in units of tasks (processes), and each task transitions between an execution state and a waiting state as the program is executed. Therefore, the block-type synchronous waiting time measurement method measures the waiting time by summing the time spent in each state of the task.

【0009】[0009]

【発明が解決しようとする課題】しかしながら、従来例
のボトルネック検出装置は、以下に示すような問題点を
有していた。
However, the conventional bottleneck detecting device has the following problems.

【0010】即ち、従来技術のブロック型の同期待ち時
間測定方式によるボトルネック検出装置は、精度の高い
ボトルネック検出が出来ないといった問題点を有してい
た。これは、各タスク毎について考えた場合、同期箇所
毎にタスクが待ち状態にあった全累積時間しか測定して
いないことから、タスクが待ち状態に遷移する際の原因
の一つがボトルネックであった場合であっても、他の原
因に起因して該タスクが待ち状態におかれた累積時間の
影に隠れてしまう、即ち紛れ込んでしまうためである。
That is, the bottleneck detecting apparatus using the block-type synchronous waiting time measuring method of the related art has a problem that it is impossible to detect a bottleneck with high accuracy. This is because, when considering each task, only the total accumulated time that the task was in the waiting state was measured at each synchronization point, and one of the causes when the task transitioned to the waiting state was a bottleneck. This is because, even in the case where the task has occurred, the task is hidden by the accumulated time in the waiting state due to another cause, that is, the task is buried.

【0011】尚、スピン型の同期待ち時間測定方式をと
るボトルネック検出装置の一実施例としては、特開平3
−230226号に開示されているものが挙げられる。
An embodiment of a bottleneck detecting apparatus employing a spin-type synchronous waiting time measuring method is disclosed in
-230226.

【0012】特開平3−230226号に記載のボトル
ネック検出装置は、同期待ち時間の測定をしてボトルネ
ックの検出を行っているわけであるが、この同期待ち時
間の測定によって測定対象システムの挙動が変化してし
まうといった問題点を有していた。これは、同期待ち処
理に処理の繰り返し回数を測定する処理を挿入してお
り、該処理を実行する全てのタスクが測定処理を実行す
ることから、同期待ち処理を極めて頻繁に実行するタス
クにおいては、挿入された処理に要する時間が大きなも
のとなり、結果として、本来の動作とは異なった動作と
なってしまうことによる。
The bottleneck detecting device described in Japanese Patent Application Laid-Open No. 3-230226 detects a bottleneck by measuring a synchronization waiting time. There was a problem that behavior changed. This is because a process for measuring the number of repetitions of the process is inserted into the synchronization waiting process, and all the tasks that execute the process perform the measurement process. However, the time required for the inserted processing becomes long, resulting in an operation different from the original operation.

【0013】本発明の目的は、上述の課題を解決すべ
く、ブロック型の同期方式を用いた並列処理環境におい
て、有効な測定方式を備えたボトルネック検出装置を提
供することにある。
An object of the present invention is to provide a bottleneck detecting apparatus having an effective measurement method in a parallel processing environment using a block-type synchronization method in order to solve the above-mentioned problems.

【0014】[0014]

【課題を解決するための手段】本発明は、上述した課題
を解決すべく、以下に示す手段を提供する。
The present invention provides the following means in order to solve the above-mentioned problems.

【0015】即ち、本発明によれば、ブロック型の同期
待ち処理方式を用いた並列処理環境において、ボトルネ
ックを検出するボトルネック検出方法であって、各タス
ク毎に、ボトルネックであることが疑われる複数のセマ
フォの夫々に対して待ち時間を測定し、前記夫々のセマ
フォにおける待ち時間の累積を被測定待ち状態累積時間
として算出して、該被測定待ち状態累積時間が最大であ
るセマフォをボトルネックであるとして検出するボトル
ネック検出方法が得られる。
That is, according to the present invention, there is provided a bottleneck detecting method for detecting a bottleneck in a parallel processing environment using a block-type synchronization wait processing method. The wait time is measured for each of the plurality of suspected semaphores, and the accumulation of the wait time in each of the semaphores is calculated as the measured wait state accumulated time, and the semaphore whose measured wait state accumulated time is the maximum is calculated. A bottleneck detection method of detecting a bottleneck is obtained.

【0016】更に、本発明によれば、各タスク毎に、測
定対象のセマフォの識別情報を被測定セマフォ識別情報
として記憶し、タスク毎に待ち状態に移行した時間を待
ち状態開始時間として記憶し、セマフォに対する操作の
結果としてタスクが待ち状態を抜ける場合に該セマフォ
の識別情報であるセマフォ識別情報と前記被測定セマフ
ォ識別情報とが一致しているかどうかを検出し、該検出
の結果に一致している場合には、現在の時間と前記待ち
状態開始時間とから、待ち状態にあった時間を算出し、
前記測定対象のセマフォにより今迄待ち状態におかれて
いた待ち時間の合計を記憶している内容に、前記算出の
結果である今回待ち状態にあった時間を加算して、被測
定待ち状態累積時間とし、該被測定待ち状態累積時間が
最大であるセマフォをボトルネックであるとして検出す
るボトルネック検出方法が得られる。
Further, according to the present invention, for each task, the identification information of the semaphore to be measured is stored as the semaphore to be measured, and the time of transition to the waiting state for each task is stored as the waiting state start time. If the task exits the wait state as a result of the operation on the semaphore, it detects whether the semaphore identification information, which is the identification information of the semaphore, and the measured semaphore identification information match, and matches the result of the detection. If it is, from the current time and the waiting state start time, calculate the time in the waiting state,
The time in the current wait state, which is the result of the calculation, is added to the content of the total wait time that has been in the wait state by the semaphore to be measured, and the measured wait state is accumulated. In this case, a bottleneck detection method of detecting a semaphore having the maximum accumulated time in the measured waiting state as a bottleneck is obtained.

【0017】また、本発明によれば、複数のタスクの夫
々に対応した複数のタスク制御ブロックを記憶するため
の第1の記憶領域と複数の事象の夫々に対応した複数の
セマフォを記憶するための第2の記憶領域とを備える記
憶手段を有しており、前記複数のタスクの特定の一つが
前記事象の特定の一つを待ち合わせる際には、該特定の
タスクに関する情報を前記タスク制御ブロックの特定の
一つとして前記第1の記憶領域に格納すると共に、前記
第2の記憶領域の前記セマフォに前記特定のタスク制御
ブロックを示す情報を格納し、前記待ち合わせていた特
定の事象が発生した際には、前記特定のタスク制御ブロ
ックから該特定のタスクに関する情報を読みだして実行
する処理手段とを備えることにより並列処理を実現して
いる情報処理装置におけるボトルネックを検出するボト
ルネック検出装置において、前記第1の記憶領域内の前
記特定のタスク制御ブロックに対応する記憶領域は、前
記複数のセマフォの内の測定対象であるセマフォに関す
る識別情報である被測定セマフォ識別情報を格納する第
1の格納領域と、測定対象であるタスクが待ち合わせた
事象に対応したセマフォの識別情報であるセマフォ識別
情報を格納する第2の格納領域と、前記測定対象である
タスクが待ち状態に遷移した時刻情報を格納する第3の
格納領域と、前記測定対象であるタスクが全ての待ち状
態にいた累積時間の情報である全待ち状態累積時間情報
を格納する第4の格納領域と、前記測定対象であるセマ
フォに対応した待ち状態の累積時間の情報である被測定
待ち状態累積時間情報を格納する第5の格納領域とを備
えており、前記処理手段は、前記被測定セマフォ識別情
報を前記第1の格納領域に格納させると共に、前記第4
及び第5の領域を初期化する測定条件設定手段と、前記
セマフォ識別情報を前記第2の領域に格納させると共
に、前記時刻情報を前記第3の領域に格納させる待ち状
態開始処理手段と、前記測定対象であるタスクが待ち状
態を終了する際に、前記第3の領域に格納されている前
記時刻情報と現在の時刻情報との差分を算出して前記第
4の領域の全待ち状態累積時間情報に加算する全待ち状
態累積時間算出手段と、前記測定対象であるタスクが待
ち状態を終了する際に、前記第1の領域に格納されてい
る被測定セマフォ識別情報と、前記第2の領域に格納さ
れているセマフォ識別情報とが一致するかしないかを検
出する測定条件検出手段と、前記測定条件検出手段が被
測定セマフォ識別情報とセマフォ識別情報との一致を検
出した場合、前記第3の領域に格納されている時刻情報
と現在の時刻情報の差分を算出して前記第5の領域の被
測定待ち状態累積時間情報に加算する被測定待ち状態累
積時間算出手段とを備えており、各タスク毎に、ボトル
ネックであることが疑われる複数のセマフォの夫々に対
して待ち時間の測定を行って、前記夫々のセマフォにお
ける待ち時間の累積を前記被測定待ち状態累積時間情報
として算出し、前記被測定待ち状態累積時間情報が最大
であるセマフォをボトルネックであるとして判定するこ
とを特徴とするボトルネック検出装置が得られる。
According to the present invention, a first storage area for storing a plurality of task control blocks corresponding to each of a plurality of tasks and a plurality of semaphores corresponding to each of a plurality of events are stored. And a second storage area for storing information on the specific task when the specific one of the plurality of tasks waits for the specific one of the events. A specific one of the blocks is stored in the first storage area, and information indicating the specific task control block is stored in the semaphore of the second storage area. And a processing unit for reading and executing information on the specific task from the specific task control block, thereby realizing parallel processing. In the bottleneck detection apparatus for detecting a bottleneck in the storage area, a storage area corresponding to the specific task control block in the first storage area is identification information on a semaphore to be measured among the plurality of semaphores. A first storage area for storing measured semaphore identification information, a second storage area for storing semaphore identification information that is identification information of a semaphore corresponding to an event that a task to be measured waits for, A third storage area for storing time information at which a certain task has transitioned to the wait state, and a fourth storage area for storing all wait state accumulated time information which is information on the accumulated time that the task to be measured has been in all wait states. And a storage area for storing the measured wait state accumulated time information that is information of the accumulated time in the wait state corresponding to the semaphore to be measured. And a storage area, said processing means may be storing the semaphore identification information measured in the first storage area, the fourth
A measurement condition setting unit for initializing a fifth region, a waiting state start processing unit for storing the semaphore identification information in the second region, and storing the time information in the third region, When the task to be measured ends the waiting state, the difference between the time information stored in the third area and the current time information is calculated, and the total waiting state accumulated time of the fourth area is calculated. Total wait state accumulated time calculating means for adding to the information, the semaphore identification information stored in the first area when the task to be measured ends the wait state, and the second area Measurement condition detection means for detecting whether or not the semaphore identification information stored in the storage device matches the semaphore identification information, and when the measurement condition detection means detects a match between the measured semaphore identification information and the semaphore identification information, Measuring wait state accumulated time calculating means for calculating a difference between the time information stored in the area and the current time information and adding the difference to the measured waiting state accumulated time information in the fifth area, For each task, a wait time is measured for each of a plurality of semaphores suspected of being a bottleneck, and the accumulation of the wait time in each of the semaphores is calculated as the measured wait state accumulated time information. A bottleneck detecting apparatus is characterized in that the semaphore having the largest measured wait state accumulated time information is determined as a bottleneck.

【0018】[0018]

【発明の実施の形態】以下に、本発明の実施の形態につ
いて、図面を参照して説明する。
Embodiments of the present invention will be described below with reference to the drawings.

【0019】本発明の実施の形態のボトルネック検出装
置は、処理装置1と、共有メモリ2と、キーボード等の
入力手段3と、ディスプレイなどの出力手段4とを備え
ている。
The bottleneck detecting device according to the embodiment of the present invention includes a processing device 1, a shared memory 2, input means 3 such as a keyboard, and output means 4 such as a display.

【0020】ここで、処理装置1は、計時機構10と、
待ち状態開始処理手段11と、待ち状態終了処理手段1
2と、測定条件検出手段13と、被測定待ち状態累積時
間算出手段14と、全待ち状態累積時間算出手段15
と、測定条件設定手段16とを備えており、共有メモリ
2に格納されたプログラムに従って、共有メモリ2に格
納されたデータを参照したり、更新したりするものであ
る。
Here, the processing device 1 includes a timekeeping mechanism 10,
Waiting state start processing means 11 and waiting state end processing means 1
2, measurement condition detection means 13, measured wait state accumulated time calculation means 14, and all wait state accumulated time calculation means 15
And a measurement condition setting means 16 for referring to and updating data stored in the shared memory 2 in accordance with a program stored in the shared memory 2.

【0021】また、共有メモリ2は、少なくとも相互排
除を実現するために用いるデータ構造である複数のセマ
フォ28(図1においては、簡略化の為、一つしか描か
れていない)と、タスクを管理するためのデータ構造で
あるタスク制御ブロック20と、該システムが測定中か
否かの情報である第一測定制御情報29とを格納してい
るものである。更に詳しくは、タスク制御ブロックは、
タスクの状態情報を格納する領域である状態21と、タ
スクの状態21が更新された時点の計時機構10の示す
値を格納する領域である状態更新時間22と、タスクが
待ち状態に入る際に参照したセマフォを特定するための
情報を格納する領域であるセマフォ識別情報23と、タ
スクが待ち状態にあった全ての時間の累積値を格納する
領域である全待ち状態累積時間24と、タスクが測定対
象か否かの情報を格納する領域である第二測定制御情報
25と、測定すべきセマフォを指定するための情報を格
納する領域である被測定セマフォ識別情報26と、タス
クが測定対象のセマフォで待ち状態にあった全ての時間
の累積値を格納する領域である被測定待ち状態累積時間
27とを備えている。また、図1において、タスク制御
ブロック20は、一つのみしか描かれていないが、複数
のタスクがある場合、夫々のタスクに対応した複数のタ
スク制御ブロック20を備えている。
The shared memory 2 includes a plurality of semaphores 28 (in FIG. 1, only one is shown for simplicity), which is a data structure used to implement mutual exclusion, and a task. It stores a task control block 20 which is a data structure for management, and first measurement control information 29 which is information on whether or not the system is performing measurement. More specifically, the task control block
A state 21 which is an area for storing state information of a task, a state update time 22 which is an area for storing a value indicated by the timer 10 when the state 21 of the task is updated, The semaphore identification information 23, which is an area for storing information for identifying the referenced semaphore, the total wait state accumulated time 24, which is an area for storing the accumulated value of all the times the task has been in the wait state, A second measurement control information 25 which is an area for storing information on whether or not the measurement target; a semaphore identification information 26 which is an area for storing information for specifying a semaphore to be measured; It has a measured wait state accumulated time 27 which is an area for storing the accumulated value of all the times in the wait state in the semaphore. Although only one task control block 20 is illustrated in FIG. 1, when there are a plurality of tasks, the task control block 20 includes a plurality of task control blocks 20 corresponding to each task.

【0022】また、入力手段3は、処理装置1内の測定
条件設定手段16に対して測定条件を入力するものであ
る。
The input means 3 is for inputting measurement conditions to the measurement condition setting means 16 in the processing device 1.

【0023】また、出力手段4は、入力手段3に入力す
ることにより設定された測定条件を表示するものであ
る。
The output means 4 displays the measurement conditions set by inputting to the input means 3.

【0024】以下に、各構成要素について更に詳しく説
明する。
Hereinafter, each component will be described in more detail.

【0025】計時機構10は、一定の周期で加算された
値を時間情報として出力するものである。
The time counting mechanism 10 outputs a value added at a constant cycle as time information.

【0026】待ち状態開始処理手段11は、タスク制御
ブロック20に格納されているタスクの状態21を実行
状態から待ち状態に更新すると共に、該更新を行った時
点における計時機構10の示す時刻を状態更新時刻22
としてタスク制御ブロック20に格納するものである。
また、待ち状態開始処理手段11は、待ちの原因となっ
たセマフォ28に関する識別情報をセマフォ識別情報2
3としてタスク制御ブロック20に格納するものであ
る。
The waiting state start processing means 11 updates the state 21 of the task stored in the task control block 20 from the execution state to the waiting state, and updates the time indicated by the timer 10 at the time of the update. Update time 22
Is stored in the task control block 20.
Further, the wait state start processing unit 11 outputs the identification information on the semaphore 28 that caused the wait to the semaphore identification information 2.
3 is stored in the task control block 20.

【0027】待ち状態終了処理手段12は、タスク制御
ブロック20に格納されているタスクの状態21を待ち
状態から実行状態に更新すると共に、該更新を行った時
点における計時機構10の示す時刻を状態更新時刻22
としてタスク制御ブロック20に格納するものである。
また、待ち状態終了処理手段12は、測定条件検出手段
13に対して、測定条件検出の契機を指示するものであ
る。
The wait state end processing means 12 updates the state 21 of the task stored in the task control block 20 from the wait state to the execution state, and updates the time indicated by the timer 10 at the time of the update. Update time 22
Is stored in the task control block 20.
Further, the waiting state end processing unit 12 instructs the measurement condition detection unit 13 to trigger the detection of the measurement condition.

【0028】測定条件検出手段13は、第一測定制御情
報29がオン状態であることを検出するものである。ま
た、測定条件検出手段13は、第二の測定制御情報25
がオン状態であることを検出するものである。更に、測
定条件検出手段13は、セマフォ識別情報23が被測定
セマフォ識別情報26と同一であることを検出するもの
である。
The measurement condition detecting means 13 detects that the first measurement control information 29 is in the ON state. Further, the measurement condition detecting means 13 outputs the second measurement control information 25
Is detected as being in the ON state. Further, the measurement condition detecting means 13 detects that the semaphore identification information 23 is the same as the semaphore identification information 26 to be measured.

【0029】被測定待ち状態累積時間算出手段14は、
計時機構10の示す時刻と状態更新時刻22の差分を被
測定待ち状態累積時間27に加算するものである。
The measured waiting state accumulated time calculating means 14
The difference between the time indicated by the timer 10 and the state update time 22 is added to the measured waiting state accumulated time 27.

【0030】全待ち状態累積時間算出手段15は、計時
機構10の示す時刻と状態更新時刻との差分を全待ち状
態累積時間24に加算するものである。
The all wait state accumulated time calculating means 15 adds the difference between the time indicated by the timer 10 and the state update time to the all wait state accumulated time 24.

【0031】測定条件設定手段16は、入力手段3によ
り入力された測定対象のタスクに対応したタスク制御ブ
ロック20に対して、入力手段3により入力された測定
対象のセマフォの識別情報を被測定セマフォ識別情報2
6に格納するものである。また、測定条件設定手段16
は、全待ち状態累積時間24及び被測定待ち状態累積時
間27を初期化するものであると共に、第二測定制御情
報25をオン状態にするものである。更に、測定条件設
定手段16は、入力手段3により入力された測定開始の
指示を第一測定制御情報29に反映するものである。
The measurement condition setting means 16 sends the identification information of the semaphore to be measured input by the input means 3 to the task control block 20 corresponding to the task to be measured input by the input means 3. Identification information 2
6 is stored. The measurement condition setting means 16
Resets the total wait state accumulated time 24 and the measured wait state accumulated time 27, and sets the second measurement control information 25 to the ON state. Further, the measurement condition setting means 16 reflects the measurement start instruction input by the input means 3 in the first measurement control information 29.

【0032】以下に、このような構成を備えたボトルネ
ック検出装置における動作について図3乃至図5を用い
て詳細に説明する。
Hereinafter, the operation of the bottleneck detecting apparatus having the above configuration will be described in detail with reference to FIGS.

【0033】まず、測定条件設定手段16における測定
条件設定処理について図3に示されるフローチャートを
用いて説明する。
First, the measurement condition setting processing in the measurement condition setting means 16 will be described with reference to the flowchart shown in FIG.

【0034】測定条件設定手段16は、入力手段3によ
り測定対象となるタスクが指定されているかどうかを判
定し(ステップS301)、測定対象となるタスクが指
定されていれば、該タスクに対応するタスク制御ブロッ
ク20を特定する(ステップS302)。一方、測定対
象となるタスクが指定されていない場合、処理を終了す
る。
The measuring condition setting means 16 determines whether or not a task to be measured is specified by the input means 3 (step S301). If a task to be measured is specified, the task corresponding to the task is determined. The task control block 20 is specified (step S302). On the other hand, if the task to be measured has not been specified, the process ends.

【0035】次に、測定条件設定手段16は、入力手段
3により測定対象となるセマフォが指定されているかど
うかを判定する(ステップS303)。ここで、測定対
象となるセマフォが指定されていない場合、測定条件設
定手段16は、後述するステップS306の処理を行
う。
Next, the measurement condition setting means 16 determines whether or not the semaphore to be measured has been designated by the input means 3 (step S303). Here, when the semaphore to be measured is not specified, the measurement condition setting unit 16 performs the process of step S306 described later.

【0036】ステップS303において、測定対象とな
るセマフォが指定されていると判定した場合、測定条件
設定手段16は、指定された測定対象であるセマフォの
識別情報をタスク制御ブロック20内の被測定セマフォ
識別情報26に設定する(ステップS304)。
If it is determined in step S303 that the semaphore to be measured is specified, the measurement condition setting means 16 determines the identification information of the specified semaphore to be measured in the task control block 20. It is set in the identification information 26 (step S304).

【0037】次に、測定条件設定手段16は、タスク制
御ブロック20内の全待ち状態累積時間24と被測定待
ち状態累積時間27とをゼロに初期化すると共に、タス
ク制御ブロック20内の第二測定制御情報25をオン状
態に設定する(ステップS305)。
Next, the measurement condition setting means 16 initializes the total wait state accumulated time 24 and the measured wait state accumulated time 27 in the task control block 20 to zero, and sets the second wait state accumulated time 24 in the task control block 20 to zero. The measurement control information 25 is set to the ON state (step S305).

【0038】次に、測定条件設定手段16は、入力手段
3により測定開始が指定されているかどうかを判定する
(ステップS306)。
Next, the measurement condition setting means 16 determines whether or not a measurement start is designated by the input means 3 (step S306).

【0039】ステップS306において、測定開始が指
定されている場合、測定条件設定手段16は、第一測定
制御情報29をオン状態に設定し(ステップS30
7)、測定開始が指定されていない場合、測定条件設定
手段16は、第一測定制御情報をオフ状態に設定する
(ステップS308)。
If the start of measurement is specified in step S306, the measurement condition setting means 16 sets the first measurement control information 29 to the ON state (step S30).
7) If measurement start is not specified, the measurement condition setting means 16 sets the first measurement control information to the off state (step S308).

【0040】ステップS307又はステップS308の
いずれかにおいて、第一測定制御情報を設定すると、測
定条件設定手段16は、測定条件を出力手段4に表示さ
せる(ステップS309)。
When the first measurement control information is set in either step S307 or step S308, the measurement condition setting means 16 causes the output means 4 to display the measurement conditions (step S309).

【0041】次に、このように測定条件(測定環境)が
設定された後、待ち状態開始処理手段11において実行
される待ち状態開始処理について、図4に示されるフロ
ーチャートを用いて説明する。
Next, the wait state start processing executed by the wait state start processing means 11 after the measurement conditions (measurement environment) are set will be described with reference to the flowchart shown in FIG.

【0042】まず、待ち状態開始処理手段11は、共有
メモリ2内に存在する待ち状態に入る原因となったセマ
フォ28の識別情報を待ち状態に入るタスクに対応した
タスク制御ブロック20内のセマフォ識別情報23に格
納する(ステップS401)。
First, the wait state start processing means 11 identifies the semaphore 28 in the task control block 20 corresponding to the task which enters the wait state by identifying information of the semaphore 28 in the shared memory 2 which caused the entry into the wait state. The information is stored in the information 23 (step S401).

【0043】次に、待ち状態開始処理手段11は、この
ステップ(S402)の時点(待ち状態に入る時点と精
度的には同義)での計時機構10の示す時刻をタスク制
御ブロック20内の状態更新時刻22に格納する(ステ
ップS402)と共に、タスク制御ブロック20内の状
態21を待ち状態に更新する(ステップS403)。
Next, the waiting state start processing means 11 sets the time indicated by the timer 10 at the time of this step (S402) (synchronously with the time of entering the waiting state) in the state in the task control block 20. The state is stored in the update time 22 (step S402), and the state 21 in the task control block 20 is updated to the waiting state (step S403).

【0044】次に、タスクが待ち状態に入った後、待ち
状態を終了する際の待ち状態終了処理について、図5に
示されるフローチャートを用いて説明する。
Next, a description will be given, with reference to the flowchart shown in FIG. 5, of a wait state ending process when the task enters the wait state and ends the wait state.

【0045】まず、測定条件検出手段13は、共有メモ
リ2内の第一測定制御情報29を読み出し、第一測定制
御情報29がオン状態であるかオフ状態であるかを判定
する(ステップS501)。ここで、第一測定制御情報
29がオフ状態であると判定した場合、後述するステッ
プS507の処理を行う。
First, the measurement condition detecting means 13 reads the first measurement control information 29 in the shared memory 2 and determines whether the first measurement control information 29 is on or off (step S501). . Here, when it is determined that the first measurement control information 29 is in the off state, the process of step S507 described later is performed.

【0046】ステップS501において、第一測定制御
情報29がオン状態であると判定した場合、測定条件検
出手段13は、タスク制御ブロック20内の第二測定制
御情報25を読み出し、第二測定制御情報25がオン状
態であるかオフ状態であるかを判定する(ステップS5
02)。ここで、第二測定制御情報25がオフ状態であ
ると判定した場合、後述するステップS507の処理を
行う。
If it is determined in step S501 that the first measurement control information 29 is in the ON state, the measurement condition detecting means 13 reads the second measurement control information 25 in the task control block 20, and It is determined whether 25 is on or off (step S5).
02). Here, when it is determined that the second measurement control information 25 is in the off state, the process of step S507 described later is performed.

【0047】ステップS502において、第二測定制御
情報25がオン状態であると判定した場合、測定条件検
出手段13は、タスク制御ブロック20内のセマフォ識
別情報23を読み出す(ステップS503)と共に、タ
スク制御ブロック20内の被測定セマフォ識別情報26
を読み出す(ステップS504)。
If it is determined in step S502 that the second measurement control information 25 is in the ON state, the measurement condition detecting means 13 reads out the semaphore identification information 23 in the task control block 20 (step S503) and performs task control. Measured semaphore identification information 26 in block 20
Is read (step S504).

【0048】次に、測定条件検出手段13は、セマフォ
識別情報23と、被測定セマフォ識別情報27が同一で
あるか否かを判定する(ステップS505)。ここで、
同一でないと判定した場合、後述するステップS507
の処理を行う。
Next, the measurement condition detecting means 13 determines whether or not the semaphore identification information 23 and the semaphore identification information 27 to be measured are the same (step S505). here,
If it is determined that they are not the same, step S507 described later
Is performed.

【0049】ステップS505において、セマフォ識別
情報23と被測定セマフォ識別情報26とが同一である
と判定した場合、被測定待ち状態累積時間算出手段14
は、このステップ(S506)の時点(タスクが待ち状
態から実行状態に移行する時点と精度的には同義)にお
ける計時機構10の示す時刻とタスク制御ブロック20
内の状態更新時刻22に格納されている値との差分、即
ち待ち状態にいた時間を、タスク制御ブロック20内の
被測定待ち状態累積時間27に加算することで、測定対
象のタスクが測定対象のセマフォで待ち状態となってい
る累積時間を測定する(ステップS506)。
If it is determined in step S505 that the semaphore identification information 23 and the semaphore identification information 26 to be measured are the same, the measured wait state accumulated time calculation means 14
Is the time indicated by the timer 10 at the time of this step (S506) (which is synonymous with the time when the task shifts from the waiting state to the execution state) and the task control block 20
By adding the difference from the value stored in the state update time 22 in the above, that is, the time spent in the waiting state to the accumulated time in the waiting state to be measured 27 in the task control block 20, the task to be measured is The accumulated time in the waiting state in the semaphore is measured (step S506).

【0050】次に、全待ち状態累積時間算出手段15
は、このステップ(S507)の時点(タスクが待ち状
態から実行状態に移行した時点と精度的には同義)にお
ける計時機構10の示す時刻とタスク制御ブロック20
内の状態更新時刻22の値との差分、即ち待ち状態にい
た時間を、タスク制御ブロック20内の全待ち状態累積
時間24に加算することで、測定対象のタスクが任意の
セマフォで待ち状態となっている累積時間を測定する
(ステップS507)。
Next, the all waiting state accumulated time calculating means 15
Is the time indicated by the timer 10 at the time of this step (S507) (accurately equivalent to the time when the task transitions from the wait state to the execution state) and the task control block 20
Is added to the total wait state accumulated time 24 in the task control block 20 by adding the difference between the value of the state update time 22 in the wait state and the total wait state accumulated time 24 in the task control block 20. The accumulated time is measured (step S507).

【0051】次に、待ち状態終了処理手段12は、この
ステップ(S508)の時点(タスクが待ち状態から実
行状態に移行する時点と精度的には同義)における計時
機構10の示す時刻をタスク制御ブロック20内の状態
更新時刻22に格納する(ステップS508)。
Next, the waiting state end processing means 12 sets the time indicated by the timer 10 at the time of this step (S508) (similarly to the time when the task shifts from the waiting state to the execution state). It is stored in the state update time 22 in the block 20 (step S508).

【0052】最後に、待ち状態終了処理手段12は、タ
スク制御ブロック20内の状態21を実行状態に更新し
て(ステップS509)、待ち状態終了処理を終了す
る。
Finally, the wait state end processing means 12 updates the state 21 in the task control block 20 to the execution state (step S509), and ends the wait state end processing.

【0053】このようにして、本実施の形態において
は、各タスクに関し、ボトルネックであることが疑われ
る複数のセマフォに対する待ち時間の測定を行うことが
できる。また、その結果として、被測定待ち状態累積時
間27が最大であったセマフォをボトルネックとして検
出する。
As described above, in the present embodiment, it is possible to measure the waiting time for a plurality of semaphores suspected to be bottlenecks for each task. In addition, as a result, the semaphore in which the measured waiting state accumulated time 27 is the maximum is detected as a bottleneck.

【0054】[0054]

【発明の効果】以上説明してきたように、本発明によれ
ば、個々のタスク毎に、夫々ボトルネックであることが
疑われる複数のセマフォに対して待ち時間の測定を行っ
て複数の待ち累積時間得ることが出来る為、あるタスク
に関して固有のボトルネックがあった場合、他の原因に
起因して該タスクが待ち状態におかれる待ち時間の大小
に関わらず、該タスクのボトルネックを高い精度で検出
することができるボトルネック検出装置が得られる。
As described above, according to the present invention, for each task, the waiting time is measured for a plurality of semaphores suspected to be bottlenecks, and a plurality of waiting accumulations are performed. Since the time can be obtained, if there is a specific bottleneck for a certain task, the bottleneck of the task can be determined with high accuracy regardless of the size of the waiting time when the task is in a waiting state due to other causes. Thus, a bottleneck detecting device which can be detected by the above is obtained.

【0055】また、本発明によれば、測定対象となるタ
スクにおける測定対象となるセマフォに関する待ち時間
のみを測定することができるため、測定対象外のタスク
に関して測定処理を行う場合に生じる処理時間の増加に
よるシステムの動作への影響がなくなることから、従来
例と比較して、測定を行うことによる測定対象システム
の動作への影響が少ないボトルネック検出装置が得られ
る。
Further, according to the present invention, only the waiting time of the semaphore to be measured in the task to be measured can be measured. Since there is no influence on the operation of the system due to the increase, a bottleneck detection device having less influence on the operation of the measurement target system by performing the measurement as compared with the conventional example can be obtained.

【図面の簡単な説明】[Brief description of the drawings]

【図1】本発明の実施の形態のボトルネック検出装置の
構成を示すブロック図である。
FIG. 1 is a block diagram illustrating a configuration of a bottleneck detection device according to an embodiment of the present invention.

【図2】図1に示されるタスク制御ブロックに格納され
ているデータを示す図である。
FIG. 2 is a diagram showing data stored in a task control block shown in FIG.

【図3】本発明の実施の形態における測定条件設定処理
を示すフローチャートである。
FIG. 3 is a flowchart showing a measurement condition setting process according to the embodiment of the present invention.

【図4】本発明の実施の形態における待ち状態開始処理
を示すフローチャートである。
FIG. 4 is a flowchart illustrating a waiting state start process according to the embodiment of the present invention.

【図5】本発明の実施の形態における待ち状態終了処理
を示すフローチャートである。
FIG. 5 is a flowchart illustrating a wait state end process according to the embodiment of the present invention.

【符号の説明】[Explanation of symbols]

1 処理装置 2 共有メモリ 3 入力手段 4 出力手段 10 計時機構 11 待ち状態開始処理手段 12 待ち状態終了処理手段 13 測定条件検出手段 14 被測定待ち状態累積時間算出手段 15 全待ち状態累積時間算出手段 16 測定条件設定手段 20 タスク制御ブロック 21 状態 22 状態更新時刻 23 セマフォ識別情報 24 全待ち状態累積時間 25 第二測定制御情報 26 被測定セマフォ識別情報 27 被測定待ち状態累積時間 28 セマフォ 29 第一測定制御情報 DESCRIPTION OF SYMBOLS 1 Processing apparatus 2 Shared memory 3 Input means 4 Output means 10 Clocking mechanism 11 Waiting state start processing means 12 Waiting state end processing means 13 Measurement condition detecting means 14 Cumulative time calculating means for measured waiting state 15 Meaning for calculating total waiting state accumulated time 16 Measurement condition setting means 20 task control block 21 state 22 state update time 23 semaphore identification information 24 total wait state accumulated time 25 second measurement control information 26 measured semaphore identification information 27 measured wait state accumulated time 28 semaphore 29 first measurement control information

Claims (5)

【特許請求の範囲】[Claims] 【請求項1】 ブロック型の同期待ち処理方式を用いた
並列処理環境において、ボトルネックを検出するボトル
ネック検出方法であって、 各タスク毎に、ボトルネックであることが疑われる複数
のセマフォの夫々に対して待ち時間を測定し、前記夫々
のセマフォにおける待ち時間の累積を被測定待ち状態累
積時間として算出して、該被測定待ち状態累積時間が最
大であるセマフォをボトルネックであるとして検出する
ボトルネック検出方法。
1. A bottleneck detection method for detecting a bottleneck in a parallel processing environment using a block-type synchronization wait processing method, wherein a plurality of semaphores suspected to be a bottleneck are identified for each task. The waiting time is measured for each, and the accumulation of the waiting time in each of the semaphores is calculated as the measured waiting state accumulated time, and the semaphore having the largest measured waiting state accumulated time is detected as a bottleneck. Bottleneck detection method.
【請求項2】 各タスク毎に、測定対象のセマフォの識
別情報を被測定セマフォ識別情報として記憶し、タスク
毎に待ち状態に移行した時間を待ち状態開始時間として
記憶し、セマフォに対する操作の結果としてタスクが待
ち状態を抜ける場合に該セマフォの識別情報であるセマ
フォ識別情報と前記被測定セマフォ識別情報とが一致し
ているかどうかを検出し、該検出の結果に一致している
場合には、現在の時間と前記待ち状態開始時間とから、
待ち状態にあった時間を算出し、前記測定対象のセマフ
ォにより今迄待ち状態におかれていた待ち時間の合計を
記憶している内容に、前記算出の結果である今回待ち状
態にあった時間を加算して、被測定待ち状態累積時間と
し、該被測定待ち状態累積時間が最大であるセマフォを
ボトルネックであるとして検出するボトルネック検出方
法。
2. For each task, the identification information of the semaphore to be measured is stored as the semaphore to be measured, the time of transition to the waiting state for each task is stored as the waiting state start time, and the result of the operation on the semaphore is stored. As the task exits the wait state, it detects whether the semaphore identification information, which is the semaphore identification information, and the measured semaphore identification information match, and if the result of the detection matches, From the current time and the waiting state start time,
The time in the waiting state is calculated, and the content of the total waiting time in the waiting state by the semaphore to be measured is stored in the content storing the sum of the waiting times. A bottleneck detection method for detecting a semaphore having the largest cumulative time under measurement in the waiting state as a bottleneck.
【請求項3】 複数のタスクの夫々に対応した複数のタ
スク制御ブロックを記憶するための第1の記憶領域と複
数の事象の夫々に対応した複数のセマフォを記憶するた
めの第2の記憶領域とを備える記憶手段を有しており、
前記複数のタスクの特定の一つが前記事象の特定の一つ
を待ち合わせる際には、該特定のタスクに関する情報を
前記タスク制御ブロックの特定の一つとして前記第1の
記憶領域に格納すると共に、前記第2の記憶領域の前記
セマフォに前記特定のタスク制御ブロックを示す情報を
格納し、前記待ち合わせていた特定の事象が発生した際
には、前記特定のタスク制御ブロックから該特定のタス
クに関する情報を読みだして実行する処理手段とを備え
ることにより並列処理を実現している情報処理装置にお
けるボトルネックを検出するボトルネック検出装置にお
いて、 前記第1の記憶領域内の前記特定のタスク制御ブロック
に対応する記憶領域は、前記複数のセマフォの内の測定
対象であるセマフォに関する識別情報である被測定セマ
フォ識別情報を格納する第1の格納領域と、測定対象で
あるタスクが待ち合わせた事象に対応したセマフォの識
別情報であるセマフォ識別情報を格納する第2の格納領
域と、前記測定対象であるタスクが待ち状態に遷移した
時刻情報を格納する第3の格納領域と、前記測定対象で
あるタスクが全ての待ち状態にいた累積時間の情報であ
る全待ち状態累積時間情報を格納する第4の格納領域
と、前記測定対象であるセマフォに対応した待ち状態の
累積時間の情報である被測定待ち状態累積時間情報を格
納する第5の格納領域とを備えており、 前記処理手段は、 前記被測定セマフォ識別情報を前記第1の格納領域に格
納させると共に、前記第4及び第5の領域を初期化する
測定条件設定手段と、 前記セマフォ識別情報を前記第2の領域に格納させると
共に、前記時刻情報を前記第3の領域に格納させる待ち
状態開始処理手段と、 前記測定対象であるタスクが待ち状態を終了する際に、
前記第3の領域に格納されている前記時刻情報と現在の
時刻情報との差分を算出して前記第4の領域の全待ち状
態累積時間情報に加算する全待ち状態累積時間算出手段
と、 前記測定対象であるタスクが待ち状態を終了する際に、
前記第1の領域に格納されている被測定セマフォ識別情
報と、前記第2の領域に格納されているセマフォ識別情
報とが一致するかしないかを検出する測定条件検出手段
と、 前記測定条件検出手段が被測定セマフォ識別情報とセマ
フォ識別情報との一致を検出した場合、前記第3の領域
に格納されている時刻情報と現在の時刻情報の差分を算
出して前記第5の領域の被測定待ち状態累積時間情報に
加算する被測定待ち状態累積時間算出手段とを備えてお
り、 各タスク毎に、ボトルネックであることが疑われる複数
のセマフォの夫々に対して待ち時間の測定を行って、前
記夫々のセマフォにおける待ち時間の累積を前記被測定
待ち状態累積時間情報として算出し、前記被測定待ち状
態累積時間情報が最大であるセマフォをボトルネックで
あるとして判定することを特徴とするボトルネック検出
装置。
3. A first storage area for storing a plurality of task control blocks corresponding to each of a plurality of tasks, and a second storage area for storing a plurality of semaphores corresponding to each of a plurality of events. And storage means comprising
When a specific one of the plurality of tasks waits for a specific one of the events, information on the specific task is stored in the first storage area as a specific one of the task control blocks. Storing information indicating the specific task control block in the semaphore in the second storage area, and when the specific event that has been waiting occurs, the specific task control block sends the information related to the specific task. A bottleneck detection device for detecting a bottleneck in an information processing device that realizes parallel processing by including a processing unit that reads and executes information, wherein the specific task control block in the first storage area Is a storage area corresponding to the semaphore to be measured, which is identification information on the semaphore to be measured among the plurality of semaphores. Information, a second storage area for storing semaphore identification information that is identification information of a semaphore corresponding to an event that the task to be measured waits for, and a task for waiting for the task to be measured. A third storage area for storing time information that has transitioned to a state, and a fourth storage area for storing all wait state accumulated time information that is information on the accumulated time that the task to be measured has been in all wait states. And a fifth storage area for storing measured wait state accumulated time information that is information on the accumulated wait time corresponding to the semaphore to be measured, wherein the processing unit includes the measured semaphore identification. Measuring condition setting means for storing information in the first storage area and initializing the fourth and fifth areas; and storing the semaphore identification information in the second area. A wait state starts processing means for storing the time information in the third region, when to end the task waiting state which is the measurement object,
An all-waiting-state cumulative-time calculating unit that calculates a difference between the time information stored in the third area and current time information and adds the difference to the all-waiting-state cumulative time information in the fourth area; When the task to be measured ends the waiting state,
Measuring condition detecting means for detecting whether or not the semaphore identification information stored in the first area matches the semaphore identification information stored in the second area; When the means detects coincidence between the semaphore identification information to be measured and the semaphore identification information, the difference between the time information stored in the third area and the current time information is calculated, and the measurement of the fifth area is performed. A measured wait state cumulative time calculating means for adding to the wait state cumulative time information, and measuring a wait time for each of a plurality of semaphores suspected to be a bottleneck for each task. Calculating the accumulation of the waiting time in each of the semaphores as the measured waiting state accumulated time information, and regards the semaphore whose measured waiting state accumulated time information is the largest as a bottleneck. Determining Te bottleneck detection device according to claim.
【請求項4】 前記測定条件設定手段は、前記情報処理
装置に唯一存在し、前記情報処理装置全体の測定処理の
有無を示す情報である第一測定制御情報を設定して前記
記憶手段に格納することを特徴とする請求項3に記載の
ボトルネック検出装置。
4. The measurement condition setting means, which is unique to the information processing apparatus, sets first measurement control information which is information indicating whether or not measurement processing is performed for the entire information processing apparatus, and stores the first measurement control information in the storage means. 4. The bottleneck detecting device according to claim 3, wherein:
【請求項5】 前記測定条件設定手段は、前記タスク制
御ブロック毎に前記タスクの測定処理の有無を示す情報
である第二測定制御情報を設定して前記タスク制御ブロ
ックに格納することを特徴とする請求項4に記載のボト
ルネック検出装置。
5. The method according to claim 1, wherein the measurement condition setting unit sets second measurement control information, which is information indicating the presence or absence of a measurement process of the task, for each of the task control blocks and stores the second measurement control information in the task control block. The bottleneck detection device according to claim 4, wherein
JP8218445A 1996-08-20 1996-08-20 Method and device for bottleneck detection Pending JPH1063516A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
JP8218445A JPH1063516A (en) 1996-08-20 1996-08-20 Method and device for bottleneck detection

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
JP8218445A JPH1063516A (en) 1996-08-20 1996-08-20 Method and device for bottleneck detection

Publications (1)

Publication Number Publication Date
JPH1063516A true JPH1063516A (en) 1998-03-06

Family

ID=16720032

Family Applications (1)

Application Number Title Priority Date Filing Date
JP8218445A Pending JPH1063516A (en) 1996-08-20 1996-08-20 Method and device for bottleneck detection

Country Status (1)

Country Link
JP (1) JPH1063516A (en)

Cited By (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JP2009059316A (en) * 2007-09-04 2009-03-19 Nec Corp Measuring device, measurement program, and measuring method
JP2009245055A (en) * 2008-03-31 2009-10-22 Mitsubishi Electric Information Systems Corp Exclusive execution control device and exclusive execution control program
JP2010128664A (en) * 2008-11-26 2010-06-10 Fujitsu Ltd Multiprocessor system, contention avoidance program and contention avoidance method
US20230185636A1 (en) * 2021-12-10 2023-06-15 Nvidia Corporation Application programming interfaces for interoperability

Cited By (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JP2009059316A (en) * 2007-09-04 2009-03-19 Nec Corp Measuring device, measurement program, and measuring method
JP2009245055A (en) * 2008-03-31 2009-10-22 Mitsubishi Electric Information Systems Corp Exclusive execution control device and exclusive execution control program
JP4611397B2 (en) * 2008-03-31 2011-01-12 三菱電機インフォメーションシステムズ株式会社 Exclusive execution control device and exclusive execution control program
JP2010128664A (en) * 2008-11-26 2010-06-10 Fujitsu Ltd Multiprocessor system, contention avoidance program and contention avoidance method
US20230185636A1 (en) * 2021-12-10 2023-06-15 Nvidia Corporation Application programming interfaces for interoperability

Similar Documents

Publication Publication Date Title
EP0789292A2 (en) Power consumption estimating apparatus for a microprocessor
US4601008A (en) Data processing system
US9400732B2 (en) Performance regression testing in presence of noise
EP2476059B1 (en) A method and apparatus for determining processor performance
JPH10254739A (en) Method for analyzing computer performance data
JP2010152458A (en) Performance measurement program, performance measurement method, and information processor having performance measurement function
JP2008004054A (en) Task transition chart display method and display apparatus
JP3751466B2 (en) Program response time prediction device
JPH1063516A (en) Method and device for bottleneck detection
JP2005215816A (en) Performance profiling method using hardware monitor
JP6287709B2 (en) Program embedding device
WO2012056569A1 (en) Performance measurement method, performance measurement device, and performance measurement program
US8001362B2 (en) Processing unit
JP2009217385A (en) Processor and multiprocessor
JP2004252670A (en) Contention detection system and contention detection method of shared resource
CN117234786B (en) Computer performance control analysis system and method based on big data
JPH04305740A (en) Method for displaying processing status
JP2006293427A (en) Software evaluation device and system
CN115640197A (en) Method, device and system for testing performance of kernel of operating system of Internet of things
JPH07295864A (en) Evaluating device for performance of computer system
JPH11212830A (en) Measuring device for performance of processor
JPH10333927A (en) Dispatching device for process
JPS6063647A (en) Measuring method of run time of specified program
JPH02126345A (en) Information processor
JPH0357970A (en) Pulse input apparatus

Legal Events

Date Code Title Description
A02 Decision of refusal

Free format text: JAPANESE INTERMEDIATE CODE: A02

Effective date: 19990616