aboutsummaryrefslogtreecommitdiff
path: root/src/backends/README.md
diff options
context:
space:
mode:
authorFrancis Murtagh <francis.murtagh@arm.com>2021-04-26 10:07:49 +0100
committerNarumol Prangnawarat <narumol.prangnawarat@arm.com>2021-05-06 10:48:41 +0000
commitcae45686aeed0761ff2c9115ef0a064278ae75fa (patch)
tree62caa173a6d6db515ff3936bf4470f65b60e1de8 /src/backends/README.md
parentaab07686f4c0219df59d2a7556cacbd8a19d781a (diff)
downloadarmnn-cae45686aeed0761ff2c9115ef0a064278ae75fa.tar.gz
IVGCVSW-5410 Move ILayerSupport.hpp to backends folder
* ILayerSupport is a backend interface, and so in order to prevent false positives in ABI Compliance Checker move it to backends folder. * Front end users should use ABI stable GetILayerSupportByBackendId which takes advantage of LayerSupportHandle Signed-off-by: Francis Murtagh <francis.murtagh@arm.com> Change-Id: Ie119451c5d55f114525dc79b6f3474b2df7e3418 !android-nn-driver:5516
Diffstat (limited to 'src/backends/README.md')
-rw-r--r--src/backends/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backends/README.md b/src/backends/README.md
index b3376099d4..b7aa25228a 100644
--- a/src/backends/README.md
+++ b/src/backends/README.md
@@ -166,7 +166,7 @@ Dynamic backends are registered during the runtime creation.
## The ILayerSupport interface
-Arm NN uses the [ILayerSupport](../../include/armnn/ILayerSupport.hpp) interface to decide if a layer
+Arm NN uses the [ILayerSupport](../../include/armnn/backends/ILayerSupport.hpp) interface to decide if a layer
with a set of parameters (i.e. input and output tensors, descriptor, weights, filter, kernel if any) are
supported on a given backend. The backends need a way to communicate this information by implementing
the ```GetLayerSupport()``` function on the ```IBackendInternal``` interface.