aboutsummaryrefslogtreecommitdiff
path: root/src/profiling/test/ProfilingTests.cpp
diff options
context:
space:
mode:
authorSadik Armagan <sadik.armagan@arm.com>2021-08-05 15:01:07 +0100
committerNikhil Raj Arm <nikhil.raj@arm.com>2021-08-05 17:44:39 +0000
commit95e9efc28ce70a8cda93e722f5ce90ebc96bdd95 (patch)
treea386f0984280f15b782eaa84af4709d9a870b755 /src/profiling/test/ProfilingTests.cpp
parent2b9fe3aecb14938257537460d20e01e33cb03e5c (diff)
downloadarmnn-95e9efc28ce70a8cda93e722f5ce90ebc96bdd95.tar.gz
IVGCVSW-6258 'Unittest failures'
* Fixed unit test failures happening on threads. Signed-off-by: Sadik Armagan <sadik.armagan@arm.com> Change-Id: I2a6048f75ece4a9f4c2116306838ff55385aabe7
Diffstat (limited to 'src/profiling/test/ProfilingTests.cpp')
-rw-r--r--src/profiling/test/ProfilingTests.cpp51
1 files changed, 25 insertions, 26 deletions
diff --git a/src/profiling/test/ProfilingTests.cpp b/src/profiling/test/ProfilingTests.cpp
index e0629b3913..5e9a5e7e8d 100644
--- a/src/profiling/test/ProfilingTests.cpp
+++ b/src/profiling/test/ProfilingTests.cpp
@@ -42,6 +42,7 @@
#include <doctest/doctest.h>
+#include <algorithm>
#include <cstdint>
#include <cstring>
#include <iostream>
@@ -534,17 +535,15 @@ TEST_CASE("CheckProfilingStateMachine")
ProfilingStateMachine profilingState17(ProfilingState::Uninitialised);
- std::thread thread1(ProfilingCurrentStateThreadImpl, std::ref(profilingState17));
- std::thread thread2(ProfilingCurrentStateThreadImpl, std::ref(profilingState17));
- std::thread thread3(ProfilingCurrentStateThreadImpl, std::ref(profilingState17));
- std::thread thread4(ProfilingCurrentStateThreadImpl, std::ref(profilingState17));
- std::thread thread5(ProfilingCurrentStateThreadImpl, std::ref(profilingState17));
-
- thread1.join();
- thread2.join();
- thread3.join();
- thread4.join();
- thread5.join();
+ std::vector<std::thread> threads;
+ for (unsigned int i = 0; i < 5; ++i)
+ {
+ threads.push_back(std::thread(ProfilingCurrentStateThreadImpl, std::ref(profilingState17)));
+ }
+ std::for_each(threads.begin(), threads.end(), [](std::thread& theThread)
+ {
+ theThread.join();
+ });
CHECK((profilingState17.GetCurrentState() == ProfilingState::NotConnected));
}
@@ -703,36 +702,36 @@ TEST_CASE("CheckProfilingServiceCounterValues")
std::vector<std::thread> writers;
CHECK(!counters.empty());
+ uint16_t inferencesRun = armnn::profiling::INFERENCES_RUN;
// Test GetAbsoluteCounterValue
for (int i = 0; i < 4; ++i)
{
// Increment and decrement the INFERENCES_RUN counter 250 times
- writers.push_back(std::thread([&profilingService]()
+ writers.push_back(std::thread([&profilingService, inferencesRun]()
{
for (int i = 0; i < 250; ++i)
{
- profilingService.IncrementCounterValue(INFERENCES_RUN);
+ profilingService.IncrementCounterValue(inferencesRun);
}
}));
// Add 10 to the INFERENCES_RUN counter 200 times
- writers.push_back(std::thread([&profilingService]()
+ writers.push_back(std::thread([&profilingService, inferencesRun]()
{
for (int i = 0; i < 200; ++i)
{
- profilingService.AddCounterValue(INFERENCES_RUN, 10);
+ profilingService.AddCounterValue(inferencesRun, 10);
}
}));
// Subtract 5 from the INFERENCES_RUN counter 200 times
- writers.push_back(std::thread([&profilingService]()
+ writers.push_back(std::thread([&profilingService, inferencesRun]()
{
for (int i = 0; i < 200; ++i)
{
- profilingService.SubtractCounterValue(INFERENCES_RUN, 5);
+ profilingService.SubtractCounterValue(inferencesRun, 5);
}
}));
}
-
std::for_each(writers.begin(), writers.end(), mem_fn(&std::thread::join));
uint32_t absoluteCounterValue = 0;
@@ -749,38 +748,38 @@ TEST_CASE("CheckProfilingServiceCounterValues")
writers.clear();
uint32_t deltaCounterValue = 0;
//Start a reading thread to randomly read the INFERENCES_RUN counter value
- std::thread reader([&profilingService](uint32_t& deltaCounterValue)
+ std::thread reader([&profilingService, inferencesRun](uint32_t& deltaCounterValue)
{
for (int i = 0; i < 300; ++i)
{
- deltaCounterValue += profilingService.GetDeltaCounterValue(INFERENCES_RUN);
+ deltaCounterValue += profilingService.GetDeltaCounterValue(inferencesRun);
}
}, std::ref(deltaCounterValue));
for (int i = 0; i < 4; ++i)
{
// Increment and decrement the INFERENCES_RUN counter 250 times
- writers.push_back(std::thread([&profilingService]()
+ writers.push_back(std::thread([&profilingService, inferencesRun]()
{
for (int i = 0; i < 250; ++i)
{
- profilingService.IncrementCounterValue(INFERENCES_RUN);
+ profilingService.IncrementCounterValue(inferencesRun);
}
}));
// Add 10 to the INFERENCES_RUN counter 200 times
- writers.push_back(std::thread([&profilingService]()
+ writers.push_back(std::thread([&profilingService, inferencesRun]()
{
for (int i = 0; i < 200; ++i)
{
- profilingService.AddCounterValue(INFERENCES_RUN, 10);
+ profilingService.AddCounterValue(inferencesRun, 10);
}
}));
// Subtract 5 from the INFERENCES_RUN counter 200 times
- writers.push_back(std::thread([&profilingService]()
+ writers.push_back(std::thread([&profilingService, inferencesRun]()
{
for (int i = 0; i < 200; ++i)
{
- profilingService.SubtractCounterValue(INFERENCES_RUN, 5);
+ profilingService.SubtractCounterValue(inferencesRun, 5);
}
}));
}