|
Multitask Cache Simulator |
This simulator provides the capability to model a small sized cache on a system that supports multitasking. In most of the modern processors today it is often the case that multiple processes will need to share the resources of the system. Here we will simulate a cache on a system that supports multiple processes. The processes on the system must be scheduled in some fashion. We will explore some of these various scheduling methods later. The basic idea however is that generally we would like the processes concurrently being run on the system to share the available resources. If the system only has one CPU this means that processes may have to yield the use of the CPU for another process. We call the operation of stopping one process and starting another a context switch. Since these processes are also sharing the cache of the system it is possible that some of the blocks requested from this second process may be mapped to the same set in the cache as the previous process. If there are no more available slots in that set one of the blocks from the previous process will have to be removed according to the replacement algorithm being used. At some point however, the first process will be allowed to continue where it left off. However the second process has left a footprint in the cache and has replaced some of the first processes blocks. Now the first process must incur a penalty while it reloads the blocks it was utilizing before it was removed. We call this penalty the reload transient. We will now explore some of the options the simulator offers and how you can use the tool to simulate what we have discussed above.
The simulator provides many options that the user can set to mimic various systems and/or scenarios. The cache content is treated as one word (4B) per block. After configuring the available options by pressing the "Update Configuration" button the user can then generate a series of memory accesses for each of the tasks by pressing the "Generate Memory References" button near the bottom of the form. A table displaying the memory references generated for each task will be displayed. The user can then press the "Schedule Tasks" button and these series of memory accesses will be ordered/scheduled according to the algorithm chosen in the "Scheduling Mechanism" option field. And finally the "Step/Run" button can be used to show the state of the cache at various cycles. The cache will show which task and corresponding block is currently occupying a slot and you will also note that the memory references will be highlighted bold when a given miss was the result of a reload transient. Directly under the cache is a series of Hit/Miss/Reload Transient cells that will change color based on whether the last cycle resulted in a Hit Miss or Reload. Various statistics regarding the cache are displayed at the bottom of the page.
| Cache Size | This option specifies the size of the cache in number of blocks. The cache size must be greater than or equal to the # of sets in the cache. |
| # of Sets | This option specifies the associatively of the cache or simply the number of sets that the cache contains. The number of sets must be less than or equal to the cache size. |
| Replacement Policy | This option allows the ability to set the algorithm that
will be used when a given cache block must be replaced due to a conflict.
|
| Scheduling Mechanism | This option allows the ability to set the algorithm that
will be used when scheduling the tasks and their corresponding memory
requests. It is assumed at time zero that all of the generated memory
requests are waiting to be serviced. A memory reference is assumed to use
once time slice.
|
| CPU Time Slice | Specifies the amount of memory accesses a task can make before it must yield to another task. Note that this does not apply to the FIFO scheduling mechanism. |
| Use Random Access Sequence | Specifies that a random series of memory references should be made based. The other choice is to type in the block requests for each task and each reference by hand. If this box is unchecked and you press the "Generate Memory References" button you will notice that the typical table of tasks and their corresponding memory requests is drawn. The boxes will be blank and should all be filled in before proceeding. |
| Locality Probability | This option attempts to constrain the range of block
requests that can be generated by each task and provide a reasonable
simulation to the principle of locality. The higher the probability you
choose the greater a chance there is that a block that was previously
requested by a given task will be requested again. Setting the value to 100%
will result in the same address being used for all requests by the task. And
similarly setting the value to 0% will not constrain the randomness of the
generated addresses in any way; with the exception that the simulation has
been defined to limit the range of generated addresses to 4x the cache size
in blocks. Note: This option only applies when the Use Random Access Sequence option is selected. |
| # of Tasks | This option defines the number of tasks to be used for the simulation. |
| Priority | This option allows the user to assign a priority to each
task. The same priority may be assigned to multiple tasks. Note: This option is only applies when the Priority Based scheduling option is chosen. |
| Allow more than 35 Memory Refs | This option must be set if you wish to set one or more of the tasks Number of Memory References option to a value higher than 35. The reason for this is because depending on how fast your machine is if you were to run a simulation with 26 tasks each of which made 99 memory references then the simulation could take some time to complete. |
| Number of Memory References | This option allows you do define how many memory requests you would like each of the given tasks to be used in the simulation to make. You will note that the task name and it's corresponding color (that will be used throughout the simulation) is displayed to the left. |
| Clock Options | Allows control over the number of cycles that are run upon each press of the "Step/Run" button. This option can be changed as many times as one wishes throughout the course of a simulation. |