aboutsummaryrefslogtreecommitdiff
path: root/tests/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/main.cpp')
-rw-r--r--tests/main.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/main.cpp b/tests/main.cpp
index d056267418..1f1f33a156 100644
--- a/tests/main.cpp
+++ b/tests/main.cpp
@@ -36,6 +36,9 @@
#ifdef ARM_COMPUTE_CL
#include "arm_compute/runtime/CL/CLScheduler.h"
#endif /* ARM_COMPUTE_CL */
+#ifdef ARM_COMPUTE_GC
+#include "arm_compute/runtime/GLES_COMPUTE/GCScheduler.h"
+#endif /* ARM_COMPUTE_GC */
#include "arm_compute/runtime/Scheduler.h"
#include <fstream>
@@ -62,6 +65,10 @@ int main(int argc, char **argv)
CLScheduler::get().default_init();
#endif /* ARM_COMPUTE_CL */
+#ifdef ARM_COMPUTE_GC
+ GCScheduler::get().default_init();
+#endif /* ARM_COMPUTE_CL */
+
framework::Framework &framework = framework::Framework::get();
framework::CommandLineParser parser;