From ad05c01966e206907b7fabe64e660c4dfd11f518 Mon Sep 17 00:00:00 2001 From: coleramos425 Date: Tue, 31 Jan 2023 15:37:54 -0600 Subject: [PATCH] Remove reference to deprecated --axis option Signed-off-by: coleramos425 --- src/omniperf | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/src/omniperf b/src/omniperf index 946d7af624..b0a6a3af9d 100755 --- a/src/omniperf +++ b/src/omniperf @@ -217,19 +217,6 @@ def mongo_import(args, profileAndImport): def roof_setup(args, my_parser): if args.path == os.getcwd() + "/workloads": args.path += "/" + args.name + "/" + str(get_soc()) - # Verify valid axes parameters - if args.axes: - if len(args.axes) != 4: - throw_parse_error( - my_parser, - "Invalid argument for --axes.\nMust contain four values formatted as: --axes xmin xmax ymin ymax", - ) - - if args.axes[0] > args.axes[1] or args.axes[2] > args.axes[3]: - throw_parse_error( - my_parser, - "Invalid argument for --axes.\nBreaks required conditions: (xmax > xmin && ymax > ymin)", - ) # We need to make a directory for a new roofline if not os.path.isdir(args.path):