aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/validation/NEON/UNIT/RuntimeContext.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/validation/NEON/UNIT/RuntimeContext.cpp b/tests/validation/NEON/UNIT/RuntimeContext.cpp
index 05670a94e8..68fb0da986 100644
--- a/tests/validation/NEON/UNIT/RuntimeContext.cpp
+++ b/tests/validation/NEON/UNIT/RuntimeContext.cpp
@@ -23,8 +23,8 @@
*/
#include "arm_compute/runtime/RuntimeContext.h"
-#include "arm_compute/runtime/CPP/CPPScheduler.h"
#include "arm_compute/runtime/NEON/functions/NEActivationLayer.h"
+#include "arm_compute/runtime/SchedulerFactory.h"
#include "arm_compute/runtime/Tensor.h"
#include "support/ToolchainSupport.h"
#include "tests/Globals.h"
@@ -61,9 +61,9 @@ TEST_CASE(Scheduler, framework::DatasetMode::ALL)
ARM_COMPUTE_EXPECT(ctx.scheduler() != nullptr, framework::LogLevel::ERRORS);
ARM_COMPUTE_EXPECT(ctx.asset_manager() == nullptr, framework::LogLevel::ERRORS);
- // Create a CPPScheduler
- CPPScheduler scheduler;
- ctx.set_scheduler(&scheduler);
+ // Create a Scheduler
+ auto scheduler = SchedulerFactory::create();
+ ctx.set_scheduler(scheduler.get());
// Check if the scheduler has been properly setup
ARM_COMPUTE_EXPECT(ctx.scheduler() != nullptr, framework::LogLevel::ERRORS);