misc: Merge branch 'release-staging-v21-0' into develop

Change-Id: I0ad043ded56fb848e045057a1e7a56ea39797906
This commit is contained in:
Bobby R. Bruce
2021-03-18 11:13:14 -07:00
49 changed files with 9819 additions and 226 deletions

View File

@@ -43,12 +43,6 @@ CpuThread::CpuThread(const Params &p)
assert(numLanes == 1);
}
CpuThread*
CpuThreadParams::create() const
{
return new CpuThread(*this);
}
void
CpuThread::issueLoadOps()
{

View File

@@ -48,12 +48,6 @@ DmaThread::~DmaThread()
}
DmaThread*
DmaThreadParams::create() const
{
return new DmaThread(*this);
}
void
DmaThread::issueLoadOps()
{

View File

@@ -48,12 +48,6 @@ GpuWavefront::~GpuWavefront()
}
GpuWavefront*
GpuWavefrontParams::create() const
{
return new GpuWavefront(*this);
}
void
GpuWavefront::issueLoadOps()
{

View File

@@ -357,9 +357,3 @@ ProtocolTester::SeqPort::recvTimingResp(PacketPtr pkt)
return true;
}
ProtocolTester*
ProtocolTesterParams::create() const
{
return new ProtocolTester(*this);
}