From 940dee0e8cfa392177ce84ef79f5bab007c55e8b Mon Sep 17 00:00:00 2001 From: akoryach Date: Sun, 4 Apr 2021 19:42:49 +0300 Subject: [PATCH 01/14] add inferemce test with streams --- tests/stress_tests/memcheck_tests/tests.cpp | 71 +++++++++++++++++++++ 1 file changed, 71 insertions(+) diff --git a/tests/stress_tests/memcheck_tests/tests.cpp b/tests/stress_tests/memcheck_tests/tests.cpp index 2a64bf314a2672..32308c6f87c2a5 100644 --- a/tests/stress_tests/memcheck_tests/tests.cpp +++ b/tests/stress_tests/memcheck_tests/tests.cpp @@ -106,3 +106,74 @@ INSTANTIATE_TEST_CASE_P(MemCheckTests, MemCheckTestSuite, ::testing::ValuesIn( generateTestsParams({"devices", "models"})), getTestCaseName); + +TEST_P(MemCheckTestSuite, inference_with_streams) { + const auto nstreams = "2"; + log_info("Inference of InferRequest from network: \"" << model + << "\" with precision: \"" << precision + << "\" for device: \"" << device << "\"" + << "\" with strems: \"" << nstreams); + auto test_pipeline = [&]{ + MemCheckPipeline memCheckPipeline; + + Core ie; + ie.GetVersions(device); + std::map> config; + + if (!config.count(device)) + config[device] = {}; + + std::map& device_config = config.at(device); + + auto setThroughputStreams = [&] () { + const std::string key = device + "_THROUGHPUT_STREAMS"; + // set to user defined value + std::vector supported_config_keys = ie.GetMetric(device, METRIC_KEY(SUPPORTED_CONFIG_KEYS)); + if (std::find(supported_config_keys.begin(), supported_config_keys.end(), key) == supported_config_keys.end()) { + throw std::logic_error("Device " + device + " doesn't support config key '" + key + "'! " + + "Please specify -nstreams for correct devices in format :,:" + + " or via configuration file."); + } + device_config[key] = nstreams; + }; + + if (device == "CPU") { + // CPU supports few special performance-oriented keys + // for CPU execution, more throughput-oriented execution via streams + setThroughputStreams(); + } else if (device == ("GPU")) { + // for GPU execution, more throughput-oriented execution via streams + setThroughputStreams(); + } else { + throw std::invalid_argument("This device is not supported"); + } + + for (auto&& item : config) { + ie.SetConfig(item.second, item.first); + } + + CNNNetwork cnnNetwork = ie.ReadNetwork(model); + ExecutableNetwork exeNetwork = ie.LoadNetwork(cnnNetwork, device); + InferRequest inferRequest = exeNetwork.CreateInferRequest(); + + auto batchSize = cnnNetwork.getBatchSize(); + batchSize = batchSize != 0 ? batchSize : 1; + const ConstInputsDataMap inputsInfo(exeNetwork.GetInputsInfo()); + fillBlobs(inferRequest, inputsInfo, batchSize); + + inferRequest.Infer(); + OutputsDataMap output_info(cnnNetwork.getOutputsInfo()); + for (auto &output : output_info) + Blob::Ptr outputBlob = inferRequest.GetBlob(output.first); + + log_info("Memory consumption after Inference:"); + memCheckPipeline.record_measures(test_name); + + log_debug(memCheckPipeline.get_reference_record_for_test(test_name, model_name, precision, device)); + return memCheckPipeline.measure(); + + }; + + TestResult res = common_test_pipeline(test_pipeline, test_refs.references); + EXPECT_EQ(res.first, TestStatus::TEST_OK) << res.second; +} \ No newline at end of file From 533967c15f5a361c2d945e034ac3e350321bf2c9 Mon Sep 17 00:00:00 2001 From: akoryach Date: Sun, 4 Apr 2021 20:02:18 +0300 Subject: [PATCH 02/14] add empty line at the end --- tests/stress_tests/memcheck_tests/tests.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/stress_tests/memcheck_tests/tests.cpp b/tests/stress_tests/memcheck_tests/tests.cpp index 32308c6f87c2a5..c7469ced800580 100644 --- a/tests/stress_tests/memcheck_tests/tests.cpp +++ b/tests/stress_tests/memcheck_tests/tests.cpp @@ -176,4 +176,4 @@ TEST_P(MemCheckTestSuite, inference_with_streams) { TestResult res = common_test_pipeline(test_pipeline, test_refs.references); EXPECT_EQ(res.first, TestStatus::TEST_OK) << res.second; -} \ No newline at end of file +} From f75a7df6a9993fdb7de54a4759d42de9a54ba2ce Mon Sep 17 00:00:00 2001 From: akoryach Date: Tue, 20 Apr 2021 20:11:13 +0300 Subject: [PATCH 03/14] removed extra configuration for config, added second InferRequest --- tests/stress_tests/memcheck_tests/tests.cpp | 82 ++++++++------------- 1 file changed, 31 insertions(+), 51 deletions(-) diff --git a/tests/stress_tests/memcheck_tests/tests.cpp b/tests/stress_tests/memcheck_tests/tests.cpp index c7469ced800580..5a847a985398e4 100644 --- a/tests/stress_tests/memcheck_tests/tests.cpp +++ b/tests/stress_tests/memcheck_tests/tests.cpp @@ -108,71 +108,51 @@ INSTANTIATE_TEST_CASE_P(MemCheckTests, MemCheckTestSuite, getTestCaseName); TEST_P(MemCheckTestSuite, inference_with_streams) { - const auto nstreams = "2"; + const auto nstreams = 2; log_info("Inference of InferRequest from network: \"" << model << "\" with precision: \"" << precision << "\" for device: \"" << device << "\"" - << "\" with strems: \"" << nstreams); - auto test_pipeline = [&]{ + << "\" with streams: \"" << nstreams); + auto test_pipeline = [&] { MemCheckPipeline memCheckPipeline; Core ie; ie.GetVersions(device); - std::map> config; - - if (!config.count(device)) - config[device] = {}; - - std::map& device_config = config.at(device); - - auto setThroughputStreams = [&] () { - const std::string key = device + "_THROUGHPUT_STREAMS"; - // set to user defined value - std::vector supported_config_keys = ie.GetMetric(device, METRIC_KEY(SUPPORTED_CONFIG_KEYS)); - if (std::find(supported_config_keys.begin(), supported_config_keys.end(), key) == supported_config_keys.end()) { - throw std::logic_error("Device " + device + " doesn't support config key '" + key + "'! " + - "Please specify -nstreams for correct devices in format :,:" + - " or via configuration file."); - } - device_config[key] = nstreams; - }; - - if (device == "CPU") { - // CPU supports few special performance-oriented keys - // for CPU execution, more throughput-oriented execution via streams - setThroughputStreams(); - } else if (device == ("GPU")) { - // for GPU execution, more throughput-oriented execution via streams - setThroughputStreams(); - } else { - throw std::invalid_argument("This device is not supported"); - } + std::map config; - for (auto&& item : config) { - ie.SetConfig(item.second, item.first); - } + const std::string key = device + "_THROUGHPUT_STREAMS"; + config[key] = std::to_string(nstreams); + + if ((device != "CPU") && (device != "GPU")) + throw std::invalid_argument("This device is not supported"); + + ie.SetConfig(config, device); + + CNNNetwork cnnNetwork = ie.ReadNetwork(model); + ExecutableNetwork exeNetwork = ie.LoadNetwork(cnnNetwork, device); + auto batchSize = cnnNetwork.getBatchSize(); + batchSize = batchSize != 0 ? batchSize : 1; + const ConstInputsDataMap inputsInfo(exeNetwork.GetInputsInfo()); - CNNNetwork cnnNetwork = ie.ReadNetwork(model); - ExecutableNetwork exeNetwork = ie.LoadNetwork(cnnNetwork, device); - InferRequest inferRequest = exeNetwork.CreateInferRequest(); + InferRequest inferRequest; - auto batchSize = cnnNetwork.getBatchSize(); - batchSize = batchSize != 0 ? batchSize : 1; - const ConstInputsDataMap inputsInfo(exeNetwork.GetInputsInfo()); - fillBlobs(inferRequest, inputsInfo, batchSize); + for (int counter = 0; counter < nstreams; counter++) { + inferRequest = exeNetwork.CreateInferRequest(); + fillBlobs(inferRequest, inputsInfo, batchSize); - inferRequest.Infer(); - OutputsDataMap output_info(cnnNetwork.getOutputsInfo()); - for (auto &output : output_info) - Blob::Ptr outputBlob = inferRequest.GetBlob(output.first); + inferRequest.Infer(); + OutputsDataMap output_info(cnnNetwork.getOutputsInfo()); + for (auto &output : output_info) + Blob::Ptr outputBlob = inferRequest.GetBlob(output.first); + } - log_info("Memory consumption after Inference:"); - memCheckPipeline.record_measures(test_name); + log_info("Memory consumption after Inference:"); + memCheckPipeline.record_measures(test_name); - log_debug(memCheckPipeline.get_reference_record_for_test(test_name, model_name, precision, device)); - return memCheckPipeline.measure(); + log_debug(memCheckPipeline.get_reference_record_for_test(test_name, model_name, precision, device)); + return memCheckPipeline.measure(); - }; + }; TestResult res = common_test_pipeline(test_pipeline, test_refs.references); EXPECT_EQ(res.first, TestStatus::TEST_OK) << res.second; From 9fc61f1ab7413cfbc7d5603e99362305fbaa7ba7 Mon Sep 17 00:00:00 2001 From: "Koryachikhina, Anastasia" Date: Thu, 22 Apr 2021 20:50:06 +0300 Subject: [PATCH 04/14] Changed log comment --- tests/stress_tests/memcheck_tests/tests.cpp | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/tests/stress_tests/memcheck_tests/tests.cpp b/tests/stress_tests/memcheck_tests/tests.cpp index 5a847a985398e4..62b856530cc62b 100644 --- a/tests/stress_tests/memcheck_tests/tests.cpp +++ b/tests/stress_tests/memcheck_tests/tests.cpp @@ -113,19 +113,18 @@ TEST_P(MemCheckTestSuite, inference_with_streams) { << "\" with precision: \"" << precision << "\" for device: \"" << device << "\"" << "\" with streams: \"" << nstreams); + if ((device != "CPU") && (device != "GPU")) + throw std::invalid_argument("This device is not supported"); + auto test_pipeline = [&] { MemCheckPipeline memCheckPipeline; - Core ie; - ie.GetVersions(device); std::map config; - const std::string key = device + "_THROUGHPUT_STREAMS"; - config[key] = std::to_string(nstreams); - - if ((device != "CPU") && (device != "GPU")) - throw std::invalid_argument("This device is not supported"); + InferRequest inferRequest; + config[key] = std::to_string(nstreams); + ie.GetVersions(device); ie.SetConfig(config, device); CNNNetwork cnnNetwork = ie.ReadNetwork(model); @@ -134,8 +133,6 @@ TEST_P(MemCheckTestSuite, inference_with_streams) { batchSize = batchSize != 0 ? batchSize : 1; const ConstInputsDataMap inputsInfo(exeNetwork.GetInputsInfo()); - InferRequest inferRequest; - for (int counter = 0; counter < nstreams; counter++) { inferRequest = exeNetwork.CreateInferRequest(); fillBlobs(inferRequest, inputsInfo, batchSize); @@ -146,7 +143,7 @@ TEST_P(MemCheckTestSuite, inference_with_streams) { Blob::Ptr outputBlob = inferRequest.GetBlob(output.first); } - log_info("Memory consumption after Inference:"); + log_info("Memory consumption after Inference with streams: \"" << nstreams); memCheckPipeline.record_measures(test_name); log_debug(memCheckPipeline.get_reference_record_for_test(test_name, model_name, precision, device)); From a5ba4b1716c2e9bcfd56f38e18c7dea596341d44 Mon Sep 17 00:00:00 2001 From: "Koryachikhina, Anastasia" Date: Fri, 23 Apr 2021 16:12:15 +0300 Subject: [PATCH 05/14] change some line order --- tests/stress_tests/memcheck_tests/tests.cpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/tests/stress_tests/memcheck_tests/tests.cpp b/tests/stress_tests/memcheck_tests/tests.cpp index 62b856530cc62b..878980e2837f43 100644 --- a/tests/stress_tests/memcheck_tests/tests.cpp +++ b/tests/stress_tests/memcheck_tests/tests.cpp @@ -118,15 +118,17 @@ TEST_P(MemCheckTestSuite, inference_with_streams) { auto test_pipeline = [&] { MemCheckPipeline memCheckPipeline; - Core ie; + std::map config; const std::string key = device + "_THROUGHPUT_STREAMS"; - InferRequest inferRequest; + config[device + "_THROUGHPUT_STREAMS"] = std::to_string(nstreams); - config[key] = std::to_string(nstreams); + Core ie; ie.GetVersions(device); ie.SetConfig(config, device); + InferRequest inferRequest; + CNNNetwork cnnNetwork = ie.ReadNetwork(model); ExecutableNetwork exeNetwork = ie.LoadNetwork(cnnNetwork, device); auto batchSize = cnnNetwork.getBatchSize(); From 4f6d511284953d2f50ccd69b26d0a69a9568c69d Mon Sep 17 00:00:00 2001 From: "Koryachikhina, Anastasia" Date: Thu, 29 Apr 2021 14:29:25 +0300 Subject: [PATCH 06/14] Added public references and change number of request to OPTIMAL_NUMBER_OF_INFER_REQUESTS --- .../desktop_references_config.xml | 161 +++++++++++++++++- .../desktop_references_config.xml | 16 ++ tests/stress_tests/memcheck_tests/tests.cpp | 11 +- 3 files changed, 182 insertions(+), 6 deletions(-) diff --git a/tests/stress_tests/.automation/memcheck_tests/nightly_configs/desktop_references_config.xml b/tests/stress_tests/.automation/memcheck_tests/nightly_configs/desktop_references_config.xml index dac3d2ef43634c..adb8e7ece93015 100644 --- a/tests/stress_tests/.automation/memcheck_tests/nightly_configs/desktop_references_config.xml +++ b/tests/stress_tests/.automation/memcheck_tests/nightly_configs/desktop_references_config.xml @@ -7,315 +7,468 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + # values from {"target_branch": "releases/2020/2", "commit_date": "2020-05-14 11:19:36+00:00"} and *= 1.3 # values from {"target_branch": "releases/2020/2", "commit_date": "2020-05-14 11:19:36+00:00"} and *= 1.3 # values from {"target_branch": "releases/2020/2", "commit_date": "2020-05-14 11:19:36+00:00"} and *= 1.3 # values from {"target_branch": "releases/2020/2", "commit_date": "2020-05-14 11:19:36+00:00"} and *= 1.3 + + # values from {"target_branch": "releases/2020/2", "commit_date": "2020-05-14 11:19:36+00:00"} and *= 1.3 # values from {"target_branch": "releases/2020/2", "commit_date": "2020-05-14 11:19:36+00:00"} and *= 1.3 # values from {"target_branch": "releases/2020/2", "commit_date": "2020-05-14 11:19:36+00:00"} and *= 1.3 + + # values from {"target_branch": "releases/2020/2", "commit_date": "2020-05-14 11:19:36+00:00"} and *= 1.3 # values from {"target_branch": "releases/2020/2", "commit_date": "2020-05-14 11:19:36+00:00"} and *= 1.3 # values from {"target_branch": "releases/2020/2", "commit_date": "2020-05-14 11:19:36+00:00"} and *= 1.3 # values from {"target_branch": "releases/2020/2", "commit_date": "2020-05-14 11:19:36+00:00"} and *= 1.3 # values from {"target_branch": "releases/2020/2", "commit_date": "2020-05-14 11:19:36+00:00"} and *= 1.3 + + # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 + + # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 + + # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 + + # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 + + # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 + + # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 + + # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 + + # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 + + # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 + + # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 + + # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 + + # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 - # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 - # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 - # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 - # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 + + + # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 + # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 + # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 + # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 + + # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 + + # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 + + # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 + + # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 + + # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 + + # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 + + # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 + + # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 + + # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 + + # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 + + # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 + + # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 + + # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 + + # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 + + # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 + + # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 + + # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 + + # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 + + # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 + + # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 + + # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 + + # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 + + # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 + + # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 + + # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 + + # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 + + # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 diff --git a/tests/stress_tests/.automation/memcheck_tests/precommit_configs/desktop_references_config.xml b/tests/stress_tests/.automation/memcheck_tests/precommit_configs/desktop_references_config.xml index 5bc91171c9d68d..3afe39b3f39268 100644 --- a/tests/stress_tests/.automation/memcheck_tests/precommit_configs/desktop_references_config.xml +++ b/tests/stress_tests/.automation/memcheck_tests/precommit_configs/desktop_references_config.xml @@ -6,16 +6,24 @@ + + + + + + + + @@ -23,17 +31,25 @@ # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 + + # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 + + # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 + + # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 + + diff --git a/tests/stress_tests/memcheck_tests/tests.cpp b/tests/stress_tests/memcheck_tests/tests.cpp index 878980e2837f43..f939869dea6779 100644 --- a/tests/stress_tests/memcheck_tests/tests.cpp +++ b/tests/stress_tests/memcheck_tests/tests.cpp @@ -135,7 +135,13 @@ TEST_P(MemCheckTestSuite, inference_with_streams) { batchSize = batchSize != 0 ? batchSize : 1; const ConstInputsDataMap inputsInfo(exeNetwork.GetInputsInfo()); - for (int counter = 0; counter < nstreams; counter++) { + unsigned int nireq = nstreams; + try { + nireq = exeNetwork.GetMetric(METRIC_KEY(OPTIMAL_NUMBER_OF_INFER_REQUESTS)).as(); + } catch (const std::exception &ex) { + log_err("Failed to query OPTIMAL_NUMBER_OF_INFER_REQUESTS"); + } + for (int counter = 0; counter < nireq; counter++) { inferRequest = exeNetwork.CreateInferRequest(); fillBlobs(inferRequest, inputsInfo, batchSize); @@ -145,7 +151,8 @@ TEST_P(MemCheckTestSuite, inference_with_streams) { Blob::Ptr outputBlob = inferRequest.GetBlob(output.first); } - log_info("Memory consumption after Inference with streams: \"" << nstreams); + log_info("Memory consumption after Inference with streams: \"" << nstreams + << "\" with number of infer request: " << nireq); memCheckPipeline.record_measures(test_name); log_debug(memCheckPipeline.get_reference_record_for_test(test_name, model_name, precision, device)); From aead079b0ce5f70a1abfb001563a5979d06beb14 Mon Sep 17 00:00:00 2001 From: "Koryachikhina, Anastasia" Date: Thu, 29 Apr 2021 18:10:48 +0300 Subject: [PATCH 07/14] Added intel references and added comments --- .../desktop_references_config.xml | 358 ++++++++++-------- .../desktop_references_config.xml | 32 +- 2 files changed, 221 insertions(+), 169 deletions(-) diff --git a/tests/stress_tests/.automation/memcheck_tests/nightly_configs/desktop_references_config.xml b/tests/stress_tests/.automation/memcheck_tests/nightly_configs/desktop_references_config.xml index adb8e7ece93015..cf0b073db9a457 100644 --- a/tests/stress_tests/.automation/memcheck_tests/nightly_configs/desktop_references_config.xml +++ b/tests/stress_tests/.automation/memcheck_tests/nightly_configs/desktop_references_config.xml @@ -7,570 +7,622 @@ - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"target_branch": "releases/2020/2", "commit_date": "2020-05-14 11:19:36+00:00"} and *= 1.3 # values from {"target_branch": "releases/2020/2", "commit_date": "2020-05-14 11:19:36+00:00"} and *= 1.3 # values from {"target_branch": "releases/2020/2", "commit_date": "2020-05-14 11:19:36+00:00"} and *= 1.3 # values from {"target_branch": "releases/2020/2", "commit_date": "2020-05-14 11:19:36+00:00"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"target_branch": "releases/2020/2", "commit_date": "2020-05-14 11:19:36+00:00"} and *= 1.3 # values from {"target_branch": "releases/2020/2", "commit_date": "2020-05-14 11:19:36+00:00"} and *= 1.3 # values from {"target_branch": "releases/2020/2", "commit_date": "2020-05-14 11:19:36+00:00"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"target_branch": "releases/2020/2", "commit_date": "2020-05-14 11:19:36+00:00"} and *= 1.3 # values from {"target_branch": "releases/2020/2", "commit_date": "2020-05-14 11:19:36+00:00"} and *= 1.3 # values from {"target_branch": "releases/2020/2", "commit_date": "2020-05-14 11:19:36+00:00"} and *= 1.3 # values from {"target_branch": "releases/2020/2", "commit_date": "2020-05-14 11:19:36+00:00"} and *= 1.3 # values from {"target_branch": "releases/2020/2", "commit_date": "2020-05-14 11:19:36+00:00"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 # values from {"commit_id": "ce67c414833cddd447acc7573b99c8ebc6a1591e", "commit_date": "2021-04-21 14:41"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 diff --git a/tests/stress_tests/.automation/memcheck_tests/precommit_configs/desktop_references_config.xml b/tests/stress_tests/.automation/memcheck_tests/precommit_configs/desktop_references_config.xml index 3afe39b3f39268..3ed48bb46b5211 100644 --- a/tests/stress_tests/.automation/memcheck_tests/precommit_configs/desktop_references_config.xml +++ b/tests/stress_tests/.automation/memcheck_tests/precommit_configs/desktop_references_config.xml @@ -6,24 +6,24 @@ - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 @@ -31,25 +31,25 @@ # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 - - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 From 111f304f07be24d45c69472722afcaf58eeda168 Mon Sep 17 00:00:00 2001 From: "Koryachikhina, Anastasia" Date: Tue, 18 May 2021 09:32:54 +0300 Subject: [PATCH 08/14] change vmrss for ssd and vgg model --- .../precommit_configs/desktop_references_config.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/stress_tests/.automation/memcheck_tests/precommit_configs/desktop_references_config.xml b/tests/stress_tests/.automation/memcheck_tests/precommit_configs/desktop_references_config.xml index c3f5efcdd69ea3..e13deb3a2c9da2 100644 --- a/tests/stress_tests/.automation/memcheck_tests/precommit_configs/desktop_references_config.xml +++ b/tests/stress_tests/.automation/memcheck_tests/precommit_configs/desktop_references_config.xml @@ -39,13 +39,13 @@ # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 - # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 + # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 - # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 + # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 From 761e571042fa2b291d5954e523fffc1e2dfcafae Mon Sep 17 00:00:00 2001 From: "Koryachikhina, Anastasia" Date: Thu, 20 May 2021 10:36:42 +0300 Subject: [PATCH 09/14] change vmrss for ssd and vgg model --- .../precommit_configs/desktop_references_config.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/stress_tests/.automation/memcheck_tests/precommit_configs/desktop_references_config.xml b/tests/stress_tests/.automation/memcheck_tests/precommit_configs/desktop_references_config.xml index e13deb3a2c9da2..da74710ea2a243 100644 --- a/tests/stress_tests/.automation/memcheck_tests/precommit_configs/desktop_references_config.xml +++ b/tests/stress_tests/.automation/memcheck_tests/precommit_configs/desktop_references_config.xml @@ -14,17 +14,17 @@ # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 - + # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 - + # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 From a509be75cba58cce1725f9dd925b9f38cda48e18 Mon Sep 17 00:00:00 2001 From: "Koryachikhina, Anastasia" Date: Fri, 21 May 2021 01:01:12 +0300 Subject: [PATCH 10/14] Update references for inference with stream test --- .../desktop_references_config.xml | 32 +++++++++---------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/tests/stress_tests/.automation/memcheck_tests/precommit_configs/desktop_references_config.xml b/tests/stress_tests/.automation/memcheck_tests/precommit_configs/desktop_references_config.xml index da74710ea2a243..57afb10917d5ea 100644 --- a/tests/stress_tests/.automation/memcheck_tests/precommit_configs/desktop_references_config.xml +++ b/tests/stress_tests/.automation/memcheck_tests/precommit_configs/desktop_references_config.xml @@ -6,24 +6,24 @@ - # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 - # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "761e571042fa2b291d5954e523fffc1e2dfcafae", "commit_date": "2021-05-20 10:36"} and *= 1.3 + # values from {"commit_id": "761e571042fa2b291d5954e523fffc1e2dfcafae", "commit_date": "2021-05-20 10:36"} and *= 1.3 - # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 - # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "761e571042fa2b291d5954e523fffc1e2dfcafae", "commit_date": "2021-05-20 10:36"} and *= 1.3 + # values from {"commit_id": "761e571042fa2b291d5954e523fffc1e2dfcafae", "commit_date": "2021-05-20 10:36"} and *= 1.3 - # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 - # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "761e571042fa2b291d5954e523fffc1e2dfcafae", "commit_date": "2021-05-20 10:36"} and *= 1.3 + # values from {"commit_id": "761e571042fa2b291d5954e523fffc1e2dfcafae", "commit_date": "2021-05-20 10:36"} and *= 1.3 - # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 - # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "761e571042fa2b291d5954e523fffc1e2dfcafae", "commit_date": "2021-05-20 10:36"} and *= 1.3 + # values from {"commit_id": "761e571042fa2b291d5954e523fffc1e2dfcafae", "commit_date": "2021-05-20 10:36"} and *= 1.3 @@ -31,25 +31,25 @@ # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 - # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 - # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "761e571042fa2b291d5954e523fffc1e2dfcafae", "commit_date": "2021-05-20 10:36"} and *= 1.3 + # values from {"commit_id": "761e571042fa2b291d5954e523fffc1e2dfcafae", "commit_date": "2021-05-20 10:36"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 - # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 - # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "761e571042fa2b291d5954e523fffc1e2dfcafae", "commit_date": "2021-05-20 10:36"} and *= 1.3 + # values from {"commit_id": "761e571042fa2b291d5954e523fffc1e2dfcafae", "commit_date": "2021-05-20 10:36"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 - # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 - # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "761e571042fa2b291d5954e523fffc1e2dfcafae", "commit_date": "2021-05-20 10:36"} and *= 1.3 + # values from {"commit_id": "761e571042fa2b291d5954e523fffc1e2dfcafae", "commit_date": "2021-05-20 10:36"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 - # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 - # values from {"commit_id": "f4d9d6a8c750d644b065f464548a5770ad8e2728", "commit_date": "2021-04-23 16:12"} and *= 1.3 + # values from {"commit_id": "761e571042fa2b291d5954e523fffc1e2dfcafae", "commit_date": "2021-05-20 10:36"} and *= 1.3 + # values from {"commit_id": "761e571042fa2b291d5954e523fffc1e2dfcafae", "commit_date": "2021-05-20 10:36"} and *= 1.3 From 12db61d2f9df423464e627dfaf1d09114f2cf71d Mon Sep 17 00:00:00 2001 From: "Koryachikhina, Anastasia" Date: Fri, 21 May 2021 13:44:40 +0300 Subject: [PATCH 11/14] tmp:check ci result without ie.SetConfig --- tests/stress_tests/memcheck_tests/tests.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/stress_tests/memcheck_tests/tests.cpp b/tests/stress_tests/memcheck_tests/tests.cpp index f939869dea6779..035081a51bb2ce 100644 --- a/tests/stress_tests/memcheck_tests/tests.cpp +++ b/tests/stress_tests/memcheck_tests/tests.cpp @@ -125,7 +125,7 @@ TEST_P(MemCheckTestSuite, inference_with_streams) { Core ie; ie.GetVersions(device); - ie.SetConfig(config, device); +// ie.SetConfig(config, device); InferRequest inferRequest; From 8bb1af653d2150057fa80d3b4d26d1c539204784 Mon Sep 17 00:00:00 2001 From: "Koryachikhina, Anastasia" Date: Mon, 24 May 2021 17:48:32 +0300 Subject: [PATCH 12/14] tmp:check ci result without test --- tests/stress_tests/memcheck_tests/tests.cpp | 110 ++++++++++---------- 1 file changed, 55 insertions(+), 55 deletions(-) diff --git a/tests/stress_tests/memcheck_tests/tests.cpp b/tests/stress_tests/memcheck_tests/tests.cpp index 035081a51bb2ce..ef2e03db2c8b14 100644 --- a/tests/stress_tests/memcheck_tests/tests.cpp +++ b/tests/stress_tests/memcheck_tests/tests.cpp @@ -107,59 +107,59 @@ INSTANTIATE_TEST_CASE_P(MemCheckTests, MemCheckTestSuite, generateTestsParams({"devices", "models"})), getTestCaseName); -TEST_P(MemCheckTestSuite, inference_with_streams) { - const auto nstreams = 2; - log_info("Inference of InferRequest from network: \"" << model - << "\" with precision: \"" << precision - << "\" for device: \"" << device << "\"" - << "\" with streams: \"" << nstreams); - if ((device != "CPU") && (device != "GPU")) - throw std::invalid_argument("This device is not supported"); - - auto test_pipeline = [&] { - MemCheckPipeline memCheckPipeline; - - std::map config; - const std::string key = device + "_THROUGHPUT_STREAMS"; - config[device + "_THROUGHPUT_STREAMS"] = std::to_string(nstreams); - - Core ie; - ie.GetVersions(device); +//TEST_P(MemCheckTestSuite, inference_with_streams) { +// const auto nstreams = 2; +// log_info("Inference of InferRequest from network: \"" << model +// << "\" with precision: \"" << precision +// << "\" for device: \"" << device << "\"" +// << "\" with streams: \"" << nstreams); +// if ((device != "CPU") && (device != "GPU")) +// throw std::invalid_argument("This device is not supported"); +// +// auto test_pipeline = [&] { +// MemCheckPipeline memCheckPipeline; +// +// std::map config; +// const std::string key = device + "_THROUGHPUT_STREAMS"; +// config[device + "_THROUGHPUT_STREAMS"] = std::to_string(nstreams); +// +// Core ie; +// ie.GetVersions(device); // ie.SetConfig(config, device); - - InferRequest inferRequest; - - CNNNetwork cnnNetwork = ie.ReadNetwork(model); - ExecutableNetwork exeNetwork = ie.LoadNetwork(cnnNetwork, device); - auto batchSize = cnnNetwork.getBatchSize(); - batchSize = batchSize != 0 ? batchSize : 1; - const ConstInputsDataMap inputsInfo(exeNetwork.GetInputsInfo()); - - unsigned int nireq = nstreams; - try { - nireq = exeNetwork.GetMetric(METRIC_KEY(OPTIMAL_NUMBER_OF_INFER_REQUESTS)).as(); - } catch (const std::exception &ex) { - log_err("Failed to query OPTIMAL_NUMBER_OF_INFER_REQUESTS"); - } - for (int counter = 0; counter < nireq; counter++) { - inferRequest = exeNetwork.CreateInferRequest(); - fillBlobs(inferRequest, inputsInfo, batchSize); - - inferRequest.Infer(); - OutputsDataMap output_info(cnnNetwork.getOutputsInfo()); - for (auto &output : output_info) - Blob::Ptr outputBlob = inferRequest.GetBlob(output.first); - } - - log_info("Memory consumption after Inference with streams: \"" << nstreams - << "\" with number of infer request: " << nireq); - memCheckPipeline.record_measures(test_name); - - log_debug(memCheckPipeline.get_reference_record_for_test(test_name, model_name, precision, device)); - return memCheckPipeline.measure(); - - }; - - TestResult res = common_test_pipeline(test_pipeline, test_refs.references); - EXPECT_EQ(res.first, TestStatus::TEST_OK) << res.second; -} +// +// InferRequest inferRequest; +// +// CNNNetwork cnnNetwork = ie.ReadNetwork(model); +// ExecutableNetwork exeNetwork = ie.LoadNetwork(cnnNetwork, device); +// auto batchSize = cnnNetwork.getBatchSize(); +// batchSize = batchSize != 0 ? batchSize : 1; +// const ConstInputsDataMap inputsInfo(exeNetwork.GetInputsInfo()); +// +// unsigned int nireq = nstreams; +// try { +// nireq = exeNetwork.GetMetric(METRIC_KEY(OPTIMAL_NUMBER_OF_INFER_REQUESTS)).as(); +// } catch (const std::exception &ex) { +// log_err("Failed to query OPTIMAL_NUMBER_OF_INFER_REQUESTS"); +// } +// for (int counter = 0; counter < nireq; counter++) { +// inferRequest = exeNetwork.CreateInferRequest(); +// fillBlobs(inferRequest, inputsInfo, batchSize); +// +// inferRequest.Infer(); +// OutputsDataMap output_info(cnnNetwork.getOutputsInfo()); +// for (auto &output : output_info) +// Blob::Ptr outputBlob = inferRequest.GetBlob(output.first); +// } +// +// log_info("Memory consumption after Inference with streams: \"" << nstreams +// << "\" with number of infer request: " << nireq); +// memCheckPipeline.record_measures(test_name); +// +// log_debug(memCheckPipeline.get_reference_record_for_test(test_name, model_name, precision, device)); +// return memCheckPipeline.measure(); +// +// }; +// +// TestResult res = common_test_pipeline(test_pipeline, test_refs.references); +// EXPECT_EQ(res.first, TestStatus::TEST_OK) << res.second; +//} From 33d067e653887abe665624ed6c435207ae22f06d Mon Sep 17 00:00:00 2001 From: "Koryachikhina, Anastasia" Date: Tue, 25 May 2021 11:21:28 +0300 Subject: [PATCH 13/14] tmp:delete line about inference with streams for cheking CI result --- .../desktop_references_config.xml | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/tests/stress_tests/.automation/memcheck_tests/precommit_configs/desktop_references_config.xml b/tests/stress_tests/.automation/memcheck_tests/precommit_configs/desktop_references_config.xml index 57afb10917d5ea..3fd3c120fa1cbd 100644 --- a/tests/stress_tests/.automation/memcheck_tests/precommit_configs/desktop_references_config.xml +++ b/tests/stress_tests/.automation/memcheck_tests/precommit_configs/desktop_references_config.xml @@ -6,24 +6,16 @@ - # values from {"commit_id": "761e571042fa2b291d5954e523fffc1e2dfcafae", "commit_date": "2021-05-20 10:36"} and *= 1.3 - # values from {"commit_id": "761e571042fa2b291d5954e523fffc1e2dfcafae", "commit_date": "2021-05-20 10:36"} and *= 1.3 - # values from {"commit_id": "761e571042fa2b291d5954e523fffc1e2dfcafae", "commit_date": "2021-05-20 10:36"} and *= 1.3 - # values from {"commit_id": "761e571042fa2b291d5954e523fffc1e2dfcafae", "commit_date": "2021-05-20 10:36"} and *= 1.3 - # values from {"commit_id": "761e571042fa2b291d5954e523fffc1e2dfcafae", "commit_date": "2021-05-20 10:36"} and *= 1.3 - # values from {"commit_id": "761e571042fa2b291d5954e523fffc1e2dfcafae", "commit_date": "2021-05-20 10:36"} and *= 1.3 - # values from {"commit_id": "761e571042fa2b291d5954e523fffc1e2dfcafae", "commit_date": "2021-05-20 10:36"} and *= 1.3 - # values from {"commit_id": "761e571042fa2b291d5954e523fffc1e2dfcafae", "commit_date": "2021-05-20 10:36"} and *= 1.3 @@ -31,25 +23,17 @@ # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 - # values from {"commit_id": "761e571042fa2b291d5954e523fffc1e2dfcafae", "commit_date": "2021-05-20 10:36"} and *= 1.3 - # values from {"commit_id": "761e571042fa2b291d5954e523fffc1e2dfcafae", "commit_date": "2021-05-20 10:36"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 - # values from {"commit_id": "761e571042fa2b291d5954e523fffc1e2dfcafae", "commit_date": "2021-05-20 10:36"} and *= 1.3 - # values from {"commit_id": "761e571042fa2b291d5954e523fffc1e2dfcafae", "commit_date": "2021-05-20 10:36"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 - # values from {"commit_id": "761e571042fa2b291d5954e523fffc1e2dfcafae", "commit_date": "2021-05-20 10:36"} and *= 1.3 - # values from {"commit_id": "761e571042fa2b291d5954e523fffc1e2dfcafae", "commit_date": "2021-05-20 10:36"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 - # values from {"commit_id": "761e571042fa2b291d5954e523fffc1e2dfcafae", "commit_date": "2021-05-20 10:36"} and *= 1.3 - # values from {"commit_id": "761e571042fa2b291d5954e523fffc1e2dfcafae", "commit_date": "2021-05-20 10:36"} and *= 1.3 From 55d6e50cae67d97fc77551237c61c0a8e4953626 Mon Sep 17 00:00:00 2001 From: "Koryachikhina, Anastasia" Date: Tue, 25 May 2021 16:37:54 +0300 Subject: [PATCH 14/14] rollback all tmp changes in inference_with_streams test --- .../desktop_references_config.xml | 16 +++ tests/stress_tests/memcheck_tests/tests.cpp | 112 +++++++++--------- 2 files changed, 72 insertions(+), 56 deletions(-) diff --git a/tests/stress_tests/.automation/memcheck_tests/precommit_configs/desktop_references_config.xml b/tests/stress_tests/.automation/memcheck_tests/precommit_configs/desktop_references_config.xml index 3fd3c120fa1cbd..57afb10917d5ea 100644 --- a/tests/stress_tests/.automation/memcheck_tests/precommit_configs/desktop_references_config.xml +++ b/tests/stress_tests/.automation/memcheck_tests/precommit_configs/desktop_references_config.xml @@ -6,16 +6,24 @@ + # values from {"commit_id": "761e571042fa2b291d5954e523fffc1e2dfcafae", "commit_date": "2021-05-20 10:36"} and *= 1.3 + # values from {"commit_id": "761e571042fa2b291d5954e523fffc1e2dfcafae", "commit_date": "2021-05-20 10:36"} and *= 1.3 + # values from {"commit_id": "761e571042fa2b291d5954e523fffc1e2dfcafae", "commit_date": "2021-05-20 10:36"} and *= 1.3 + # values from {"commit_id": "761e571042fa2b291d5954e523fffc1e2dfcafae", "commit_date": "2021-05-20 10:36"} and *= 1.3 + # values from {"commit_id": "761e571042fa2b291d5954e523fffc1e2dfcafae", "commit_date": "2021-05-20 10:36"} and *= 1.3 + # values from {"commit_id": "761e571042fa2b291d5954e523fffc1e2dfcafae", "commit_date": "2021-05-20 10:36"} and *= 1.3 + # values from {"commit_id": "761e571042fa2b291d5954e523fffc1e2dfcafae", "commit_date": "2021-05-20 10:36"} and *= 1.3 + # values from {"commit_id": "761e571042fa2b291d5954e523fffc1e2dfcafae", "commit_date": "2021-05-20 10:36"} and *= 1.3 @@ -23,17 +31,25 @@ # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 + # values from {"commit_id": "761e571042fa2b291d5954e523fffc1e2dfcafae", "commit_date": "2021-05-20 10:36"} and *= 1.3 + # values from {"commit_id": "761e571042fa2b291d5954e523fffc1e2dfcafae", "commit_date": "2021-05-20 10:36"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 + # values from {"commit_id": "761e571042fa2b291d5954e523fffc1e2dfcafae", "commit_date": "2021-05-20 10:36"} and *= 1.3 + # values from {"commit_id": "761e571042fa2b291d5954e523fffc1e2dfcafae", "commit_date": "2021-05-20 10:36"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 + # values from {"commit_id": "761e571042fa2b291d5954e523fffc1e2dfcafae", "commit_date": "2021-05-20 10:36"} and *= 1.3 + # values from {"commit_id": "761e571042fa2b291d5954e523fffc1e2dfcafae", "commit_date": "2021-05-20 10:36"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 # values from {"commit_id": "af63cb78ee5cbd66bac0d0980db61cb11b5d9995", "commit_date": "2021-03-03 15:44"} and *= 1.3 + # values from {"commit_id": "761e571042fa2b291d5954e523fffc1e2dfcafae", "commit_date": "2021-05-20 10:36"} and *= 1.3 + # values from {"commit_id": "761e571042fa2b291d5954e523fffc1e2dfcafae", "commit_date": "2021-05-20 10:36"} and *= 1.3 diff --git a/tests/stress_tests/memcheck_tests/tests.cpp b/tests/stress_tests/memcheck_tests/tests.cpp index ef2e03db2c8b14..f939869dea6779 100644 --- a/tests/stress_tests/memcheck_tests/tests.cpp +++ b/tests/stress_tests/memcheck_tests/tests.cpp @@ -107,59 +107,59 @@ INSTANTIATE_TEST_CASE_P(MemCheckTests, MemCheckTestSuite, generateTestsParams({"devices", "models"})), getTestCaseName); -//TEST_P(MemCheckTestSuite, inference_with_streams) { -// const auto nstreams = 2; -// log_info("Inference of InferRequest from network: \"" << model -// << "\" with precision: \"" << precision -// << "\" for device: \"" << device << "\"" -// << "\" with streams: \"" << nstreams); -// if ((device != "CPU") && (device != "GPU")) -// throw std::invalid_argument("This device is not supported"); -// -// auto test_pipeline = [&] { -// MemCheckPipeline memCheckPipeline; -// -// std::map config; -// const std::string key = device + "_THROUGHPUT_STREAMS"; -// config[device + "_THROUGHPUT_STREAMS"] = std::to_string(nstreams); -// -// Core ie; -// ie.GetVersions(device); -// ie.SetConfig(config, device); -// -// InferRequest inferRequest; -// -// CNNNetwork cnnNetwork = ie.ReadNetwork(model); -// ExecutableNetwork exeNetwork = ie.LoadNetwork(cnnNetwork, device); -// auto batchSize = cnnNetwork.getBatchSize(); -// batchSize = batchSize != 0 ? batchSize : 1; -// const ConstInputsDataMap inputsInfo(exeNetwork.GetInputsInfo()); -// -// unsigned int nireq = nstreams; -// try { -// nireq = exeNetwork.GetMetric(METRIC_KEY(OPTIMAL_NUMBER_OF_INFER_REQUESTS)).as(); -// } catch (const std::exception &ex) { -// log_err("Failed to query OPTIMAL_NUMBER_OF_INFER_REQUESTS"); -// } -// for (int counter = 0; counter < nireq; counter++) { -// inferRequest = exeNetwork.CreateInferRequest(); -// fillBlobs(inferRequest, inputsInfo, batchSize); -// -// inferRequest.Infer(); -// OutputsDataMap output_info(cnnNetwork.getOutputsInfo()); -// for (auto &output : output_info) -// Blob::Ptr outputBlob = inferRequest.GetBlob(output.first); -// } -// -// log_info("Memory consumption after Inference with streams: \"" << nstreams -// << "\" with number of infer request: " << nireq); -// memCheckPipeline.record_measures(test_name); -// -// log_debug(memCheckPipeline.get_reference_record_for_test(test_name, model_name, precision, device)); -// return memCheckPipeline.measure(); -// -// }; -// -// TestResult res = common_test_pipeline(test_pipeline, test_refs.references); -// EXPECT_EQ(res.first, TestStatus::TEST_OK) << res.second; -//} +TEST_P(MemCheckTestSuite, inference_with_streams) { + const auto nstreams = 2; + log_info("Inference of InferRequest from network: \"" << model + << "\" with precision: \"" << precision + << "\" for device: \"" << device << "\"" + << "\" with streams: \"" << nstreams); + if ((device != "CPU") && (device != "GPU")) + throw std::invalid_argument("This device is not supported"); + + auto test_pipeline = [&] { + MemCheckPipeline memCheckPipeline; + + std::map config; + const std::string key = device + "_THROUGHPUT_STREAMS"; + config[device + "_THROUGHPUT_STREAMS"] = std::to_string(nstreams); + + Core ie; + ie.GetVersions(device); + ie.SetConfig(config, device); + + InferRequest inferRequest; + + CNNNetwork cnnNetwork = ie.ReadNetwork(model); + ExecutableNetwork exeNetwork = ie.LoadNetwork(cnnNetwork, device); + auto batchSize = cnnNetwork.getBatchSize(); + batchSize = batchSize != 0 ? batchSize : 1; + const ConstInputsDataMap inputsInfo(exeNetwork.GetInputsInfo()); + + unsigned int nireq = nstreams; + try { + nireq = exeNetwork.GetMetric(METRIC_KEY(OPTIMAL_NUMBER_OF_INFER_REQUESTS)).as(); + } catch (const std::exception &ex) { + log_err("Failed to query OPTIMAL_NUMBER_OF_INFER_REQUESTS"); + } + for (int counter = 0; counter < nireq; counter++) { + inferRequest = exeNetwork.CreateInferRequest(); + fillBlobs(inferRequest, inputsInfo, batchSize); + + inferRequest.Infer(); + OutputsDataMap output_info(cnnNetwork.getOutputsInfo()); + for (auto &output : output_info) + Blob::Ptr outputBlob = inferRequest.GetBlob(output.first); + } + + log_info("Memory consumption after Inference with streams: \"" << nstreams + << "\" with number of infer request: " << nireq); + memCheckPipeline.record_measures(test_name); + + log_debug(memCheckPipeline.get_reference_record_for_test(test_name, model_name, precision, device)); + return memCheckPipeline.measure(); + + }; + + TestResult res = common_test_pipeline(test_pipeline, test_refs.references); + EXPECT_EQ(res.first, TestStatus::TEST_OK) << res.second; +}