From fb68ca1f087833ae04de5700ad6ed88b51a1d17b Mon Sep 17 00:00:00 2001 From: John Kesapides Date: Mon, 21 Jan 2019 14:13:27 +0000 Subject: COMPMID-1490 Create graph_convolution.cpp Create a standalone graph_convolution example Change-Id: I6026bd74373d47c1eb0ffe6b66a1464a3656a0b4 Signed-off-by: John Kesapides Reviewed-on: https://review.mlplatform.org/c/585 Tested-by: Arm Jenkins Reviewed-by: Georgios Pinitas Reviewed-by: Pablo Marquez --- tests/NEON/Accessor.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'tests/NEON') diff --git a/tests/NEON/Accessor.h b/tests/NEON/Accessor.h index ceb4c473ac..e3a926cffe 100644 --- a/tests/NEON/Accessor.h +++ b/tests/NEON/Accessor.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2017-2018 ARM Limited. + * Copyright (c) 2017-2019 ARM Limited. * * SPDX-License-Identifier: MIT * @@ -39,7 +39,7 @@ public: * * @param[in, out] tensor To be accessed tensor. */ - Accessor(Tensor &tensor); + Accessor(ITensor &tensor); /** Prevent instances of this class from being copy constructed */ Accessor(const Accessor &) = delete; @@ -75,10 +75,10 @@ public: void *operator()(const Coordinates &coord) override; private: - Tensor &_tensor; + ITensor &_tensor; }; -inline Accessor::Accessor(Tensor &tensor) +inline Accessor::Accessor(ITensor &tensor) : _tensor{ tensor } { } -- cgit v1.2.1