mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2026-08-20 21:02:59 +00:00
quick_dump/bdw: support Broadwell in device auto-detection
This patch exposes is_broadwell() to python, to be used by device auto-detection. Signed-off-by: Mengdong Lin <mengdong.lin@intel.com> Signed-off-by: Ben Widawsky <ben@bwidawsk.net>
This commit is contained in:
committed by
Ben Widawsky
parent
ee4318931f
commit
d566972336
Executable → Regular
+2
@@ -61,6 +61,8 @@ if args.autodetect:
|
||||
args.profile = open('valleyview', 'r')
|
||||
elif chipset.is_haswell(devid):
|
||||
args.profile = open('haswell', 'r')
|
||||
elif chipset.is_broadwell(devid):
|
||||
args.profile = open('broadwell', 'r')
|
||||
else:
|
||||
print("Autodetect of devid " + hex(devid) + " failed")
|
||||
|
||||
|
||||
Reference in New Issue
Block a user