aboutsummaryrefslogtreecommitdiff
path: root/src/backends/reference/test/RefOptimizedNetworkTests.cpp
diff options
context:
space:
mode:
authorAndre Ghattas <andre.ghattas@arm.com>2019-08-07 12:18:38 +0100
committerMatteo Martincigh <matteo.martincigh@arm.com>2019-09-04 09:41:41 +0000
commit23ae2eae1caefba4948e6afda154a66238b26c2a (patch)
tree084b6e7b45add57a363826d1088c7821fe93e9e9 /src/backends/reference/test/RefOptimizedNetworkTests.cpp
parent9bb51d7c3668f6b2715735f286ffd89b727d6805 (diff)
downloadarmnn-23ae2eae1caefba4948e6afda154a66238b26c2a.tar.gz
IVGCVBENCH-1337 Added additional layer parameters to dot file and -v option
* Generic layer parameters now show up in dot file * Convolution layer parameters have also been added to dot file * ExecucteNetwork has an additional -v flag which generated dot file if there Change-Id: I210bb19b45384eb3639b7e488c7a89049fa6f18d Signed-off-by: Andre Ghattas <andre.ghattas@arm.com> Signed-off-by: Szilard Papp <szilard.papp@arm.com>
Diffstat (limited to 'src/backends/reference/test/RefOptimizedNetworkTests.cpp')
-rw-r--r--src/backends/reference/test/RefOptimizedNetworkTests.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backends/reference/test/RefOptimizedNetworkTests.cpp b/src/backends/reference/test/RefOptimizedNetworkTests.cpp
index 68617b9d4d..1a29e73af8 100644
--- a/src/backends/reference/test/RefOptimizedNetworkTests.cpp
+++ b/src/backends/reference/test/RefOptimizedNetworkTests.cpp
@@ -200,9 +200,9 @@ BOOST_AUTO_TEST_CASE(FP16TurboModeTestOnCpuRef)
"digraph Optimized {\n"
" node [shape=\"record\"];\n"
" edge [fontsize=8 fontcolor=\"blue\" fontname=\"arial-bold\"];\n"
- " " << inputId << " [label=\"{Input}\"];\n"
- " " << floorId << " [label=\"{Floor}\"];\n"
- " " << outputId << " [label=\"{Output}\"];\n"
+ " " << inputId << " [label=\"{Input|LayerType : Input\\lBackendID : CpuRef\\l}\"];\n"
+ " " << floorId << " [label=\"{Floor|LayerType : Floor\\lBackendID : CpuRef\\l}\"];\n"
+ " " << outputId << " [label=\"{Output|LayerType : Output\\lBackendID : CpuRef\\l}\"];\n"
" " << inputId << " -> " << floorId << " [label=< [4] >];\n"
" " << floorId << " -> " << outputId << " [label=< [4] >];\n"
"}\n";