diff options
author | Tibor Frank <tifrank@cisco.com> | 2018-05-21 08:50:42 +0200 |
---|---|---|
committer | Tibor Frank <tifrank@cisco.com> | 2018-05-24 11:47:06 +0000 |
commit | 372eab0eac428149d547b2d6eb2ce43cd0d750f6 (patch) | |
tree | d066fe7d4cffce1c061490365e982558b36fc979 /resources/tools/presentation/pal.py | |
parent | 1a6941f8af88693f19ea5c4b372234cc7078f04e (diff) |
CSIT-1101: Optimize input data processing
- Add multiprocessing
Change-Id: Iaeb9dcf0f4523de379ecb7f775b941d9deb080b2
Signed-off-by: Tibor Frank <tifrank@cisco.com>
Diffstat (limited to 'resources/tools/presentation/pal.py')
-rw-r--r-- | resources/tools/presentation/pal.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/tools/presentation/pal.py b/resources/tools/presentation/pal.py index 1ccefd3b43..013c921124 100644 --- a/resources/tools/presentation/pal.py +++ b/resources/tools/presentation/pal.py @@ -96,7 +96,7 @@ def main(): prepare_static_content(spec) data = InputData(spec) - data.download_and_parse_data() + data.download_and_parse_data(repeat=2) generate_tables(spec, data) generate_plots(spec, data) |