utils: raspberrypi: ctt: Changed CTT handling of VC4 and PiSP
Changed how users select which platform to tune for. Now users specify a command line argument, '-t', to specify which target platform. Signed-off-by: Ben Benson <ben.benson@raspberrypi.com> Signed-off-by: David Plowman <david.plowman@raspberrypi.com> Reviewed-by: Naushir Patuck <naush@raspberrypi.com> Tested-by: Naushir Patuck <naush@raspberrypi.com> Acked-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
This commit is contained in:
parent
8bea2d5a8a
commit
b95032a842
10 changed files with 57 additions and 149 deletions
|
@ -65,11 +65,12 @@ def parse_input():
|
|||
directory = get_config(args_dict, '-i', None, 'string')
|
||||
config = get_config(args_dict, '-c', None, 'string')
|
||||
log_path = get_config(args_dict, '-l', None, 'string')
|
||||
target = get_config(args_dict, '-t', "vc4", 'string')
|
||||
if directory is None:
|
||||
raise ArgError('\n\nERROR! No input directory given.')
|
||||
if json_output is None:
|
||||
raise ArgError('\n\nERROR! No output json given.')
|
||||
return json_output, directory, config, log_path
|
||||
return json_output, directory, config, log_path, target
|
||||
|
||||
|
||||
"""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue