From ed194b1fbec6627896c5c12f74460b9142b98f7d Mon Sep 17 00:00:00 2001 From: Michalis Spyrou Date: Tue, 31 Oct 2017 15:04:34 +0000 Subject: COMPMID-556 Add macro for checking graph's tensor object Change-Id: I1de1c2932c9906b23b49e18bd82c173846d98723 Reviewed-on: http://mpd-gerrit.cambridge.arm.com/93860 Tested-by: Kaizen Reviewed-by: Anthony Barbier Reviewed-by: Pablo Tello --- src/graph/nodes/SoftmaxLayer.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/graph/nodes/SoftmaxLayer.cpp') diff --git a/src/graph/nodes/SoftmaxLayer.cpp b/src/graph/nodes/SoftmaxLayer.cpp index 62057c770c..7f2325b312 100644 --- a/src/graph/nodes/SoftmaxLayer.cpp +++ b/src/graph/nodes/SoftmaxLayer.cpp @@ -23,6 +23,7 @@ */ #include "arm_compute/graph/nodes/SoftmaxLayer.h" +#include "arm_compute/graph/Error.h" #include "arm_compute/graph/NodeContext.h" #include "arm_compute/graph/OperationRegistry.h" #include "support/ToolchainSupport.h" @@ -31,8 +32,7 @@ using namespace arm_compute::graph; std::unique_ptr SoftmaxLayer::instantiate_node(GraphContext &ctx, ITensorObject *input, ITensorObject *output) { - ARM_COMPUTE_ERROR_ON(input == nullptr || input->tensor() == nullptr); - ARM_COMPUTE_ERROR_ON(output == nullptr || output->tensor() == nullptr); + ARM_COMPUTE_ERROR_ON_UNALLOCATED_TENSOR_OBJECT(input, output); arm_compute::ITensor *in = input->tensor(); arm_compute::ITensor *out = output->tensor(); -- cgit v1.2.1