aboutsummaryrefslogtreecommitdiff
path: root/src/graph/nodes/FullyConnectedLayer.cpp
diff options
context:
space:
mode:
authorGeorgios Pinitas <georgios.pinitas@arm.com>2017-12-11 17:49:18 +0000
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:42:33 +0000
commit284c2045de0811f423a44d2e665f4f45a9e702fa (patch)
tree4114492054252d4a78fd03be8d86990c34d2d922 /src/graph/nodes/FullyConnectedLayer.cpp
parent5962f137e4d0291fee336967b333e2bbc7ae3f8a (diff)
downloadComputeLibrary-284c2045de0811f423a44d2e665f4f45a9e702fa.tar.gz
COMPMID-556: Allocate trainable data tensor after configuration
Change-Id: I8a5fd2418dd104a06a0972abf088f64d7c2796d3 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/112779 Tested-by: BSG Visual Compute Jenkins server to access repositories on http://mpd-gerrit.cambridge.arm.com <bsgcomp@arm.com> Reviewed-by: Gian Marco Iodice <gianmarco.iodice@arm.com>
Diffstat (limited to 'src/graph/nodes/FullyConnectedLayer.cpp')
-rw-r--r--src/graph/nodes/FullyConnectedLayer.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/graph/nodes/FullyConnectedLayer.cpp b/src/graph/nodes/FullyConnectedLayer.cpp
index 41f679b4ec..219e0f9a93 100644
--- a/src/graph/nodes/FullyConnectedLayer.cpp
+++ b/src/graph/nodes/FullyConnectedLayer.cpp
@@ -88,6 +88,9 @@ std::unique_ptr<arm_compute::IFunction> FullyConnectedLayer::instantiate_node(Gr
node_ctx.add_input(_biases.set_target(_target_hint));
node_ctx.add_output(out);
+ // Configure operation
+ auto func = OperationRegistry::get().find_operation(OperationType::FullyConnectedLayer, _target_hint)->configure(node_ctx);
+
// Fill biases
if(!weights_are_loaded)
{
@@ -99,5 +102,5 @@ std::unique_ptr<arm_compute::IFunction> FullyConnectedLayer::instantiate_node(Gr
}
// Get function
- return OperationRegistry::get().find_operation(OperationType::FullyConnectedLayer, _target_hint)->configure(node_ctx);
+ return func;
}