gpu-compute,mem,systemc: This commit corrects typos of 'cache' (#1263)

I noticed while using the stable branch that there were a few typos of
the word 'cache' and so I've corrected a few files where I found such
typos.

Change-Id: I7c7f64812039f34fe39d0c45c4f5ce921cba06d0
This commit is contained in:
TiredTumblrina
2024-06-20 12:45:13 -04:00
committed by GitHub
parent 943daeb603
commit 9fb0b18863
4 changed files with 4 additions and 4 deletions

View File

@@ -1019,7 +1019,7 @@ class ComputeUnit : public ClockedObject
// hold the time of the arrival of the first cache block related to
// a particular GPUDynInst. This is used to calculate the difference
// between the first and last chace block arrival times.
// between the first and last cache block arrival times.
std::unordered_map<GPUDynInstPtr, Tick> headTailMap;
public:

View File

@@ -861,7 +861,7 @@ Cache::serviceMSHRTargets(MSHR *mshr, const PacketPtr pkt, CacheBlk *blk)
}
// not a cache fill, just forwarding response
// responseLatency is the latency of the return path
// from lower level cahces/memory to the core.
// from lower level caches/memory to the core.
completion_time += clockEdge(responseLatency) +
pkt->payloadDelay;
if (!is_error) {

View File

@@ -53,7 +53,7 @@ StackDistProbe::StackDistProbe(const StackDistProbeParams &p)
{
fatal_if(p.system->cacheLineSize() > p.line_size,
"The stack distance probe must use a cache line size that is "
"larger or equal to the system's cahce line size.");
"larger or equal to the system's cache line size.");
}
StackDistProbe::StackDistProbeStats::StackDistProbeStats(

View File

@@ -95,7 +95,7 @@ void dump_cached_report(const char* ctx)
SC_MODULE( M )
{
sc_in<bool> emit; // 1: emit, 0: dump cahced report
sc_in<bool> emit; // 1: emit, 0: dump cached report
sc_in<const char*> id;
sc_in<bool> ofs;
sc_event t1, t2, m1, m2;