aboutsummaryrefslogtreecommitdiff
path: root/tests/NEON
diff options
context:
space:
mode:
authorJohn Kesapides <john.kesapides@arm.com>2019-01-21 14:13:27 +0000
committerPablo Marquez <pablo.tello@arm.com>2019-03-04 09:12:47 +0000
commitfb68ca1f087833ae04de5700ad6ed88b51a1d17b (patch)
treed00bfa5ab72d0f9217a9e9dfb9b8a15dcd5c4c29 /tests/NEON
parentba3682521398f228d6db6fb1bfbe464536b8d002 (diff)
downloadComputeLibrary-fb68ca1f087833ae04de5700ad6ed88b51a1d17b.tar.gz
COMPMID-1490 Create graph_convolution.cpp
Create a standalone graph_convolution example Change-Id: I6026bd74373d47c1eb0ffe6b66a1464a3656a0b4 Signed-off-by: John Kesapides <john.kesapides@arm.com> Reviewed-on: https://review.mlplatform.org/c/585 Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com> Reviewed-by: Pablo Marquez <pablo.tello@arm.com>
Diffstat (limited to 'tests/NEON')
-rw-r--r--tests/NEON/Accessor.h8
1 files changed, 4 insertions, 4 deletions
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 }
{
}