Make the SPEC regressions work for any isa/operating system.
--HG-- extra : convert_revision : b7b0823357f722119559e5703b36ea82ed6f8c0f
This commit is contained in:
parent
6a7e4a5904
commit
d22786828c
8 changed files with 15 additions and 15 deletions
|
@ -1,4 +1,4 @@
|
|||
# Copyright (c) 2006 The Regents of The University of Michigan
|
||||
# Copyright (c) 2006-2007 The Regents of The University of Michigan
|
||||
# All rights reserved.
|
||||
#
|
||||
# Redistribution and use in source and binary forms, with or without
|
||||
|
@ -29,5 +29,5 @@
|
|||
m5.AddToPath('../configs/common')
|
||||
from cpu2000 import gzip_log
|
||||
|
||||
workload = gzip_log('alpha', 'tru64', 'smred')
|
||||
workload = gzip_log(isa, opsys, 'smred')
|
||||
root.system.cpu.workload = workload.makeLiveProcess()
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Copyright (c) 2006 The Regents of The University of Michigan
|
||||
# Copyright (c) 2006-2007 The Regents of The University of Michigan
|
||||
# All rights reserved.
|
||||
#
|
||||
# Redistribution and use in source and binary forms, with or without
|
||||
|
@ -29,5 +29,5 @@
|
|||
m5.AddToPath('../configs/common')
|
||||
from cpu2000 import mcf
|
||||
|
||||
workload = mcf('alpha', 'tru64', 'lgred')
|
||||
workload = mcf(isa, opsys, 'lgred')
|
||||
root.system.cpu.workload = workload.makeLiveProcess()
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Copyright (c) 2006 The Regents of The University of Michigan
|
||||
# Copyright (c) 2006-2007 The Regents of The University of Michigan
|
||||
# All rights reserved.
|
||||
#
|
||||
# Redistribution and use in source and binary forms, with or without
|
||||
|
@ -29,5 +29,5 @@
|
|||
m5.AddToPath('../configs/common')
|
||||
from cpu2000 import parser
|
||||
|
||||
workload = parser('alpha', 'tru64', 'lgred')
|
||||
workload = parser(isa, opsys, 'lgred')
|
||||
root.system.cpu.workload = workload.makeLiveProcess()
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Copyright (c) 2006 The Regents of The University of Michigan
|
||||
# Copyright (c) 2006-2007 The Regents of The University of Michigan
|
||||
# All rights reserved.
|
||||
#
|
||||
# Redistribution and use in source and binary forms, with or without
|
||||
|
@ -29,5 +29,5 @@
|
|||
m5.AddToPath('../configs/common')
|
||||
from cpu2000 import eon_cook
|
||||
|
||||
workload = eon_cook('alpha', 'tru64', 'mdred')
|
||||
workload = eon_cook(isa, opsys, 'mdred')
|
||||
root.system.cpu.workload = workload.makeLiveProcess()
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Copyright (c) 2006 The Regents of The University of Michigan
|
||||
# Copyright (c) 2006-2007 The Regents of The University of Michigan
|
||||
# All rights reserved.
|
||||
#
|
||||
# Redistribution and use in source and binary forms, with or without
|
||||
|
@ -29,5 +29,5 @@
|
|||
m5.AddToPath('../configs/common')
|
||||
from cpu2000 import perlbmk_makerand
|
||||
|
||||
workload = perlbmk_makerand('alpha', 'tru64', 'lgred')
|
||||
workload = perlbmk_makerand(isa, opsys, 'lgred')
|
||||
root.system.cpu.workload = workload.makeLiveProcess()
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Copyright (c) 2006 The Regents of The University of Michigan
|
||||
# Copyright (c) 2006-2007 The Regents of The University of Michigan
|
||||
# All rights reserved.
|
||||
#
|
||||
# Redistribution and use in source and binary forms, with or without
|
||||
|
@ -29,5 +29,5 @@
|
|||
m5.AddToPath('../configs/common')
|
||||
from cpu2000 import vortex
|
||||
|
||||
workload = vortex('alpha', 'tru64', 'smred')
|
||||
workload = vortex(isa, opsys, 'smred')
|
||||
root.system.cpu.workload = workload.makeLiveProcess()
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# Copyright (c) 2006 The Regents of The University of Michigan
|
||||
# Copyright (c) 2006-2007 The Regents of The University of Michigan
|
||||
# All rights reserved.
|
||||
#
|
||||
# Redistribution and use in source and binary forms, with or without
|
||||
|
@ -29,5 +29,5 @@
|
|||
m5.AddToPath('../configs/common')
|
||||
from cpu2000 import bzip2_source
|
||||
|
||||
workload = bzip2_source('alpha', 'tru64', 'lgred')
|
||||
workload = bzip2_source(isa, opsys, 'lgred')
|
||||
root.system.cpu.workload = workload.makeLiveProcess()
|
||||
|
|
|
@ -30,7 +30,7 @@ m5.AddToPath('../configs/common')
|
|||
from cpu2000 import twolf
|
||||
import os
|
||||
|
||||
workload = twolf('alpha', 'tru64', 'smred')
|
||||
workload = twolf(isa, opsys, 'smred')
|
||||
root.system.cpu.workload = workload.makeLiveProcess()
|
||||
cwd = root.system.cpu.workload.cwd
|
||||
|
||||
|
|
Loading…
Reference in a new issue