aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/benchmark/main.cpp1
-rw-r--r--tests/validation/main.cpp2
2 files changed, 2 insertions, 1 deletions
diff --git a/tests/benchmark/main.cpp b/tests/benchmark/main.cpp
index acde259d9b..0120aaad6c 100644
--- a/tests/benchmark/main.cpp
+++ b/tests/benchmark/main.cpp
@@ -90,6 +90,7 @@ int main(int argc, char **argv)
#endif
std::cout << "Using " << user_config.threads << " CPU " << (user_config.threads == 1 ? "thread" : "threads") << "\n";
+ std::cout << "Seed: " << library->seed();
arm_compute::Scheduler::get().set_num_threads(user_config.threads);
::benchmark::RunSpecifiedBenchmarks();
diff --git a/tests/validation/main.cpp b/tests/validation/main.cpp
index 844ee36200..22a56d2251 100644
--- a/tests/validation/main.cpp
+++ b/tests/validation/main.cpp
@@ -62,7 +62,7 @@ struct GlobalFixture
library = cpp14::make_unique<TensorLibrary>(user_config.path.get());
}
- BOOST_TEST_MESSAGE("Seed: " << library->seed());
+ std::cout << "Seed: " << library->seed();
}
};