aboutsummaryrefslogtreecommitdiff
path: root/src/graph/Workload.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/graph/Workload.cpp')
-rw-r--r--src/graph/Workload.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/graph/Workload.cpp b/src/graph/Workload.cpp
index 7020503171..2bae1c8ca6 100644
--- a/src/graph/Workload.cpp
+++ b/src/graph/Workload.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2018-2020 Arm Limited.
+ * Copyright (c) 2018-2021 Arm Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -27,6 +27,8 @@
#include "arm_compute/graph/ITensorHandle.h"
#include "arm_compute/graph/nodes/PrintLayerNode.h"
+#include "support/Cast.h"
+
namespace arm_compute
{
namespace graph
@@ -46,7 +48,7 @@ void execute_task(ExecutionTask &task)
// COMPMID-3012 - Hide the printing logic from the execute_task method in the graph API
else if(task.node->type() == NodeType::PrintLayer)
{
- auto print_node = dynamic_cast<PrintLayerNode *>(task.node);
+ auto print_node = utils::cast::polymorphic_downcast<PrintLayerNode *>(task.node);
auto input_handle = print_node->input(0)->handle();
auto transform = print_node->transform();