cpu: Rename GpuThread in gpu_ruby_test tester
The GpuThread class will be used as an abstract class for any thread type (CPU, GPU, DMA) therefore changing to a more appropriate name. Change-Id: If241edb53ea405c95b0315c609176c6470b29931 Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/39935 Reviewed-by: Matt Sinclair <mattdsinclair@gmail.com> Reviewed-by: Jason Lowe-Power <power.jg@gmail.com> Maintainer: Matt Sinclair <mattdsinclair@gmail.com> Tested-by: kokoro <noreply+kokoro@google.com>
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
# Copyright (c) 2017-2020 Advanced Micro Devices, Inc.
|
||||
# Copyright (c) 2017-2021 Advanced Micro Devices, Inc.
|
||||
# All rights reserved.
|
||||
#
|
||||
# For use for simulation and test purposes only
|
||||
@@ -32,8 +32,8 @@
|
||||
from m5.params import *
|
||||
from m5.proxy import *
|
||||
|
||||
from m5.objects.GpuThread import GpuThread
|
||||
from m5.objects.TesterThread import TesterThread
|
||||
|
||||
class CpuThread(GpuThread):
|
||||
class CpuThread(TesterThread):
|
||||
type = 'CpuThread'
|
||||
cxx_header = "cpu/testers/gpu_ruby_test/cpu_thread.hh"
|
||||
|
||||
Reference in New Issue
Block a user