configs: apu_se.py hotfix

Missed two optparse -> argparse changes. Square runs.

Change-Id: I3a652380e4c4202a376413602fa3698a28ff9206
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/44825
Maintainer: Matthew Poremba <matthew.poremba@amd.com>
Reviewed-by: Daniel Carvalho <odanrc@yahoo.com.br>
Tested-by: kokoro <noreply+kokoro@google.com>
This commit is contained in:
Matthew Poremba
2021-04-24 11:33:09 -05:00
parent 529736a7ce
commit fd9addede1

View File

@@ -181,14 +181,14 @@ parser.add_argument("--dgpu", action="store_true", default=False,
#-- 0 1 x UC_L2 (Uncached_GL2)
#-- 0 0 x UC_All (Uncached_All_Load)
# default value: 5/C_RO_S (only allow caching in GL2 for read. Shared)
parser.add_argument("--m-type", type='int', default=5,
parser.add_argument("--m-type", type=int, default=5,
help="Default Mtype for GPU memory accesses. This is the "
"value used for all memory accesses on an APU and is the "
"default mode for dGPU unless explicitly overwritten by "
"the driver on a per-page basis. Valid values are "
"between 0-7")
parser.add_argument("--gfx-version", type="string", default='gfx801',
parser.add_argument("--gfx-version", type=str, default='gfx801',
help="Gfx version for gpu: gfx801, gfx803, gfx900")
Ruby.define_options(parser)