Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

measure performance: fix increase default maximum limit of multistream. #38

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions measure/performance/MSPerf.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def main():
parser.add_argument('--density-decode', '--density_decode', action='store_true', default=False, help='Enabling Density Decode support, HEVC')
parser.add_argument('-c', '--codec', help='To choose Encoder Codec type, AVC or HEVC, Default will execute all')
parser.add_argument('-s', '--startStreams', help='To set starting of multi stream performance measurement, e.g. --startStreams 720p:8,1080p:5,2160p:2 or all:2, Default=all:1')
parser.add_argument('-e', '--endStreams', help='To set ending number of multi stream performance measurement, e.g. --endStreams 5, Default=NoLimit')
parser.add_argument('-e', '--endStreams', default=999999, help='To set ending number of multi stream performance measurement')
parser.add_argument('-n', '--numbers_of_iteration', help='Custom limit the number of iteration of each same execution (max is 4), Default=1')
parser.add_argument('--no-fps-limit', '--no_fps_limit', action='store_true', default=False, help='to run workload unconstraint, or as fast as possible')
parser.add_argument('--fps-target', '--fps_target', help='to overwrite fps limit, Default=input-fps')
Expand Down Expand Up @@ -137,7 +137,7 @@ def main():
################################# Variable Assignment #################################################
starting_streamnumber = str(ARGS.startStreams) if ARGS.startStreams else "all:1"
maximum_iteration = int(ARGS.numbers_of_iteration) if ARGS.numbers_of_iteration else 1
endStreams = int(ARGS.endStreams) if ARGS.endStreams else 99
endStreams = ARGS.endStreams
maximum_workloads = int(ARGS.numbers_of_Workloads) if ARGS.numbers_of_Workloads else 20
debug_verbose = ARGS.verbose
no_fps_limit = ARGS.no_fps_limit
Expand Down